:root {
    --ink: #0f0d0a;
    --cream: #fffdec;
    --warm: #f9f5ee;
    --gold: #c9993a;
    --gold-light: #e8c97a;
    --rust: #be2c7f;
    --forest: #2c4a3e;
    --charcoal: #2a2724;
    --mid: #6b6560;
    --border: #e0d8cc;
    --white: #ffffff;
    --shadow: 0 4px 32px rgba(15,13,10,0.10);
    --shadow-lg: 0 12px 64px rgba(15,13,10,0.16);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; font-size: 16px; }


  body {
    font-family: 'Neue Haas Grotesk Display Pro';
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
  }

@font-face {
    font-family: 'Neue Haas Grotesk Display Pro';
    src: url('../fonts/NeueHaasDisplay-Bold.eot');
    src: url('../fonts/NeueHaasDisplay-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeueHaasDisplay-Bold.woff2') format('woff2'),
        url('../fonts/NeueHaasDisplay-Bold.woff') format('woff'),
        url('../fonts/NeueHaasDisplay-Bold.ttf') format('truetype'),
        url('../fonts/NeueHaasDisplay-Bold.svg#NeueHaasDisplay-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Neue Haas Grotesk Display Pro';
    src: url('../fonts/NeueHaasDisplay-Light.eot');
    src: url('../fonts/NeueHaasDisplay-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeueHaasDisplay-Light.woff2') format('woff2'),
        url('../fonts/NeueHaasDisplay-Light.woff') format('woff'),
        url('../fonts/NeueHaasDisplay-Light.ttf') format('truetype'),
        url('../fonts/NeueHaasDisplay-Light.svg#NeueHaasDisplay-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Haas Grotesk Display Pro';
    src: url('../fonts/NeueHaasDisplay-Mediu.eot');
    src: url('../fonts/NeueHaasDisplay-Mediu.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeueHaasDisplay-Mediu.woff2') format('woff2'),
        url('../fonts/NeueHaasDisplay-Mediu.woff') format('woff'),
        url('../fonts/NeueHaasDisplay-Mediu.ttf') format('truetype'),
        url('../fonts/NeueHaasDisplay-Mediu.svg#NeueHaasDisplay-Mediu') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


  h1,h2,h3,h4 { font-family: 'Neue Haas Grotesk Display Pro'; line-height: 1.2; }

  a { text-decoration: none; color: inherit; }

  img { max-width: 100%; display: block; }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

  /* STICKY NAV */
  .sticky-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: #000;
    backdrop-filter: blur(12px);
    border-bottom: none;
    padding: 12px 0;
    display: flex; align-items: center; justify-content: space-between;
  }
  .sticky-nav .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
  .nav-logo { font-family: 'Neue Haas Grotesk Display Pro'; font-size: 1.3rem; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
  .nav-logo span { color: var(--gold); }
  .nav-actions { display: flex; gap: 10px; align-items: center; }
  .btn-nav-apply {
    background: var(--rust); color: var(--white);
    padding: 9px 22px; border-radius: 4px;
    font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em;
    transition: background 0.2s;
  }
  .btn-nav-apply:hover { background: #971961; }
  .btn-nav-call {
    border: 1.5px solid #be2c7f; color: #be2c7f;
    padding: 8px 18px; border-radius: 4px;
    font-size: 0.85rem; font-weight: 500;
    display: flex; align-items: center; gap: 6px;
    transition: all 0.2s;
  }
  .btn-nav-call:hover { background: var(--ink); color: #be2c7f; }

  /* HERO */
  .hero {
    padding: 110px 0 80px;
    background: url(../images/main-bg.png) center center no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: -60px; right: -80px;
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(201,153,58,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero-grid {
    display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: #000;
    padding: 6px 16px; border-radius: 2px;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 300;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.1;
  }
  .hero h1 em { color: #fff; font-style: italic; }
  .hero-sub {
    font-size: 18px; color:#fff;
    margin-bottom: 28px; font-weight: 300; line-height: 1.7;
  }
  .hero-courses-tag {
    display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px;
  }

  .course-tag {
    background: var(--white); border: none;
    padding: 6px 14px; border-radius: 20px;
    font-size: 0.82rem; font-weight: 500; color: #fff;
    display: flex;
    align-items: center;
  }
  .course-tag img{max-width: 20px;margin-right: 4px;}
  .course-tag.btn_color1{background: #c02c7f;}
  .course-tag.btn_color2{background: #aa3c3d;}
  .course-tag.btn_color3{background: #e4c35c;}
  .course-tag.btn_color4{background: #e84c02;}
  .course-tag.btn_color5{background: #007a3d;}
  .course-tag.btn_color6{background: #95105a;}
  .hero-highlights {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  }
  .highlight-item {
    display: flex; align-items: flex-start; gap: 10px;
  }
  .highlight-icon {
    width: 32px; height: 32px; min-width: 32px;
    background:transparent; color: var(--white);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
  }
  .highlight-item strong {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
  }
  .highlight-item span {
    font-size: 16px;
    color: #fff;
    font-weight: 300;
  }

  /* LEAD FORM */
  .lead-form-card {
    background: var(--white);
    border-radius: 12px;
    padding: 36px 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
  }
  .form-title {
    font-family: 'Neue Haas Grotesk Display Pro';
    font-size: 2.3rem; font-weight: 300;
    margin-bottom: 6px; color: var(--ink);
    line-height: 40px;
  }
  .form-sub { font-size: 0.82rem; color: var(--mid); margin-bottom: 24px; }
  .form-group { margin-bottom: 14px; }
  .form-group label {
    display: block; font-size: 0.78rem; font-weight: 600;
    color: var(--charcoal); margin-bottom: 5px; letter-spacing: 0.02em;
  }
  .form-group input,
  .form-group select {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid var(--border); border-radius: 6px;
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
    background: var(--warm); color: var(--ink);
    transition: border-color 0.2s;
    appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus {
    outline: none; border-color: var(--gold);
    background: var(--white);
  }
  .btn-apply-form {
    width: 100%; padding: 14px;
    background: var(--rust); color: var(--white);
    border: none; border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
    cursor: pointer; transition: background 0.2s, transform 0.1s;
    margin-top: 6px;
  }
  .btn-apply-form:hover { background: #a03d22; transform: translateY(-1px); }
  .form-note { font-size: 0.72rem; color: var(--mid); text-align: center; margin-top: 10px; }

  /* TRUST BAR */
  .trust-bar {
    background: #c02c7f;
    padding: 22px 0;
  }
  .trust-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; align-items: center;
  }
  .trust-item {
    text-align: center; padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,0.15);
  }
  .trust-item:last-child { border-right: none; }
  .trust-num {
    font-family: 'Neue Haas Grotesk Display Pro';
    font-size: 1.9rem; font-weight: 500; color:#fff;
    line-height: 1;
  }
  .trust-label { font-size: 16px; color: rgba(255,255,255,1); margin-top: 4px; font-weight: 300; letter-spacing: 0.03em; }

  /* SECTION SHARED */
  .section-label {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: #be2c7f;
    margin-bottom: 10px; display: block;
  }
  .section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 300; margin-bottom: 14px; color: var(--ink);
  }
  .section-desc { font-size: 1rem; color: var(--mid); max-width: 560px; line-height: 1.7; font-weight: 300;}

  /* COURSE CATEGORIES */
  .course-categories { padding: 80px 0 60px; }
  .cat-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-top: 48px;
  }
  .cat-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
  }
  .cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .cat-img {
    height: 160px; background: var(--charcoal);
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; position: relative; overflow: hidden;
  }
  .cat-img .cat-emoji { position: relative; z-index: 1; }
  .cat-img::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--forest) 0%, var(--charcoal) 100%);
    opacity: 0;
    display: none;
  }
  .cat-body { padding: 20px 22px; }
  .cat-name { font-family: 'Neue Haas Grotesk Display Pro'; font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
  .cat-desc { font-size: 0.82rem; color: var(--mid); margin-bottom: 14px; line-height: 1.5; }
  .cat-explore {
    font-size: 0.8rem; font-weight: 700; color: var(--rust);
    letter-spacing: 0.06em; text-transform: uppercase;
    display: flex; align-items: center; gap: 6px;
  }
  .cat-explore::after { content: '→'; transition: transform 0.2s; }
  .cat-card:hover .cat-explore::after { transform: translateX(4px); }

  /* COURSE SECTIONS */
  .course-section { padding: 70px 0; border-top: 1px solid var(--border); background: #fff;}
  .course-section:nth-child(even) { background: var(--warm); }
  .section-header { margin-bottom: 44px; }
  .course-list { display: flex; flex-direction: column; gap: 16px; }

  .course-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s;
  }
  .course-card:hover { box-shadow: var(--shadow); }
  .course-card-header {
    display: grid; grid-template-columns: 1fr auto;
    align-items: center; gap: 20px;
    padding: 22px 28px;
    cursor: pointer;
  }
  .course-name { font-family: 'Neue Haas Grotesk Display Pro'; font-size: 1.15rem; font-weight: 700; }
  .course-meta { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
  .course-duration {
    font-size: 0.78rem; font-weight: 600; color: var(--gold);
    background: rgba(201,153,58,0.1);
    padding: 3px 10px; border-radius: 20px;
  }
  .course-desc { font-size: 0.88rem; color: var(--mid); margin-top: 6px; line-height: 1.5; }
  .course-toggle {
    width: 34px; height: 34px; border-radius: 50%;
    border: 1.5px solid var(--border); background: var(--warm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--mid);
    cursor: pointer; transition: all 0.2s; flex-shrink: 0;
  }
  .course-card.open .course-toggle { background: var(--rust); color: var(--white); border-color: var(--rust); transform: rotate(45deg); }

  .course-detail {
    display: none;
    border-top: 1px solid var(--border);
    padding: 28px 28px 28px;
    background: var(--warm);
  }
  .course-card.open .course-detail { display: block; }

  .detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .detail-block h4 {
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--forest);
    margin-bottom: 10px;
  }
  .detail-list { list-style: none; }
  .detail-list li {
    font-size: 0.85rem; color: var(--charcoal);
    padding: 3px 0 3px 16px; position: relative;
    line-height: 1.5;
  }
  .detail-list li::before {
    content: '▸'; position: absolute; left: 0;
    color: var(--gold); font-size: 0.7rem; top: 5px;
  }
  .detail-why {
    margin-top: 16px; padding: 14px 18px;
    background: var(--white); border-left: 3px solid var(--gold);
    border-radius: 0 6px 6px 0;
    font-size: 0.85rem; color: var(--charcoal); line-height: 1.6;
  }
  .detail-why strong { display: block; margin-bottom: 4px; color: var(--ink); font-size: 0.82rem; }
  .course-ctas { display: flex; gap: 12px; margin-top: 20px; }
  .btn-apply-sm {
    padding: 10px 22px; background: var(--rust); color: var(--white);
    border-radius: 5px; font-size: 0.84rem; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
    border: none; cursor: pointer; transition: background 0.2s;
  }
  .btn-apply-sm:hover { background: #a03d22; }
  .btn-enquire-sm {
    padding: 10px 22px; border: 1.5px solid var(--charcoal); color: var(--charcoal);
    border-radius: 5px; font-size: 0.84rem; font-weight: 600;
    background: transparent; cursor: pointer; transition: all 0.2s;
  }
  .btn-enquire-sm:hover { background: var(--charcoal); color: var(--white); }

  /* MID FORM */
  .mid-form-section {
    padding: 80px 0;
    background: url(../images/formbg.jpg) center center no-repeat;
    background-size: cover;
    position: relative; overflow: hidden;
  }
  .mid-form-section::before {
    content: 'APPLY'; position: absolute;
    right: -60px; top: 50%; transform: translateY(-50%);
    font-family: 'Neue Haas Grotesk Display Pro';
    font-size: 160px; font-weight: 900;
    color: rgba(255,255,255,0.04);
    pointer-events: none; white-space: nowrap;
  }
  .mid-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .mid-form-content h2 { color: var(--white); margin-bottom: 16px; font-size: 2.2rem; }
  .mid-form-content p { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.7; margin-bottom: 24px; }
  .mid-form-perks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .mid-form-perks li {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.85); font-size: 0.88rem;
  }
  .mid-form-perks li::before {
    content: '✓'; width: 22px; height: 22px; min-width: 22px;
    background: var(--gold); color: var(--ink);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 800;
  }
  .mid-form-card {
    background: var(--white); border-radius: 12px;
    padding: 36px 32px; box-shadow: var(--shadow-lg);
  }
  .mid-form-card .form-title { font-size: 1.2rem; }

  /* ADMISSION PROCESS */
  .admission-process { padding: 80px 0; }
  .steps-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; margin-top: 48px; position: relative;
  }
  .steps-grid::before {
    content: ''; position: absolute;
    top: 36px; left: 12%; right: 12%;
    height: 2px; background: linear-gradient(90deg, var(--gold), var(--rust));
    z-index: 0;
  }
  .step-item { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
  .step-num {
    width: 72px; height: 72px;
    background: var(--white); border: 3px solid var(--gold);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: 'Neue Haas Grotesk Display Pro';
    font-size: 1.5rem; font-weight: 300; color: var(--gold);
    margin: 0 auto 20px; box-shadow: 0 4px 20px rgba(201,153,58,0.2);
  }
  .step-title {
    font-weight: 300;
    font-size: 20px;
    margin-bottom: 6px;
   }
  .step-desc { font-size: 0.8rem; color: var(--mid); line-height: 1.5; }
  .steps-cta { text-align: center; margin-top: 48px; }
  .btn-start-app {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 42px; background: var(--rust); color: var(--white);
    border-radius: 6px; font-size: 1rem; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
    transition: transform 0.2s, background 0.2s;
  }
  .btn-start-app img{width: 24px;}
  .btn-start-app:hover { transform: translateY(-2px); background: #a03d22; }

  /* CAMPUS LIFE */
  .campus-life { padding: 80px 0; background: var(--warm); }
  .campus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
  .campus-card {
    background: var(--white); border-radius: 10px;
    padding: 32px 30px;
    border: 1.5px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .campus-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
  .campus-icon {
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-size: 1.6rem; margin-bottom: 16px;
  }
  .campus-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
  .campus-card p { font-size: 0.86rem; color: var(--mid); line-height: 1.6; }

  /* PLACEMENTS */
  .placements { padding: 80px 0; }
  .placements-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 48px; }
  .placement-stat-row { display: flex; flex-direction: column; gap: 20px; }
  .placement-stat {
    padding: 22px 26px; background: var(--white);
    border-radius: 10px; border-left: 4px solid var(--gold);
    border: 1px solid var(--border);
  }
  .placement-stat-num { font-family: 'Neue Haas Grotesk Display Pro'; font-size: 2.2rem; font-weight: 900; color: var(--rust); }
  .placement-stat-label { font-size: 0.85rem; color: var(--mid); margin-top: 2px; }
  .placement-features { display: flex; flex-direction: column; gap: 16px; }
  .placement-feat {
    display: flex; gap: 14px; align-items: flex-start;
  }
  .feat-icon {
    width: 40px; height: 40px; min-width: 40px;
    background: var(--forest); color: var(--white);
    border-radius: 8px; display: flex; align-items: center;
    justify-content: center; font-size: 1.1rem;
  }
  .placement-feat h4 { font-size: 0.95rem; margin-bottom: 3px; }
  .placement-feat p { font-size: 0.82rem; color: var(--mid); line-height: 1.5; }
  .placement-cta { margin-top: 36px; }
  .btn-placement {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 36px; background: var(--ink); color: var(--white);
    border-radius: 6px; font-size: 0.9rem; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
    transition: background 0.2s;
  }
  .btn-placement:hover { background: var(--charcoal); }

  /* TESTIMONIALS */
  .testimonials { padding: 80px 0; background: var(--warm); }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
  .testimonial-card {
    background: var(--white); border-radius: 10px;
    padding: 30px 26px; border: 1.5px solid var(--border);
    position: relative;
  }
  .testimonial-card::before {
    content: '"'; position: absolute; top: 14px; left: 20px;
    font-family: 'Neue Haas Grotesk Display Pro';
    font-size: 4rem; color: var(--gold);
    line-height: 1; opacity: 0.3;
  }
  .testimonial-text {
    font-size: 0.88rem; color: var(--charcoal);
    line-height: 1.7; font-style: italic;
    margin-bottom: 20px; margin-top: 20px;
  }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--forest), var(--charcoal));
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 700; font-size: 1rem;
  }
  .author-name { font-weight: 700; font-size: 0.88rem; }
  .author-course { font-size: 0.76rem; color: var(--mid); }

  /* FINAL CTA */
  .final-cta-section {
    padding: 100px 0;
    background:url(../images/footer-bg.jpg) center center no-repeat;
    background-size: cover;
    text-align: center; position: relative; overflow: hidden;
  }
  .final-cta-section::before {
    content: '2025'; position: absolute;
    font-family: 'Neue Haas Grotesk Display Pro';
    font-size: 280px; font-weight: 900;
    color: rgba(255,255,255,0.03);
    left: 50%; top: 50%; transform: translate(-50%,-50%);
    pointer-events: none; white-space: nowrap;
  }
  .admission-tag {
    display: inline-block; background: var(--rust);
    color: var(--white); padding: 6px 20px;
    border-radius: 2px; font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 20px;
  }
  .final-cta-section h2 {
    color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 14px; position: relative;
    font-weight: 300;
  }
  .final-cta-section p {
    color: #fff; font-size: 1.05rem;
    max-width: 520px; margin: 0 auto 40px; line-height: 1.7;
    position: relative; font-weight: 300;
  }
  .final-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
  .btn-final-apply {
    padding: 8px 44px;
    background: var(--rust);
    color: var(--white);
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: transform 0.2s, background 0.2s;
    display: flex;
    align-items: center;
  }
  .btn-final-apply:hover { transform: translateY(-2px); background: #a03d22; }
  .btn-final-counsel {
    padding: 9px 44px; border: 2px solid rgba(255,255,255,0.4);
    color: var(--white); border-radius: 6px; font-size: 1rem; font-weight: 600;
    transition: all 0.2s;
    display: flex;
    align-items: center;
  }
  .btn-final-counsel:hover { background: rgba(255,255,255,0.08); border-color: var(--white); }
  .btn-final-brochure {
    padding: 16px 44px; background: var(--gold); color: var(--ink);
    border-radius: 6px; font-size: 1rem; font-weight: 700;
    transition: background 0.2s;
    display: flex;
    align-items: center;
  }
  .btn-final-brochure img{
    width: 26px;
    margin-right: 10px;
  }
  .btn-final-counsel img{
    width: 32px;
    margin-right: 10px;
  }
  .btn-final-apply img{
    width: 28px;
    margin-right: 10px;
  }
  .btn-final-brochure:hover { background: var(--gold-light); }
  .urgency-note {
    margin-top: 24px; color: rgba(255,255,255,0.5);
    font-size: 0.82rem; position: relative;
  }

  /* FOOTER */
  footer {
    background: var(--ink); color: rgba(255,255,255,0.7);
    padding: 44px 0 24px;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
  .footer-brand { font-family: 'Neue Haas Grotesk Display Pro'; font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
  .footer-brand span { color: var(--gold); }
  .footer-tagline { font-size: 0.82rem; line-height: 1.6; }
  footer h5 { color: var(--white); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; font-weight: 700; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-links li a { font-size: 0.83rem; transition: color 0.2s; }
  .footer-links li a:hover { color: var(--gold); }
  .footer-contact { display: flex; flex-direction: column; gap: 8px; }
  .footer-contact-item { font-size: 0.83rem; display: flex; gap: 8px; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px; display: flex; align-items: center;
    justify-content: space-between; flex-wrap: gap;
  }
  .footer-bottom-text { font-size: 0.76rem; }
  .social-links { display: flex; gap: 12px; }
  .social-link {
    width: 34px; height: 34px; background: rgba(255,255,255,0.08);
    border-radius: 6px; display: flex; align-items: center;
    justify-content: center; font-size: 0.85rem; transition: background 0.2s;
  }
  .social-link:hover { background: var(--gold); color: var(--ink); }

  /* STICKY BOTTOM BAR */
  .sticky-bottom {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    background: var(--ink); padding: 12px 24px;
    display: flex; align-items: center; justify-content: center; gap: 12px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  }
  .sticky-bottom-text { color: rgba(255,255,255,0.7); font-size: 0.82rem; }
  .sticky-bottom-text strong { color: var(--white); }
  .btn-sticky-apply {
    padding: 9px 24px; background: var(--rust); color: var(--white);
    border-radius: 4px; font-size: 0.84rem; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
    transition: background 0.2s;
  }
  .btn-sticky-apply:hover { background: #a03d22; }
  .btn-sticky-call {
    padding: 9px 20px; border: 1.5px solid rgba(255,255,255,0.3);
    color: var(--white); border-radius: 4px; font-size: 0.84rem;
    font-weight: 500; transition: all 0.2s;
    display: flex; align-items: center; gap: 6px;
  }
  .btn-sticky-call:hover { background: rgba(255,255,255,0.1); }
  .btn-sticky-wa {
    padding: 9px 20px; background: #25D366; color: var(--white);
    border-radius: 4px; font-size: 0.84rem; font-weight: 600;
    display: flex; align-items: center; gap: 6px;
    transition: background 0.2s;
  }
  .btn-sticky-wa:hover { background: #1dba5a; }



.btn-send-otp {
  white-space: nowrap;
  padding: 6px 17px;
  background: #062bff;
  color: #fff;
  border: none;
  border-radius: 36px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  margin-top: 10px;
  }

  .btn-send-otp:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  .btn-send-otp.sent {
    background: #00b894;
  }

  /* OTP section (hidden until phone submitted) */
  .otp-section {
    display: none;
    margin-top: -0.3rem;
    margin-bottom: 1.1rem;
    animation: fadeIn 0.25s ease;
  }

  .otp-section.active { display: block; }

  .otp-row {
    display: flex;
    gap: 8px;
  }

  .otp-row input {
    flex: 1;
    letter-spacing: 0.2em;
    font-size: 1.1rem;
    text-align: center;
  }

  .btn-verify-otp {
    white-space: nowrap;
    padding: 0 1rem;
    background: #0984e3;
    color: #fff;
    border: none;
    border-radius: 9px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
  }

  .btn-verify-otp:disabled { opacity: 0.6; cursor: not-allowed; }
  .btn-verify-otp.verified { background: #00b894; }

  .otp-hint {
    font-size: 0.78rem;
    color: #888;
    margin-top: 0.4rem;
  }

  .verified-badge {
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #00b894;
    margin-top: 0.5rem;
  }

  .verified-badge.show { display: flex; }
/* Messages */
  .msg {
    font-size: 0.82rem;
    margin-top: 0.4rem;
    padding: 0.45rem 0.7rem;
    border-radius: 7px;
    display: none;
  }

  .msg.error { background: #fff0f0; color: #c0392b; display: block; }
  .msg.success { background: #f0fff8; color: #00804a; display: block; }
  .msg.info { background: #f0f4ff; color: #3d5afe; display: block; }

  /* Success screen */
  .success-screen {
    display: none;
    text-align: center;
    padding: 1.5rem 0;
  }

  .success-screen.show { display: block; }
  .success-screen .tick { font-size: 3rem; margin-bottom: 1rem; }
  .success-screen h3 { font-size: 1.2rem; font-weight: 700; color: #1a1a2e; margin-bottom: 0.5rem; }
  .success-screen p { font-size: 0.9rem; color: #666; }

  .btn-form-apply{
  width:100%;padding:15px;
  background:var(--rust);color:var(--white);
  border:none;border-radius:5px;
  font-family:'Outfit',sans-serif;
  font-size:0.95rem;font-weight:700;
  letter-spacing:0.06em;text-transform:uppercase;
  cursor:pointer;margin-top:4px;
  transition:background 0.2s,transform 0.15s;
  position:relative;overflow:hidden;
}
.btn-form-apply:hover{background:var(--forest);transform:translateY(-1px)}
.btn-form-apply::after{
  content:'→';margin-left:8px;
  transition:transform 0.2s;display:inline-block;
}
.btn-form-apply:hover::after{transform:translateX(4px)}


  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
    .trust-item:nth-child(even) { border-right: none; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .steps-grid::before { display: none; }
    .mid-form-grid { grid-template-columns: 1fr; }
    .placements-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .campus-grid { grid-template-columns: 1fr; }
    .detail-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .hero { padding: 90px 0 60px; }
    .cat-grid { grid-template-columns: 1fr; }
    .hero-highlights { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-actions .btn-nav-call { display: none; }
    .sticky-bottom { flex-wrap: wrap; }
    .sticky-bottom-text { display: none; }
    .final-cta-btns { flex-direction: column; align-items: center; }
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-content > * { animation: fadeUp 0.6s ease both; }
  .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
  .hero-content > *:nth-child(2) { animation-delay: 0.2s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.3s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.4s; }
  .hero-content > *:nth-child(5) { animation-delay: 0.5s; }
  .lead-form-card { animation: fadeUp 0.7s ease 0.3s both; }