   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

html, body{
  max-width:100%;
  overflow-x:hidden;
  font-family: 'Poppins', sans-serif;
}


/* 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);
}


/* ========================
   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%;
    left:0;

    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;
}

/* 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;
    margin-right: 30px;
}


/* ========================
   Mobile Drawer
======================== */
.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:75%;
    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;
    }
}

/* ========= RESET ========= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Poppins", sans-serif;
}

body{
  background:#f9fbff;
}

/* ========= HERO ========= */
.hero{
  padding:80px 8%;
  overflow:hidden;
}

.hero-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}


/* ========= LEFT ========= */
.hero-left{
  flex:1;

  /* animation */
  opacity:0;
  transform:translateX(-80px);
  animation:slideLeft .9s ease forwards;
}

.hero-logo{
  width:130px;
  margin-bottom:25px;
}
/* Mobile logo fix */
@media(max-width:992px){

  .hero-logo{
    width:100px;          /* smaller for mobile */
    display:block;        /* allows margin auto centering */
    margin:0 auto 20px;   /* center horizontally */
  }

}


.hero-title{
  font-size:48px;
  font-weight:700;
  color:#111;
  line-height:1.2;
}

.hero-title span{
  color:#2f63ff;
}

.hero-desc{
  margin:20px 0 30px;
  color:#555;
  line-height:1.7;
  max-width:560px;
}


/* ========= BUTTONS ========= */
.hero-btns{
  display:flex;
  gap:15px;
  margin-bottom:35px;
}

.btn{
  padding:12px 24px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.primary{
  background:#2f63ff;
  color:#fff;
}

.primary:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 18px rgba(0,0,0,.15);
}

.outline{
  border:2px solid #2f63ff;
  color:#2f63ff;
}

.outline:hover{
  background:#2f63ff;
  color:#fff;
}


/* ========= STATS ========= */
.hero-stats{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.stat-card{
  background:#fff;
  padding:18px 22px;
  border-radius:12px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  text-align:center;
  min-width:130px;
}

.stat-card h3{
  color:#2f63ff;
  font-size:20px;
  margin-bottom:6px;
}

.stat-card p{
  font-size:13px;
  color:#666;
}


/* ========= RIGHT ========= */
.hero-right{
  flex:1;
  display:flex;
  justify-content:center;

  /* animation */
  opacity:0;
  transform:translateX(80px);
  animation:slideRight .9s ease forwards;
  animation-delay:.3s;
}

.brain-wrapper{
  width:420px;
  height:420px;
  background:radial-gradient(circle,#ffffff,#eaf1ff);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
}


/* ========= IMAGE FLOAT ========= */
.brain-img{
  width:3000px;

  animation:
    float 3.5s ease-in-out infinite,
    fadeIn .9s ease forwards;
}


/* ========= ANIMATIONS ========= */

/* slide from left */
@keyframes slideLeft{
  to{
    opacity:1;
    transform:translateX(0);
  }
}

/* slide from right */
@keyframes slideRight{
  to{
    opacity:1;
    transform:translateX(0);
  }
}

/* smooth fade */
@keyframes fadeIn{
  from{opacity:0}
  to{opacity:1}
}

/* floating up-down */
@keyframes float{
  0%{transform:translateY(0)}
  50%{transform:translateY(-18px)}
  100%{transform:translateY(0)}
}


/* ========= RESPONSIVE ========= */
@media(max-width:992px){

  .hero-container{
    flex-direction:column;
    text-align:center;
  }

  .hero-desc{
    margin-left:auto;
    margin-right:auto;
  }

  .hero-btns{
    justify-content:center;
  }

  .hero-stats{
    justify-content:center;
  }

  .brain-wrapper{
    width:300px;
    height:300px;
    margin-top:40px;
  }

  .brain-img{
    width:500px;
  }

  .hero-title{
    font-size:34px;
  }

  /* reduce animation distance for mobile */
  .hero-left{
    transform:translateX(-40px);
  }

  .hero-right{
    transform:translateX(40px);
  }
}
/*section 2*/
/* ================= PROGRAM SECTION ================= */
/* ===== SECTION ===== */
.program{
  padding:30px 8%;
  background:#f7faff;
}

/* ===== header ===== */
.program-head{
  text-align:center;
  margin-bottom:60px;
}

.program-badge{
  background:#eaf1ff;
  color:#2f63ff;
  padding:8px 18px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
}

.program-title{
  font-size:42px;
  margin:18px 0 10px;
  font-weight:700;
}

.program-title span{
  color:#2f63ff;
}

.program-sub{
  color:#666;
  max-width:650px;
  margin:auto;
}

/* ===== GRID ===== */
.program-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* ===== CARD ===== */
.p-card{
  background:#fff;
  padding:28px 24px;
  border-radius:18px;
  border:2px solid transparent;
  box-shadow:0 10px 28px rgba(0,0,0,.07);
  transition:all .5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Initial hidden state */
  transform:translateY(50px);
  opacity:0;
}

/* Show animation */
.p-card.show{
  transform:translateY(0);
  opacity:1;
}

/* ===== text ===== */
.p-card h3{
  font-size:18px;
  margin-bottom:10px;
  color:#222;
  transition:color .3s;
}

.p-card p{
  font-size:14px;
  color:#666;
  line-height:1.6;
}

/* ===== top icon box ===== */
.p-top{
  width:64px;
  height:64px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  position:relative;
  overflow:visible;
}

/* Glow border for blue cards */
.p-card.blue .p-top{
  background:linear-gradient(135deg, #eaf1ff 0%, #d4e4ff 100%);
  border:2px solid #2f63ff;
  box-shadow:0 0 20px rgba(47,99,255,0.3),
             0 4px 12px rgba(47,99,255,0.2);
}

/* Glow border for orange cards */
.p-card.orange .p-top{
  background:linear-gradient(135deg, #fff4e6 0%, #ffe9cc 100%);
  border:2px solid #ff9500;
  box-shadow:0 0 20px rgba(255,149,0,0.3),
             0 4px 12px rgba(255,149,0,0.2);
}

/* image */
.p-top img{
  width:32px;
  height:32px;
  object-fit:contain;
  filter:none;
  animation:floatImage 3s ease-in-out infinite;
  transition:transform .3s ease;
}

/* Floating animation */
@keyframes floatImage {
  0%, 100% {
    transform:translateY(0px);
  }
  50% {
    transform:translateY(-8px);
  }
}

/* ===== hover effects ===== */
.p-card:hover{
  transform:translateY(-8px) scale(1.02);
  box-shadow:0 20px 45px rgba(0,0,0,.15);
}

/* Blue card hover glow */
.p-card.blue:hover{
  border-color:#2f63ff;
  box-shadow:0 20px 45px rgba(0,0,0,.15),
             0 0 30px rgba(47,99,255,0.4);
}

/* Orange card hover glow */
.p-card.orange:hover{
  border-color:#ff9500;
  box-shadow:0 20px 45px rgba(0,0,0,.15),
             0 0 30px rgba(255,149,0,0.4);
}

.p-card:hover h3{
  color:#2f63ff;
}

/* Pause float animation and scale image on card hover */
.p-card:hover .p-top img{
  animation-play-state:paused;
  transform:translateY(-8px) scale(1.15);
}

/* Enhanced icon box glow on hover */
.p-card.blue:hover .p-top{
  box-shadow:0 0 30px rgba(47,99,255,0.5),
             0 6px 16px rgba(47,99,255,0.3);
}

.p-card.orange:hover .p-top{
  box-shadow:0 0 30px rgba(255,149,0,0.5),
             0 6px 16px rgba(255,149,0,0.3);
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){
  .program-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .program-grid{
    grid-template-columns:1fr;
  }

  .program-title{
    font-size:28px;
  }
  
  .p-top{
    width:56px;
    height:56px;
  }
  
  .p-top img{
    width:28px;
    height:28px;
  }
}
/* ================= CREDENTIALS ================= */

.credentials{
  padding:0px 8%;
  background:#ffffff;
}

/* header */
.cred-head{
  text-align:center;
  margin-bottom:60px;
}

.cred-badge{
  background:#eaf1ff;
  color:#2f63ff;
  padding:8px 18px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
  transition:all 0.3s ease;
}

.cred-badge:hover{
  background:#2f63ff;
  color:#fff;
  transform:scale(1.05);
}

.cred-title{
  font-size:42px;
  margin:18px 0 10px;
  font-weight:700;
}

.cred-title span{
  color:#2f63ff;
  position:relative;
  display:inline-block;
}

/* Animated underline for title */
.cred-title span::after{
  content:'';
  position:absolute;
  bottom:-4px;
  left:0;
  width:100%;
  height:3px;
  background:linear-gradient(90deg, #2f63ff, #5d87ff);
  border-radius:2px;
  animation:pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity:1;
    transform:scaleX(1);
  }
  50% {
    opacity:0.7;
    transform:scaleX(0.95);
  }
}

.cred-sub{
  color:#666;
  max-width:650px;
  margin:auto;
}

/* grid */
.cred-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* card */
.c-card{
  background:#fff;
  padding:30px 24px;
  border-radius:16px;
  border:2px solid transparent;
  box-shadow:0 10px 28px rgba(0,0,0,.07);
  transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position:relative;
  overflow:hidden;
  cursor:pointer;

  opacity:0;
  transform:translateY(40px);
}

.c-card.show{
  opacity:1;
  transform:translateY(0);
}

/* Glow effect background */
.c-glow{
  position:absolute;
  top:50%;
  left:50%;
  width:0;
  height:0;
  border-radius:50%;
  transform:translate(-50%, -50%);
  transition:all 0.5s ease;
  opacity:0;
  z-index:0;
}

.c-card.blue .c-glow{
  background:radial-gradient(circle, rgba(47,99,255,0.15) 0%, transparent 70%);
}

.c-card.orange .c-glow{
  background:radial-gradient(circle, rgba(255,140,47,0.15) 0%, transparent 70%);
}

/* icon container */
.c-icon{
  width:58px;
  height:58px;
  margin-bottom:18px;
  background:linear-gradient(135deg, #f0f4ff 0%, #e0e8ff 100%);
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  z-index:1;
  transition:all 0.4s ease;
  border:2px solid #2f63ff;
  box-shadow:0 4px 15px rgba(47,99,255,0.2);
}

.c-card.orange .c-icon{
  background:linear-gradient(135deg, #fff4e6 0%, #ffe9cc 100%);
  border-color:#ff8c2f;
  box-shadow:0 4px 15px rgba(255,140,47,0.2);
}

/* icon svg */
.c-icon svg{
  width:28px;
  height:28px;
  stroke:#2f63ff;
  stroke-width:2.5;
  fill:none;
  transition:all 0.4s ease;
  animation:floatIcon 3s ease-in-out infinite;
}

.c-card.orange .c-icon svg{
  stroke:#ff8c2f;
}

/* Floating animation for icons */
@keyframes floatIcon {
  0%, 100% {
    transform:translateY(0px) rotate(0deg);
  }
  25% {
    transform:translateY(-6px) rotate(5deg);
  }
  50% {
    transform:translateY(0px) rotate(0deg);
  }
  75% {
    transform:translateY(-6px) rotate(-5deg);
  }
}

/* text */
.c-card h3{
  font-size:17px;
  margin-bottom:8px;
  transition:all 0.3s ease;
  position:relative;
  z-index:1;
  color:#222;
}

.c-card p{
  font-size:14px;
  color:#666;
  position:relative;
  z-index:1;
  transition:color 0.3s ease;
}

/* HOVER EFFECTS */
.c-card:hover{
  transform:translateY(-12px) scale(1.03);
  box-shadow:0 20px 50px rgba(0,0,0,.15);
}

/* Blue card hover */
.c-card.blue:hover{
  border-color:#2f63ff;
  box-shadow:0 20px 50px rgba(0,0,0,.15),
             0 0 40px rgba(47,99,255,0.4),
             inset 0 0 20px rgba(47,99,255,0.1);
}

/* Orange card hover */
.c-card.orange:hover{
  border-color:#ff8c2f;
  box-shadow:0 20px 50px rgba(0,0,0,.15),
             0 0 40px rgba(255,140,47,0.4),
             inset 0 0 20px rgba(255,140,47,0.1);
}

/* Glow expansion on hover */
.c-card:hover .c-glow{
  width:300px;
  height:300px;
  opacity:1;
}

/* Icon effects on hover */
.c-card:hover .c-icon{
  transform:scale(1.15) rotate(5deg);
  animation-play-state:paused;
}

.c-card.blue:hover .c-icon{
  box-shadow:0 8px 25px rgba(47,99,255,0.4),
             0 0 30px rgba(47,99,255,0.3);
  border-color:#2f63ff;
}

.c-card.orange:hover .c-icon{
  box-shadow:0 8px 25px rgba(255,140,47,0.4),
             0 0 30px rgba(255,140,47,0.3);
  border-color:#ff8c2f;
}

/* SVG scale and rotation on hover */
.c-card:hover .c-icon svg{
  transform:scale(1.2) rotate(-5deg);
  filter:drop-shadow(0 0 8px currentColor);
}

/* Text color change on hover - BLUE cards */
.c-card.blue:hover h3{
  color:#2f63ff;
  transform:translateX(4px);
}

/* Text color change on hover - ORANGE cards */
.c-card.orange:hover h3{
  color:#ff8c2f;
  transform:translateX(4px);
}

.c-card:hover p{
  color:#555;
  transform:translateX(4px);
}

/* Ripple effect on click */
.c-card:active{
  transform:translateY(-10px) scale(0.98);
}

/* responsive */
@media(max-width:992px){
  .cred-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .cred-grid{
    grid-template-columns:1fr;
  }

  .cred-title{
    font-size:28px;
  }
  
  .c-icon{
    width:52px;
    height:52px;
  }
  
  .c-icon svg{
    width:24px;
    height:24px;
  }
}
/* ================= POWER SECTION ================= */

.power{
  padding:100px 8%;
  background:#f9fbff;
  overflow:hidden;
}

.power-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:70px;
}


/* ---------- LEFT ---------- */
.power-left{
  flex:1;
}

.power-badge{
  background:#ffe8da;
  color:#ff7a00;
  padding:7px 16px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
}

.power-title{
  font-size:44px;
  margin:20px 0;
  font-weight:700;
}

.power-title span{
  color:#ff7a00;
}

.power-left p{
  color:#555;
  line-height:1.8;
  margin-bottom:16px;
}

.highlight{
  color:#ff7a00;
}

.bluediemension{
  color:#ff8615;
}


/* ---------- RIGHT ---------- */
.power-right{
  flex:1;
  display:flex;
  justify-content:center;
}

.dimension-box{
  background:#fff;
  padding:35px;
  border-radius:18px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  width:100%;
  max-width:450px;
}

.dimension-title{
  font-size:20px;
  margin-bottom:22px;
  font-weight:600;
}


/* items */
.dimension-item{
  display:flex;
  align-items:center;
  gap:18px;
  background:#f5f7fb;
  padding:14px 18px;
  border-radius:12px;
  margin-bottom:14px;
  transition:.3s;
}

.dimension-item:hover{
  transform:translateX(5px);
}

.num{
  font-weight:700;
  color:#2f63ff;
  min-width:45px;
}

.orange{
  color:#fcfbfa;
}

.dimension-item h4{
  font-size:15px;
  margin-bottom:3px;
}

.dimension-item p{
  font-size:13px;
  color:#666;
}

/* highlight 4th */
.highlight-item{
  background:#fff3ea;
  border:2px solid #ff7a00;
}


/* ---------- SCROLL ANIMATION ---------- */
.reveal-left,
.reveal-right{
  opacity:0;
  transition:all .9s ease;
}

.reveal-left{
  transform:translateX(-80px);
}

.reveal-right{
  transform:translateX(80px);
}

.show-left{
  opacity:1;
  transform:translateX(0);
}

.show-right{
  opacity:1;
  transform:translateX(0);
}


/* ---------- RESPONSIVE ---------- */
@media(max-width:992px){

  .power-container{
    flex-direction:column;
    text-align:center;
  }

  .dimension-box{
    margin-top:40px;
  }

  .power-title{
    font-size:30px;
  }
}


/* ================= MIND ZONE ================= */

.mindzone{
  padding:100px 8%;
  background:linear-gradient(180deg,#2f63ff,#214dbb);
  color:#fff;
  position:relative;
  overflow:hidden;
    /* ✅ font added */
  font-family: 'Poppins', sans-serif;
}


/* ---------- header ---------- */
.mindzone-head{
  text-align:center;
  margin-bottom:60px;
}

.mz-badge{
  background:rgba(255,255,255,.15);
  padding:7px 16px;
  border-radius:20px;
  font-size:13px;
}

.mz-title{
  font-size:42px;
  margin:20px 0 10px;
  font-weight: 700;
}

.mz-title span{
  color:#ff9c33;
}

.mz-sub{
  max-width:750px;
  margin:auto;
  opacity:.9;
}


/* ---------- grid ---------- */
.mz-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}


/* ---------- card ---------- */
.mz-card{
  padding:38px 24px;
  border-radius:18px;
  backdrop-filter:blur(6px);
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  text-align:center;
  transition:.35s;

  opacity:0;
  transform:translateY(40px);
}

.mz-card.show{
  opacity:1;
  transform:translateY(0);
}


/* ---------- floating icon ---------- */
.mz-icon{
  font-size:44px;
  margin-bottom:18px;
  display:inline-block;
  animation:mzFloat 3.5s ease-in-out infinite;
}

@keyframes mzFloat{
  0%{transform:translateY(0)}
  50%{transform:translateY(-12px)}
  100%{transform:translateY(0)}
}


/* ---------- text ---------- */
.mz-card h3{
  margin-bottom:8px;
  font-size:18px;
}

.mz-card p{
  font-size:14px;
  opacity:.9;
}


/* ---------- hover (zoom OUT) ---------- */
.mz-card:hover{
  transform:scale(0.95);
  background:rgba(255,255,255,.14);
}


/* ---------- responsive ---------- */
@media(max-width:992px){
  .mz-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .mz-grid{
    grid-template-columns:1fr;
  }

  .mz-title{
    font-size:28px;
  }
}


/* ================= SECTION ================= */

.tb-section {
  padding: 90px 20px;
  background: #f8fbff;
  font-family: "Poppins", sans-serif;
}

.tb-container {
  max-width: 1250px;
  margin: auto;
}

/* Header */
.tb-header {
  text-align: center;
  margin-bottom: 60px;
}

.tb-badge {
  background: #fff3e8;
  color: #ff7a00;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

.tb-header h2 {
  font-size: 42px;
  margin: 15px 0;
  font-weight: 700;
}

.tb-header h2 span {
  color: #1f6bff;
}

.tb-header p {
  color: #666;
  max-width: 650px;
  margin: auto;
}

/* ================= GRID ================= */

.tb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* ================= CARD ================= */

.tb-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  transform: translateY(70px);
  opacity: 0;

  transition: 0.4s ease;
}

.tb-card.show {
  transform: translateY(0);
  opacity: 1;
}

/* Icon */
.tb-icon {
  font-size: 26px;
  margin-bottom: 15px;
}

/* Corner icon */
.tb-corner {
  position: absolute;
  top: 15px;
  right: 15px;
  opacity: 0.15;
  font-size: 22px;
  transition: 0.3s;
}

/* Hover effects */
.tb-card:hover {
  transform: scale(0.96);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.tb-card:hover h3 {
  color: #1f6bff;
}

.tb-card:hover .tb-corner {
  opacity: 1;
  transform: scale(1.2);
}

/* Text */
.tb-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  transition: 0.3s;
}

.tb-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .tb-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tb-grid {
    grid-template-columns: 1fr;
  }

  .tb-header h2 {
    font-size: 28px;
  }
}

/* =================================
   ADMISSION SECTION
================================= */

.admission-section{
  padding:50px 8%;
  background:#f7fbff;
  overflow:hidden;
}

/* layout */
.admission-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

/* badge */
.admission-badge{
  background:#e8f0ff;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  color:#2b5cff;
  font-weight:600;
}

/* title */
.admission-title{
  font-size:44px;
  font-weight:800;
  margin:18px 0;
}

.admission-title span{
  color:#2b5cff;
}

/* text */
.admission-text{
  color:#555;
  line-height:1.6;
  max-width:520px;
}

/* brain center FIX */
.admission-brain-holder{
  display:flex;
  justify-content:center;
  align-items:center;
  margin:40px 0;
}

.admission-brain{
  width:130px;
  animation:brainFloat 3s ease-in-out infinite;
}

/* floating animation */
@keyframes brainFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-14px)}
}

/* contact grid */
.admission-contact-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

/* =============================
   CONTACT CARDS (NEW DESIGN)
============================= */
.admission-contact-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
  margin-top:30px;

  /* ⭐ important for equal height */
  align-items:stretch;
}


/* card */
.admission-contact-card{
  background:#ffffff;
  padding:32px 2px;
  border-radius:16px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  border:1px solid #f1f1f1;

  /* ⭐ equal size fix */
  height:100%;
  min-height:150px;

  /* ⭐ perfect alignment */
  display:flex;
  flex-direction:column;
  justify-content:center;

  transition:all .3s ease;
  width:200px
}


/* hover effect */
.admission-contact-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
}


.admission-icon{
  width:52px;
  height:52px;
  margin:0 auto 14px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:12px;
  color:#fff;
}

/* make svg white */
.admission-icon svg{
  width:22px;
  height:22px;
  fill:#fff;
}


/* colors */
.admission-contact-card:nth-child(1) .admission-icon{
  background:#2b5cff;
}
.admission-contact-card:nth-child(2) .admission-icon{
  background:#ff7a00;
}
.admission-contact-card:nth-child(3) .admission-icon{
  background:#2b5cff;
}


/* title */
.admission-contact-card h4{
  font-size:14px;
  color:#777;
  font-weight:600;
  margin-bottom:6px;
}


/* description */
.admission-contact-card p{
  font-size:15px;
  font-weight:700;
  color:#111;
  line-height:1.4;
}


/* ⭐ responsive */
@media(max-width:900px){
  .admission-contact-grid{
    grid-template-columns:1fr;
  }
}

/* mobile */
@media(max-width:600px){

  .admission-contact-grid{
    grid-template-columns:1fr;
    justify-items:center;   /* ⭐ center cards horizontally */
  }

  .admission-contact-card{
    width:90%;              /* ⭐ smaller than full width */
    max-width:320px;        /* ⭐ clean centered size */
  }
}


/* form */
.admission-form{
  background:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);

  transform:translateX(60px);
  opacity:.3;
  transition:.8s;
}

.admission-form.show{
  transform:translateX(0);
  opacity:1;
}

.admission-form input,
.admission-form textarea{
  width:100%;
  padding:14px;
  margin:12px 0;
  border-radius:10px;
  border:1px solid #ddd;
  font-size:14px;
}

.admission-form button{
  width:100%;
  background:#2b5cff;
  color:#fff;
  padding:14px;
  border:none;
  border-radius:10px;
  font-weight:600;
  cursor:pointer;
}

.admission-form button:hover{
  transform:scale(1.03);
}

/* left reveal */
.js-left{
  transform:translateX(-60px);
  opacity:.3;
  transition:.8s;
}

.js-left.show{
  transform:translateX(0);
  opacity:1;
}

/* responsive */
@media(max-width:992px){
  .admission-wrapper{
    grid-template-columns:1fr;
  }

  .admission-title{
    font-size:32px;
  }

  .admission-contact-grid{
    grid-template-columns:1fr;
  }
}


/* =========================
SECTION BACKGROUND
========================= */
.cta-contact-section{
  background: radial-gradient(circle at 20% 30%, #1b2a45, #0e1626);
  padding: 90px 20px;
  color: #fff;
  overflow:hidden;
}

.cta-contact-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  gap:60px;
  align-items:center;
  justify-content:space-between;
}


/* =========================
LEFT SIDE
========================= */
.cta-left{
  flex:1;
}

.cta-badge{
  background:#ff7a00;
  padding:8px 16px;
  border-radius:30px;
  font-size:13px;
  display:inline-block;
  margin-bottom:18px;
}

.cta-title{
  font-size:42px;
  font-weight:800;
  line-height:1.3;
  margin-bottom:18px;
}

.cta-title span{
  color:#ff7a00;
}

.cta-desc{
  opacity:.85;
  max-width:480px;
  margin-bottom:28px;
  line-height:1.6;
}

/* buttons */
.cta-buttons{
  display:flex;
  gap:16px;
}

.cta-btn-primary{
  background:#ff7a00;
  color:#fff;
  padding:14px 26px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.cta-btn-primary:hover{
  transform:scale(1.08);
}

.cta-btn-outline{
  background:#fff;
  color:#111;
  padding:14px 26px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.cta-btn-outline:hover{
  transform:scale(1.08);
}


/* =========================
RIGHT CONTACT CARD
========================= */
.cta-right{
  flex:1;
}

.cta-contact-card{
  background:rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  padding:30px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  transition:.3s;
}

.cta-contact-card:hover{
  transform:scale(1.03);
}

.cta-contact-card h3{
  margin-bottom:20px;
}

/* contact item */
.cta-item{
  display:flex;
  align-items:center;
  gap:14px;
  background:rgba(255,255,255,.05);
  padding:14px;
  border-radius:14px;
  margin-bottom:14px;
  transition:.3s;
}

.cta-item:hover{
  transform:scale(1.04);
}

.cta-item span{
  font-size:13px;
  opacity:.7;
}

.cta-item p{
  margin:0;
  font-weight:600;
}

/* icon square */
.cta-icon{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  font-size:18px;
}

.phone{ background:#ff7a00; }
.email{ background:#2b5cff; }
.address{ background:#ff7a00; }


/* =========================
ANIMATIONS
========================= */
.reveal-left,
.reveal-right{
  opacity:0;
  transition:1s;
}

.reveal-left{
  transform:translateX(-80px);
}

.reveal-right{
  transform:translateX(80px);
}

.reveal-active{
  opacity:1;
  transform:translateX(0);
}


/* =========================
RESPONSIVE
========================= */
@media(max-width:900px){

  .cta-contact-container{
    flex-direction:column;
    text-align:center;
  }

  .cta-desc{
    margin:auto;
  }

  .cta-buttons{
    justify-content:center;
  }

  .cta-contact-card{
    width:100%;
  }
}

/* =============================
   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;
  }

}
