*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue-dark: #1e3a8a; --blue: #1a56db; --blue-light: #3b82f6; --blue-pale: #eff6ff;
  --green: #059669; --green-pale: #ecfdf5; --gold: #d97706; --gold-pale: #fffbeb;
  --white: #fff; --gray-50: #f8fafc; --gray-100: #f1f5f9; --gray-200: #e2e8f0;
  --gray-400: #94a3b8; --gray-600: #475569; --gray-800: #1e293b; --gray-900: #0f172a;
  --radius: 12px; --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.07); --shadow-md: 0 4px 20px rgba(0,0,0,.1); --shadow-lg: 0 8px 40px rgba(0,0,0,.14);
  --t: .3s cubic-bezier(.4,0,.2,1);
}
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; font-size: 16px; line-height: 1.7; color: var(--gray-800); background: #fff; overflow-x: hidden; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
img { max-width: 100%; height: auto; display: block; }

/* TYPOGRAPHY */
.section-label { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); background: var(--blue-pale); padding: 6px 16px; border-radius: 100px; margin-bottom: 14px; }
.section-label.light { color: #93c5fd; background: rgba(255,255,255,.15); }
.section-heading { font-size: clamp(26px, 4vw, 42px); font-weight: 700; line-height: 1.2; color: var(--gray-900); margin-bottom: 16px; }
.section-heading em { font-style: italic; color: var(--blue); font-family: 'Playfair Display', serif; }
.section-sub { font-size: 17px; color: var(--gray-600); max-width: 600px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 52px; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600; padding: 14px 28px; border-radius: 10px; border: none; cursor: pointer; text-decoration: none; transition: var(--t); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,86,219,.4); }
.btn-full { width: 100%; justify-content: center; font-size: 16px; padding: 16px 28px; }
.btn-lg { padding: 16px 40px; font-size: 16px; }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--blue); font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; padding: 10px 22px; border-radius: 8px; border: 2px solid var(--blue); cursor: pointer; text-decoration: none; transition: var(--t); }
.btn-outline:hover { background: var(--blue); color: #fff; }
@keyframes pulse { 0%,100% { box-shadow: 0 8px 24px rgba(26,86,219,.4); } 50% { box-shadow: 0 8px 36px rgba(26,86,219,.65); } }
/* .btn-pulse { animation: pulse 2.5s infinite; } */

/* BOTTOM BAR */
.bottom-bar { background: var(--gray-900); color: rgba(255,255,255,.9); font-size: 11px; padding: 10px 0; text-align: center; font-weight: 500; letter-spacing: 0.3px; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1001; border-top: 1px solid rgba(255,255,255,.1); }
.bottom-bar strong { color: var(--blue-light); }

/* HEADER */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,.96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--gray-200); transition: box-shadow .3s; }
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.header-inner { display: flex; align-items: center; gap: 14px; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-icon { width: 36px; height: 36px; background: linear-gradient(135deg,var(--blue),var(--blue-dark)); color: #fff; font-size: 18px; font-weight: 800; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.logo-text { font-size: 17px; font-weight: 500; color: var(--gray-800); }
.logo-text strong { font-weight: 700; color: var(--blue); }
.logo img{
height:50px;
width:auto;
}

/* HEADER IMAGE STRIP */
.header-img-strip { display: flex; align-items: center; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 100px; padding: 4px 14px 4px 4px; gap: 8px; flex-shrink: 0; }
.header-img-strip img { width: 30px; height: 30px; border-radius: 50%; border: 2px solid white; object-fit: cover; margin-left: -8px; }
.header-img-strip img:first-child { margin-left: 0; }
.strip-label { font-size: 11px; font-weight: 600; color: var(--gray-600); white-space: nowrap; }

.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--gray-600); text-decoration: none; padding: 7px 12px; border-radius: 8px; transition: var(--t); }
.nav-links a:hover { color: var(--blue); background: var(--blue-pale); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--gray-700); text-decoration: none; transition: color .2s; }
.header-phone:hover { color: var(--blue); }
.header-apply { padding: 9px 18px; font-size: 13px; }
/* Desktop: show Apply Now, hide Call Now */
.header-call-mobile { display: none; }
.header-apply-desktop { display: inline-flex; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: var(--t); }

/* HERO */
.hero { min-height: 100vh; position: relative; overflow: hidden; display: flex; align-items: center; padding: 128px 0 60px; }
.hero-img-bg { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(150deg, rgba(15,23,42,.8) 0%, rgba(30,58,138,.7) 40%, rgba(5,150,105,.3) 100%); }
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.shape { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .18; }
.shape-1 { width: 500px; height: 500px; background: #bfdbfe; top: -200px; right: -100px; }
.shape-2 { width: 350px; height: 350px; background: #a7f3d0; bottom: -100px; left: -80px; }
.shape-3 { width: 250px; height: 250px; background: #fde68a; top: 45%; left: 40%; }
.hero-inner { display: grid; grid-template-columns: 1fr 440px; gap: 52px; align-items: center; position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #bbf7d0; background: rgba(5,150,105,.25); border: 1px solid rgba(5,150,105,.4); padding: 8px 16px; border-radius: 100px; margin-bottom: 20px; }
.badge-dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.hero-headline { font-size: clamp(34px, 5.5vw, 64px); font-weight: 800; line-height: 1.12; color: #fff; margin-bottom: 18px; }
.hero-headline em { font-style: italic; font-family: 'Playfair Display', serif; color: #86efac; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,.85); max-width: 500px; margin-bottom: 26px; line-height: 1.8; }
.hero-students-row { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.student-avatars { display: flex; }
.student-avatars img { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #fff; object-fit: cover; margin-left: -8px; }
.student-avatars img:first-child { margin-left: 0; }
.student-text { font-size: 13px; color: rgba(255,255,255,.85); }
.student-text strong { color: #fff; }
.star-row { font-size: 12px; color: #fbbf24; margin-top: 2px; }
.star-row span { color: rgba(255,255,255,.6); margin-left: 4px; }
.hero-stats-mini { display: flex; gap: 24px; flex-wrap: wrap; }
.mini-stat { text-align: center; }
.mini-stat strong { display: block; font-size: 20px; font-weight: 700; color: #fff; }
.mini-stat span { font-size: 12px; color: rgba(255,255,255,.7); font-weight: 500; }
.hero-scroll-hint { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 11px; color: rgba(255,255,255,.45); letter-spacing: 1px; z-index: 2; }
.scroll-arrow { width: 18px; height: 18px; border-right: 2px solid rgba(255,255,255,.35); border-bottom: 2px solid rgba(255,255,255,.35); transform: rotate(45deg); animation: scrollB 1.5s ease-in-out infinite; }
@keyframes scrollB { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(5px); } }

/* GLASS FORM */
.glass-form { background: rgba(255,255,255,.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.8); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: 0 20px 60px rgba(26,86,219,.2); }
.dark-glass { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); box-shadow: 0 20px 60px rgba(0,0,0,.25); }
.dark-glass input, .dark-glass select { background: rgba(255,255,255,.15) !important; border-color: rgba(255,255,255,.3) !important; color: #fff !important; }
.dark-glass input::placeholder { color: rgba(255,255,255,.6); }
.dark-glass select option { background: var(--blue-dark); color: #fff; }
.dark-glass .form-title, .dark-glass .form-subtitle, .dark-glass .form-note { color: #fff; }
.dark-glass .form-subtitle { color: rgba(255,255,255,.7); }
.form-title { font-size: 21px; font-weight: 700; color: var(--gray-900); margin-bottom: 5px; }
.form-subtitle { font-size: 13px; color: var(--gray-600); margin-bottom: 22px; }
.lead-form { display: flex; flex-direction: column; gap: 12px; }
.form-group { position: relative; }
.form-group input, .form-group select { width: 100%; padding: 12px 16px; font-family: 'Poppins', sans-serif; font-size: 14px; color: var(--gray-800); background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: 10px; outline: none; transition: border-color .2s, box-shadow .2s; appearance: none; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }
.form-group input:focus, .form-group select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,86,219,.12); background: #fff; }
.form-group input.error, .form-group select.error { border-color: #ef4444; }
.field-error { display: none; font-size: 12px; color: #ef4444; margin-top: 3px; padding-left: 4px; }
.field-error.show { display: block; }
.form-note { font-size: 12px; color: var(--gray-400); text-align: center; margin-top: 4px; }

/* TRUST BADGES */
.trust-section { padding: 34px 0; background: #fff; border-bottom: 1px solid var(--gray-100); box-shadow: var(--shadow-sm); }
.trust-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.trust-item { display: flex; align-items: center; gap: 11px; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 11px 16px; flex: 1; min-width: 130px; max-width: 185px; transition: var(--t); }
.trust-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--blue-light); }
.trust-item img { width: 38px; height: 38px; border-radius: 8px; flex-shrink: 0; }
.trust-item strong { display: block; font-size: 12px; font-weight: 700; color: var(--gray-900); }
.trust-item span { font-size: 11px; color: var(--gray-600); }

/* ABOUT */
.about-section { padding: 96px 0; background: #fff; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image-wrap { position: relative; }
.about-img-main img { border-radius: var(--radius-lg); width: 100%; box-shadow: var(--shadow-lg); }
.about-float-img { position: absolute; bottom: -18px; left: -18px; width: 150px; height: 200px; border-radius: var(--radius); overflow: hidden; border: 4px solid #fff; box-shadow: var(--shadow-md); }
.about-float-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge { position: absolute; bottom: -18px; right: -18px; background: var(--blue-dark); color: #fff; padding: 16px 20px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-md); }
.about-img-badge strong { display: block; font-size: 20px; font-weight: 800; }
.about-img-badge span { font-size: 11px; opacity: .85; }
.about-highlights { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 28px; }
.highlight-item { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--gray-600); }
.hi-icon { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.hi-icon.green { background: var(--green-pale); color: var(--green); }
.hi-icon.blue { background: var(--blue-pale); color: var(--blue); }
.highlight-item strong { color: var(--gray-800); }

/* COURSES */
/* .courses-section { padding: 96px 0; background: var(--gray-50); }
.courses-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.course-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); transition: var(--t); overflow: hidden; animation-delay: var(--delay); }
.course-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(26,86,219,.15); border-color: var(--blue-light); }
.course-thumb { height: 148px; overflow: hidden; }
.course-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.course-card:hover .course-thumb img { transform: scale(1.06); }
.course-body { padding: 22px; }
.course-icon { width: 48px; height: 48px; background: color-mix(in srgb, var(--c) 12%, white); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--c); margin-bottom: 12px; }
.course-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 7px; color: var(--gray-900); }
.course-card p { font-size: 13px; color: var(--gray-600); line-height: 1.7; margin-bottom: 13px; }
.course-meta { display: flex; gap: 8px; font-size: 11px; font-weight: 600; margin-bottom: 14px; }
.course-meta span { background: var(--gray-100); padding: 4px 10px; border-radius: 100px; color: var(--gray-600); }
.course-cta { font-size: 13px; font-weight: 600; color: var(--blue); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: gap .2s; }
.course-cta:hover { gap: 8px; } */

*{box-sizing:border-box;margin:0;padding:0}
    body{background:#f1f5f9}
    .sec{padding:60px 40px;background:#f1f5f9;font-family:'Segoe UI',system-ui,sans-serif}
    .sec-head{text-align:center;margin-bottom:48px}
    .sec-head h2{font-size:28px;font-weight:700;color:#0f172a;margin-bottom:10px;letter-spacing:-0.3px}
    .sec-head p{font-size:15px;color:#64748b;line-height:1.7;max-width:560px;margin:0 auto}
    .grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;max-width:1100px;margin:0 auto}
    .card{background:#fff;border:1px solid #e2e8f0;border-radius:16px;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,.07);display:flex;flex-direction:column}
    .card-top{padding:22px 24px 18px}
    .icon-wrap{display:flex;align-items:center;gap:14px;margin-bottom:4px}
    .icon{width:44px;height:44px;border-radius:12px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
    .icon svg{width:20px;height:20px}
    .card-title{font-size:17px;font-weight:700;color:#0f172a;line-height:1.3}
    .card-sub{font-size:12px;color:#94a3b8;margin-top:3px;font-weight:500}
    .divider{height:1px;background:#f1f5f9;margin:0 24px}
    .prog-list{list-style:none;padding:8px 0;flex:1}
    .prog-list li{display:flex;align-items:center;gap:12px;font-size:13.5px;color:#374151;padding:9px 24px;line-height:1.4}
    .prog-list li:not(:last-child){border-bottom:1px solid #f8fafc}
    .dot{width:6px;height:6px;border-radius:50%;flex-shrink:0}
    .card-footer{padding:14px 24px;background:#f8fafc;border-top:1px solid #e2e8f0;display:flex;align-items:center;justify-content:space-between;margin-top:auto}
    .badge{font-size:11.5px;color:#64748b;background:#e2e8f0;padding:4px 12px;border-radius:100px;font-weight:600}
    .apply-btn{font-size:12.5px;font-weight:700;color:#fff;cursor:pointer;background:#0f172a;border:none;padding:7px 16px;border-radius:8px;letter-spacing:.2px}
    .apply-btn:hover{background:#1e293b}
    .b1{background:#eff6ff}.b1 svg{stroke:#2563eb}
    .b2{background:#f0fdf4}.b2 svg{stroke:#16a34a}
    .b3{background:#fff1f2}.b3 svg{stroke:#e11d48}

    /* Tablet: 2 columns */
    @media(max-width:900px){
      .sec{padding:48px 24px}
      .grid{grid-template-columns:repeat(2,1fr);gap:20px}
    }

    /* Mobile: 1 column */
    @media(max-width:580px){
      .sec{padding:36px 16px}
      .sec-head{margin-bottom:32px}
      .sec-head h2{font-size:22px}
      .sec-head p{font-size:14px}
      .grid{grid-template-columns:1fr;gap:16px}
      .card-top{padding:18px 18px 14px}
      .icon{width:38px;height:38px}
      .card-title{font-size:15px}
      .divider{margin:0 18px}
      .prog-list li{font-size:13px;padding:8px 18px}
      .card-footer{padding:12px 18px;flex-wrap:wrap;gap:10px}
      .apply-btn{width:100%;text-align:center;justify-content:center;padding:10px 16px}
      .badge{font-size:11px}
    }

/* STATS */
.stats-section { padding: 70px 0; background: linear-gradient(135deg,var(--blue-dark) 0%,#1e40af 50%,#1e3a8a 100%); position: relative; overflow: hidden; }
.stats-bg { position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E"); }
.stats-grid { position: relative; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px; }
.stat-item { text-align: center; color: #fff; }
.stat-number { font-size: clamp(36px,5vw,56px); font-weight: 800; line-height: 1; color: #fff; }
.stat-plus { font-size: 24px; font-weight: 700; color: #93c5fd; display: inline-block; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.75); margin-top: 5px; font-weight: 500; }

/* PLACEMENTS */
.placements-section { padding: 70px 0; background: #fff; }
.logo-slider-wrap { overflow: hidden; position: relative; }
.logo-slider-wrap::before, .logo-slider-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; }
.logo-slider-wrap::before { left: 0; background: linear-gradient(to right,#fff,transparent); }
.logo-slider-wrap::after { right: 0; background: linear-gradient(to left,#fff,transparent); }
.logo-track { display: flex; gap: 16px; width: max-content; animation: scrollLogos 28s linear infinite; }
.logo-track:hover { animation-play-state: paused; }
@keyframes scrollLogos { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-item { flex-shrink: 0; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 12px 18px; display: flex; align-items: center; justify-content: center; transition: var(--t); }
.logo-item:hover { border-color: var(--blue-light); box-shadow: var(--shadow-md); }
.logo-item img { width: 110px; height: 36px; object-fit: contain; }

/* WHY CHOOSE – CONSULTANCY */
.why-section { padding: 96px 0; background: var(--gray-50); }
.consultancy-flow { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 26px; margin-bottom: 48px; box-shadow: var(--shadow-sm); }
.cf-step { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cf-num { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 800; background: var(--gray-100); color: var(--gray-600); }
.cf-num.blue { background: var(--blue-pale); color: var(--blue); }
.cf-num.green { background: var(--green-pale); color: var(--green); }
.cf-num.gold { background: var(--gold-pale); color: var(--gold); }
.cf-label { font-size: 13px; font-weight: 600; color: var(--gray-700); text-align: center; }
.cf-arrow { font-size: 22px; color: var(--gray-400); margin-bottom: 20px; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.why-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: var(--t); overflow: hidden; animation-delay: var(--delay); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-light); }
.why-card-img { height: 158px; overflow: hidden; }
.why-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.why-card:hover .why-card-img img { transform: scale(1.05); }
.why-card-body { padding: 22px; }
.why-icon { width: 46px; height: 46px; background: var(--blue-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--blue); margin-bottom: 13px; }
.why-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--gray-900); }
.why-card p { font-size: 13px; color: var(--gray-600); line-height: 1.7; }

/* GALLERY */
.gallery-section { padding: 72px 0; background: var(--gray-100); overflow: hidden; }
.gallery-slider { position: relative; overflow: hidden; margin: 0 -20px; }
.gallery-track { display: flex; gap: 16px; padding: 0 20px; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.gallery-slide { flex-shrink: 0; width: 340px; border-radius: var(--radius-lg); overflow: hidden; position: relative; box-shadow: var(--shadow-md); }
.gallery-slide img { width: 100%; height: 218px; object-fit: cover; transition: transform .4s; }
.gallery-slide:hover img { transform: scale(1.05); }
.slide-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent,rgba(0,0,0,.7)); color: #fff; padding: 20px 14px 12px; font-size: 13px; font-weight: 600; }
.gallery-prev, .gallery-next { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; background: #fff; border: none; border-radius: 50%; font-size: 22px; cursor: pointer; box-shadow: var(--shadow-md); display: flex; align-items: center; justify-content: center; z-index: 10; transition: var(--t); color: var(--gray-800); }
.gallery-prev { left: 20px; } .gallery-next { right: 20px; }
.gallery-prev:hover, .gallery-next:hover { background: var(--blue); color: #fff; }
.gallery-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.gallery-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-300); border: none; cursor: pointer; transition: var(--t); padding: 0; }
.gallery-dot.active { background: var(--blue); width: 26px; border-radius: 5px; }

/* TESTIMONIALS */
.testimonials-section { padding: 96px 0; background: #fff; }
.testimonials-carousel { overflow: hidden; }
.testi-track { display: flex; gap: 24px; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.testi-card { flex-shrink: 0; width: 100%; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px; }
.testi-stars { font-size: 18px; color: #f59e0b; margin-bottom: 14px; letter-spacing: 3px; }
.testi-card p { font-size: 15px; color: var(--gray-700); line-height: 1.8; margin-bottom: 22px; font-style: italic; }
.testi-author { display: flex; gap: 12px; align-items: center; }
.testi-photo { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 3px solid var(--blue-pale); flex-shrink: 0; }
.testi-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--gray-900); }
.testi-author span { font-size: 12px; color: var(--gray-600); }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 26px; }
.testi-prev, .testi-next { width: 42px; height: 42px; background: #fff; border: 1.5px solid var(--gray-200); border-radius: 50%; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--t); color: var(--gray-600); }
.testi-prev:hover, .testi-next:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-300); border: none; cursor: pointer; transition: var(--t); padding: 0; }
.testi-dot.active { background: var(--blue); width: 26px; border-radius: 5px; }

/* ADMISSION STEPS */
.admission-section { padding: 96px 0; background: var(--gray-50); }
.steps-wrap { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.step-item { text-align: center; position: relative; padding: 0 12px; }
.step-num { width: 54px; height: 54px; background: linear-gradient(135deg,var(--blue),var(--blue-dark)); color: #fff; font-size: 17px; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; position: relative; z-index: 1; box-shadow: 0 4px 16px rgba(26,86,219,.4); }
.step-line { position: absolute; top: 27px; left: calc(50% + 27px); right: calc(-50% + 27px); height: 2px; background: linear-gradient(to right,var(--blue-light),var(--blue-pale)); }
.step-line.last { display: none; }
.step-content h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--gray-900); }
.step-content p { font-size: 13px; color: var(--gray-600); }

/* SCHOLARSHIPS */
.scholarship-section { padding: 96px 0; background: #fff; }
.scholarship-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.scholarship-card { border-radius: var(--radius-lg); padding: 30px; transition: var(--t); animation-delay: var(--delay); }
.scholarship-card:hover { transform: translateY(-5px); }
.scholarship-card.gold { background: var(--gold-pale); border: 2px solid #fcd34d; }
.scholarship-card.blue { background: var(--blue-pale); border: 2px solid #93c5fd; }
.scholarship-card.green { background: var(--green-pale); border: 2px solid #6ee7b7; }
.sc-badge { display: inline-block; font-size: 13px; font-weight: 700; background: #fff; padding: 5px 14px; border-radius: 100px; margin-bottom: 13px; box-shadow: var(--shadow-sm); color: var(--gray-800); }
.scholarship-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; color: var(--gray-900); }
.scholarship-card p { font-size: 14px; color: var(--gray-600); margin-bottom: 14px; }
.scholarship-card ul { list-style: none; margin-bottom: 20px; }
.scholarship-card ul li { font-size: 13px; color: var(--gray-700); padding: 6px 0 6px 20px; border-bottom: 1px solid rgba(0,0,0,.06); position: relative; }
.scholarship-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* FAQ */
.faq-section { padding: 96px 0; background: var(--gray-50); }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: var(--blue); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; color: var(--gray-800); background: none; border: none; cursor: pointer; text-align: left; gap: 14px; transition: color .2s; }
.faq-question:hover { color: var(--blue); }
.faq-icon { flex-shrink: 0; font-size: 20px; font-weight: 300; color: var(--blue); width: 26px; height: 26px; border: 1.5px solid var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .3s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s cubic-bezier(.4,0,.2,1); }
.faq-answer.open { max-height: 180px; }
.faq-answer p { padding: 0 22px 18px; font-size: 14px; color: var(--gray-600); line-height: 1.8; }

/* CONTACT CTA SECTION (New) */
.contact-cta-section { padding: 72px 0; background: #fff; }
.contact-cta-inner { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: center; background: linear-gradient(135deg,var(--blue-pale) 0%,var(--green-pale) 100%); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 52px 48px; box-shadow: var(--shadow-sm); }
.contact-cta-text h2 { font-size: clamp(24px,3.5vw,36px); font-weight: 700; color: var(--gray-900); margin-bottom: 12px; }
.contact-cta-text h2 em { font-style: italic; color: var(--blue); font-family: 'Playfair Display', serif; }
.contact-cta-text p { font-size: 15px; color: var(--gray-600); max-width: 500px; margin-bottom: 18px; }
.cta-availability { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray-600); font-weight: 500; }
.avail-dot { width: 10px; height: 10px; background: var(--green); border-radius: 50%; animation: blink 1.5s infinite; flex-shrink: 0; }
.contact-cta-buttons { display: flex; flex-direction: column; gap: 14px; }
.big-call-btn, .big-wa-btn, .big-apply-btn { display: flex; align-items: center; gap: 16px; padding: 16px 22px; border-radius: 14px; text-decoration: none; transition: var(--t); border: 2px solid transparent; }
.big-call-btn { background: linear-gradient(135deg,var(--blue),var(--blue-dark)); color: #fff; box-shadow: 0 4px 16px rgba(26,86,219,.3); }
.big-call-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,86,219,.45); }
.big-wa-btn { background: #25d366; color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,.3); }
.big-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.45); }
.big-apply-btn { background: #fff; color: var(--blue-dark); border-color: var(--blue); }
.big-apply-btn:hover { background: var(--blue-pale); transform: translateY(-2px); }
.bcb-icon { width: 44px; height: 44px; background: rgba(255,255,255,.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.big-apply-btn .bcb-icon { background: var(--blue-pale); color: var(--blue); }
.bcb-text { display: flex; flex-direction: column; }
.bcb-label { font-size: 11px; font-weight: 600; opacity: .85; }
.bcb-num { font-size: 15px; font-weight: 700; }

/* CTA FORM */
.cta-section { padding: 96px 0; background: linear-gradient(135deg,#1e3a8a 0%,#1e40af 50%,#1d4ed8 100%); position: relative; overflow: hidden; }
.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape { position: absolute; border-radius: 50%; background: rgba(255,255,255,.05); }
.cta-shape-1 { width: 500px; height: 500px; top: -200px; right: -100px; }
.cta-shape-2 { width: 350px; height: 350px; bottom: -150px; left: 100px; }
.cta-inner { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center; position: relative; z-index: 1; }
.cta-heading { font-size: clamp(26px,4vw,42px); font-weight: 800; line-height: 1.2; color: #fff; margin-bottom: 14px; }
.cta-heading em { font-style: italic; color: #93c5fd; font-family: 'Playfair Display', serif; }
.cta-text > p { font-size: 15px; color: rgba(255,255,255,.8); margin-bottom: 24px; }
.cta-urgency { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.urgency-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.9); }
.urgency-item svg { color: #93c5fd; flex-shrink: 0; }
.urgency-item strong { color: #fff; }
.cta-contact-info { display: flex; gap: 16px; flex-wrap: wrap; }
.contact-link { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.85); text-decoration: none; transition: color .2s; }
.contact-link:hover { color: #fff; }

/* FOOTER */
.footer { background: var(--gray-900); color: rgba(255,255,255,.75); }

/* COUNTDOWN TIMER */
.footer-timer-bar { background: linear-gradient(135deg,#1e3a8a,#1d4ed8); border-bottom: 1px solid rgba(255,255,255,.1); padding: 16px 0; }
.footer-timer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.timer-label { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #fff; }
.timer-fire { font-size: 18px; }
.countdown { display: flex; align-items: center; gap: 4px; }
.cd-box { display: flex; flex-direction: column; align-items: center; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.2); border-radius: 8px; padding: 8px 12px; min-width: 56px; }
.cd-box span { font-size: 22px; font-weight: 800; color: #fff; line-height: 1; font-family: 'Poppins', sans-serif; letter-spacing: 1px; }
.cd-box small { font-size: 10px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; font-weight: 600; }
.cd-sep { font-size: 22px; font-weight: 700; color: rgba(255,255,255,.5); margin: 0 2px 12px; }
.timer-cta-btn { display: inline-flex; align-items: center; background: #fff; color: var(--blue-dark); font-size: 13px; font-weight: 700; padding: 10px 18px; border-radius: 8px; text-decoration: none; transition: var(--t); white-space: nowrap; }
.timer-cta-btn:hover { background: #eff6ff; transform: translateY(-1px); }

.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 42px; padding: 56px 0 44px; }
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 16px; }
.footer-logo .logo-text { color: #fff; }
.footer-about { font-size: 13px; line-height: 1.8; margin-bottom: 22px; color: rgba(255,255,255,.55); }
.social-links { display: flex; gap: 8px; }
.social-link { width: 34px; height: 34px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.65); text-decoration: none; transition: var(--t); }
.social-link:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.footer-col h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-links { list-style: none; }
.footer-links li + li { margin-top: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-contact { list-style: none; }
.footer-contact li { display: flex; gap: 10px; font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.6; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-contact li svg { flex-shrink: 0; color: rgba(255,255,255,.3); margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 16px 0; }
.footer-bottom p { font-size: 12px; text-align: center; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* FLOATING WHATSAPP */
.whatsapp-btn { position: fixed; bottom: 28px; right: 28px; width: 54px; height: 54px; background: #25d366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.5); text-decoration: none; z-index: 999; transition: var(--t); animation: floatB 3s ease-in-out infinite; }
.whatsapp-btn:hover { transform: scale(1.1); }
@keyframes floatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.wa-tooltip { position: absolute; right: 64px; top: 50%; transform: translateY(-50%); background: var(--gray-900); color: #fff; font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 6px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s; }
.whatsapp-btn:hover .wa-tooltip { opacity: 1; }

/* MOBILE STICKY BAR */
.mobile-sticky-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998; background: #0f172a; border-top: 1px solid rgba(255,255,255,.1); }
.mobile-sticky-bar a { display: flex; flex: 1; flex-direction: column; align-items: center; justify-content: center; padding: 10px 6px; font-size: 11px; font-weight: 700; text-decoration: none; gap: 4px; transition: opacity .2s; }
.mobile-sticky-bar a:hover { opacity: .9; }
.mob-sticky-call { background: linear-gradient(135deg,var(--blue),var(--blue-dark)); color: #fff; }
.mob-sticky-wa { background: #25d366; color: #fff; }
.mob-sticky-apply { background: var(--gold); color: #fff; }

/* FORM MESSAGES */
.form-success, .form-error { 
  font-size: 14px; 
  line-height: 1.5; 
  animation: fadeIn .3s ease; 
  text-align: left;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
  body { padding-bottom: 80px; }
  .lead-form { padding-bottom: 10px; }
  .form-message { margin-bottom: 10px; }
  button[type="submit"] { position: relative; z-index: 5; }
}

/* SCROLL REVEAL */
.reveal-up, .reveal-left, .reveal-right { opacity: 0; transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.reveal-up { transform: translateY(36px); }
.reveal-left { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0,0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 400px; gap: 36px; }
  .courses-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr 380px; gap: 48px; }
  .contact-cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .header-img-strip { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 100px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 16px; box-shadow: var(--shadow-lg); z-index: 999; border-bottom: 1px solid var(--gray-200); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .header-phone { display: none; }
  /* Mobile header: hide Apply Now, show Call Now */
  .header-apply-desktop { display: none; }
  .header-call-mobile { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; font-size: 12px; background: linear-gradient(135deg, #059669, #047857); animation: pulse 2s infinite; }
  .header-apply { padding: 8px 14px; font-size: 12px; }
  .hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-form-wrap { order: -1; }
  .hero-headline { font-size: 30px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-float-img, .about-img-badge { display: none; }
  .courses-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-wrap { grid-template-columns: 1fr; gap: 28px; }
  .step-line { display: none; }
  .scholarship-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 36px 0 32px; }
  .gallery-slide { width: 260px; }
  .mobile-sticky-bar { display: flex; }
  .bottom-bar { bottom: 58px; font-size: 10px; padding: 6px 0; }
  .whatsapp-btn { bottom: 120px; right: 14px; width: 50px; height: 50px; }
  body { padding-bottom: 100px; }
  .footer-timer-inner { justify-content: center; text-align: center; }
  .timer-cta-btn { display: none; }
  .contact-cta-inner { padding: 32px 24px; }
  .contact-cta-buttons { flex-direction: column; }
}
@media (max-width: 480px) {
  .section-heading { font-size: 24px; }
  .hero-headline { font-size: 26px; }
  .glass-form { padding: 22px 18px; }
  .cta-contact-info { flex-direction: column; gap: 10px; }
  .cd-box { min-width: 46px; padding: 6px 10px; }
  .cd-box span { font-size: 18px; }
}
