* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}
body,
html {
  width: 100%;
}
body {
  background: white;
  color: #000;
  line-height: 1.6;
}

/* ================= MERGED PREMIUM PRELOADER ================= */
#site-preloader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* EXIT */
#site-preloader.exit {
  opacity: 0;
  transform: scale(1.05);
}

/* WRAPPER */
.preloader-wrap {
  text-align: center;
}

/* DOT (OPTION 3 FEEL) */
.preloader-dot {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto 25px;
  animation: dotGrow 0.9s ease forwards;
}

/* DOT GROW */
@keyframes dotGrow {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(10);
    opacity: 0;
  }
}

/* TEXT (TYPING FEEL) */
.preloader-text {
  font-size: 7.2rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: #fff;

  display: inline-flex; /* 👈 IMPORTANT */
  align-items: center;
  justify-content: center;
  white-space: nowrap; /* 👈 line break rokta hai */
}

/* CHAR ANIMATION */
.preloader-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: charIn 0.6s ease forwards;
}

/* STAGGER */
.preloader-text span:nth-child(1) {
  animation-delay: 0.9s;
}
.preloader-text span:nth-child(2) {
  animation-delay: 1.05s;
}
.preloader-text span:nth-child(3) {
  animation-delay: 1.2s;
}
.preloader-text span:nth-child(4) {
  animation-delay: 1.35s;
}
.preloader-text span:nth-child(5) {
  animation-delay: 1.5s;
}
.preloader-text span:nth-child(6) {
  animation-delay: 1.65s;
}
.preloader-text span:nth-child(7) {
  animation-delay: 1.8s;
}

@keyframes charIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */

/* Laptop */
@media (max-width: 1200px) {
  .preloader-text {
    font-size: 7rem;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .preloader-text {
    font-size: 6rem;
    letter-spacing: 3px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .preloader-text {
    font-size: 4.2rem;
    letter-spacing: 2px;
  }

  .preloader-dot {
    width: 8px;
    height: 8px;
    margin-bottom: 20px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .preloader-text {
    font-size: 4rem;
    letter-spacing: 1.5px;
  }

  .preloader-dot {
    width: 6px;
    height: 6px;
    margin-bottom: 16px;
  }
}

/* Extra Small */
@media (max-width: 360px) {
  .preloader-text {
    font-size: 3.3rem;
    letter-spacing: 1px;
  }
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  position: relative;
  top: 0;
  background: #211f1f;
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo img {
  height: 80px;
  width: 180px;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #ddd;
  font-weight: 700;
}

.nav-btn {
  background: #060606;
  padding: 6px 7px;
  border-radius: 10px;
  color: #fff;
}

/* HERO */
.hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 90px;
  margin-bottom: 20px;
  color: #000;
}

.hero p {
  font-size: 22px;
  opacity: 1.9;
  margin-bottom: 30px;
  color: #000;
  font-weight: 600;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(90deg, #6a5cff, #00d4ff);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: #000;
}

/* VSL */
.vsl {
  padding: 10px 0;
  text-align: center;
}
.vsl h2 {
  color: #000;
  font-size: 50px;
}
.video-box video {
  width: 100%;
  max-width: 800px;
  border-radius: 20px;
  margin: 30px 0;
  border: 3px solid black;
}

/* SYSTEM */
.system {
  padding: 100px 0;
}
.system h2 {
  font-size: 43px;
  font-weight: 600;
}
.system p {
  font-size: 23px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.card {
  background: #000;
  padding: 30px;
  border-radius: 20px;
  transition: 0.3s;
  color: goldenrod;
  font-size: 17px;
}
.card a {
  text-decoration: none;
  color: rgb(245, 195, 70);
  font-size: 18px;
}
.card a:hover {
  transform: translateY(-5px);
  text-decoration: none;
  color: goldenrod;
}


/* ================= CLIENTS SECTION ================= */
.clients {
  padding: 100px 0;
  background: #0e0e10; /* professional black */
  text-align: center;
}

.clients h2 {
  font-size: 2.6rem;
  margin-bottom: 60px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.4px;
}

/* ================= CLIENT GRID ================= */
.logos {
  display: grid;
  grid-template-columns: repeat(3, 320px); /* 👈 fixed card columns */
  gap: 24px;                                /* 👈 equal gap all sides */
  justify-content: center;                  /* 👈 center grid */
  margin: 0 auto;                           /* 👈 no extra side space */
}

/* ================= CLIENT CARD ================= */
.client-card {
  background: #ffffff;
  padding: 22px 20px;
  margin: 0;
  border-radius: 18px;
  text-align: center;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}




.client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

/* ================= CLIENT IMAGE ================= */
.client-card img {
  max-height: 140px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 16px;
}

/* ================= RESPONSIVE ================= */

/* Tablet (<=1024px) → 3 cards */
@media (max-width: 1024px) {
  .logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile (<=768px) → 2 cards */
@media (max-width: 768px) {
  .logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients h2 {
    font-size: 2.1rem;
  }
}

/* Small Mobile (<=480px) → 1 card */
@media (max-width: 480px) {
  .logos {
    grid-template-columns: 1fr;
  }
}

/* ================= PROOF SECTION ================= */
.proof {
  padding: 100px 0;
  background: #ffffff; /* body white */
}

.proof h2 {
  font-size: 64px;
  font-weight: 700;
  color: #111;
  text-align: center;
  margin-bottom: 12px;
}

.proof .section-desc {
  text-align: center;
  font-weight: 600;
  font-size: 30px;
  color: #000;
  margin-bottom: 60px;
}

/* ================= AUDIO CARD ================= */
.audio-box {
  background: #707079; /* soft neutral */
  padding: 26px 24px;
  border-radius: 16px;
  margin-top: 22px;
  border: 1px solid #080b16;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audio-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

/* ================= AUDIO TITLE ================= */
.audio-box p {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

/* ================= AUDIO PLAYER ================= */
.audio-box audio {
  width: 100%;
  outline: none;
  border-radius: 8px;
}

/* FINAL CTA */
.final-cta {
  padding: 50px 0;
  text-align: center;
  background: #060606;
  color: #e7e6e6;
}

.final-cta h2 {
  font-size: 47px;
  font-weight: 600;
}
/* ////////////////// */
/* FOOTER */
.footer {
  background: #1d1b1b;
  padding: 70px 0 20px;
  color: #ccc;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
}

.footer-brand p {
  font-size: 20px;
  opacity: 1.6;
  max-width: 350px;
  font-weight: 700;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 33px;
  font-weight: 600;
  opacity: 1.6;
}

.footer-links a {
  display: block;
  font-size: 17px;
  margin-bottom: 12px;
  text-decoration: none;
  color: #eef3f4;
  transition: 0.3s;
  font-weight: 500;
}

.footer-links a:hover {
  color: #eef3f4;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 500;
  opacity: 1.6;
}
.footer-contact p a {
  font-size: 16px;
  color: white;
  transition: 0.4s;
  text-decoration: none;
}
.footer-contact p a:hover {
  font-size: 17px;
  color: aqua;
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 50px;
  /* border-top: 1px solid #1a1f35; */
  padding-top: 20px;
  text-align: center;
  font-size: 20px;
  opacity: 1.6;
  color: rgb(247, 243, 243);
}

/* //////////////////////////////////////// */
/* Mobile REsponsive */

/* ---------- TABLET & BELOW ---------- */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  nav a {
    margin-left: 20px;
  }
}

/* ---------- TABLET ---------- */
@media (max-width: 768px) {
  /* NAVBAR */
  .nav-content {
    flex-direction: column;
    gap: 15px;
  }
  .footer-brand p {
    text-align: center;
    font-size: 15px;
    text-decoration: none;
  }
  .footer-brand p a {
    text-decoration: none;
  }
  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  nav a {
    margin-left: 0;
  }

  /* HERO */
  .hero {
    min-height: auto;
    padding: 100px 0 80px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  /* VSL */
  .vsl {
    padding: 80px 0;
  }
  .vsl h2 {
    color: #000;
  }

  /* SYSTEM */
  .system {
    padding: 80px 0;
  }

  /* PROOF */
  .proof {
    padding: 80px 0;
  }

  /* FOOTER */
  .footer-content {
    text-align: center;
    /* justify-content: center; */
    gap: 40px;
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 576px) {
  .container {
    width: 92%;
  }
  .footer-brand p {
    text-align: center;
    font-size: 20px;
  }
  .footer-brand p a {
    text-decoration: none;
  }
  /* LOGO */
  .logo img {
    height: 60px;
    width: 100px;
  }

  /* HERO */
  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .btn-primary {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  /* CARDS */
  .cards {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 25px;
    font-size: 0.95rem;
  }

  /* CLIENT LOGOS */
  .logos img {
    width: 220px;
    max-height: 140px;
  }

  /* AUDIO */
  .audio-box {
    padding: 20px;
  }

  /* FINAL CTA */
  .final-cta {
    padding: 80px 0;
  }

  .final-cta h2 {
    font-size: 1.6rem;
  }

  /* FOOTER */
  .footer {
    padding: 60px 0 20px;
  }

  .footer-brand p {
    font-size: 0.9rem;
  }
}
.footer-brand img {
  height: 90px;
  width: 190px;
}
/* ---------- LARGE SCREENS (OPTIONAL SAFETY) ---------- */
@media (min-width: 1400px) {
  .hero h1 {
    font-size: 3.2rem;
  }
}

/* /////////////////////////////////////////////////////////// */
.form-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
}

.form-overlay.active {
  opacity: 1;
  visibility: visible;
}

.form-popup {
  position: relative;
  background: whitesmoke;
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  border-radius: 14px;
  overflow: auto; /* scroll works */
}

/* HIDE SCROLLBAR CLEANLY */
.form-popup::-webkit-scrollbar {
  width: 0;
}
.form-popup {
  scrollbar-width: none;
}

.form-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1eded;
  border: 1px solid #ddd;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
}

/* ///////////////////////////////////////////////////////////////////////// */

/* CENTER WRAPPER */
.form-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.form-heading {
  font-size: 25px;
  font-weight: 800;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 22px;
  color: #000;
}

/* FORM BOX */
.form-box {
  background: whitesmoke;
  color: #000;
  width: 100%;
  margin-top: 22px;
  max-width: 650px;
  padding: 20px 20px 20px;
  border-radius: 8px;
}

/* LABELS */
.form-box label {
  font-size: 13px;
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

/* INPUTS */
.form-box input[type="text"],
.form-box input[type="email"],
.form-box input[type="tel"] {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  font-size: 13px;
  margin-bottom: 14px;
}

/* QUESTIONS */
.question {
  margin-top: 6px;
}

/* RADIO GROUP */
.radio-group {
  margin-bottom: 16px;
}

.radio-group label {
  font-size: 13px;
  font-weight: 400;
  display: block;
  margin-bottom: 6px;
}

.radio-group input {
  margin-right: 6px;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  padding: 14px;
  background: #1746ff;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 480px) {
  body {
    padding: 0px 0;
  }

  .form-box {
    margin: 0 12px;
  }
}
