/* ---------- GLOBAL PAGE SETTINGS ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: black;
    text-align: center;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);

    /* Clean modern background */
    background: #F2F4F7;
}



/* ---------- HEADER ---------- */

.main-header {
  width: 100%;
  background: rgba(13,27,42,0.9);
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {

  margin: 0 auto;
  /*padding: 12px 20px;*/ 
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-area {
  width: 160px;
}

.header-logo {
  font-size: 32px;
}

/* MENU */
.menu {
  list-style: none;
  display: flex;
  gap: 14px;
}

.menu a {
  color: #eaf2ff;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.5s;
  white-space: nowrap;
}

.menu a:hover,
.menu a.active {
  background: rgba(255,255,255,0.15);
}

/* MOBILE NAV */
@media(max-width:768px){
  .nav-container { flex-direction: column; gap: 10px;}
  .menu { flex-wrap: wrap; justify-content: center; }
  .logo-area { width: auto; }
}


/* ---------- HERO SECTION ---------- */

.hero {
  padding: 90px 20px;
  color: #0d1b2a;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 10px auto 30px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 16px 36px;
  border-radius: 30px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
  transition: 0.25s;
}

.hero-btn:hover {
  transform: scale(1.05);
}

.fb { background:#1877f2; }
.ig { background:#e1306c; }
.yt { background:#ff0000; }
.tw { background:#000000; }



/* ---------- FEATURES (BIG INFOGRAPHIC CARDS) ---------- */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 60px 30px;
}

.feature-card {
  background: linear-gradient(145deg,#ffffff,#eef3ff);
  border-radius: 22px;
  padding: 38px 28px;
  font-size: 42px;
  font-weight: bold;
  box-shadow: 0 16px 45px rgba(0,0,0,.1);
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
  cursor: pointer;
}

.feature-card h3 {
  margin-top: 15px;
  font-size: 20px;
}

.feature-card p {
  font-size: 14px;
  opacity: .7;
  margin-top: 6px;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35));
  transform: translateX(-100%);
  transition: .6s;
}

.feature-card:hover::before {
  transform: translateX(100%);
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.03);
}


/* ---------- HOW IT WORKS (INFOGRAPHIC) ---------- */

.howitworks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 60px 30px;
}

.howitworks h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.steps {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 60px 30px;
}

.step-card {
  background: linear-gradient(145deg,#ffffff,#eef3ff);
  border-radius: 22px;
  padding: 38px 28px;
  font-size: 42px;
  font-weight: bold;
  box-shadow: 0 16px 45px rgba(0,0,0,.1);
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
  cursor: pointer;

}

.step-card:hover {
  transform: translateY(-6px);
}

.step-circle {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #1877f2;
  color: white;
  border-radius: 50%;
  margin: 0 auto 12px;
  font-size: 18px;
  font-weight: bold;
}

.step-card h4 {
  margin-bottom: 6px;
}


/* ---------- SEO SECTION ---------- */

/* ===========================
   SEO CONTENT STYLING (CLEAN)
=========================== */
/* ===== FAQ DROPDOWN SEO ===== */

.faq-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    padding: 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.faq-question::after {
    content: "+";
    font-size: 18px;
    transition: transform .2s;
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    display: none;
    padding: 0 14px 14px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Mobile spacing */
@media (max-width: 768px) {
    .faq-section { margin: 30px 15px; }
}



/* ---------- CONTAINER ---------- */

.container {
  width: 100%;
  max-width: 900px;
  margin: auto;
  padding: 30px 20px;
}


/* ---------- LOGOS ---------- */
.logo { margin: 10px 0; }

.insta-logo, .fb-logo { width: 80px; border-radius: 18px; }

.yt-logo { width: 60px; border-radius: 10px; }

.yt-main-logo { width: 80px; }

.t-main-logo { width: 80px; }


/* ---------- INPUT ---------- */

.input-box {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.input-box input {
  width: 75%;
  padding: 15px;
  border-radius: 10px 0 0 10px;
  border: none;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.input-box button {
  width: 25%;
  padding: 15px;
  border: none;
  background: #0d1b2a;
  color: white;
  border-radius: 0 10px 10px 0;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}


/* ---------- VIDEO BOX ---------- */

.video-box {
  background: white;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  margin-top: 25px;
}

.video-row {
  display: flex;
  gap: 20px;
}

.thumb-small {
  width: 150px;
  border-radius: 12px;
}

.video-info {
  text-align: left;
  flex: 1;
}

/* ALL BUTTONS */
button, .btn-play, .btn-reset, .hero-btn {
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
    transition: box-shadow .2s ease, transform .2s ease;
}

/* HOVER FEEL */
button:hover, .btn-play:hover, .btn-reset:hover, .hero-btn:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

/* ---------- BUTTONS ---------- */

.button-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.download-final { background:#1b73e8; }
.btn-play       { background:#28a745; }
.btn-reset      { background:#e63946; }

.download-final, .btn-play, .btn-reset {
  color: white;
  padding: 12px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
}


/* ---------- DISCLAIMER ---------- */

.disclaimer {
  margin-top: 40px;
  font-size: 13px;
  line-height: 1.6;
  background: white;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,.07);
}


/* ---------- FOOTER ---------- */

.main-footer {
  background: rgba(13,27,42,0.85);
  color: #dbeafe;
  padding: 20px;
  margin-top: 60px;
}


/* ---------- RESPONSIVE ---------- */

@media(max-width:768px){

  .hero h1 { font-size: 30px; }

  .input-box {
    flex-direction: column;
    gap: 8px;
  }

  .input-box input,
  .input-box button {
    width: 100%;
    border-radius: 10px;
  }

  .video-row {
    flex-direction: column;
    text-align: center;
  }

  .video-info {
    text-align: center;
  }

  .button-row { flex-direction: column; }
}

@media(max-width:480px){
  .hero h1 { font-size: 24px; }
}

.title
{
  color: #0d1b2a;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 28px;
}
.subtitle
{
  color: #0d1b2a;
  font-weight: semi-bold;
  margin-bottom: 15px;
  font-size: 20px;
}
.error
{
  color: red;
  font-weight: bold;
  margin-top: 15px;
}
.error h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

/* FEATURE CARDS */
.feature-card,
.step-card {
    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
    transition: transform .2s ease, box-shadow .2s ease;
}

.feature-card:hover,
.step-card:hover {
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
    transform: translateY(-6px);
}

/* VIDEO INFO BOX */
.video-box {
    box-shadow: 0 12px 30px rgba(0,0,0,0.14);
}

/* HEADER */
.main-header {
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

/* FOOTER */
.main-footer {
    box-shadow: 0 -3px 10px rgba(0,0,0,0.12);
}

/* DISCLAIMER */
.disclaimer {
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}

/* ========= DOWNLOAD BUTTON LOADER (3 DOTS) ========= */

.loading-dots {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.loading-dots span {
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    animation: bounce 0.6s infinite alternate;
}

.loading-dots span:nth-child(2) { animation-delay: .2s; }
.loading-dots span:nth-child(3) { animation-delay: .4s; }

@keyframes bounce {
    from { transform: translateY(0); opacity: 0.4; }
    to   { transform: translateY(-8px); opacity: 1; }
}
button:disabled {
    background: #888 !important;
    cursor: not-allowed;
    opacity: 0.8;
}
/* Format dropdown */
.format-select{
  padding: 12px;
  border-radius: 0px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  background: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}
#success-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #28a745;
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  display: none;
  font-weight: bold;
  animation: fadein 0.4s ease;
  z-index: 9999;
}

@keyframes fadein {
  from {opacity:0; transform:translateY(20px);}
  to {opacity:1; transform:translateY(0);}
}
.format-badge {
  display:inline-block;
  padding:5px 10px;
  background:#000;
  color:#fff;
  border-radius:6px;
  font-size:12px;
  margin-bottom:6px;
}
.v-size {
  font-size:13px;
  color:#777;
}
/* ============================
   BUTTON GLOW EFFECT
============================ */
button, .hero-btn, .btn-play, .btn-reset, .download-final {
    transition: all 0.25s ease;
    box-shadow: 0 0 0 rgba(0,0,0,0);
}

button:hover, .hero-btn:hover, .btn-play:hover, .btn-reset:hover, .download-final:hover {
    box-shadow: 0 0 12px rgba(0, 123, 255, 0.7);
    transform: translateY(-1px);
}

button:active, .hero-btn:active, .btn-play:active, .btn-reset:active, .download-final:active {
    box-shadow: 0 0 22px rgba(0, 123, 255, 1);
    transform: scale(0.97);
}
.main-logo { height: 50px; border-radius: 18px; }
h1, h2, h3, .title, .hero h1 {
  font-family: 'Poppins', sans-serif;
}
/* =========================
   FOOTER (PREMIUM DESIGN)
========================= */

.site-footer {
  background: #0D1B2A;
  color: #cfd8e3;
  padding-top: 45px;
  margin-top: 60px;
  font-size: 14px;
}

/* layout */
.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 35px;
  padding: 0 20px 30px;
}

/* headings */
.footer-col h3 {
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 20px;
}
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 16px;
}

/* text */
.footer-col p {
  line-height: 1.6;
  color: #bfc9d8;
}

/* links */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  color: #a9b7d0;
  text-decoration: none;
  transition: 0.2s;
}
.footer-col ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* bottom bar */
.footer-bottom {
  background: #08121b;
  text-align: center;
  padding: 14px;
  font-size: 12px;
  color: #98a6ba;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* mobile spacing */
@media (max-width: 600px) {
  .site-footer { text-align: center; }
  .footer-col { margin-bottom: 10px; }
}
/* =============================
   FOOTER UI / BRANDING
============================= */

.site-footer {
  background: linear-gradient(130deg, #0d1b2a, #08121b, #0d1b2a);
  background-size: 300% 300%;
  color: #cfd8e3;
  padding-top: 45px;
  margin-top: 70px;
  animation: footerGlow 10s ease infinite;
}

@keyframes footerGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Footer layout */
.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 32px;
  padding: 0 20px 30px;
}

/* Brand */
.footer-logo {
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
}

/* Text */
.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #bfc9d8;
}

/* Headings */
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 16px;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col li {
  margin-bottom: 7px;
}
.footer-col a {
  color: #a9b7d0;
  text-decoration: none;
}
.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Social Icons */
.footer-socials {
  margin-top: 12px;
}
.footer-socials a {
  font-size: 20px;
  margin-right: 12px;
  display: inline-block;
  transition: transform .2s;
}
.footer-socials a:hover {
  transform: scale(1.2);
}

/* Trust badges */
.trust-badges span {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #bfe3ff;
}

/* Bottom bar */
.footer-bottom {
  background: #050a10;
  padding: 14px;
  text-align: center;
  font-size: 12px;
  color: #90a2b8;
}

/* Mobile fix */
@media (max-width: 600px) {
  .site-footer { text-align: center; }
  .footer-socials { justify-content: center; }
}
.social-logo { width: 40px; border-radius: 18px; }
/* SEO CONTENT */
.seo-content {
  max-width: 900px;
  margin: 60px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.seo-content h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0D1B2A;
}

/* SEO UL LIST */
.seo-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.seo-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: #24303E;
}

/* Check icon */
.seo-list li::before {
  content: "✔";
  position: absolute;
  left: 6px;
  top: 2px;
  color: #1587FD;
  font-weight: 700;
  font-size: 18px;
}
.seo-list .check {
  color: #1587FD;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
/* Center the whole SEO box content */
.center-box {
  text-align: center;
}

/* Heading */
.center-box h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #0D1B2A;
}

/* Center list */
.center-box .seo-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
}

/* Center each line (icon + text together) */
.center-box .seo-list li {
  display: flex;
  justify-content: center;   /* 👈 KEY */
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: #24303E;
}

/* Check icon */
.center-box .check {
  color: #1587FD;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .center-box {
    text-align: left;
  }

  .center-box .seo-list li {
    justify-content: flex-start;
  }
}
/* ===== Mobile Fixes ===== */
@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  .container,
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .card {
    margin-bottom: 15px;
  }

  .btn {
    width: 100%;
  }

  input,
  select {
    width: 100%;
  }

  .how-it-works {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  footer .row {
    text-align: center;
  }

  footer .col {
    margin-bottom: 12px;
  }
}
/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    align-items: center;
   /* background: #1f2933;*/
    padding: 12px 16px;
    position: relative;
    z-index: 1000;
    padding-top: env(safe-area-inset-top);
}

.brand {
    color: #1da1f2;
    font-size: 20px;
    font-weight: 700;
    margin-left: 12px;
}

/* Toggle */
#menu-toggle {
    display: none;
}

.menu-icon {
    font-size: 26px;
    color: #fff;
    cursor: pointer;
    display: none;
}

/* Desktop menu */
.menu-wrapper {
    margin-left: auto;
}

.menu {
    list-style: none;
    display: flex;
    gap: 14px;
    margin: 0;
    padding: 0;
}

.menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

/* ================= MOBILE MENU FIX ================= */
@media (max-width: 768px) {

    .menu-icon {
        display: block;
        z-index: 10001;
    }

    .menu-wrapper {
        position: fixed;           /* 🔥 KEY FIX */
        top: 56px;                 /* height of navbar */
        left: 0;
        width: 100vw;
        height: calc(100vh - 56px);
        background: #1f2933;
        display: none;
        z-index: 10000;
        overflow-y: auto;
    }

    .menu {
        flex-direction: column;
        width: 100%;
        padding: 10px 0;
    }

    .menu li {
        padding: 16px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    .menu li a {
        font-size: 16px;
        display: block;
        width: 100%;
    }

    #menu-toggle:checked ~ .menu-wrapper {
        display: block;
    }
}

