   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

html, body{
  max-width:100%;
  overflow-x:hidden;
  font-family: 'Poppins', sans-serif;
}



/* =============================
   TITLE SCROLL ANIMATION ONLY
============================= */

.title-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.title-reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* ========================
   Top Bar
======================== */
/* ========================
   Top Bar FIX
======================== */
.top-bar{
    background:#1f4ea3;
    color:#fff;
    font-size:14px;
    padding:6px 0;
}

/* full width layout */
.top-bar .container{
    max-width:1400px;
    width:95%;
    margin:auto;
}

/* keep everything in one row */
.flex-between{
    display:flex;
    justify-content:space-between;
    align-items:center;
    white-space:nowrap; /* ðŸ”¥ prevents wrapping */
}

/* spacing */
.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:18px;
}


/* ========================
   Navbar
======================== */
.navbar{
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:40px 0;
}


/* Logo */
.logo img{
    height:48px;
    margin-left: 30px;
}


/* Menu */
.nav-menu{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
}

.nav-menu li a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:0.3s;
}

.nav-menu li a:hover{
    color:#1f4ea3;
}

/* ===== Dropdown Fix ===== */

.dropdown{
    position:relative;
}

/* keep navbar visible for dropdown */
/* Navbar height control */
.navbar{
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);

    min-height:90px;   /* 🔥 increase white bar height */
    display:flex;
    align-items:center;
}

/* spacing inside */
.nav-wrapper{
    padding:0;  /* remove old padding */
}

/* submenu */
.dropdown-menu{
    position:absolute;
    top:100%;

    min-width:230px;
    background:#fff;
    border-radius:10px;

    box-shadow:0 10px 25px rgba(0,0,0,0.12);

    padding:10px 0;

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);

    transition:all .25s ease;

    z-index:9999;
    
    left: 0 !important;
    right: auto !important;
    text-align: left !important;
    transform: translateX(0) !important;
}

/* items */
.dropdown-menu li{
    list-style:none;
}

.dropdown-menu li a{
    display:block;
    padding:10px 18px;
    color:#333;
    text-decoration:none;
    font-size:14px;
}

.dropdown-menu li a:hover{
    background:#f5f7fb;
    color:#1f4ea3;
}


/* 🔥 SHOW ON HOVER */
.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
/* ========================
   Button
======================== */
.btn-start{
    background:#ff7a00;
    color:#fff !important;
    padding:10px 20px;
    border-radius:25px;
    font-weight:600;
}

.btn-start:hover{
    background:#e56700;
}


/* ========================
   Hamburger
======================== */
.hamburger{
    display:none;
    font-size:26px;
    cursor:pointer;
}


/* ========================
   Mobile Drawer
======================== */
.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:100%;
    height:100vh;
    background:#fff;
    box-shadow:-4px 0 20px rgba(0,0,0,0.1);
    padding:30px;
    display:flex;
    flex-direction:column;
    gap:18px;
    transition:0.4s;
    z-index:999;
}

.mobile-menu a,
.mobile-dropdown button{
    text-decoration:none;
    color:#333;
    font-size:16px;
    background:none;
    border:none;
    text-align:left;
    cursor:pointer;
}

.mobile-menu.active{
    right:0;
}

.close-menu{
    font-size:24px;
    align-self:flex-end;
    cursor:pointer;
}


/* mobile submenu */
.mobile-submenu{
    display:none;
    padding-left:15px;
    display:flex;
    flex-direction:column;
    gap:10px;
}



/* ========================
   Responsive
======================== */
@media(max-width:992px){

    .nav-menu{
        display:none;
    }

    .hamburger{
        display:block;
    }

    /* hide blue bar on mobile */
    .top-bar{
        display:none;
    }
}


/* =========================
   Marquee Line
========================= */
.top-marquee{
    width:100%;
    background:#ff7a00;
    color:#fff;
    overflow:hidden;
    height:40px;

    display:flex;
    align-items:center;
}

/* track */
.marquee-track{
    display:inline-flex;
    align-items:center;
    gap:45px;

    white-space:nowrap;
    padding-left:100%;

    animation:scrollMarquee 22s linear infinite;
    font-size:14px;
    font-weight:500;
}

/* icons */
.marquee-track i{
    margin-right:8px;
    font-size:14px;
}

/* small dot separator */
.dot{
    width:5px;
    height:5px;
    background:#fff;
    border-radius:50%;
}

/* animation */
@keyframes scrollMarquee{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
}


/* =========================
   Mobile
========================= */
@media(max-width:768px){

    .top-marquee{
        height:34px;
    }

    .marquee-track{
        font-size:12px;
        gap:25px;
        animation-duration:15s;
    }

    .marquee-track i{
        font-size:12px;
    }
}
/*hero section*/
        
                /* Deep radial gradient for the background */
        .bg-gradient-blue {
            background: radial-gradient(circle at center, #2563EB 0%, #172554 100%);
        }

        /* Hand-drawn Underline Effect (CSS Only) */
        .underline-custom {
            position: relative;
            display: inline-block;
        }
        .underline-custom::after {
            content: "";
            position: absolute;
            left: -5%;
            bottom: -5px;
            width: 110%;
            height: 8px;
            background-color: #F97316;
            border-radius: 40% 60% 40% 60%;
            transform: rotate(-1deg);
            opacity: 0.9;
            z-index: -1;
        }

        /* Floating Animation for Icons */
        .floating-icon {
            position: absolute;
            color: white;
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7));
            opacity: 0.25;
            animation: floatMove 10s ease-in-out infinite;
            z-index: 1;
        }

        @keyframes floatMove {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(15px, -25px) rotate(5deg); }
            66% { transform: translate(-10px, 15px) rotate(-5deg); }
        }

        /* Grid Item Interactive Styles */
        .grid-block {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            overflow: hidden;
        }

        /* Card Zoom Effect */
        .grid-block:hover {
            transform: scale(1.08);
            background: rgba(255, 255, 255, 0.18);
            border-color: rgba(249, 115, 22, 0.5);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 255, 255, 0.2);
        }

        /* Text Zoom Effect */
        .grid-block h3 {
            transition: transform 0.4s ease;
        }
        .grid-block:hover h3 {
            transform: scale(1.15);
            color: #F97316;
        }

        /* Content Fade-in animation */
        .hero-fade {
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Deep radial gradient for the background */
        .bg-gradient-blue {
            background: radial-gradient(circle at center, #2563EB 0%, #172554 100%);
        }

        /* Hand-drawn Underline Effect (CSS Only) */
        .underline-custom {
            position: relative;
            display: inline-block;
        }
        .underline-custom::after {
            content: "";
            position: absolute;
            left: -5%;
            bottom: -5px;
            width: 110%;
            height: 8px;
            background-color: #F97316;
            border-radius: 40% 60% 40% 60%;
            transform: rotate(-1deg);
            opacity: 0.9;
            z-index: -1;
        }

        /* Floating Animation for Icons */
        .floating-icon {
            position: absolute;
            color: white;
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7));
            opacity: 0.25;
            animation: floatMove 10s ease-in-out infinite;
            z-index: 1;
        }

        @keyframes floatMove {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(15px, -25px) rotate(5deg); }
            66% { transform: translate(-10px, 15px) rotate(-5deg); }
        }

        /* Grid Item Interactive Styles */
        .grid-block {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            overflow: hidden;
        }

        /* Card Zoom Effect */
        .grid-block:hover {
            transform: scale(1.08);
            background: rgba(255, 255, 255, 0.18);
            border-color: rgba(249, 115, 22, 0.5);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 255, 255, 0.2);
        }

        /* Text Zoom Effect */
        .grid-block h3 {
            transition: transform 0.4s ease;
        }
        .grid-block:hover h3 {
            transform: scale(1.15);
            color: #F97316;
        }

        /* Content Fade-in animation */
        .hero-fade {
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
       
 /*second section*/
  /* =============================
   ABOUT SECTION
============================= */

.about-section {
    padding: 80px 20px;
    background: #f7f9fc;
    font-family: 'Poppins', sans-serif;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT SIDE */
.about-media {
    flex: 1;
}

.video-card {
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    background: transparent;
}

.video-card iframe {
    width: 100%;
    height: 500px; /* bigger desktop size */
    display: block;
    border: none;
}


/* RIGHT SIDE */
.about-content {
    flex: 1;
}

.about-badge {
    background: #e9f1ff;
    color: #2563eb;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.about-content h2 {
    font-size: 42px;
    margin: 15px 0 20px;
    font-weight: 700;
}

.about-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
}

.highlight {
    color: #ff6b00;
    font-weight: 600;
}

/* FEATURES GRID */
.about-features {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-box {
    background: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* BUTTONS */
.about-buttons {
    margin-top: 30px;
    display: flex;
    gap: 18px;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37,99,235,0.4);
}

.btn-outline {
    border: 2px solid #2563eb;
    color: #2563eb;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #2563eb;
    color: #fff;
}

/* =============================
   RESPONSIVE
============================= */

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .video-card iframe {
        height: 260px;
    }

    .about-buttons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .about-features {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
        font-size: 26px;
    }
}

/*section 3*/
/* ===============================
   4TH DIMENSION SECTION
=============================== */

.dimension-section{
  padding:100px 20px;
  text-align:center;
  color:#fff;
  position:relative;
  overflow:hidden;

  background: linear-gradient(135deg,#1f4fbf,#2e6bd9,#3c82f6);
}

/* decorative circles */
.dimension-section::before,
.dimension-section::after{
  content:"";
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.15);
}

.dimension-section::before{
  width:220px;
  height:220px;
  top:-60px;
  left:-60px;
}

.dimension-section::after{
  width:300px;
  height:300px;
  right:-80px;
  bottom:-80px;
}

.dimension-container{
  max-width:1200px;
  margin:auto;
}

/* Badge */
.dimension-badge{
  background:#4c7dff;
  padding:6px 18px;
  border-radius:20px;
  font-size:14px;
  display:inline-block;
  margin-bottom:20px;
}

/* Title */
.dimension-title{
  font-size:42px;
  font-weight:700;
  margin-bottom:15px;
}

.dimension-title span{
  color:#ff8c00;
}

/* Subtitle */
.dimension-subtitle{
  max-width:700px;
  margin:auto;
  opacity:0.9;
  margin-bottom:60px;
}

/* Cards Layout */
.dimension-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  margin-bottom:60px;
}

/* Card Style */
.dimension-card{
  background:rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius:18px;
  padding:40px 25px;
  transition:0.4s ease;
  cursor:pointer;
}

/* ICON */
.dimension-card .icon{
  font-size:36px;
  margin-bottom:15px;
}

/* HOVER ZOOM OUT EFFECT */
.dimension-card:hover{
  transform: scale(0.92) translateY(-8px);
  background:rgba(255,255,255,0.2);
}

/* Focus Card */
.focus{
  border:2px solid #ff8c00;
  position:relative;
}

.focus-tag{
  display:inline-block;
  margin-top:12px;
  font-size:12px;
  padding:4px 12px;
  background:#ff8c00;
  border-radius:12px;
}

/* Bottom text */
.dimension-bottom-text{
  max-width:800px;
  margin:auto;
  font-size:15px;
  opacity:0.9;
}

.dimension-bottom-text span{
  color:#ff8c00;
  font-weight:600;
}

/* Responsive */
@media(max-width:768px){
  .dimension-title{
    font-size:28px;
  }
}

/* =========================
   Brain Training CTA Section
========================= */

.brain-cta {
  width: 100%;
  padding: 100px 20px;
  text-align: center;

  /* Orange Gradient Background */
  background: linear-gradient(135deg, #ff7a00, #ff4d00);
  color: #ffffff;
}

/* Container */
.cta-container {
  max-width: 900px;
  margin: auto;
}

/* Badge */
.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 25px;
}

/* Title */
.cta-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

/* Subtitle */
.cta-subtitle {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 40px;
}

/* Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #ffffff;
  color: #2d6cff;
  font-weight: 600;
  font-size: 18px;

  padding: 16px 40px;
  border-radius: 40px;

  text-decoration: none;
  transition: 0.3s ease;
}

/* Hover */
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Arrow */
.arrow {
  font-size: 20px;
}


/* =========================
   Responsive
========================= */

/* Tablet */
@media (max-width: 992px) {
  .cta-title {
    font-size: 38px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .brain-cta {
    padding: 70px 20px;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-subtitle {
    font-size: 15px;
  }

  .cta-btn {
    padding: 14px 30px;
    font-size: 16px;
  }
}

/* =============================
   SECTION
============================= */

.programs-section {
  padding: 100px 20px;
  background: #f8fafc;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.section-badge {
  background: #e9f2ff;
  color: #2d6cff;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 16px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
}

.section-title span {
  color: #ff6b00;
}

.section-subtitle {
  max-width: 680px;
  margin: 15px auto 50px;
  color: #666;
}


/* =============================
   GRID
============================= */

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}


/* =============================
   CARD
============================= */

.program-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  text-align: left;
  position: relative;
  overflow: hidden;

  transition: all 0.35s ease;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

/* TOP LINE */
.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
}

/* BOTTOM LINE (hidden) */
.program-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 5px;
  transform: translateX(-50%);
  transition: 0.35s ease;
}

/* Hover */
.program-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.program-card:hover::after {
  width: 100%;
}


/* =============================
   LOGO
============================= */

.card-logo {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  margin-bottom: 18px;
  transition: 0.3s;
}

.card-logo img {
  max-width: 100px;
}

.program-card:hover .card-logo {
  transform: scale(1.12);
}


/* =============================
   TEXT
============================= */

.program-card h3 {
  font-size: 20px;
  color: #2d6cff;
  margin-bottom: 6px;
}

.program-card h4 {
  font-size: 14px;
  color: #ff6b00;
  margin-bottom: 12px;
}

.program-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
}


/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tags span {
  background: #f1f3f5;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 20px;
}


/* Button */
.learn-btn {
  color: #2d6cff;
  font-weight: 600;
  text-decoration: none;
}


/* =============================
   COLORS
============================= */

.pink::before, .pink::after { background:#ff4fa3; }
.blue::before, .blue::after { background:#2d6cff; }
.purple::before, .purple::after { background:#8a5cff; }
.red::before, .red::after { background:#ff4d4d; }
.green::before, .green::after { background:#18b26b; }


/* =============================
   RESPONSIVE
============================= */

@media (max-width: 992px) {
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .program-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }

  .program-card {
    padding: 22px;
  }
}

/* =============================
   SECTION
============================= */

.journey-section{
  padding:100px 20px;
  background:#f8fafc;
}

.container{
  max-width:1200px;
  margin:auto;
}

/* Header */
.journey-title{
  text-align:center;
  font-size:42px;
  font-weight:800;
}
.journey-title span{color:#ff6b00;}

.journey-badge{
  display:block;
  margin:0 auto 12px;
  width:fit-content;
  background:#eaf1ff;
  color:#2d6cff;
  padding:6px 16px;
  border-radius:20px;
  font-size:13px;
}

/* =============================
   LAYOUT
============================= */

.journey-wrapper{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:70px;
  margin-top:70px;
}


/* =============================
   LEFT SIDE
============================= */

.journey-left{
  position:relative;
  padding-left:70px;
}

/* line */
.timeline-line{
  position:absolute;
  left:28px;
  top:0;
  width:3px;
  height:100%;
  background:#e2e8f0;
}

.timeline-progress{
  width:100%;
  height:0%;
  background:#2d6cff;
  transition:height .3s linear;
}

/* step */
.step{
  display:flex;
  gap:18px;
  margin-bottom:60px;
  opacity:.35;
  transition:.3s;
}

.step.active{
  opacity:1;
  transform:translateX(6px);
}

/* number */
.step-num{
  width:40px;
  height:40px;
  border-radius:50%;
  background:#2d6cff;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}

/* card */
.step-card{
  background:#fff;
  padding:24px;
  border-radius:14px;
  box-shadow:0 8px 25px rgba(0,0,0,.08);
  border:2px solid transparent;
  transition:.3s;
}

.step.active .step-card{
  border-color:#2d6cff;
}

/* text */
.step-label{
  color:#ff6b00;
  font-size:13px;
}

.mini-badge{
  background:#edf2ff;
  padding:6px 12px;
  border-radius:20px;
  font-size:12px;
  margin-top:10px;
  display:inline-block;
}


/* =============================
   RIGHT SIDE PANEL
============================= */

.journey-right{
  position:sticky;
  top:120px;
  height:420px;
}

.panel{
  height:100%;
  border-radius:24px;
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:40px;
  background:linear-gradient(135deg,#2d6cff,#5b8cff);
  transition:.4s;
}

.panel h3{
  font-size:26px;
  margin-bottom:14px;
}

.panel-badge{
  background:rgba(255,255,255,.2);
  padding:10px 20px;
  border-radius:30px;
}


/* =============================
   RESPONSIVE
============================= */

@media(max-width:900px){
  .journey-wrapper{
    grid-template-columns:1fr;
  }

  .journey-right{
    position:relative;
    top:auto;
    height:260px;
    margin-top:40px;
  }
}

/*section jernoy*/

        .step-card {
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .step-number {
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .active-card {
            transform: scale(1.02);
        }

        .line-progress {
            transition: height 0.3s ease-out;
        }

        .feature-card {
            animation: fadeSlideIn 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes fadeSlideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .circle-decoration {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Hero section styling */
        .hero-section {
            min-height: 50vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        /* Spacer for scroll effect */
        .scroll-spacer {
            min-height: 50vh;
        }
        /* Card hover effects */
        .journey-card {
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: visible;
        }

        .journey-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        /* Background line behind card */
        .journey-card::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: calc(100% + 2px);
            height: calc(100% + 2px);
            border-radius: 1rem;
            z-index: -1;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Card background tint on hover */
        .card-blue:hover {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
        }

        .card-blue::before {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 197, 253, 0.1) 100%);
        }

        .card-orange:hover {
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
        }

        .card-orange::before {
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(251, 146, 60, 0.1) 100%);
        }

        .card-green:hover {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
        }

        .card-green::before {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(52, 211, 153, 0.1) 100%);
        }

        .card-purple:hover {
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
        }

        .card-purple::before {
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(192, 132, 252, 0.1) 100%);
        }

        /* Bottom line animation */
        .journey-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .journey-card:hover::after {
            transform: scaleX(1);
        }

        /* Individual card colors for bottom line */
        .card-blue::after {
            background: linear-gradient(90deg, #3b82f6, #2563eb);
        }

        .card-orange::after {
            background: linear-gradient(90deg, #f97316, #ea580c);
        }

        .card-green::after {
            background: linear-gradient(90deg, #10b981, #059669);
        }

        .card-purple::after {
            background: linear-gradient(90deg, #a855f7, #9333ea);
        }

        /* Number badge styles */
        .number-badge {
            transition: all 0.3s ease;
        }

        .journey-card:hover .number-badge {
            transform: scale(1.1) rotate(-5deg);
        }

        /* Icon animation */
        .icon-wrapper {
            transition: all 0.3s ease;
        }

        .journey-card:hover .icon-wrapper {
            transform: scale(1.1);
        }

        /* Connecting line styles */
        .connecting-line {
            position: absolute;
            top: 50%;
            right: -12%;
            width: 24%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
        }

        @media (max-width: 1024px) {
            .connecting-line {
                display: none;
            }
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Badge animation */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .float-badge {
            animation: float 3s ease-in-out infinite;
        }

        /* Sparkle that appears on all cards on hover */
        .sparkle-icon {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.5rem;
            opacity: 0;
            transform: scale(0) rotate(0deg);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .journey-card:hover .sparkle-icon {
            opacity: 1;
            transform: scale(1) rotate(180deg);
        }

        /* Responsive grid adjustments */
        @media (max-width: 640px) {
            .journey-card {
                margin-bottom: 1rem;
            }
        }
/* =====================================
   BRAIN VOYAGES CTA SECTION
   (conflict-free names)
===================================== */

.bv-cta-section{
  width:100%;
  padding:90px 20px;
  background:linear-gradient(135deg,#2f62d6,#2b5bc8);
  text-align:center;
  font-family:'Poppins',sans-serif;
  color:#fff;
}

/* container */
.bv-cta-container{
  max-width:900px;
  margin:auto;
}

/* badge */
.bv-cta-badge{
  display:inline-block;
  padding:7px 18px;
  background:rgba(255,255,255,0.18);
  border-radius:30px;
  font-size:14px;
  margin-bottom:25px;
  backdrop-filter:blur(6px);
}

/* title */
.bv-cta-title{
  font-size:38px;
  font-weight:700;
  margin-bottom:14px;
}

/* subtitle */
.bv-cta-subtitle{
  font-size:16px;
  opacity:.9;
  margin-bottom:40px;
}

/* button */
.bv-cta-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#fff;
  color:#2f62d6;
  padding:14px 36px;
  border-radius:40px;
  font-weight:600;
  text-decoration:none;
  font-size:15px;

  transition:all .35s ease;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
}

/* hover effect */
.bv-cta-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,.25);
}

.bv-cta-arrow{
  transition:transform .3s;
}

.bv-cta-btn:hover .bv-cta-arrow{
  transform:translateX(6px);
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:992px){
  .bv-cta-title{
    font-size:30px;
  }
}

@media(max-width:600px){
  .bv-cta-section{
    padding:70px 15px;
  }

  .bv-cta-title{
    font-size:24px;
    line-height:1.4;
  }

  .bv-cta-subtitle{
    font-size:14px;
  }

  .bv-cta-btn{
    padding:12px 26px;
    font-size:14px;
  }
}


/* Memory Test Competition card hover effects */
        .memory-comp-card {
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        .memory-comp-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        /* Bottom line animation on hover */
        .memory-comp-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .memory-comp-card:hover::after {
            transform: scaleX(1);
        }

        /* Individual card bottom line colors */
        .mem-card-lvl1::after {
            background: linear-gradient(90deg, #3b82f6, #60a5fa);
        }

        .mem-card-lvl2::after {
            background: linear-gradient(90deg, #3b82f6, #60a5fa);
        }

        .mem-card-lvl3::after {
            background: linear-gradient(90deg, #3b82f6, #60a5fa);
        }

        /* Logo zoom on hover */
        .memory-comp-card:hover .mem-logo-icon {
            transform: scale(1.15);
        }

        .mem-logo-icon {
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        /* Scroll animation - cards come from bottom */
        .memory-comp-card {
            opacity: 0;
            transform: translateY(60px);
        }

        .memory-comp-card.mem-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered animation delays */
        .memory-comp-card:nth-child(1) {
            transition: all 0.6s ease 0.1s;
        }

        .memory-comp-card:nth-child(2) {
            transition: all 0.6s ease 0.3s;
        }

        .memory-comp-card:nth-child(3) {
            transition: all 0.6s ease 0.5s;
        }

        /* Level badge animation */
        .mem-level-badge {
            transition: all 0.3s ease;
        }

        .memory-comp-card:hover .mem-level-badge {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Button hover effects */
        .mem-btn-primary {
            transition: all 0.3s ease;
        }

        .mem-btn-primary:hover {
            transform: translateX(5px);
        }

        .mem-btn-secondary {
            transition: all 0.3s ease;
        }

        .mem-btn-secondary:hover {
            background: #3b82f6;
            color: white;
        }

        /* Star icon animation */
        @keyframes memStarTwinkle {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.2); }
        }

        .mem-star-icon {
            animation: memStarTwinkle 2s ease-in-out infinite;
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .memory-comp-card:hover {
                transform: translateY(-10px);
            }
        }

        @media (max-width: 768px) {
            .memory-comp-card:hover {
                transform: translateY(-8px);
            }
            
            .memory-comp-card {
                transform: translateY(40px);
            }
            
            .memory-comp-card.mem-visible {
                transform: translateY(0);
            }
        }

        @media (max-width: 640px) {
            .memory-comp-card:hover {
                transform: translateY(-6px);
            }
        }



        /* Expert talk card hover effects */
        .expert-talk-card {
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        .expert-talk-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        /* Bottom line animation on hover */
        .expert-talk-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .expert-talk-card:hover::after {
            transform: scaleX(1);
        }

        /* Individual card bottom line colors */
        .talk-card-1::after {
            background: linear-gradient(90deg, #3b82f6, #60a5fa);
        }

        .talk-card-2::after {
            background: linear-gradient(90deg, #3b82f6, #60a5fa);
        }

        .talk-card-3::after {
            background: linear-gradient(90deg, #3b82f6, #60a5fa);
        }

        /* Icon zoom on hover */
        .expert-talk-card:hover .talk-icon {
            transform: scale(1.15);
        }

        .talk-icon {
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        /* Scroll animation - cards come from bottom */
        .expert-talk-card {
            opacity: 0;
            transform: translateY(60px);
        }

        .expert-talk-card.talk-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered animation delays */
        .expert-talk-card:nth-child(1) {
            transition: all 0.6s ease 0.1s;
        }

        .expert-talk-card:nth-child(2) {
            transition: all 0.6s ease 0.3s;
        }

        .expert-talk-card:nth-child(3) {
            transition: all 0.6s ease 0.5s;
        }

        /* Organizer tag animation */
        .talk-organizer {
            transition: all 0.3s ease;
        }

        .expert-talk-card:hover .talk-organizer {
            transform: scale(1.05);
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Link hover effect */
        .talk-link {
            transition: all 0.3s ease;
        }

        .talk-link:hover {
            transform: translateX(5px);
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .expert-talk-card:hover {
                transform: translateY(-10px);
            }
        }

        @media (max-width: 768px) {
            .expert-talk-card:hover {
                transform: translateY(-8px);
            }
            
            .expert-talk-card {
                transform: translateY(40px);
            }
            
            .expert-talk-card.talk-visible {
                transform: translateY(0);
            }
        }

        @media (max-width: 640px) {
            .expert-talk-card:hover {
                transform: translateY(-6px);
            }
        }

/* =================================
   SECTION
================================= */

.bv-achieve-sec{
  position:relative;
  padding:100px 20px;
  overflow:hidden;
  background:linear-gradient(135deg,#2d63d6,#1e4fb6);
  color:#fff;
  text-align:center;
  font-family:'Poppins',sans-serif;
}

.bv-container{
  max-width:1200px;
  margin:auto;
}

/* Heading */

.bv-tag{
  background:rgba(255,255,255,.15);
  padding:8px 18px;
  border-radius:50px;
  font-size:14px;
  display:inline-block;
  margin-bottom:20px;
}

.bv-title{
  font-size:38px;
  font-weight:700;
}

.bv-title span{
  color:#ff8a00;
}

.bv-subtitle{
  margin:12px 0 55px;
  opacity:.9;
}

/* =================================
   STATS
================================= */

.bv-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  margin-bottom:60px;
}
.bv-stat-card p {
  color: #2c0dda;
}

.bv-stat-card{
  padding:30px 20px;
  border-radius:16px;
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(10px);

  transform:translateY(70px);
  opacity:0;
  transition:.5s;
}

.bv-stat-card.bv-show{
  transform:translateY(0);
  opacity:1;
}

.bv-stat-card:hover{
  transform:translateY(-10px) scale(1.05);
  background:rgba(255,255,255,.22);
}

.bv-stat-card h3{
  font-size:32px;
  margin-bottom:8px;
}

/* =================================
   BADGES
================================= */

.bv-badges{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:18px;
}

.bv-badge{
  padding:12px 20px;
  border-radius:40px;
  background:rgba(255,255,255,.15);

  transform:translateY(70px);
  opacity:0;
  transition:.5s;
}

.bv-badge.bv-show{
  transform:translateY(0);
  opacity:1;
}

.bv-badge:hover{
  background:#ff8a00;
  transform:scale(1.08);
}

/* =================================
   FLOATING CIRCLES
================================= */

.bv-circle{
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.15);
}

.c1{width:200px;height:200px;left:-60px;top:40px;}
.c2{width:280px;height:280px;right:-80px;bottom:40px;}
.c3{width:160px;height:160px;right:30%;top:60%;}

/* =================================
   RESPONSIVE
================================= */

@media(max-width:1024px){
  .bv-stats{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:600px){
  .bv-stats{grid-template-columns:1fr;}
  .bv-title{font-size:26px;}
}

/* SECTION */
.bv-testimonial{
  padding:20px 0;
  background:#f9fbff;
  overflow:hidden;
}

.container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
  text-align:center;
}

.bv-title{
  font-size:34px;
  font-weight:700;
  margin-bottom:10px;
}

.bv-title span{
  color:#ff7a00;
}

.bv-subtitle{
  color:#6b7280;
  margin-bottom:40px;
}

/* SLIDER */
.bv-slider{
  overflow:hidden;
}

.bv-track{
  display:flex;
  gap:25px;
  transition:transform .6s ease;
}

/* CARD */
.bv-card{
  background:#fff;
  min-width:calc(33.33% - 17px);
  padding:30px;
  border-radius:16px;
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
  text-align:left;
}

.quote{
  font-size:32px;
  color:#cbd5e1;
}

.stars{
  color:#ff7a00;
  margin:10px 0;
}

.bv-card p{
  font-size:14px;
  color:#4b5563;
  line-height:1.6;
}

.user{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:20px;
}

.avatar{
  width:40px;
  height:40px;
  border-radius:50%;
  background:#2563eb;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}

/* CONTROLS */
.bv-controls{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:20px;
  margin-top:30px;
}

.bv-controls button{
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  background:#2563eb;
  color:#fff;
  font-size:18px;
  cursor:pointer;
}

.bv-dots{
  display:flex;
  gap:6px;
}

.bv-dots span{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#cbd5e1;
}

.bv-dots .active{
  background:#2563eb;
}

/* RESPONSIVE */
@media(max-width:1024px){
  .bv-card{ min-width:calc(50% - 15px); }
}

@media(max-width:600px){
  .bv-card{ min-width:100%; }
}
/* =========================
   STATS ROW
========================= */

.bv-stats{
  margin-top:70px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  text-align:center;
  gap:20px;
}

.bv-stat h3{
  color:#2563eb;
  font-size:28px;
  font-weight:700;
  margin-bottom:6px;
}

.bv-stat p{
  color:#6b7280;
  font-size:14px;
}

/* Responsive */
@media(max-width:768px){
  .bv-stats{
    grid-template-columns:repeat(2,1fr);
    row-gap:30px;
  }
}

@media(max-width:480px){
  .bv-stats{
    grid-template-columns:1fr;
  }
}

/* ==============================
   CTA OPPORTUNITY SECTION
============================== */

.bv-cta-opportunity{
  background: linear-gradient(135deg,#2f63d8,#3f7df2);
  padding:90px 20px;
  text-align:center;
  position:relative;
  overflow:hidden;
}

/* subtle soft glow circles (same feel as screenshot) */
.bv-cta-opportunity::before,
.bv-cta-opportunity::after{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  filter:blur(10px);
}

.bv-cta-opportunity::before{
  top:-120px;
  left:-120px;
}

.bv-cta-opportunity::after{
  bottom:-120px;
  right:-120px;
}


/* container */
.bv-cta-wrap{
  max-width:800px;
  margin:auto;
}


/* badge */
.bv-cta-badge{
  display:inline-block;
  background:rgba(255,255,255,0.15);
  color:#fff;
  padding:8px 18px;
  border-radius:50px;
  font-size:14px;
  margin-bottom:25px;
  backdrop-filter:blur(6px);
}


/* title */
.bv-cta-title{
  color:#fff;
  font-size:40px;
  font-weight:700;
  margin-bottom:14px;
}


/* subtitle */
.bv-cta-subtitle{
  color:rgba(255,255,255,0.9);
  font-size:16px;
  margin-bottom:35px;
}


/* button */
.bv-cta-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#fff;
  color:#2563eb;
  padding:14px 34px;
  border-radius:50px;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 8px 25px rgba(0,0,0,0.15);
  transition:0.3s;
}

.bv-cta-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 30px rgba(0,0,0,0.25);
}

.bv-cta-btn span{
  transition:0.3s;
}

.bv-cta-btn:hover span{
  transform:translateX(5px);
}


/* ==============================
   RESPONSIVE
============================== */

@media(max-width:768px){

  .bv-cta-title{
    font-size:30px;
  }

  .bv-cta-subtitle{
    font-size:14px;
  }

  .bv-cta-opportunity{
    padding:70px 18px;
  }
}

@media(max-width:480px){

  .bv-cta-title{
    font-size:24px;
  }

  .bv-cta-btn{
    padding:12px 26px;
    font-size:14px;
  }
}

/* =============================
   MEDIA SECTION
============================= */

.bv-media-section{
  padding:90px 20px;
  background:#f8fbff;
  text-align:center;
  overflow:hidden;
}

.bv-container{
  max-width:1200px;
  margin:auto;
}

.bv-badge{
  display:inline-block;
  padding:8px 18px;
  background:#e8f1ff;
  color:#2563eb;
  font-weight:600;
  border-radius:20px;
  font-size:13px;
  margin-bottom:20px;
}

.bv-title{
  font-size:40px;
  font-weight:800;
  margin-bottom:10px;
}

.bv-title span{
  color:#ff7a00;
}

.bv-subtitle{
  color:#ffffff;
  
}


/* =============================
   MARQUEE
============================= */

.bv-marquee{
  overflow:hidden;
  width:100%;
  margin-bottom:60px;
}

.bv-marquee-track{
  display:flex;
  gap:30px;
  animation:bv-scroll 25s linear infinite;
}

.bv-marquee:hover .bv-marquee-track{
  animation-play-state:paused;
}

/* logo cards */
.bv-logo{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 28px;
  background:#fff;
  border-radius:12px;
  font-weight:600;
  box-shadow:0 5px 18px rgba(0,0,0,0.06);
  border:1px solid #eef2f7;
  white-space:nowrap;
  flex:0 0 auto;
  transition:.3s;
}

.bv-logo i{
  font-size:18px;
  color:#2563eb;
}

.bv-logo:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 22px rgba(0,0,0,0.12);
}

/* animation */
@keyframes bv-scroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}


/* =============================
   STATS
============================= */

.bv-media-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.bv-stat-card{
  background:#fff;
  padding:40px 25px;
  border-radius:18px;
  box-shadow:0 8px 25px rgba(0,0,0,0.06);
  transition:.3s;
}

.bv-stat-card:hover{
  transform:translateY(-6px);
}

.bv-stat-card h3{
  font-size:32px;
  color:#2563eb;
  font-weight:800;
}

.bv-stat-title{
  font-weight:700;
  margin:6px 0;
}

.bv-stat-card span{
  color:#6b7280;
  font-size:14px;
}


/* =============================
   RESPONSIVE
============================= */

@media(max-width:992px){
  .bv-media-stats{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .bv-media-stats{
    grid-template-columns:1fr;
  }
  .bv-logo{
    font-size:14px;
    padding:12px 18px;
  }
}

/* =========================
   FAQ SECTION
========================= */

.bvfaq-section{
  background:#f8fafc;
  font-family:'Poppins',sans-serif;
}

.bvfaq-container{
  max-width:1000px;
  margin:auto;
  text-align:center;
}

.bvfaq-badge{
  background:#e7efff;
  color:#2563eb;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
}

.bvfaq-title{
  font-size:38px;
  font-weight:700;
  margin:15px 0;
}

.bvfaq-title span{
  color:#ff7a00;
}

.bvfaq-subtitle{
  color:#6b7280;
  margin-bottom:50px;
}

/* LIST */
.bvfaq-list{
  display:flex;
  flex-direction:column;
  gap:18px;
}

/* CARD */
.bvfaq-item{
  background:#fff;
  border-radius:14px;
  box-shadow:0 6px 20px rgba(0,0,0,.06);
  overflow:hidden;

  opacity:0;
  transform:translateX(-60px);
  transition:.7s;
}

/* alternating direction */
.bvfaq-item:nth-child(even){
  transform:translateX(60px);
}

.bvfaq-item.show{
  opacity:1;
  transform:translateX(0);
}

/* QUESTION */
.bvfaq-question{
  width:100%;
  background:none;
  border:none;
  padding:22px 25px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  text-align:left;
}

/* arrow */
.bvfaq-question i{
  transition:.3s;
  color:#2563eb;
}

.bvfaq-item.active i{
  transform:rotate(180deg);
}

/* ANSWER */
.bvfaq-answer{
  max-height:0;
  overflow:hidden;
  padding:0 25px;
  color:#6b7280;
  line-height:1.7;
  transition:max-height .4s ease, padding .3s ease;
}

.bvfaq-item.active .bvfaq-answer{
  padding:0 25px 22px;
  max-height:400px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){
  .bvfaq-title{font-size:28px;}
}

/* =========================
   BV Elevate Section
========================= */
.bvElevate-section{
  padding:110px 20px;
  background:linear-gradient(135deg,#0b1423,#0f1f38,#0b1423);
  color:#fff;
  text-align:center;
  overflow:hidden;
  margin-top: 20px;
}

.bvElevate-container{
  max-width:1200px;
  margin:auto;
}

/* Title */
.bvElevate-title{
  font-size:46px;
  font-weight:800;
  margin-bottom:15px;
}

.bvElevate-title span{
  color:#ff7a00;
}

.bvElevate-sub{
  max-width:720px;
  margin:auto;
  opacity:.85;
  line-height:1.7;
}

/* Cards */
.bvElevate-cards{
  display:flex;
  gap:30px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:60px;
}

.bvElevate-card{
  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(12px);
  border-radius:18px;
  padding:40px 30px;
  width:320px;
  border:1px solid rgba(255,255,255,0.1);
  transition:.35s;
}

.bvElevate-card:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 40px rgba(0,0,0,.35);
}

/* Icons */
.bvElevate-icon{
  width:60px;
  height:60px;
  background:#ff7a00;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 18px;
  font-size:22px;
}

/* Buttons */
.bvElevate-buttons{
  margin-top:45px;
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.bvElevate-btnPrimary{
  background:#ff7a00;
  color:#fff;
  padding:14px 34px;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.bvElevate-btnOutline{
  border:2px solid #fff;
  padding:14px 34px;
  border-radius:40px;
  text-decoration:none;
  color:#fff;
  transition:.3s;
}

.bvElevate-btnPrimary:hover,
.bvElevate-btnOutline:hover{
  transform:scale(1.08);
}

/* =========================
   Unique Scroll Animation
========================= */
.bvElevate-animate{
  opacity:0;
  transform:translateY(80px);
  transition:0.9s ease;
}

.bvElevate-show{
  opacity:1;
  transform:translateY(0);
}

/* Responsive */
@media(max-width:992px){
  .bvElevate-card{
    width:100%;
    max-width:420px;
  }
  .bvElevate-title{
    font-size:32px;
  }
}

@media(max-width:600px){
  .bvElevate-title{
    font-size:26px;
  }
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* icon image */
.feature-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

/* hover effect */
.feature-box:hover .feature-icon {
    transform: scale(1.15);
    transition: 0.3s ease;
}
/* center container */
.dimension-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* make icon white */
.dimension-card .icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;

    filter: brightness(0) invert(1); /* turns icon white */

    transition: transform 0.3s ease;
}

/* hover */
.dimension-card:hover .icon img {
    transform: scale(1.1);
}

.bv-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0 15px;
}

/* Tablet */
@media (max-width: 992px) {
    .bv-subtitle {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .bv-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }
}
/* =============================
   Footer
============================= */
.bv-footer{
    background:#1f4ea3;
    color:#fff;
    padding-top:60px;
    font-size:14px;
}

/* container */
.footer-container{
    width:90%;
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap:50px;
}

/* logo */
.footer-logo{
    height:90px;
    margin-bottom:18px;
    margin-left: 20px;
}

/* about text */
.footer-about p{
    line-height:1.7;
    margin-bottom:20px;
    opacity:0.9;
}

/* headings */
.footer-col h3{
    margin-bottom:18px;
    font-size:16px;
    font-weight:600;
    position:relative;
}

/* list */
.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:10px;
}

/* links */
.footer-col a{
    color:#fff;
    text-decoration:none;
    opacity:0.9;
    transition:0.3s;
}

.footer-col a:hover{
    opacity:1;
    padding-left:6px;
}

/* social icons */
.social-icons{
    display:flex;
    gap:10px;
}

.social-icons a{
    width:36px;
    height:36px;
    border-radius:50%;
    background:rgba(255,255,255,0.15);

    display:flex;
    align-items:center;
    justify-content:center;

    transition:0.3s;
}

.social-icons a:hover{
    background:#ff7a00;
}

/* contact icons */
.contact-info i{
    margin-right:8px;
}

/* bottom bar */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.2);
    margin-top:50px;
    padding:20px 5%;

    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
}

.footer-links{
    display:flex;
    gap:20px;
}


/* =============================
   Mobile Responsive
============================= */
@media(max-width:992px){

    .footer-container{
        grid-template-columns: 1fr 1fr;
        gap:40px;
    }
}

@media(max-width:600px){

    .footer-container{
        grid-template-columns: 1fr;
        text-align:center;
    }

    .social-icons{
        justify-content:center;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }
}
/* =================================
   HERO SECTION MOBILE FIX
================================= */

@media (max-width:768px){

  /* container spacing */
  .hero,
  .hero-section,
  .banner,
  .home-hero{
    padding:80px 20px 60px !important;
    text-align:center;
  }

  /* big title */
  .hero h1,
  .hero-title{
    font-size:28px !important;
    line-height:1.3 !important;
    word-break:break-word;
  }

  /* subtitle text */
  .hero p,
  .hero-subtitle{
    font-size:15px !important;
    line-height:1.6;
  }

  /* badge pill */
  .hero-badge,
  .top-pill{
    font-size:13px;
    padding:8px 14px;
  }

  /* remove overflow */
  .hero *{
    max-width:100%;
  }

  /* fix left/right cut issue */
  body{
    overflow-x:hidden;
  }

  /* better button layout */
  .hero-buttons{
    display:flex;
    flex-direction:column;
    gap:12px;
    align-items:center;
  }

  .hero-buttons a{
    width:100%;
    max-width:260px;
  }

}


/* WhatsApp Icon */
#whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

#whatsapp-icon img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  padding: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}


    /* Popup Overlay */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            padding: 20px;
            animation: fadeIn 0.3s ease-in;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Popup Container */
        .popup-container {
            background: white;
            border-radius: 20px;
            max-width: 750px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.4s ease-out;
            position: relative;
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Close Button */
        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 35px;
            height: 35px;
            background: #f44336;
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .close-btn:hover {
            background: #d32f2f;
            transform: rotate(90deg);
        }

        /* Image Section */
        .image-section {
            background: linear-gradient(135deg, #667eea 0%, #24348f 100%);
            padding: 25px 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
        }

.student-image {
    width: 100%;
    max-width: 400px;   /* Increased size */
    height: auto;
    object-fit: contain;  /* Important */
    background: transparent;
    animation: float 3s ease-in-out infinite;
}


        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .image-text {
            color: white;
            text-align: center;
            margin-top: 15px;
        }

        .image-text h3 {
            font-size: 20px;
            margin-bottom: 5px;
        }

        .image-text p {
            font-size: 13px;
            opacity: 0.9;
        }

        /* Form Section */
        .form-section {
            padding: 30px 35px;
            background: white;
        }

        .form-header {
            margin-bottom: 20px;
        }

        .form-header h2 {
            color: #333;
            font-size: 24px;
            margin-bottom: 5px;
        }

        .form-header p {
            color: #666;
            font-size: 13px;
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            color: #333;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .form-group input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 14px;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(12, 38, 151, 0.1);
        }

        .submit-btn {
            width: 100%;
            padding: 13px;
            background: linear-gradient(135deg, #667eea 0%, #2240ec 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 5px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .popup-container {
                grid-template-columns: 1fr;
                max-width: 500px;
            }

            .image-section {
                padding: 30px 20px;
            }

            .student-image {
                max-width: 200px;
            }

            .image-text h3 {
                font-size: 20px;
            }

            .form-section {
                padding: 30px 25px;
            }

            .form-header h2 {
                font-size: 24px;
            }

            .timer {
                font-size: 28px;
            }
        }

        @media (max-width: 480px) {
            .popup-overlay {
                padding: 10px;
            }

            .form-section {
                padding: 25px 20px;
            }

            .form-header h2 {
                font-size: 22px;
            }

            .timer {
                font-size: 24px;
            }

            .form-group input {
                padding: 12px 15px;
                font-size: 14px;
            }

            .submit-btn {
                padding: 14px;
                font-size: 15px;
            }
        }

        /* Hidden class */
        .hidden {
            display: none !important;
        }

/* RESPONSIVE DESIGN IMPROVED */

@media (max-width: 992px) {
    .popup-container {
        max-width: 95%;
    }
}

/* Tablet */
@media (max-width: 768px) {

    .popup-container {
        grid-template-columns: 1fr;
        max-width: 95%;
        max-height: 90vh;
        overflow-y: auto;
        border-radius: 15px;
    }

    .image-section {
        padding: 25px 20px;
    }

    .student-image {
        max-width: 220px;
    }

    .image-text h3 {
        font-size: 18px;
    }

    .image-text p {
        font-size: 13px;
    }

    .form-section {
        padding: 25px 20px;
    }

    .form-header h2 {
        font-size: 22px;
    }

    .form-group input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 14px;
        font-size: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .popup-overlay {
        padding: 10px;
        align-items: flex-start;
    }

    .popup-container {
        width: 100%;
        border-radius: 12px;
    }

    .image-section {
        padding: 20px 15px;
    }

    .student-image {
        max-width: 180px;
    }

    .form-section {
        padding: 20px 15px;
    }

    .form-header h2 {
        font-size: 20px;
    }

    .form-header p {
        font-size: 12px;
    }

    .form-group input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 14px;
    }

    .close-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
        top: 10px;
        right: 10px;
    }
}





