
html, body {
  margin: 0;
  padding: 0;
  background-color: #0a0a0a;
  color: #080808;
  font-family: 'Courier New', monospace;
  scroll-behavior: smooth;
}

.text-center {
  text-align: center;
}
.intro-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
}


#landing {
  position: fixed;
  z-index: 999;
  background-image: url('assets/miraa2.jpg');
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
  overflow: hidden;
}




.content-wrapper {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: none; /* removed image from base */
}

.content-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background-image: url('assets/miraa2.jpg'); /* pre-blurred image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;

  z-index: -1;
}



section {
  padding: 60px 10vw;
  min-height: 100vh;
}

.title {
  font-size: 45px;
  background: linear-gradient(to right, #3f3f3f, #0f0f0f);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  text-shadow: 0 0 5px #323333;
}

.title-row {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px #000000);
}

.glitch {
  position: relative;
  display: inline-block;
  color: #fff;
  z-index: 1;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
}

.glitch::before {
  color: #0ff;
  z-index: -2;
  animation: glitchTop 2s infinite linear alternate-reverse;
}

.glitch::after {
  color: #f0f;
  z-index: -1;
  animation: glitchBottom 1.5s infinite linear alternate-reverse;
}

@keyframes glitchTop {
  0% { clip-path: inset(0 0 80% 0); transform: translate(-2px, -1px); }
  20% { clip-path: inset(20% 0 60% 0); transform: translate(2px, 0); }
  40% { clip-path: inset(40% 0 40% 0); transform: translate(-1px, 1px); }
  60% { clip-path: inset(60% 0 20% 0); transform: translate(1px, -2px); }
  80% { clip-path: inset(80% 0 0 0); transform: translate(0, 1px); }
  100% { clip-path: inset(0 0 80% 0); transform: translate(-2px, -1px); }
}

@keyframes glitchBottom {
  0% { clip-path: inset(80% 0 0 0); transform: translate(1px, 1px); }
  20% { clip-path: inset(60% 0 20% 0); transform: translate(-1px, -1px); }
  40% { clip-path: inset(40% 0 40% 0); transform: translate(1px, 2px); }
  60% { clip-path: inset(20% 0 60% 0); transform: translate(-2px, -1px); }
  80% { clip-path: inset(0 0 80% 0); transform: translate(2px, 0); }
  100% { clip-path: inset(80% 0 0 0); transform: translate(1px, 1px); }
}


.subtitle {
  font-size: 14px;
  color: #050505;
  margin-bottom: 25px;
  max-width: 600px;
}

.qa .question {
  color: #090909;
  font-weight: bold;
  cursor: pointer;
  margin: 20px 0 5px;
  transition: color 0.2s ease;
}

.qa .question:hover {
  color: #848686;
}

.question-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 20px 0 5px;
}

.question-toggle .icon {
  font-size: 18px;
  font-weight: bold;
  margin-right: 10px;
  transition: transform 0.2s ease;
  color: #5f0a53;
  width: 20px;
}

.question-toggle .question {
  font-weight: bold;
  color: #181717;
  transition: color 0.2s ease;
  text-align: left;
}

.question-toggle:hover .question {
  color: #36023e;
}



.chatbot-frame {
  width: 100%;
  height: 100vh;
  border: none;
}

.scroll-down {
  font-size: 13px;
  color: #555;
  text-align: center;
  margin-top: 60px;
  animation: flicker 3s infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.glitch-divider {
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    #777 0%,
    #777 10%,
    #000 10%,
    #000 20%
  );
  margin: 40px 0;
  opacity: 0.4;
}

.chat-header-image {
  text-align: center;
  margin-bottom: 20px;
}

.chat-header-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px #045802);
  transition: transform 0.3s ease;
}

.chat-header-image img:hover {
  transform: scale(1.05);
}

#glitch-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url('');
  background-size: cover;
  pointer-events: none;
}

.intro-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.intro-text-block {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.intro-left {
  flex: 1;
  text-align: left;
  color: #000000;
  font-size: 16px;
  font-weight: bold;
}

.intro-right {
  flex: 1;
  text-align: right;
  color: #000000;
  font-size: 16px;
  font-weight: bold;
}

.mira-image {
  width: 100%;
  text-align: center;
}

.mira-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  filter: drop-shadow(0 0 10px #000000);
}

/* FAQ Section Overall */
.faq-section {
  max-width: 1000px;
  margin: 60px auto 80px;  /* Pull up spacing */
  padding: 0 20px;
  text-align: center;
}

/* FAQ White Box */
.faq-box-wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

/* Section Heading */
.faq-heading {
  font-size: 28px;
  color: #121212;
  text-shadow: 0 0 5px #0b0b0baa;
  margin-bottom: 30px;
}

/* Inner Transparent Box */
.faq-box {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  box-sizing: border-box;
  width: 100%;
  overflow-wrap: break-word;
  text-align: left;
}

/* Questions */
.qa .question {
  font-weight: bold;
  color: #181717;
  cursor: pointer;
  margin: 20px 0 5px;
  transition: color 0.2s ease;
}

.qa .question:hover {
  color: #36023e;
}

/* Answers (collapsible) */
.qa .answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  margin-bottom: 0;
  padding-left: 10px;
  color: #37012e;
  width: 100%;
  word-wrap: break-word;
}

.qa .answer.show {
  max-height: 500px;
  opacity: 1;
  margin-bottom: 20px;
}


.api-section {
  margin: 80px auto;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.api-heading {
  font-size: 32px;
  color: #141414;
  margin-bottom: 30px;
  text-shadow: 0 0 5px #0b0b0baa;
}

.api-color {
  color: #5f0a53; 
}

.api-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.api-img {
  display: block;
  margin: 0 auto 20px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.api-text {
  margin-top: 10px;
}

.api-title {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin-bottom: 8px;
}

.api-sub {
  color: #333;
  font-size: 16px;
}
.email-access {
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.email-access label {
  color: white;
  font-size: 14px;
}

.email-access input[type="email"] {
  padding: 10px;
  font-size: 14px;
  border-radius: 6px;
  border: none;
  outline: none;
  width: 220px;
  background-color: #222;
  color: white;
}


.access-button {
  background-color: #5f0a53;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-family: 'Courier New', monospace;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(95, 10, 83, 0.3);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.access-button:hover {
  background-color: #3d0835;
  box-shadow: 0 0 12px rgba(95, 10, 83, 0.6);
}

.email-input,
.submit-button,
.confirmation-message {
  display: none;
}

.email-input {
  padding: 10px;
  font-size: 14px;
  border-radius: 6px;
  border: none;
  outline: none;
  width: 220px;
  background-color: #222;
  color: white;
  font-family: 'Courier New', monospace;
}

.submit-button {
  background-color: #5f0a53;
  color: white;
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  font-family: 'Courier New', monospace;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(95, 10, 83, 0.3);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.submit-button:hover {
  background-color: #3d0835;
  box-shadow: 0 0 12px rgba(95, 10, 83, 0.6);
}

.confirmation-message {
  color: #5f0a53;
  font-size: 14px;
  margin-left: 10px;
}




.mira-box {
  background: #fff;
  padding: 0.5cm;
  border-radius: 16px;
  display: inline-block;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.logo-box {
  background: #fff;
  padding: 0.01px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  width: 90px;
  height: 90px;
}

/* Mira image */
.boxed-img {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  display: block;
}

/* Logo image inside circular box */
.logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
}

/* NAVBAR */
.top-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(10,10,10,0.9);
  padding: 17px 0;
  z-index: 1000;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  font-family: 'Courier New', monospace;
}

.top-nav > ul {
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 40px;
  list-style: none;
  justify-content: center;
}

/* Prevent nested dropdown from inheriting horizontal layout */
.top-nav ul ul {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(20, 20, 20, 0.95);
  border-radius: 6px;
  padding: 8px 0;
  min-width: 160px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  z-index: 1001;
}

.top-nav ul li {
  position: relative;
}

.top-nav ul li:hover > ul {
  display: flex;
}

.top-nav ul ul li {
  width: 100%;
}

.top-nav ul ul a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
}

.top-nav ul ul a:hover {
  background-color: #5f0a53;
}


.top-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 5px;
  transition: background 0.2s;
}

.top-nav a:hover {
  background: #5f0a53;
}


section {
  scroll-margin-top: 80px; /* so anchors scroll below the nav */
}


.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(20, 20, 20, 0.95);
  border-radius: 6px;
  padding: 8px 0;
  min-width: 160px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  z-index: 1001;
  text-align: left;
}

.dropdown-content li {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #5f0a53;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Copy CA Section */
.copy-ca-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  font-family: 'Courier New', monospace;
}

.ca-label {
  color: #0d0d0d;
  font-size: 14px;
  font-weight: bold;

}

.ca-address {
  background-color: #222;
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 14px;
  font-family: monospace;
}

.copy-button {
  background-color: #5f0a53;
  color: white;
  border: none;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.copy-button:hover {
  background-color: #3d0835;
}

/* Footer */
.footer {
  text-align: right;
  padding: 20px 40px;
  font-size: 15px;
  color: #000000;
  font-family: 'Courier New', monospace;
  font-weight: bold;

}

#mira-section {
  padding: 30px 10vw;
  background: rgba(255, 255, 255, 0.05);
  margin-top: 60px;
  border-radius: 16px;
}

.mira-heading {
  font-size: 28px;
  text-align: center;
  color: #141414;
  margin: 60px 0 30px;
  text-shadow: 0 0 5px #0b0b0baa;
}

.mira-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 100px;
}

.mira-image-item {
  flex: 1 1 300px;
  text-align: center;
}

.mira-image-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.mira-label {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #5f0a53;
}

.mira-image-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.mira-image-item img.zoomed {
  transform: scale(1.3);
  z-index: 10;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  position: relative;
}

/* Lightbox overlay */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: zoom-out;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.lightbox.show img {
  transform: scale(1);
  opacity: 1;
}





