
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: #0d2157;
    --navy-dark: #091640;
    --orange: #e8520a;
    --orange-light: #ff6b1a;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --text-dark: #1a1a2e;
    --text-muted: #666;
    --border: #e0e0e0;
    --header-h: 68px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ── STICKY HEADER ── */
  .header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    z-index: 1000;
    transition: box-shadow .3s, background .3s;
  }
  .header.scrolled {
    background: rgba(255,255,255,1);
    box-shadow: 0 4px 30px rgba(0,0,0,0.13);
  }

  .logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 60%;
  }
  .logo-smu {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }
  .logo-icon {
    width: 44px; height: 44px;
    background: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 12px;
    color: #fff;
    letter-spacing: -.5px;
    flex-shrink: 0;
    transition: transform .3s;
  }
  .logo-smu:hover .logo-icon { transform: rotate(-8deg) scale(1.08); }

  .logo-text-smu {
    display: flex; flex-direction: column; line-height: 1;
  }
  .logo-text-smu span:first-child {
    font-size: 15px; font-weight: 800; color: var(--navy); letter-spacing: -.3px;
  }
  .logo-text-smu span:last-child {
    font-size: 9px; font-weight: 500; color: #888; letter-spacing: .5px; text-transform: uppercase;
  }

  .logo-divider {
    width: 1px; height: 30px; background: #ddd;
  }

  .logo-manipal {
    font-size: 16px; font-weight: 700; color: #222; letter-spacing: -.3px;
  }
  .logo-manipal span { color: var(--orange); }

  .apply-btn {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 11px 28px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: .3px;
    transition: background .25s, transform .2s, box-shadow .25s;
    text-decoration: none;
    display: inline-block;
  }
  .apply-btn:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,82,10,.35);
  }
  .apply-btn:active { transform: translateY(0); }

  /* ── HERO BANNER ── */
  .hero {
    margin-top: var(--header-h);
    /* min-height: calc(100vh - var(--header-h)); */
    background: linear-gradient(125deg, #0a1d4f 0%, #0d2b6b 40%, #0e3380 60%, #09214a 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 30% 50%, rgba(255,255,255,.03) 0%, transparent 60%),
      radial-gradient(ellipse 40% 60% at 70% 30%, rgba(14,51,128,.6) 0%, transparent 70%);
    z-index: 0;
  }
  .hero-grid-overlay {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    animation: gridShift 20s linear infinite;
  }
  @keyframes gridShift {
    0% { transform: translate(0,0); }
    100% { transform: translate(60px, 60px); }
  }

  .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .18;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
  }
  .orb-1 { width: 400px; height: 400px; background: #1a5fb4; top: -100px; left: -80px; animation-delay: 0s; }
  .orb-2 { width: 300px; height: 300px; background: var(--orange); bottom: -60px; left: 30%; animation-delay: -3s; }
  .orb-3 { width: 250px; height: 250px; background: #3a7bd5; top: 20%; right: 10%; animation-delay: -5s; }
  @keyframes float {
    0%,100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(20px,-20px) scale(1.05); }
    66% { transform: translate(-15px,15px) scale(.95); }
  }

  .hero-inner {
    position: relative; z-index: 2;
    /* width: 100%; */
    /* max-width: 1280px; */
    margin: 0 auto;
    padding: 60px 48px;
    display: grid;
    grid-template-columns: 1fr auto 420px;
    gap: 40px;
    align-items: center;
  }

  .hero-content { max-width: 520px; }

  .badge-row {
    display: flex; gap: 12px; margin-bottom: 28px;
    animation: fadeUp .7s .1s both;
  }
  .badge {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    padding: 8px 16px;
    border-radius: 6px;
    color: #fff;
    font-size: 13px; font-weight: 600;
    backdrop-filter: blur(6px);
    transition: background .25s, transform .25s;
  }
  .badge:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }
  .badge-icon { font-size: 18px; }

  .hero-title {
    /* font-family: 'Playfair Display', serif; */
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 700;
    /* font-style: italic; */
    color: #fff;
    line-height: 1.18;
    margin-bottom: 24px;
    animation: fadeUp .7s .2s both;
  }
  .hero-title em { font-style: normal; color: #f8c66b; }

  .hero-subtitle {
    font-size: 15px; color: rgba(255,255,255,.72); line-height: 1.7;
    margin-bottom: 32px;
    animation: fadeUp .7s .3s both;
  }

  .cta-row {
    display: flex; gap: 14px; flex-wrap: wrap;
    animation: fadeUp .7s .4s both;
  }
  .btn-primary {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px; font-weight: 700;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all .25s;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
  }
  .btn-primary:hover {
    background: #ff6820;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(232,82,10,.45);
  }

  .logo-wrap{
    display:flex;
    align-items:center;
}

/* Logo */

.main-logo img{
    width:auto;
    /* max-height:60px; */
    width: 37%;
    object-fit:contain;
    transition:0.3s ease;
}

.main-logo img:hover{
    transform:scale(1.05);
}

/* Mobile */

@media(max-width:576px){

    .main-logo img{
        /* max-height:42px; */
        width: 80%;
    }

}
  .btn-secondary {
    background: rgba(255,255,255,.1);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.35);
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 15px; font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all .25s;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
    backdrop-filter: blur(6px);
  }
  .btn-secondary:hover {
    background: rgba(255,255,255,.2);
    border-color: rgba(255,255,255,.6);
    transform: translateY(-3px);
  }
  .btn-icon { font-size: 17px; }

  /* ── IMAGE COLUMN — SHAKE ANIMATION ADDED ── */
  .hero-image-col {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    position: relative;
  }
  .hero-img {
    width: 340px;
    margin-bottom: -61px;
    max-height: 520px;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,.4));
    /* Entry + continuous shake */
    /* animation: imgEntry .8s .1s both, imgShake 3.5s 1s ease-in-out infinite; */
    transform-origin: bottom center;
  }
  @keyframes imgEntry {
    from { opacity: 0; transform: translateY(40px) scale(.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
  @keyframes imgShake {
    0%,100% { transform: translateX(0) rotate(0deg); }
    10%     { transform: translateX(-5px) rotate(-.7deg); }
    20%     { transform: translateX(5px) rotate(.7deg); }
    30%     { transform: translateX(-4px) rotate(-.5deg); }
    40%     { transform: translateX(4px) rotate(.5deg); }
    50%     { transform: translateX(-2px) rotate(-.3deg); }
    60%     { transform: translateX(2px) rotate(.3deg); }
    70%     { transform: translateX(-1px) rotate(-.1deg); }
    80%     { transform: translateX(1px) rotate(.1deg); }
    90%     { transform: translateX(0) rotate(0deg); }
  }

  /* ── FORM CARD — ATTRACTIVE REDESIGN ── */
  .form-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.24), 0 0 0 1px rgba(255,255,255,.06);
    animation: fadeUp .8s .2s both;
    flex-shrink: 0;
  }

  /* Coloured header inside the form card */
  .form-card-head {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a8f 100%);
    padding: 20px 24px 17px;
    position: relative;
    overflow: hidden;
  }
  .form-card-head::before {
    content: '';
    position: absolute;
    width: 180px; height: 180px; border-radius: 50%;
    background: rgba(255,255,255,.05);
    top: -70px; right: -50px;
  }
  .form-card-head::after {
    content: '';
    position: absolute;
    width: 110px; height: 110px; border-radius: 50%;
    background: rgba(232,82,10,.15);
    bottom: -45px; left: 10px;
  }
  .fch-row {
    display: flex; align-items: center; gap: 11px;
    position: relative; z-index: 1;
    margin-bottom: 5px;
  }
  .fch-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(232,82,10,.9);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .fch-title {
    font-size: 14px; font-weight: 700; color: #fff; line-height: 1.3;
  }
  .fch-sub {
    font-size: 11px; color: rgba(255,255,255,.60);
    position: relative; z-index: 1;
  }
  .fch-pills {
    display: flex; gap: 6px; margin-top: 10px;
    position: relative; z-index: 1;
    flex-wrap: wrap;
  }
  .fch-pill {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.85);
    font-size: 10px; font-weight: 600;
    padding: 3px 10px; border-radius: 50px;
  }

  /* Form body */
  .form-body { padding: 18px 22px 20px; }

  .form-group { margin-bottom: 11px; }

  /* Input with icon */
  .input-wrap { position: relative; }
  .input-wrap .form-input { padding-left: 38px; }
  .input-ico {
    position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
    color: #ccc; display: flex; align-items: center;
    pointer-events: none; transition: color .2s;
  }
  .input-wrap:focus-within .input-ico { color: var(--orange); }

  .form-input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: #f9f9f9;
    transition: border .2s, box-shadow .2s, background .2s;
    outline: none;
  }
  .form-input::placeholder { color: #bbb; }
  .form-input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3.5px rgba(232,82,10,.11);
    background: #fff;
  }

  .phone-row {
    display: flex;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: #f9f9f9;
    overflow: hidden;
    transition: border .2s, box-shadow .2s;
  }
  .phone-row:focus-within {
    border-color: var(--orange);
    box-shadow: 0 0 0 3.5px rgba(232,82,10,.11);
  }
  .phone-prefix {
    display: flex; align-items: center; gap: 6px;
    padding: 0 12px;
    background: #f0f0f0;
    border-right: 1px solid var(--border);
    font-size: 12.5px; font-weight: 700;
    color: #333;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .flag { font-size: 15px; }
  .phone-row input {
    flex: 1; border: none; background: transparent;
    padding: 11px 12px;
    font-size: 13px; font-family: 'Poppins', sans-serif;
    outline: none; color: var(--text-dark);
  }

  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
  .form-select {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 11px 28px 11px 12px;
    font-size: 12.5px;
    font-family: 'Poppins', sans-serif;
    color: #888;
    background: #f9f9f9;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='6'%3E%3Cpath d='M1 1l4.5 4L10 1' stroke='%23bbb' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
    outline: none;
    transition: border .2s;
  }
  .form-select:focus { border-color: var(--orange); }

  .checkbox-row {
    display: flex; align-items: flex-start; gap: 8px;
    margin: 12px 0 14px;
    font-size: 11.5px; color: #666; line-height: 1.5;
  }
  .checkbox-row input[type="checkbox"] {
    width: 14px; height: 14px;
    accent-color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
  }

  .submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--orange) 0%, #c74208 100%);
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 10px;
    font-size: 14px; font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: all .25s;
    letter-spacing: .3px;
    box-shadow: 0 4px 16px rgba(232,82,10,.35);
  }
  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(232,82,10,.52);
  }
  .submit-btn:active { transform: none; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── MOBILE ── */
  @media (max-width: 1024px) {
    .hero-inner {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      padding: 40px 32px;
    }
    .hero-image-col { display: none; }
    .form-card { width: 100%; }
    .hero-content { max-width: 100%; }
  }

  @media (max-width: 768px) {
    .header { padding: 0 20px; }
    .logo-divider, .logo-text-smu span:last-child { display: none; }
    .logo-manipal { font-size: 14px; }
    .apply-btn { padding: 9px 18px; font-size: 13px; }

    .hero-inner {
      grid-template-columns: 1fr;
      padding: 32px 20px 40px;
      gap: 28px;
    }
    .hero-image-col { display: none; }

    .hero-title { font-size: 30px; }
    .badge-row { flex-wrap: wrap; }
    .badge { font-size: 12px; padding: 7px 12px; }
    .cta-row { flex-direction: column; }
    .btn-primary, .btn-secondary { justify-content: center; }

    .form-body { padding: 14px 16px 16px; }
    .two-col { grid-template-columns: 1fr; }
    .fch-pills { display: none; }
  }

  @media (max-width: 480px) {
    .logo-icon { width: 36px; height: 36px; font-size: 10px; }
    .hero-title { font-size: 26px; }
  }

  /* ══════════════════════════════════════
     POPUP MODAL
  ══════════════════════════════════════ */
  .overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(7,15,45,.78);
    backdrop-filter: blur(7px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; pointer-events: none;
    transition: opacity .3s;
  }
  .overlay.open { opacity: 1; pointer-events: all; }

  .modal {
    background: #fff;
    border-radius: 22px;
    width: 100%; max-width: 386px;
    overflow: hidden;
    transform: translateY(32px) scale(.95);
    transition: transform .38s cubic-bezier(.34,1.56,.64,1), opacity .3s;
    opacity: 0;
    box-shadow: 0 32px 80px rgba(0,0,0,.38);
  }
  .overlay.open .modal { transform: translateY(0) scale(1); opacity: 1; }

  /* Modal header */
  .modal-head {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a8f 100%);
    padding: 22px 24px 18px;
    position: relative; overflow: hidden;
  }
  .modal-head::before {
    content: ''; position: absolute;
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(255,255,255,.05);
    top: -80px; right: -50px;
  }
  .modal-head::after {
    content: ''; position: absolute;
    width: 120px; height: 120px; border-radius: 50%;
    background: rgba(232,82,10,.15);
    bottom: -50px; left: 20px;
  }
  .mh-inner { position: relative; z-index: 1; }
  .mh-row { display: flex; align-items: center; justify-content: space-between; }
  .mh-left { display: flex; align-items: center; gap: 12px; }
  .mh-ico {
    width: 40px; height: 40px; border-radius: 12px;
    background: rgba(232,82,10,.9);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .mh-title { font-size: 16px; font-weight: 700; color: #fff; }
  .mh-sub { font-size: 11.5px; color: rgba(255,255,255,.60); margin-top: 2px; }
  .mh-close {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,.12); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 17px; line-height: 1;
    transition: background .2s; flex-shrink: 0;
  }
  .mh-close:hover { background: rgba(255,255,255,.25); }
  .mh-pills { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; }
  .mh-pill {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.85);
    font-size: 10px; font-weight: 600;
    padding: 3px 10px; border-radius: 50px;
  }

  /* Modal body */
  .modal-body { padding: 20px 24px 22px; }
  .mfg { margin-bottom: 11px; }
  .mfi-wrap { position: relative; }
  .mfi-wrap .mfi { padding-left: 40px; }
  .mfi-ico {
    position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
    color: #ccc; display: flex; align-items: center;
    pointer-events: none; transition: color .2s;
  }
  .mfi-wrap:focus-within .mfi-ico { color: var(--orange); }
  .mfi {
    width: 100%; border: 1.5px solid var(--border); border-radius: 10px;
    padding: 12px 14px; font-size: 13px;
    font-family: 'Poppins', sans-serif; color: var(--text-dark);
    background: #f9f9f9; outline: none;
    transition: border .2s, box-shadow .2s, background .2s;
  }
  .mfi::placeholder { color: #bbb; }
  .mfi:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3.5px rgba(232,82,10,.11);
    background: #fff;
  }
  .mph {
    display: flex; border: 1.5px solid var(--border); border-radius: 10px;
    background: #f9f9f9; overflow: hidden;
    transition: border .2s, box-shadow .2s;
  }
  .mph:focus-within { border-color: var(--orange); box-shadow: 0 0 0 3.5px rgba(232,82,10,.11); }
  .mphp {
    display: flex; align-items: center; gap: 5px;
    padding: 0 12px; background: #f0f0f0;
    border-right: 1px solid var(--border);
    font-size: 12.5px; font-weight: 700; color: #333;
    white-space: nowrap; flex-shrink: 0; user-select: none;
  }
  .mph input {
    flex: 1; border: none; background: transparent;
    padding: 12px 12px; font-size: 13px;
    font-family: 'Poppins', sans-serif; outline: none; color: var(--text-dark);
  }
  .mtwo { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 11px; }
  .mfsl {
    width: 100%; border: 1.5px solid var(--border); border-radius: 10px;
    padding: 12px 28px 12px 12px; font-size: 12.5px;
    font-family: 'Poppins', sans-serif; color: #888;
    background: #f9f9f9; outline: none; cursor: pointer;
    -webkit-appearance: none; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='6'%3E%3Cpath d='M1 1l4.5 4L10 1' stroke='%23bbb' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 10px center;
    transition: border .2s;
  }
  .mfsl:focus { border-color: var(--orange); }
  .mck {
    display: flex; align-items: flex-start; gap: 8px;
    margin: 11px 0 14px; font-size: 11.5px; color: #666; line-height: 1.5;
  }
  .mck input { width: 14px; height: 14px; accent-color: var(--orange); flex-shrink: 0; margin-top: 2px; cursor: pointer; }
  .msbtn {
    width: 100%;
    background: linear-gradient(135deg, var(--orange) 0%, #c74208 100%);
    color: #fff; border: none; padding: 14px; border-radius: 11px;
    font-size: 14.5px; font-weight: 700; font-family: 'Poppins', sans-serif;
    cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: all .25s; letter-spacing: .3px;
    box-shadow: 0 4px 16px rgba(232,82,10,.35);
  }
  .msbtn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(232,82,10,.52); }
  .msbtn:active { transform: none; }

  @media (max-width: 500px) {
    .modal-body { padding: 16px 16px 18px; }
    .modal-head { padding: 18px 18px 14px; }
    .mtwo { grid-template-columns: 1fr; }
    .mh-pills { display: none; }
  }

   .ps-section {
    background: #e9ebf5;
    padding: 28px 24px 20px;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
  }
 
  .ps-track-outer {
    overflow: hidden;
    width: 100%;
  }
 
  .ps-track {
    display: flex;
    gap: 0;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
 
  /* ---- Each slide takes 1/5 of width on desktop ---- */
  .ps-slide {
    flex: 0 0 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 6px 8px 10px;
    cursor: default;
  }
 
  /* ---- Circle ---- */
  .ps-circle {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #e8552b;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
    flex-shrink: 0;
  }
 
  .ps-slide:hover .ps-circle {
    transform: scale(1.09) translateY(-4px);
    box-shadow: 0 10px 26px rgba(232,85,43,0.22);
  }
 
  .ps-circle::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(130deg, rgba(255,255,255,0.55) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }
  .ps-slide:hover .ps-circle::after { opacity: 1; }
 
  .ps-img {
    width: 76%;
    height: 76%;
    object-fit: contain;
    position: absolute;
    z-index: 1;
  }
 
  .ps-fallback {
    font-size: 15px;
    font-weight: 700;
    color: #bbb;
    letter-spacing: 1px;
    z-index: 0;
  }
 
  /* ---- Label ---- */
  .ps-label {
    font-size: 12px;
    color: #4a4a6a;
    text-align: center;
    line-height: 1.5;
    margin: 0;
    transition: color 0.25s, transform 0.25s;
  }
  .ps-slide:hover .ps-label {
    color: #e8552b;
    transform: translateY(-2px);
  }
 
  /* ---- Dots ---- */
  .ps-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
  }
 
  .ps-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c0c4e0;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s, width 0.3s, border-radius 0.3s;
  }
  .ps-dot.active {
    background: #e8552b;
    width: 18px;
    border-radius: 3px;
  }
 
  /* ---- Responsive ---- */
  @media (max-width: 900px) {
    .ps-slide { flex: 0 0 33.333%; }
    .ps-circle { width: 90px; height: 90px; }
  }
  @media (max-width: 580px) {
    .ps-slide { flex: 0 0 50%; }
    .ps-circle { width: 80px; height: 80px; }
    .ps-label  { font-size: 11px; }
  }
  @media (max-width: 360px) {
    .ps-slide { flex: 0 0 100%; }
  }

  .smu-section {
    background: #ffffff;
    /* border-top: 4px solid #e8520a; */
    padding: 52px 32px;
    font-family: 'Segoe UI', Georgia, sans-serif;
  }
 
  .smu-container {
    /* max-width: 1100px; */
    width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 52px;
    align-items: flex-start;
  }
 
  /* ---- LEFT CONTENT ---- */
  .smu-content {
    flex: 1 1 60%;
  }
 
  .smu-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fdf0f2;
    color: #e8520a;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    border: 1px solid #f0c0c8;
  }
 
  .smu-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e8520a;
    display: inline-block;
    animation: pulse 1.6s infinite;
  }
 
  @keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.75); }
  }
 
  .smu-heading {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.25;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
  }
 
  .smu-highlight {
    color: #e8520a;
    position: relative;
    display: inline-block;
  }
 
  .smu-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #C8A84B;
    border-radius: 2px;
  }
 
  .smu-divider {
    width: 52px;
    height: 3px;
    background: #C8A84B;
    border-radius: 2px;
    margin-bottom: 20px;
  }
 
  .smu-desc {
    font-size: 15px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 24px;
  }
 
  .smu-tags-label {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e8520a;
    margin-bottom: 10px;
  }
 
  .smu-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
  }
 
  .smu-tag {
    background: #fdf0f2;
    color: #6b1221;
    font-size: 12.5px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid #f0c0c8;
    transition: background 0.25s, color 0.25s, transform 0.2s;
    cursor: default;
  }
 
  .smu-tag:hover {
    background: #e8520a;
    color: #fff;
    border-color: #e8520a;
    transform: translateY(-2px);
  }
 
  .smu-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e8520a;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    letter-spacing: 0.3px;
  }
 
  .smu-btn:hover {
    background: #6b1221;
    transform: translateY(-2px);
  }
 
  .smu-arr {
    font-size: 16px;
    transition: transform 0.2s;
  }
  .smu-btn:hover .smu-arr { transform: translateX(4px); }
 
  /* ---- RIGHT STATS ---- */
  .smu-stats {
    flex: 0 0 230px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-self: center;
  }
 
  .smu-stat-card {
    background: #fdf8f0;
    border: 1px solid #f0e0c0;
    border-radius: 14px;
    padding: 20px 14px;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, border-color 0.3s;
  }
 
  .smu-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(139,26,43,0.12);
    border-color: #C8A84B;
  }
 
  .smu-stat-icon {
    font-size: 24px;
    margin-bottom: 8px;
    line-height: 1;
  }
 
  .smu-stat-num {
    font-size: 18px;
    font-weight: 700;
    color: #e8520a;
    margin-bottom: 4px;
    line-height: 1.2;
  }
 
  .smu-stat-lbl {
    font-size: 11px;
    color: #888;
    font-weight: 500;
    line-height: 1.4;
  }
 
  /* ---- RESPONSIVE ---- */
  @media (max-width: 860px) {
    .smu-container {
      flex-direction: column;
      gap: 32px;
    }
    .smu-stats {
      flex: none;
      width: 100%;
      grid-template-columns: repeat(4, 1fr);
    }
  }
 
  @media (max-width: 560px) {
    .smu-section  { padding: 36px 20px; }
    .smu-heading  { font-size: 24px; }
    .smu-stats    { grid-template-columns: repeat(2, 1fr); }
    .smu-stat-card { padding: 16px 10px; }
  }

  .adv-section {
    background: #e8eaf6;
    padding: 64px 32px;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
  }
 
  .adv-container {
    /* max-width: 1100px; */
    width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 56px;
    align-items: flex-start;
  }
 
  /* ========= LEFT ========= */
  .adv-left {
    flex: 0 0 280px;
    position: sticky;
    top: 24px;
  }
 
  .adv-eyebrow {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e8520a;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideRight 0.6s 0.1s ease forwards;
  }
 
  .adv-heading {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideRight 0.6s 0.2s ease forwards;
  }
 
  .adv-heading-accent { color: #e8520a; }
 
  .adv-line {
    width: 48px;
    height: 4px;
    background: #C8A84B;
    border-radius: 2px;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeIn 0.6s 0.35s ease forwards;
  }
 
  .adv-sub {
    font-size: 13.5px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeIn 0.6s 0.45s ease forwards;
  }
 
  /* Counters */
  .adv-counter-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    animation: fadeIn 0.6s 0.6s ease forwards;
  }
 
  .adv-counter {
    display: flex;
    align-items: baseline;
    gap: 2px;
    flex-wrap: wrap;
  }
 
  .adv-num {
    font-size: 28px;
    font-weight: 800;
    color: #e8520a;
    line-height: 1;
  }
 
  .adv-plus {
    font-size: 20px;
    font-weight: 800;
    color: #C8A84B;
    margin-right: 10px;
  }
 
  .adv-clbl {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    width: 100%;
    margin-top: 2px;
    letter-spacing: 0.3px;
  }
 
  /* ========= GRID ========= */
  .adv-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
 
  /* ========= CARD ========= */
  .adv-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px 24px;
    position: relative;
    overflow: hidden;
    cursor: default;
    opacity: 0;
    transform: translateY(30px);
    transition:
      transform 0.4s cubic-bezier(0.34,1.4,0.64,1),
      box-shadow 0.4s ease;
    border: 1px solid rgba(139,26,43,0.08);
  }
 
  .adv-card.visible {
    opacity: 1;
    transform: translateY(0);
  }
 
  .adv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(139,26,43,0.13);
  }
 
  /* Bottom color bar slides up on hover */
  .adv-card-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #e8520a, #C8A84B);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 0 0 0 0;
  }
 
  .adv-card:hover .adv-card-bar { transform: scaleX(1); }
 
  /* Icon */
  .adv-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1.5px solid rgba(139,26,43,0.25);
    background: #fdf0f2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.3s, border-color 0.3s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  }
 
  .adv-card:hover .adv-icon-wrap {
    background: #e8520a;
    border-color: #e8520a;
    transform: scale(1.1) rotate(-6deg);
  }
 
  .adv-card:hover .adv-icon-wrap svg {
    stroke: #fff;
  }
 
  .adv-icon-wrap svg {
    transition: stroke 0.3s;
  }
 
  /* Card text */
  .adv-card-title {
    font-size: 15.5px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.25s;
  }
 
  .adv-card:hover .adv-card-title { color: #e8520a; }
 
  .adv-card-text {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
  }
 
  /* ========= ANIMATIONS ========= */
  @keyframes slideRight {
    to { opacity: 1; transform: translateX(0); }
  }
  @keyframes fadeIn {
    to { opacity: 1; }
  }
 
  /* ========= RESPONSIVE ========= */
  @media (max-width: 860px) {
    .adv-container { flex-direction: column; gap: 36px; }
    .adv-left { flex: none; position: static; }
    .adv-counter-row { flex-direction: row; gap: 28px; }
    .adv-counter { align-items: center; }
  }
 
  @media (max-width: 560px) {
    .adv-section { padding: 40px 16px; }
    .adv-grid { grid-template-columns: 1fr; }
    .adv-heading { font-size: 28px; }
    .adv-card { padding: 22px 18px; }
  }
  .hp-section {
    background: #ffffff;
    padding: 56px 32px 48px;
    font-family: 'Segoe UI', sans-serif;
    border-top: 4px solid #e8520a;
    overflow: hidden;
  }
 
  /* ---- Top heading ---- */
  .hp-top {
    text-align: center;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 0.65s 0.1s ease forwards;
  }
 
  .hp-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #e8520a;
    margin-bottom: 10px;
  }
 
  .hp-heading {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
    line-height: 1.2;
  }
 
  .hp-accent { color: #e8520a; }
 
  .hp-underline {
    width: 52px;
    height: 4px;
    background: #C8A84B;
    border-radius: 2px;
    margin: 0 auto 14px;
  }
 
  .hp-sub {
    font-size: 14px;
    color: #666;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.65;
  }
 
  /* ---- Image wrapper ---- */
  .hp-img-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 36px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(139,26,43,0.1);
    background: #fafafa;
    opacity: 0;
    transform: translateY(22px);
    animation: fadeUp 0.7s 0.3s ease forwards;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
  }
 
  .hp-img-wrapper:hover {
    box-shadow: 0 14px 40px rgba(139,26,43,0.12);
    transform: translateY(-3px);
  }
 
  .hp-img {
    width: 100%;
    display: block;
    padding: 24px 32px;
    object-fit: contain;
  }
 
  /* Edge fade overlays */
  .hp-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    pointer-events: none;
  }
 
  .hp-fade-left  { left: 0;  background: linear-gradient(to right, #fafafa, transparent); }
  .hp-fade-right { right: 0; background: linear-gradient(to left,  #fafafa, transparent); }
 
  /* ---- Stats row ---- */
  .hp-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: #fdf0f2;
    border: 1px solid rgba(139,26,43,0.12);
    border-radius: 14px;
    max-width: 560px;
    margin: 0 auto;
    padding: 20px 0;
    opacity: 0;
    animation: fadeUp 0.65s 0.5s ease forwards;
  }
 
  .hp-stat {
    flex: 1;
    text-align: center;
  }
 
  .hp-sdivider {
    width: 1px;
    height: 40px;
    background: rgba(139,26,43,0.2);
  }
 
  .hp-snum {
    font-size: 26px;
    font-weight: 800;
    color: #e8520a;
    line-height: 1;
  }
 
  .hp-splus {
    font-size: 18px;
    font-weight: 800;
    color: #C8A84B;
  }
 
  .hp-slbl {
    font-size: 11.5px;
    color: #666;
    font-weight: 600;
    margin-top: 4px;
    letter-spacing: 0.3px;
  }
 
  /* ---- Animation ---- */
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
 
  /* ---- Responsive ---- */
  @media (max-width: 640px) {
    .hp-section  { padding: 40px 16px 36px; }
    .hp-heading  { font-size: 22px; }
    .hp-img      { padding: 16px; }
    .hp-stats    { gap: 0; padding: 16px 0; }
    .hp-snum     { font-size: 20px; }
  }

  /* =====================
     SECTION 1: FINANCING
  ===================== */
  .fin-section {
    background: #e8eaf6;
    padding: 48px 32px;
    font-family: 'Segoe UI', sans-serif;
  }
 
  .fin-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(139,26,43,0.1);
    box-shadow: 0 4px 24px rgba(139,26,43,0.07);
  }
 
  .fin-card {
    flex: 1;
    padding: 36px 36px 32px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: background 0.3s ease;
  }
 
  .fin-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s ease; }
  .fin-card:hover { background: #fdf8f8; }
 
  .fin-divider {
    width: 1px;
    background: rgba(139,26,43,0.12);
    margin: 24px 0;
  }
 
  .fin-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #fdf0f2;
    border: 1.5px solid rgba(139,26,43,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background 0.3s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  }
 
  .fin-card:hover .fin-icon-wrap {
    background: #e8520a;
    transform: scale(1.1) rotate(-5deg);
  }
  .fin-card:hover .fin-icon-wrap svg { stroke: #fff; }
  .fin-icon-wrap svg { transition: stroke 0.3s; }
 
  .fin-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    transition: color 0.25s;
  }
  .fin-card:hover .fin-title { color: #e8520a; }
 
  .fin-text {
    font-size: 13.5px;
    color: #555;
    line-height: 1.7;
  }
 
  .fin-bar {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #e8520a, #C8A84B);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .fin-card:hover .fin-bar { transform: scaleX(1); }
 
  /* =====================
     SECTION 2: GLOBAL
  ===================== */
  .gi-section {
    background: #ffffff;
    padding: 60px 32px 56px;
    font-family: 'Segoe UI', sans-serif;
    /* border-top: 4px solid #e8520a; */
  }
 
  .gi-top {
    text-align: center;
    margin-bottom: 44px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.6s 0.1s ease forwards;
  }
 
  .gi-heading {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 12px;
  }
 
  .gi-accent { color: #e8520a; }
 
  .gi-underline {
    width: 56px;
    height: 4px;
    background: #C8A84B;
    border-radius: 2px;
    margin: 0 auto;
  }
 
  /* 3-col layout: stats | map | stats */
  .gi-body {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
  }
 
  .gi-stats {
    flex: 0 0 180px;
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
 
  .gi-stats-left { align-items: flex-start; }
  .gi-stats-right { align-items: flex-start; }
 
  .gi-stat {
    opacity: 0;
    transform: translateX(-16px);
  }
  .gi-stats-right .gi-stat { transform: translateX(16px); }
  .gi-stat.visible { opacity: 1; transform: translateX(0); transition: opacity 0.5s ease, transform 0.5s ease; }
 
  .gi-num {
    font-size: 34px;
    font-weight: 900;
    color: #e8520a;
    line-height: 1;
  }
 
  .gi-plus {
    font-size: 22px;
    font-weight: 800;
    color: #C8A84B;
  }
 
  .gi-lbl {
    font-size: 12.5px;
    color: #555;
    margin-top: 4px;
    line-height: 1.5;
    font-weight: 500;
  }
 
  /* Map */
  .gi-map-wrap {
    flex: 1;
    text-align: center;
    opacity: 0;
    transform: scale(0.96);
    animation: mapIn 0.75s 0.35s ease forwards;
  }
 
  .gi-map-img {
    width: 100%;
    max-width: 580px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    transition: transform 0.4s ease;
  }
 
  .gi-map-wrap:hover .gi-map-img { transform: scale(1.02); }
 
  /* Animations */
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes mapIn {
    to { opacity: 1; transform: scale(1); }
  }
 
  /* ---- RESPONSIVE ---- */
  @media (max-width: 860px) {
    .gi-body {
      flex-direction: column;
      gap: 24px;
    }
    .gi-stats {
      flex: none;
      width: 100%;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 20px 32px;
      justify-content: center;
    }
    .gi-stats-left, .gi-stats-right { align-items: center; text-align: center; }
    .gi-stat { transform: translateY(16px) !important; }
    .gi-map-wrap { width: 100%; }
  }
 
  @media (max-width: 600px) {
    .fin-container { flex-direction: column; border-radius: 14px; }
    .fin-divider   { width: 100%; height: 1px; margin: 0 24px; width: calc(100% - 48px); align-self: center; }
    .fin-card      { padding: 28px 24px; }
    .fin-section   { padding: 32px 16px; }
    .gi-section    { padding: 40px 16px 40px; }
    .gi-heading    { font-size: 24px; }
    .gi-num        { font-size: 28px; }
    .gi-stat       { text-align: center; }
  }

  .fee-section {
    background: #f8f8fc;
    padding: 56px 32px 48px;
    font-family: 'Segoe UI', sans-serif;
    border-top: 4px solid #e8520a;
  }
 
  .fee-container {
    /* max-width: 920px; */
    width: 90%;
    margin: 0 auto;
  }
 
  /* Header */
  .fee-header {
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.6s 0.1s ease forwards;
  }
 
  .fee-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #e8520a;
    margin-bottom: 8px;
  }
 
  .fee-heading {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
  }
 
  .fee-accent { color: #e8520a; }
 
  .fee-line {
    width: 48px;
    height: 4px;
    background: #C8A84B;
    border-radius: 2px;
    margin-bottom: 12px;
  }
 
  .fee-sub {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
  }
 
  /* Tab */
  .fee-tab-row {
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.5s 0.25s ease forwards;
  }
 
  .fee-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 700;
    color: #e8520a;
    padding-bottom: 8px;
    border-bottom: 3px solid #e8520a;
    cursor: default;
  }
 
  /* Grid */
  .fee-grid {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.65s 0.35s ease forwards;
  }
 
  /* Main card — left */
  .fee-main-card {
    flex: 0 0 42%;
    background: #e8520a;
    border-radius: 18px;
    padding: 36px 28px;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(0.34,1.3,0.64,1), box-shadow 0.35s ease;
  }
 
  .fee-main-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
  }
  .fee-main-card::after {
    content: '';
    position: absolute;
    bottom: -30px; left: -30px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(200,168,75,0.12);
  }
 
  .fee-main-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(139,26,43,0.25);
  }
 
  .fee-main-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 4px;
  }
 
  .fee-main-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 16px;
  }
 
  .fee-main-amount {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
  }
 
  .fee-currency {
    font-size: 16px;
    font-weight: 600;
    color: #C8A84B;
  }
 
  .fee-big {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
  }
 
  .fee-main-note {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    font-style: italic;
  }
 
  .fee-main-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: #C8A84B;
    color: #5a3800;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
  }
 
  /* Right side */
  .fee-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
 
  .fee-sub-card {
    flex: 1;
    border-radius: 14px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: transform 0.35s cubic-bezier(0.34,1.3,0.64,1), box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
  }
 
  .fee-sem-card {
    background: #1a1a5e;
    color: #fff;
  }
 
  .fee-emi-card {
    background: #C8A84B;
    color: #3a2000;
  }
 
  .fee-sub-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.15);
  }
 
  .fee-sub-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }
 
  .fee-sub-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .fee-sem-card .fee-sub-icon { color: #fff; }
  .fee-emi-card .fee-sub-icon { color: #5a3800; background: rgba(0,0,0,0.1); }
 
  .fee-sub-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.85;
    white-space: nowrap;
  }
 
  .fee-sub-right { text-align: right; }
 
  .fee-sub-amount {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
  }
  .fee-sub-amount strong { font-size: 24px; font-weight: 900; }
 
  .fee-sub-note {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 3px;
    font-style: italic;
  }
 
  /* Scholarship Banner */
  .fee-scholarship {
    background: #fff;
    border: 1.5px solid rgba(200,168,75,0.4);
    border-left: 4px solid #C8A84B;
    border-radius: 12px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    animation: fadeUp 0.55s 0.55s ease forwards;
    transition: box-shadow 0.3s;
  }
 
  .fee-scholarship:hover {
    box-shadow: 0 6px 20px rgba(200,168,75,0.18);
  }
 
  .fee-sch-icon { flex-shrink: 0; }
 
  .fee-sch-text {
    flex: 1;
    font-size: 13px;
    color: #444;
    line-height: 1.6;
  }
  .fee-sch-text strong { color: #e8520a; }
 
  .fee-sch-btn {
    background: #e8520a;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.25s, transform 0.2s;
    flex-shrink: 0;
  }
  .fee-sch-btn:hover { background: #6b1221; transform: translateY(-2px); }
 
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
 
  /* ---- RESPONSIVE ---- */
  @media (max-width: 700px) {
    .fee-grid { flex-direction: column; }
    .fee-main-card { flex: none; padding: 28px 24px; }
    .fee-big { font-size: 36px; }
    .fee-scholarship { flex-wrap: wrap; }
    .fee-sch-btn { width: 100%; text-align: center; }
  }
 
  @media (max-width: 480px) {
    .fee-section { padding: 36px 16px 32px; }
    .fee-heading { font-size: 24px; }
    .fee-sub-card { flex-direction: column; align-items: flex-start; gap: 10px; }
    .fee-sub-right { text-align: left; }
  }

  .ap-section {
    background: #ffffff;
    padding: 60px 32px 52px;
    font-family: 'Segoe UI', sans-serif;
    border-top: 4px solid #e8520a;
    overflow: hidden;
  }
 
  .ap-container { 
    /* max-width: 1060px; */
    width: 90%;
     margin: 0 auto;
     }
 
  /* ---- Header ---- */
  .ap-header {
    text-align: center;
    margin-bottom: 52px;
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 0.6s 0.1s ease forwards;
  }
 
  .ap-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #e8520a;
    margin-bottom: 8px;
  }
 
  .ap-heading {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
  }
 
  .ap-accent { color: #e8520a; }
 
  .ap-underline {
    width: 52px; height: 4px;
    background: #C8A84B;
    border-radius: 2px;
    margin: 0 auto 12px;
  }
 
  .ap-sub {
    font-size: 14px;
    color: #666;
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.6;
  }
 
  /* ---- Steps wrapper ---- */
  .ap-steps {
    display: flex;
    gap: 16px;
    position: relative;
    align-items: flex-start;
    margin-bottom: 48px;
  }
 
  /* Connecting line */
  .ap-line-track {
    position: absolute;
    top: 22px;
    left: calc(12.5% + 0px);
    right: calc(12.5% + 0px);
    height: 3px;
    background: #e8e8f0;
    border-radius: 2px;
    z-index: 0;
    overflow: hidden;
  }
 
  .ap-line-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #e8520a, #C8A84B);
    border-radius: 2px;
    transition: width 1.4s cubic-bezier(0.4,0,0.2,1);
  }
 
  /* ---- Each Step ---- */
  .ap-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(28px);
    z-index: 1;
  }
 
  .ap-step.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
 
  /* Bubble top */
  .ap-step-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
 
  .ap-bubble {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #e8520a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
  }
 
  .ap-step:hover .ap-bubble {
    transform: scale(1.15);
    box-shadow: 0 8px 22px rgba(139,26,43,0.3);
  }
 
  .ap-bubble-num {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    z-index: 1;
  }
 
  .ap-bubble-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid rgba(139,26,43,0.25);
    animation: ringPulse 2s infinite;
  }
 
  @keyframes ringPulse {
    0%,100% { transform: scale(1); opacity: 0.6; }
    50%      { transform: scale(1.2); opacity: 0; }
  }
 
  .ap-step-badge {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #e8520a;
    background: #fdf0f2;
    border: 1px solid rgba(139,26,43,0.2);
    padding: 3px 10px;
    border-radius: 20px;
  }
 
  /* Card */
  .ap-step-card {
    background: #f8f8fc;
    border: 1px solid rgba(139,26,43,0.1);
    border-radius: 16px;
    padding: 22px 18px 20px;
    text-align: center;
    width: 100%;
    transition: transform 0.35s cubic-bezier(0.34,1.3,0.64,1), box-shadow 0.35s ease, border-color 0.3s, background 0.3s;
    position: relative;
    overflow: hidden;
  }
 
  .ap-step-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #e8520a, #C8A84B);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
 
  .ap-step:hover .ap-step-card {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(139,26,43,0.13);
    border-color: rgba(139,26,43,0.25);
    background: #fff;
  }
 
  .ap-step:hover .ap-step-card::after { transform: scaleX(1); }
 
  .ap-icon-wrap {
    width: 50px; height: 50px;
    border-radius: 12px;
    background: #fdf0f2;
    border: 1.5px solid rgba(139,26,43,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: #e8520a;
    transition: background 0.3s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  }
 
  .ap-step:hover .ap-icon-wrap {
    background: #e8520a;
    color: #fff;
    transform: rotate(-8deg) scale(1.08);
  }
 
  .ap-step-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    transition: color 0.25s;
  }
 
  .ap-step:hover .ap-step-title { color: #e8520a; }
 
  .ap-step-text {
    font-size: 12.5px;
    color: #666;
    line-height: 1.65;
  }
 
  /* ---- CTA ---- */
  .ap-cta-wrap {
    text-align: center;
    opacity: 0;
    animation: fadeUp 0.6s 0.9s ease forwards;
  }
 
  .ap-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e8520a;
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    transition: background 0.25s, transform 0.3s cubic-bezier(0.34,1.3,0.64,1), box-shadow 0.3s;
    margin-bottom: 12px;
  }
 
  .ap-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200,168,75,0.25), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
 
  .ap-cta:hover {
    background: #6b1221;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 32px rgba(139,26,43,0.3);
  }
 
  .ap-cta:hover::before { opacity: 1; }
 
  .ap-cta svg {
    transition: transform 0.3s ease;
  }
 
  .ap-cta:hover svg { transform: translateX(5px); }
 
  .ap-cta-note {
    font-size: 12px;
    color: #999;
    letter-spacing: 0.3px;
  }
 
  /* Animations */
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
 
  /* ---- RESPONSIVE ---- */
  @media (max-width: 860px) {
    .ap-steps {
      flex-wrap: wrap;
      gap: 24px;
    }
    .ap-step { flex: 0 0 calc(50% - 12px); }
    .ap-line-track { display: none; }
  }
 
  @media (max-width: 480px) {
    .ap-section { padding: 40px 16px 40px; }
    .ap-heading  { font-size: 26px; }
    .ap-step     { flex: 0 0 100%; }
    .ap-cta      { font-size: 14px; padding: 14px 28px; }
  }
  /* ===== DEGREE SECTION ===== */
  .deg-section {
    display: flex;
    min-height: 420px;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
    position: relative;
  }
 
  /* ---- LEFT ---- */
  .deg-left {
    flex: 0 0 48%;
    background: #e8520a;
    padding: 52px 48px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
 
  /* Decorative bg circles */
  .deg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
  }
  .deg-c1 { width: 280px; height: 280px; top: -80px; right: -80px; }
  .deg-c2 { width: 180px; height: 180px; bottom: -60px; left: -40px; background: rgba(200,168,75,0.1); }
 
  .deg-left-content {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateX(-28px);
    animation: slideRight 0.7s 0.2s ease forwards;
  }
 
  .deg-eyebrow {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 14px;
    border: 1px solid rgba(200,168,75,0.4);
    padding: 4px 12px;
    border-radius: 20px;
  }
 
  .deg-heading {
    font-size: 38px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
  }
 
  .deg-heading-white { color: #ffffff; }
 
  .deg-gold-line {
    width: 48px; height: 4px;
    background: #ffffff;
    border-radius: 2px;
    margin-bottom: 18px;
  }
 
  .deg-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 440px;
  }
 
  .deg-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
 
  .deg-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    background: rgba(200,168,75,0.12);
    border: 1px solid rgba(200,168,75,0.3);
    padding: 6px 14px;
    border-radius: 20px;
    transition: background 0.25s, transform 0.25s;
    cursor: default;
  }
 
  .deg-badge:hover {
    background: rgba(200,168,75,0.22);
    transform: translateY(-2px);
  }
 
  /* ---- RIGHT ---- */
  .deg-right {
    flex: 1;
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 36px;
    position: relative;
  }
 
  .deg-frame {
    position: relative;
    border-radius: 12px;
    border: 10px solid #111;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5), inset 0 0 0 2px #333;
    overflow: hidden;
    max-width: 480px;
    width: 100%;
    opacity: 0;
    transform: translateX(28px) scale(0.96);
    animation: slideLeft 0.75s 0.35s ease forwards;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
 
  .deg-frame:hover {
    transform: translateX(0) scale(1.02) rotate(-0.5deg);
    box-shadow: 0 32px 70px rgba(0,0,0,0.6), inset 0 0 0 2px #444;
  }
 
  .deg-img {
    width: 100%;
    display: block;
    border-radius: 2px;
  }
 
  .deg-placeholder {
    background: #f5f0e8;
    padding: 48px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
 
  .deg-placeholder p {
    font-size: 15px;
    font-weight: 600;
    color: #e8520a;
  }
 
  .deg-placeholder span {
    font-size: 12px;
    color: #aaa;
  }
 
  /* Shine overlay */
  .deg-frame-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
  }
 
  /* Floating badge */
  .deg-float-badge {
    position: absolute;
    bottom: 32px;
    left: 24px;
    background: #fff;
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    opacity: 0;
    animation: floatBadge 0.6s 0.9s ease forwards;
  }
 
  .deg-fb-title {
    font-size: 14px;
    font-weight: 800;
    color: #e8520a;
    line-height: 1;
  }
 
  .deg-fb-sub {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
  }
 
  /* Keyframes */
  @keyframes slideRight {
    to { opacity: 1; transform: translateX(0); }
  }
 
  @keyframes slideLeft {
    to { opacity: 1; transform: translateX(0) scale(1); }
  }
 
  @keyframes floatBadge {
    to { opacity: 1; }
  }
 
  /* ===== FOOTER ===== */
  .deg-footer {
    background: #6b1221;
    padding: 18px 32px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
  }
 
  .deg-footer p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
  }
 
  .deg-footer-link {
    color: #C8A84B;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
  }
 
  .deg-footer-link:hover { color: #fff; }
 
  /* ---- RESPONSIVE ---- */
  @media (max-width: 860px) {
    .deg-section    { flex-direction: column; }
    .deg-left       { flex: none; padding: 40px 28px; }
    .deg-heading    { font-size: 30px; }
    .deg-right      { padding: 36px 24px 48px; }
    .deg-float-badge { bottom: 16px; left: 16px; }
  }
 
  @media (max-width: 480px) {
    .deg-left    { padding: 32px 20px; }
    .deg-heading { font-size: 26px; }
    .deg-desc    { font-size: 13px; }
    .deg-right   { padding: 28px 16px 40px; }
    .deg-frame   { border-width: 6px; }
  }

  /* ================= SECTION ================= */

.who-can-apply{
    background:#071b7a;
    padding:55px 20px;
    position:relative;
    overflow:hidden;
}

.container{
    max-width:1200px;
    margin:auto;
}

/* ================= HEADING ================= */

.section-heading{
    text-align:center;
    margin-bottom:35px;
}

.section-heading h2{
    color:#fff;
    font-size:42px;
    font-weight:700;
}

.section-heading span{
    font-family:'Great Vibes',cursive;
    font-size:54px;
    font-weight:400;
}

/* ================= GRID ================= */

.apply-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

/* ================= CARD ================= */

.apply-card{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:18px;
    padding:22px;
    transition:0.4s ease;
    backdrop-filter:blur(10px);

    opacity:0;
    transform:translateY(40px);
    animation:fadeUp 0.8s forwards;
}

.apply-card:nth-child(2){
    animation-delay:0.2s;
}

.apply-card:nth-child(3){
    animation-delay:0.4s;
}

.apply-card:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,0.1);
    box-shadow:0 12px 25px rgba(0,0,0,0.2);
}

/* ================= ICON ================= */

.icon-box{
    width:58px;
    height:58px;
    border-radius:14px;
    background:rgba(255,255,255,0.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:16px;
    transition:0.4s ease;
}

.apply-card:hover .icon-box{
    transform:scale(1.1) rotate(-6deg);
    background:#fff;
}

/* ================= CONTENT ================= */

.content h3{
    color:#fff;
    font-size:22px;
    margin-bottom:10px;
    line-height:1.3;
}

.content p{
    color:rgba(255,255,255,0.82);
    font-size:15px;
    line-height:1.6;
}

/* ================= ANIMATION ================= */

@keyframes fadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ================= TABLET ================= */

@media(max-width:992px){

    .apply-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:36px;
    }

    .section-heading span{
        font-size:46px;
    }
}

/* ================= MOBILE ================= */

@media(max-width:576px){

    .who-can-apply{
        padding:45px 15px;
    }

    .section-heading{
        margin-bottom:28px;
    }

    .section-heading h2{
        font-size:30px;
    }

    .section-heading span{
        display:block;
        font-size:42px;
        margin-top:5px;
    }

    .apply-card{
        padding:18px;
        border-radius:16px;
    }

    .icon-box{
        width:52px;
        height:52px;
        font-size:24px;
    }

    .content h3{
        font-size:20px;
    }

    .content p{
        font-size:14px;
    }
}