 /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --navy: #0b1b3f;
      --navy-mid: #162d5e;
      --teal: #00b894;
      --teal-dark: #00956e;
      --teal-light: #e6faf5;
      --gold: #d4a848;
      --cream: #faf9f6;
      --text: #1a1a2e;
      --muted: #5a6478;
      --border: #e2e8f0;
      --white: #ffffff;
      --radius: 14px;
      --shadow-sm: 0 2px 12px rgba(11,27,63,0.08);
      --shadow-md: 0 8px 32px rgba(11,27,63,0.13);
      --shadow-lg: 0 20px 60px rgba(11,27,63,0.18);
    }
    html {
      scroll-behavior: smooth;
      width: 100%;
      overflow-x: clip;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--text);
      line-height: 1.7;
      width: 100%;
      overflow-x: hidden;
      margin: 0;
      padding: 0;
    }
    html.embedded-mobile-fix,
    html.embedded-mobile-fix body {
      overflow-x: hidden;
    }
    html.embedded-mobile-fix .topbar-inner,
    html.embedded-mobile-fix .container,
    html.embedded-mobile-fix .hero-inner {
      padding-left: 8px;
      padding-right: 8px;
    }
    img, video, iframe, svg { max-width: 100%; height: auto; }

    /* ===== TOPBAR ===== */
    .topbar {
      background: var(--navy);
      color: rgba(255,255,255,0.75);
      font-size: 13px;
      padding: 8px 0;
    }
    .topbar-inner {
      max-width: 1200px; margin: auto; padding: 0 32px;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
    }
    .topbar a { color: rgba(255,255,255,0.75); text-decoration: none; }
    .topbar a:hover { color: var(--teal); }
    .topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; }
    .topbar-left i, .topbar-right i { color: var(--teal); margin-right: 5px; }

    /* ===== NAVBAR ===== */
    .navbar {
      background: var(--white);
      padding: 0 32px;
      display: flex; align-items: center; justify-content: space-between;
      position: sticky; top: 0; z-index: 999;
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      height: 72px;
    }
    .logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
    .logo-icon {
      width: 46px; height: 46px;
      border-radius: 10px; display: flex; align-items: center; justify-content: center;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--white);
    }
    .logo-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }
    .logo-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 0;
      padding-top: 4px;
    }
    .logo-text h1 {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      color: var(--navy);
      font-weight: 700;
      line-height: 1.1;
      margin: 0;
      white-space: nowrap;
    }
    .logo-text span {
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      line-height: 1.2;
      margin-top: 2px;
      display: block;
    }
    .menu-toggle { display: none; }
    .menu-btn {
      width: 44px; height: 44px;
      border: 1px solid var(--border);
      border-radius: 10px;
      display: none;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: var(--white);
    }
    .menu-btn span {
      width: 20px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: all 0.25s ease;
    }
    .nav-links { display: flex; gap: 4px; list-style: none; }
    .nav-links a {
      display: block; padding: 8px 16px; font-size: 14px; font-weight: 500;
      color: var(--text); text-decoration: none; border-radius: 8px;
      transition: all 0.2s;
    }
    .nav-links a:hover, .nav-links a.active { background: var(--teal-light); color: var(--teal-dark); }
    .nav-cta {
      background: var(--teal); color: var(--white) !important;
      padding: 10px 22px !important; border-radius: 8px !important;
    }
    .nav-cta:hover { background: var(--teal-dark) !important; color: var(--white) !important; }

    /* ===== HERO ===== */
    .hero {
      min-height: 88vh;
      background: linear-gradient(135deg, #0b1b3f 0%, #162d5e 50%, #0d3b4f 100%);
      position: relative;
      display: flex; align-items: center;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300b894' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .hero-shape {
      position: absolute; right: -80px; top: -80px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(0,184,148,0.12) 0%, transparent 70%);
      border-radius: 50%;
    }
    .hero-shape2 {
      position: absolute; left: -100px; bottom: -100px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(212,168,72,0.08) 0%, transparent 70%);
      border-radius: 50%;
    }
    .hero-inner {
      max-width: 1200px; margin: auto; padding: 80px 32px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
      position: relative; z-index: 2;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(0,184,148,0.15); border: 1px solid rgba(0,184,148,0.3);
      color: var(--teal); padding: 6px 16px; border-radius: 100px;
      font-size: 13px; font-weight: 500; margin-bottom: 20px;
    }
    .hero-badge i { font-size: 11px; }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 4vw, 58px);
      color: var(--white); line-height: 1.15; margin-bottom: 20px;
    }
    .hero h1 span { color: var(--teal); }
    .hero p {
      color: rgba(255,255,255,0.7); font-size: 17px; margin-bottom: 36px;
      max-width: 480px;
    }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-primary {
      background: var(--teal); color: var(--white);
      padding: 14px 32px; border-radius: 10px; text-decoration: none;
      font-weight: 600; font-size: 15px;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all 0.25s; border: 2px solid var(--teal);
    }
    .btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,184,148,0.35); }
    .btn-outline-white {
      border: 2px solid rgba(255,255,255,0.35); color: var(--white);
      padding: 14px 32px; border-radius: 10px; text-decoration: none;
      font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 8px;
      transition: all 0.25s;
    }
    .btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
    .hero-visual {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    }
    .hero-card {
      background: rgba(255,255,255,0.07); backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius);
      padding: 24px 20px; transition: all 0.3s;
    }
    .hero-card:hover { background: rgba(255,255,255,0.11); transform: translateY(-4px); }
    .hero-card:first-child { grid-column: 1 / -1; }
    .hero-card-icon {
      width: 44px; height: 44px; border-radius: 10px;
      background: rgba(0,184,148,0.2); display: flex; align-items: center; justify-content: center;
      margin-bottom: 12px;
    }
    .hero-card-icon i { color: var(--teal); font-size: 18px; }
    .hero-card h3 { color: var(--white); font-size: 15px; font-weight: 600; margin-bottom: 4px; }
    .hero-card p { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.5; }

    /* ===== NOTICE TICKER ===== */
    .notice-bar {
      background: var(--navy-mid); color: var(--white); padding: 12px 0;
      display: flex; align-items: center; overflow: hidden;
    }
    .notice-label {
      background: var(--gold); color: var(--navy); font-weight: 700;
      font-size: 12px; padding: 4px 16px; white-space: nowrap;
      text-transform: uppercase; letter-spacing: 0.05em; margin-right: 20px;
      flex-shrink: 0;
    }
    .notice-scroll { overflow: hidden; flex: 1; }
    .notice-inner {
      display: flex; gap: 60px; width: max-content;
      animation: ticker 28s linear infinite;
      font-size: 13px; color: rgba(255,255,255,0.8);
    }
    .notice-inner span i { color: var(--teal); margin-right: 8px; }
    @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ===== SECTION COMMONS ===== */
    section { padding: 90px 0; }
    .container { max-width: 1200px; margin: auto; padding: 0 32px; }
    .section-tag {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--teal-light); color: var(--teal-dark);
      font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 100px;
      text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 14px;
    }
    .section-tag i { font-size: 10px; }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3vw, 42px);
      color: var(--navy); line-height: 1.2; margin-bottom: 16px;
    }
    .section-sub { color: var(--muted); font-size: 16px; max-width: 560px; }
    .section-header { margin-bottom: 50px; }
    .section-header.centered { text-align: center; }
    .section-header.centered .section-sub { margin: 0 auto; }

    .about-grid > *,
    .programs-grid > *,
    .facilities-grid > *,
    .admissions-grid > *,
    .faculty-grid > *,
    .footer-grid > * {
      min-width: 0;
    }

    /* ===== ABOUT ===== */
    .about { background: var(--white); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
    .about-image-wrap {
      position: relative; border-radius: 20px; overflow: hidden;
    }
    .about-image-wrap img { width: 100%; height: 460px; object-fit: cover; display: block; border-radius: 20px; }
    .about-image-wrap::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(11,27,63,0.3) 0%, transparent 60%);
      border-radius: 20px;
    }
    .about-badge-float {
      position: absolute; bottom: 24px; left: 24px; z-index: 2;
      background: var(--white); border-radius: 12px; padding: 14px 20px;
      box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
    }
    .about-badge-float .num { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700; color: var(--navy); }
    .about-badge-float p { font-size: 12px; color: var(--muted); line-height: 1.3; }
    .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0 32px; }
    .about-feat {
      display: flex; align-items: flex-start; gap: 12px;
      background: var(--cream); border-radius: 10px; padding: 14px;
    }
    .about-feat-icon {
      width: 36px; height: 36px; background: var(--teal-light);
      border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .about-feat-icon i { color: var(--teal); font-size: 15px; }
    .about-feat h4 { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
    .about-feat p { font-size: 12px; color: var(--muted); line-height: 1.4; }
    .btn-navy {
      background: var(--navy); color: var(--white);
      padding: 13px 30px; border-radius: 10px; text-decoration: none;
      font-weight: 600; font-size: 14px;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all 0.25s;
    }
    .btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }

    /* ===== STATS ===== */
    .stats-section {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      padding: 70px 0;
    }
    .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
    .stat-item {
      text-align: center; padding: 40px 24px;
      border-right: 1px solid rgba(255,255,255,0.08);
      position: relative;
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 52px; font-weight: 700; color: var(--white); line-height: 1;
    }
    .stat-num span { color: var(--teal); }
    .stat-label { color: rgba(255,255,255,0.55); font-size: 14px; margin-top: 8px; }
    .stat-icon { color: var(--teal); font-size: 22px; margin-bottom: 16px; }

    /* ===== PROGRAMS ===== */
    .programs { background: var(--cream); }
    .programs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .program-card {
      background: var(--white); border-radius: var(--radius);
      padding: 36px; border: 1px solid var(--border);
      transition: all 0.3s; position: relative; overflow: hidden;
    }
    .program-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--teal), var(--navy));
    }
    .program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
    .prog-icon {
      width: 56px; height: 56px; background: var(--navy);
      border-radius: 12px; display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
    }
    .prog-icon i { color: var(--teal); font-size: 22px; }
    .program-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 24px; color: var(--navy); margin-bottom: 8px;
    }
    .program-card .prog-sub { color: var(--teal); font-size: 13px; font-weight: 600; margin-bottom: 14px; }
    .program-card p { color: var(--muted); font-size: 14px; margin-bottom: 22px; line-height: 1.7; }
    .prog-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
    .prog-tag {
      background: var(--teal-light); color: var(--teal-dark);
      font-size: 12px; padding: 4px 12px; border-radius: 100px; font-weight: 500;
    }
    .btn-teal-outline {
      border: 2px solid var(--teal); color: var(--teal);
      padding: 10px 24px; border-radius: 8px; text-decoration: none;
      font-weight: 600; font-size: 14px;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all 0.25s;
    }
    .btn-teal-outline:hover { background: var(--teal); color: var(--white); }

    /* ===== WHY CHOOSE US ===== */
    .why { background: var(--white); }
    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
    .why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .why-card {
      background: var(--cream); border-radius: var(--radius);
      padding: 24px; border: 1px solid var(--border); transition: all 0.3s;
    }
    .why-card:hover { background: var(--teal-light); border-color: rgba(0,184,148,0.2); transform: translateY(-3px); }
    .why-card-icon {
      width: 48px; height: 48px; background: var(--white);
      border-radius: 10px; display: flex; align-items: center; justify-content: center;
      margin-bottom: 14px; box-shadow: var(--shadow-sm);
    }
    .why-card-icon i { color: var(--teal); font-size: 18px; }
    .why-card h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
    .why-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

    /* ===== FACILITIES ===== */
    .facilities { background: var(--cream); }
    .facilities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .facility-card {
      background: var(--white); border-radius: var(--radius);
      padding: 32px 24px; text-align: center;
      border: 1px solid var(--border); transition: all 0.3s;
    }
    .facility-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--teal); }
    .facility-icon {
      width: 70px; height: 70px; background: var(--navy);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      margin: 0 auto 18px;
    }
    .facility-icon i { color: var(--teal); font-size: 26px; }
    .facility-card h3 { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
    .facility-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
    .facility-image {
      width: 100%; height: 200px; border-radius: 12px 12px 0 0;
      overflow: hidden; margin: -32px -24px 16px -24px;
      position: relative;
    }
    .facility-image img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.3s ease;
    }
    .facility-card:hover .facility-image img { transform: scale(1.05); }

    /* ===== ELIGIBILITY ===== */
    .eligibility-section { background: var(--white); }
    .eligibility-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .eligibility-card {
      background: var(--cream); border-radius: var(--radius);
      padding: 28px; border-left: 4px solid var(--teal);
    }
    .eligibility-card h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 14px; }
    .eligibility-card ul { list-style: none; padding: 0; }
    .eligibility-card li {
      font-size: 14px; color: var(--muted); padding: 8px 0;
      padding-left: 24px; position: relative;
      line-height: 1.6;
    }
    .eligibility-card li::before {
      content: '✓'; position: absolute; left: 0;
      color: var(--teal); font-weight: bold;
    }

    /* ===== FACULTY ===== */
    .faculty { background: var(--white); }
    .faculty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .faculty-card {
      border-radius: var(--radius); overflow: hidden;
      border: 1px solid var(--border); transition: all 0.3s; background: var(--white);
      padding: 24px 20px;
      text-align: center;
      box-shadow: var(--shadow-sm);
    }
    .faculty-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
    .faculty-card.principal-card {
      position: relative;
      border: 1px solid rgba(212,168,72,0.5);
      background: linear-gradient(180deg, #fffef8 0%, #ffffff 100%);
      box-shadow: 0 18px 42px rgba(11,27,63,0.14);
    }
    .faculty-card.principal-card::before {
      content: none;
    }
    .faculty-card.principal-card:hover {
      transform: translateY(-8px);
      border-color: rgba(195,146,47,0.8);
      box-shadow: 0 24px 50px rgba(11,27,63,0.2);
    }
    .faculty-img {
      width: 220px; height: 220px; object-fit: cover;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      background-size: cover;
      background-position: center;
      display: flex; align-items: center; justify-content: center;
      position: relative;
      border-radius: 50%;
      margin: 0 auto 16px;
      border: 4px solid rgba(0,184,148,0.16);
      box-shadow: 0 8px 24px rgba(11,27,63,0.12);
      transition: all 0.3s ease;
      overflow: hidden;
    }
    .faculty-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(11,27,63,0.3);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .faculty-card:hover .faculty-img::after { opacity: 1; }
    .faculty-card.principal-card .faculty-img {
      border-color: rgba(212,168,72,0.55);
      box-shadow: 0 12px 32px rgba(195,146,47,0.25);
    }
    .faculty-card.principal-card .faculty-info h3 {
      font-size: 22px;
      margin-top: 4px;
      margin-bottom: 10px;
    }
    .faculty-card.principal-card .faculty-info .dept {
      color: #7a5b1f;
      background: rgba(212,168,72,0.14);
      display: inline-block;
      padding: 6px 12px;
      border-radius: 999px;
      margin-bottom: 12px;
    }
    .faculty-card.principal-card .qual-tag {
      background: rgba(212,168,72,0.16);
      color: #5e4512;
      font-weight: 600;
    }
    .faculty-img i {
      display: none;
    }
    .faculty-info { padding: 0; }
    .faculty-info h3 { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 8px; font-family: 'Playfair Display', serif; }
    .faculty-info .dept { font-size: 12px; color: var(--teal-dark); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 10px; }
    .faculty-info p { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
    .faculty-quals { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; justify-content: center; }
    .qual-tag { background: var(--cream); color: var(--muted); font-size: 11px; padding: 3px 10px; border-radius: 100px; }

    /* ===== MANAGEMENT ===== */
    .management {
      background:
        radial-gradient(circle at 12% 18%, rgba(212,168,72,0.18) 0%, rgba(212,168,72,0) 35%),
        radial-gradient(circle at 88% 84%, rgba(0,184,148,0.14) 0%, rgba(0,184,148,0) 32%),
        linear-gradient(180deg, #fffdf8 0%, var(--cream) 55%, #f4fbf8 100%);
      position: relative;
      overflow: hidden;
    }
    .management::before,
    .management::after {
      content: '';
      position: absolute;
      border-radius: 999px;
      pointer-events: none;
    }
    .management::before {
      width: 260px;
      height: 260px;
      top: -120px;
      left: -90px;
      background: linear-gradient(135deg, rgba(11,27,63,0.1), rgba(11,27,63,0));
    }
    .management::after {
      width: 280px;
      height: 280px;
      right: -100px;
      bottom: -120px;
      background: linear-gradient(135deg, rgba(0,184,148,0.16), rgba(0,184,148,0));
    }
    .management .container,
    .management .section-header,
    .management-grid {
      position: relative;
      z-index: 1;
    }
    .management .section-header {
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
      background: rgba(255,255,255,0.72);
      border: 1px solid rgba(212,168,72,0.22);
      border-radius: 18px;
      padding: 18px 20px;
      box-shadow: 0 12px 30px rgba(11,27,63,0.08);
      backdrop-filter: blur(2px);
    }
    .management-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }
    .management-card {
      background: linear-gradient(180deg, #ffffff 0%, #fdfefc 100%);
      border: 1px solid rgba(11,27,63,0.1);
      border-radius: 18px;
      padding: 28px 22px 24px;
      text-align: center;
      box-shadow: 0 16px 34px rgba(11,27,63,0.12);
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
      position: relative;
      overflow: hidden;
    }
    .management-card::before {
      content: '';
      position: absolute;
      left: 22px;
      right: 22px;
      top: 0;
      height: 4px;
      border-radius: 0 0 8px 8px;
      background: linear-gradient(90deg, var(--gold), var(--teal));
      opacity: 0.95;
    }
    .management-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 50px rgba(11,27,63,0.2);
      border-color: rgba(0,184,148,0.5);
    }
    .management-card:nth-child(1)::before {
      background: linear-gradient(90deg, #c3922f, var(--gold));
    }
    .management-card:nth-child(2)::before {
      background: linear-gradient(90deg, #2aa8a0, var(--teal));
    }
    .management-card:nth-child(3)::before {
      background: linear-gradient(90deg, var(--navy-mid), #4f68a3);
    }
    .management-photo-wrap {
      width: 210px;
      height: 210px;
      border-radius: 50%;
      margin: 0 auto 18px;
      overflow: hidden;
      border: 4px solid rgba(0,184,148,0.2);
      background: var(--white);
      box-shadow: 0 10px 30px rgba(11,27,63,0.16);
      position: relative;
    }
    .management-photo-wrap::after {
      content: '';
      position: absolute;
      inset: -5px;
      border-radius: 50%;
      border: 1px dashed rgba(212,168,72,0.7);
      pointer-events: none;
    }
    .management-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.45s ease;
    }
    .management-card:hover .management-photo {
      transform: scale(1.06);
    }
    .management-info h3 {
      font-size: 20px;
      color: var(--navy);
      margin-bottom: 6px;
      font-family: 'Playfair Display', serif;
    }
    .management-role {
      color: var(--teal-dark);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 14px;
      display: inline-block;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(0,184,148,0.1);
    }
    .management-highlight-wrap {
      margin-bottom: 12px;
    }
    .management-quals {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      margin-bottom: 12px;
    }
    .management-desc {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.75;
      margin: 0;
      position: relative;
      padding-top: 8px;
    }
    .management-highlight-badge {
      display: inline-flex;
      align-items: center;
      background: #102447;
      color: #f6f7fb;
      border: 1px solid #cda349;
      border-radius: 999px;
      padding: 5px 13px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.02em;
      line-height: 1.3;
      white-space: nowrap;
      box-shadow: 0 3px 10px rgba(11,27,63,0.12);
    }
    .management-desc::before {
      content: '"';
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 28px;
      line-height: 1;
      color: rgba(11,27,63,0.2);
      font-family: 'Playfair Display', serif;
    }
    .topbar-left span,
    .topbar-right span,
    .qual-tag,
    .footer-contact-item p,
    .footer-contact-item a,
    .location-info-card a,
    .accred-info p {
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    /* ===== ADMISSIONS ===== */
    .admissions {
      background: linear-gradient(135deg, var(--navy) 0%, #0d3b4f 100%);
      position: relative; overflow: hidden;
    }
    .admissions::before {
      content: '';
      position: absolute; right: -120px; top: -120px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(0,184,148,0.1) 0%, transparent 70%);
      border-radius: 50%;
    }
    .admissions-inner { position: relative; z-index: 2; }
    .admissions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
    .admissions h2 { font-family: 'Playfair Display', serif; font-size: 38px; color: var(--white); margin-bottom: 16px; }
    .admissions p { color: rgba(255,255,255,0.65); font-size: 16px; margin-bottom: 32px; }
    .steps { display: flex; flex-direction: column; gap: 20px; }
    .step { display: flex; align-items: flex-start; gap: 16px; }
    .step-num {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--teal); color: var(--white);
      font-weight: 700; font-size: 15px;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .step-info h4 { color: var(--white); font-size: 15px; margin-bottom: 4px; }
    .step-info p { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.5; margin: 0; }
    /* Form */
    .admission-form {
      background: var(--white); border-radius: 20px; padding: 36px; box-shadow: var(--shadow-lg);
    }
    .admission-form h3 {
      font-family: 'Playfair Display', serif;
      font-size: 22px; color: var(--navy); margin-bottom: 24px;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-group { margin-bottom: 14px; }
    .form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
    .form-group input, .form-group select {
      width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
      border-radius: 8px; font-size: 14px; font-family: inherit;
      color: var(--text); background: var(--cream);
      transition: border-color 0.2s; outline: none;
    }
    .form-group input:focus, .form-group select:focus { border-color: var(--teal); background: var(--white); }
    .btn-form {
      width: 100%; background: var(--teal); color: var(--white);
      border: none; padding: 13px; border-radius: 10px;
      font-size: 15px; font-weight: 600; cursor: pointer; font-family: inherit;
      transition: all 0.25s; display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .btn-form:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,184,148,0.3); }

    .admission-list {
      margin: 0;
      padding-left: 18px;
      display: grid;
      gap: 10px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }
    .admission-form .admission-note {
      margin-top: 18px;
      padding: 12px 14px;
      border-radius: 10px;
      background: #d8f3ec;
      border: 1px solid rgba(0,184,148,0.28);
      color: #0d3b4f;
      font-size: 13px;
      line-height: 1.5;
      margin-bottom: 0;
    }

    /* ===== GALLERY ===== */
    .gallery { background: var(--cream); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      grid-auto-rows: 90px;
      gap: 14px;
    }
    .gallery-item {
      grid-column: span 3;
      grid-row: span 3;
      border-radius: var(--radius);
      overflow: hidden;
      background: linear-gradient(135deg, var(--navy-mid), var(--navy));
      position: relative;
      cursor: pointer;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .gallery-item.featured { grid-column: span 6; grid-row: span 4; }
    .gallery-item.tall { grid-row: span 4; }
    .gallery-item.wide { grid-column: span 6; }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    .gallery-item:hover img { transform: scale(1.05); }
    .gallery-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
    .gallery-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(11,27,63,0.72) 8%, rgba(11,27,63,0.08) 56%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .gallery-item:hover::after { opacity: 1; }
    .gallery-caption {
      position: absolute;
      left: 12px;
      right: 12px;
      bottom: 12px;
      z-index: 2;
      color: var(--white);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.02em;
      opacity: 0;
      transform: translateY(8px);
      transition: all 0.3s ease;
      text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    }
    .gallery-item:hover .gallery-caption {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials { background: var(--white); }
    .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .testi-card {
      background: var(--cream); border-radius: var(--radius);
      padding: 28px; border: 1px solid var(--border); transition: all 0.3s;
      position: relative;
    }
    .testi-card:hover { box-shadow: var(--shadow-md); border-color: var(--teal); transform: translateY(-4px); }
    .testi-quote { color: var(--teal); font-size: 36px; line-height: 1; margin-bottom: 14px; font-family: Georgia, serif; }
    .testi-card p { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--navy); display: flex; align-items: center; justify-content: center;
    }
    .testi-avatar i { color: var(--teal); font-size: 18px; }
    .testi-author h4 { font-size: 14px; font-weight: 600; color: var(--navy); }
    .testi-author span { font-size: 12px; color: var(--teal); }
    .testi-stars { color: var(--gold); font-size: 12px; margin-bottom: 14px; }

    .principal-message {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow-sm);
      max-width: 980px;
      margin: 0 auto;
    }
    .principal-message p {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.9;
      margin-bottom: 14px;
    }
    .principal-message p:last-child { margin-bottom: 0; }

    /* ===== ACCREDITATIONS ===== */
    .accreditation { background: var(--cream); padding: 60px 0; }
    .accred-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 40px; }
    .accred-item {
      display: flex; align-items: center; gap: 12px;
      background: var(--white); padding: 18px 28px; border-radius: 12px;
      border: 1px solid var(--border); transition: all 0.3s;
    }
    .accred-item:hover { box-shadow: var(--shadow-sm); border-color: var(--teal); }
    .accred-logo {
      width: 48px; height: 48px; background: var(--navy);
      border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .accred-logo i { color: var(--teal); font-size: 20px; }
    .accred-info h4 { font-size: 14px; font-weight: 700; color: var(--navy); }
    .accred-info p { font-size: 12px; color: var(--muted); }

    /* ===== LOCATION ===== */
    .location-section { background: var(--white); }
    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 28px;
      align-items: stretch;
    }
    .location-info-card,
    .location-map-wrap {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }
    .location-info-card { padding: 26px; }
    .location-info-card h3 {
      font-size: 20px;
      color: var(--navy);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .location-info-card h3 i { color: var(--teal); }
    .location-info-card p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.8;
      margin-bottom: 18px;
    }
    .location-link {
      color: var(--muted);
      text-decoration: none;
      border-bottom: 1px dashed rgba(0,184,148,0.35);
      transition: color 0.2s ease, border-color 0.2s ease;
    }
    .location-link:hover {
      color: var(--teal-dark);
      border-bottom-color: var(--teal);
    }
    .location-points { display: grid; gap: 12px; }
    .location-point {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.5;
    }
    .location-point i {
      color: var(--teal);
      margin-top: 3px;
      flex-shrink: 0;
    }
    .location-map-wrap iframe {
      width: 100%;
      min-height: 360px;
      height: calc(100% - 56px);
      display: block;
    }
    .map-actions {
      padding: 12px;
      border-top: 1px solid var(--border);
      background: var(--white);
      display: flex;
      justify-content: center;
    }
    .map-link-btn {
      text-decoration: none;
      color: var(--teal-dark);
      background: var(--teal-light);
      border: 1px solid rgba(0,184,148,0.3);
      padding: 10px 14px;
      border-radius: 10px;
      font-size: 13px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.2s ease;
    }
    .map-link-btn:hover {
      transform: translateY(-2px);
      background: var(--teal);
      color: var(--white);
      border-color: var(--teal);
    }

    /* ===== CTA ===== */
    .cta-section {
      background: var(--teal);
      padding: 80px 0; text-align: center;
    }
    .cta-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: 42px; color: var(--white); margin-bottom: 14px;
    }
    .cta-section p { color: rgba(255,255,255,0.8); font-size: 17px; margin-bottom: 36px; }
    .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .btn-white {
      background: var(--white); color: var(--teal-dark);
      padding: 14px 32px; border-radius: 10px; text-decoration: none;
      font-weight: 700; font-size: 15px;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all 0.25s;
    }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
    .btn-outline-white2 {
      border: 2px solid rgba(255,255,255,0.6); color: var(--white);
      padding: 14px 32px; border-radius: 10px; text-decoration: none;
      font-weight: 600; font-size: 15px;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all 0.25s;
    }
    .btn-outline-white2:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

    /* ===== CONTACT POPUP ===== */
    body.modal-open { overflow: hidden; }
    .contact-modal {
      position: fixed;
      inset: 0;
      z-index: 1200;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.22s ease;
    }
    .contact-modal.is-open {
      opacity: 1;
      pointer-events: auto;
    }
    .contact-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(7,17,42,0.6);
      backdrop-filter: blur(2px);
    }
    .contact-modal-panel {
      position: relative;
      width: min(92vw, 420px);
      background: linear-gradient(170deg, #ffffff 0%, #f3faf7 100%);
      border: 1px solid rgba(0,184,148,0.3);
      border-radius: 18px;
      box-shadow: 0 24px 60px rgba(11,27,63,0.28);
      padding: 26px 22px 22px;
      transform: translateY(12px) scale(0.98);
      transition: transform 0.24s ease;
    }
    .contact-modal.is-open .contact-modal-panel {
      transform: translateY(0) scale(1);
    }
    .contact-modal-close {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 34px;
      height: 34px;
      border: 0;
      border-radius: 50%;
      background: rgba(11,27,63,0.08);
      color: var(--navy);
      cursor: pointer;
    }
    .contact-modal-close:hover {
      background: rgba(11,27,63,0.15);
    }
    .contact-modal-panel h3 {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .contact-modal-panel p {
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 14px;
    }
    .contact-modal-list {
      display: grid;
      gap: 10px;
    }
    .contact-call-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 14px;
      border-radius: 12px;
      text-decoration: none;
      color: var(--navy);
      background: rgba(0,184,148,0.08);
      border: 1px solid rgba(0,184,148,0.2);
      font-weight: 600;
      transition: transform 0.2s ease, background 0.2s ease;
    }
    .contact-call-btn i {
      color: var(--teal-dark);
    }
    .contact-call-btn:hover {
      transform: translateY(-2px);
      background: rgba(0,184,148,0.14);
    }

    /* ===== FOOTER ===== */
    .footer {
      background: #07112a; color: rgba(255,255,255,0.65);
      padding: 70px 0 0;
    }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
    .footer-brand h3 {
      font-family: 'Playfair Display', serif;
      font-size: 22px; color: var(--white); margin-bottom: 6px;
    }
    .footer-brand .tagline { color: var(--teal); font-size: 12px; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 14px; }
    .footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 22px; max-width: 280px; }
    .footer-social { display: flex; gap: 10px; }
    .social-btn {
      width: 38px; height: 38px; border-radius: 8px;
      background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.6);
      display: flex; align-items: center; justify-content: center;
      text-decoration: none; font-size: 15px; transition: all 0.2s;
    }
    .social-btn:hover { background: var(--teal); color: var(--white); }
    .footer-col h4 { color: var(--white); font-size: 14px; font-weight: 600; margin-bottom: 16px; letter-spacing: 0.03em; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--teal); }
    .footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; }
    .footer-contact-item i { color: var(--teal); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
    .footer-contact-item p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.5; }
    .footer-contact-link {
      font-size: 14px;
      color: rgba(255,255,255,0.55);
      line-height: 1.5;
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .footer-contact-link:hover { color: var(--teal); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07);
      margin-top: 50px; padding: 22px 0;
      display: flex; justify-content: space-between; align-items: center;
      font-size: 13px; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 10px;
    }
    .footer-bottom a { color: var(--teal); text-decoration: none; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      .topbar-inner,
      .container,
      .hero-inner { padding-left: 22px; padding-right: 22px; }
      .topbar { padding: 10px 0; }
      .topbar-left,
      .topbar-right { width: 100%; justify-content: flex-start; gap: 10px; }
      .topbar-left { flex-direction: column; align-items: flex-start; }
      .topbar-left span,
      .topbar-right span { font-size: 12px; line-height: 1.4; }

      .navbar { padding: 0 22px; }
      .menu-btn { display: inline-flex; }
      .nav-links {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 6px;
        background: var(--white);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        padding: 0 16px;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.2s ease;
      }
      .nav-links li { width: 100%; }
      .nav-links a { padding: 12px 14px; font-size: 15px; }
      .nav-links .nav-cta { width: 100%; text-align: center; }
      .menu-toggle:checked + .menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      .menu-toggle:checked + .menu-btn span:nth-child(2) { opacity: 0; }
      .menu-toggle:checked + .menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
      .menu-toggle:checked ~ .nav-links {
        max-height: 80vh;
        opacity: 1;
        padding: 14px 16px 18px;
        pointer-events: auto;
      }

      .hero-inner, .about-grid, .why-grid, .admissions-grid, .location-grid { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .programs-grid, .testi-grid { grid-template-columns: 1fr; }
      .facilities-grid { grid-template-columns: 1fr 1fr; }
      .eligibility-grid { grid-template-columns: 1fr; }
      .faculty-grid { grid-template-columns: 1fr 1fr; }
      .management-grid { grid-template-columns: 1fr 1fr; }
      .gallery-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-auto-rows: 90px;
      }
      .gallery-item { grid-column: span 3; grid-row: span 3; }
      .gallery-item.featured,
      .gallery-item.wide { grid-column: span 6; }
      .gallery-item.featured,
      .gallery-item.tall { grid-row: span 4; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .about-features { grid-template-columns: 1fr; }

      .hero {
        min-height: auto;
        padding: 28px 0 50px;
      }
      .hero-inner { padding-top: 36px; padding-bottom: 20px; }
      .hero p { max-width: 100%; }
      .hero-btns a {
        width: 100%;
        justify-content: center;
      }
      .about-image-wrap img { height: 340px; }
      .admission-form { padding: 26px; }
      .location-map-wrap iframe {
        min-height: 300px;
        height: 300px;
      }
    }
    @media (max-width: 600px) {
      .topbar-inner,
      .container,
      .hero-inner { padding-left: 16px; padding-right: 16px; }
      .navbar { padding: 0 16px; height: 68px; }
      .logo { gap: 10px; }
      .logo-icon { width: 40px; height: 40px; }
      .logo-icon i { font-size: 17px; }
      .logo-text h1 { font-size: 15px; }
      .logo-text span { font-size: 10px; }
      .logo-text { padding-top: 3px; }

      .nav-links { top: 68px; }
      .notice-bar { padding: 10px 0; }
      .notice-label { display: none; }
      .notice-inner { gap: 34px; font-size: 12px; }

      .facilities-grid, .eligibility-grid, .faculty-grid, .management-grid { grid-template-columns: 1fr; }
      .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: auto;
      }
      .gallery-item,
      .gallery-item.featured,
      .gallery-item.wide,
      .gallery-item.tall {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 1;
      }
      .gallery-caption {
        opacity: 1;
        transform: none;
        font-size: 12px;
      }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .why-cards { grid-template-columns: 1fr; }
      section { padding: 60px 0; }

      .hero h1 { font-size: clamp(30px, 8vw, 38px); }
      .hero p { font-size: 15px; margin-bottom: 24px; }
      .btn-primary,
      .btn-outline-white { padding: 12px 18px; font-size: 14px; }

      .section-title { font-size: clamp(24px, 7vw, 30px); }
      .section-sub { font-size: 15px; }
      .program-card,
      .facility-card,
      .management-card,
      .principal-message,
      .accred-item { padding: 20px; }
      .management-photo-wrap { width: 190px; height: 190px; }
      .location-info-card { padding: 20px; }
      .location-map-wrap iframe {
        min-height: 260px;
        height: 260px;
      }

      .admissions h2 { font-size: 30px; }
      .admissions p { font-size: 15px; margin-bottom: 22px; }
      .step { gap: 12px; }
      .step-num { width: 34px; height: 34px; font-size: 13px; }
      .admission-form h3 { font-size: 20px; }

      .accred-inner { gap: 14px; }
      .accred-item {
        width: 100%;
        align-items: flex-start;
      }
      .accred-info p { word-break: break-word; }
      .footer-bottom { justify-content: flex-start; }
    }

    @media (max-width: 420px) {
      .stats-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr; }
      .hero-btns { gap: 10px; }
      .about-image-wrap img { height: 280px; }
      .about-badge-float {
        left: 12px;
        bottom: 12px;
        padding: 10px 14px;
      }
      .about-badge-float .num { font-size: 24px; }
    }

    /* Fallback for domain forwarding/masking cases where width-based media queries may not trigger correctly on phones */
    @media (hover: none) and (pointer: coarse) {
      .topbar-inner,
      .container,
      .hero-inner { padding-left: 16px; padding-right: 16px; }

      .topbar { padding: 10px 0; }
      .topbar-left,
      .topbar-right { width: 100%; justify-content: flex-start; gap: 10px; }
      .topbar-left { flex-direction: column; align-items: flex-start; }
      .topbar-left span,
      .topbar-right span { font-size: 12px; line-height: 1.4; }

      .navbar { padding: 0 16px; height: 68px; }
      .menu-btn { display: inline-flex; }
      .nav-links {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 6px;
        background: var(--white);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        padding: 0 16px;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
      }
      .nav-links li { width: 100%; }
      .nav-links a { padding: 12px 14px; font-size: 15px; }
      .nav-links .nav-cta { width: 100%; text-align: center; }
      .menu-toggle:checked ~ .nav-links {
        max-height: 80vh;
        opacity: 1;
        padding: 14px 16px 18px;
        pointer-events: auto;
      }

      .notice-label { display: none; }
      .notice-inner { gap: 34px; font-size: 12px; }

      .hero {
        min-height: auto;
        padding: 28px 0 50px;
      }
      .hero-inner,
      .about-grid,
      .admissions-grid,
      .location-grid { grid-template-columns: 1fr; }
      .hero-inner { padding-top: 36px; padding-bottom: 20px; }
      .hero-visual { display: none; }
      .hero-btns a {
        width: 100%;
        justify-content: center;
      }

      .programs-grid,
      .facilities-grid,
      .eligibility-grid,
      .faculty-grid,
      .management-grid,
      .footer-grid,
      .why-cards { grid-template-columns: 1fr; }

      .stats-grid { grid-template-columns: 1fr 1fr; }
      section { padding: 60px 0; }
    }