    /* =====================================================
       CSS CUSTOM PROPERTIES — COLOR SYSTEM & TYPOGRAPHY
       ===================================================== */
    :root {
      --navy:       var(--psgvp-color-accent-dark);
      --navy-dark:  color-mix(in srgb, var(--psgvp-color-accent-dark) 86%, #000);
      --navy-mid:   color-mix(in srgb, var(--psgvp-color-accent-dark) 78%, var(--psgvp-color-accent));
      --gold:       var(--psgvp-color-accent);
      --gold-light: color-mix(in srgb, var(--psgvp-color-accent) 76%, #fff);
      --gold-pale:  color-mix(in srgb, var(--psgvp-color-accent) 13%, #fff);
      --white:      #ffffff;
      --off-white:  #f7f5f0;
      --charcoal:   #2d3142;
      --slate:      #4a5568;
      --muted:      #718096;
      --border:     #e2e8f0;

      --font-display: 'DM Serif Display', Georgia, serif;
      --font-body:    'DM Sans', system-ui, sans-serif;

      --radius-sm: 6px;
      --radius-md: 12px;
      --radius-lg: 20px;

      --shadow-sm: 0 2px 8px rgba(26,39,68,0.08);
      --shadow-md: 0 8px 32px rgba(26,39,68,0.12);
      --shadow-lg: 0 20px 60px rgba(26,39,68,0.18);

      --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    }

    /* =====================================================
       RESET & BASE
       ===================================================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html {
      scroll-behavior: smooth;
      font-size: 16px;
      overflow-x: hidden; /* Fix 1: prevent horizontal scroll at root */
    }
    body {
      font-family: var(--font-body);
      color: var(--charcoal);
      background: var(--white);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      max-width: 100vw; /* Fix 1: hard cap body width */
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    /* Fix 1: prevent any child from blowing out the viewport */
    section, header, footer, nav, div {
      max-width: 100%;
    }
    /* Fix 2: ensure readable text on all dark sections */
    .hero-subtitle { color: rgba(255,255,255,0.88) !important; }
    .principal-body { color: rgba(255,255,255,0.82) !important; }
    .footer-col p { color: rgba(255,255,255,0.72) !important; }

    .container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .section-pad { padding: 80px 0; }
    .section-pad-sm { padding: 56px 0; }

    .tag {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-subtitle {
      font-size: 1.05rem;
      color: var(--slate);
      max-width: 620px;
      margin-bottom: 48px;
    }
    .text-center { text-align: center; }
    .text-center .section-subtitle { margin-left: auto; margin-right: auto; }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 28px;
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      border: 2px solid transparent;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--navy-dark);
      border-color: var(--gold);
    }
    .btn-primary:hover {
      background: var(--gold-light);
      border-color: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }
    .btn-outline {
      background: transparent;
      color: var(--white);
      border-color: rgba(255,255,255,0.6);
    }
    .btn-outline:hover {
      background: rgba(255,255,255,0.12);
      border-color: var(--white);
    }
    .btn-navy {
      background: var(--navy);
      color: var(--white);
      border-color: var(--navy);
    }
    .btn-navy:hover {
      background: var(--navy-mid);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }
    .btn-ghost {
      background: transparent;
      color: var(--navy);
      border-color: var(--navy);
    }
    .btn-ghost:hover {
      background: var(--navy);
      color: var(--white);
    }

    /* =====================================================
       TOP BAR
       ===================================================== */
    .topbar {
      background: var(--navy-dark);
      color: rgba(255,255,255,0.8);
      font-size: 0.78rem;
      padding: 8px 0;
      border-bottom: 1px solid rgba(201,168,76,0.3);
    }
    .topbar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }
    .topbar-left {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .topbar-contact a {
      color: rgba(255,255,255,0.8);
      transition: color 0.2s;
    }
    .topbar-contact a:hover { color: var(--gold); }
    .topbar-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .topbar-links a {
      color: rgba(255,255,255,0.7);
      font-size: 0.75rem;
      padding: 2px 8px;
      border-radius: 3px;
      transition: var(--transition);
    }
    .topbar-links a:hover {
      color: var(--gold);
      background: rgba(201,168,76,0.1);
    }
    .naac-badge {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--navy-dark);
      font-weight: 700;
      font-size: 0.7rem;
      padding: 3px 10px;
      border-radius: 20px;
      letter-spacing: 0.04em;
    }

    /* =====================================================
       NAVIGATION
       ===================================================== */
    .navbar {
      position: fixed;           /* Fix 1: fixed so it sticks on ALL screen sizes */
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: var(--white);
      border-bottom: 2px solid var(--border);
      transition: box-shadow 0.3s;
    }
    .navbar.scrolled {
      box-shadow: var(--shadow-md);
    }
    /* Fix 1: offset for fixed header so content isn't hidden behind it */
    body { padding-top: 0; }
    /* Fix 1: ensure anchor links land below the fixed header */
    html { scroll-padding-top: 178px; }
    .navbar .container {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      height: 122px;
    }
    .nav-brand {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
      height: 72px;
      width: fit-content;
    }
    .nav-logo-circle {
      width: 52px;
      height: 52px;
      background: linear-gradient(135deg, var(--navy), var(--navy-mid));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 700;
      flex-shrink: 0;
    }
    .nav-brand-text { line-height: 1.1; }
    .nav-brand-text strong {
      display: block;
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 5px;
    }
    .nav-brand-text span {
      display: block;
      font-size: 0.78rem;
      color: var(--slate);
    }
    .nav-menu {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      height: 50px;
      border-top: 1px solid var(--border);
    }
    .nav-link {
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--charcoal);
      padding: 8px 12px;
      border-radius: var(--radius-sm);
      transition: var(--transition);
      position: relative;
    }
    .nav-link:hover, .nav-link.active {
      color: var(--navy);
      background: var(--gold-pale);
    }
    .nav-cta {
      margin-left: 12px;
      font-size: 0.82rem;
      padding: 8px 18px;
    }
    .hamburger {
      display: none;
      position: absolute;
      top: 16px;
      right: 24px;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      border: none;
      background: none;
      border-radius: 6px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2.5px;
      background: var(--navy);
      border-radius: 2px;
      transition: var(--transition);
    }
    .hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

    /* =====================================================
       HERO SECTION
       ===================================================== */
    .hero {
      position: relative;
      min-height: 92vh;
      display: flex;
      align-items: center;
      background: var(--navy-dark);
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('../../images/main-bldg.jpg');
      background-size: cover;
      background-position: center;
      opacity: 0.18;
    }
    .hero-gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(17,28,51,0.97) 0%,
        rgba(26,39,68,0.92) 40%,
        rgba(36,50,87,0.80) 70%,
        rgba(26,39,68,0.88) 100%
      );
    }
    .hero-pattern {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(201,168,76,0.04) 0%, transparent 40%);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      padding: 60px 0;
      width: 100%;
      min-width: 0; /* Fix 3: prevent flex/grid blowout */
    }
    .hero-mandal-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201,168,76,0.12);
      border: 1px solid rgba(201,168,76,0.35);
      color: var(--gold);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 24px;
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(1.9rem, 7vw, 4rem); /* Fix 3: clamp prevents oversized text on small screens */
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 20px;
      max-width: 720px;
      word-break: break-word; /* Fix 3 */
      overflow-wrap: break-word;
    }
    .hero-title .highlight { color: var(--gold); }
    .hero-subtitle {
      font-size: clamp(0.92rem, 3.8vw, 1.2rem); /* Fix 3: smaller floor prevents bleed on narrow screens */
      color: rgba(255,255,255,0.75);
      max-width: 580px;
      width: 100%; /* Fix 3: respect container width */
      margin-bottom: 36px;
      line-height: 1.7;
      overflow-wrap: break-word;
      word-break: break-word;
    }
    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 40px;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.9);
      font-size: 0.78rem;
      font-weight: 500;
      padding: 6px 14px;
      border-radius: 20px;
    }
    .hero-badge .dot {
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
    }
    .hero-visual {
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 42%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 40px;
    }
    .hero-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(201,168,76,0.2);
      backdrop-filter: blur(12px);
      border-radius: var(--radius-lg);
      padding: 32px;
      width: 100%;
      max-width: 340px;
    }
    .hero-card h3 {
      font-family: var(--font-display);
      color: var(--white);
      font-size: 1.1rem;
      margin-bottom: 20px;
    }
    .inquiry-form label {
      display: block;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.7);
      margin-bottom: 6px;
      font-weight: 500;
    }
    .inquiry-form input,
    .inquiry-form select {
      width: 100%;
      padding: 11px 14px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius-sm);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 0.88rem;
      margin-bottom: 14px;
      transition: border-color 0.2s;
      outline: none;
    }
    .inquiry-form input::placeholder { color: rgba(255,255,255,0.4); }
    .inquiry-form input:focus,
    .inquiry-form select:focus { border-color: var(--gold); }
    .inquiry-form select option { background: var(--navy); color: var(--white); }
    .inquiry-form .btn { width: 100%; justify-content: center; }

    /* =====================================================
       STATS / TRUST BAR
       ===================================================== */
    .stats-bar {
      background: var(--navy);
      padding: 40px 0;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .stat-item {
      text-align: center;
      padding: 20px;
      position: relative;
    }
    .stat-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 20%;
      height: 60%;
      width: 1px;
      background: rgba(255,255,255,0.12);
    }
    .stat-number {
      font-family: var(--font-display);
      font-size: 2.6rem;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 6px;
    }
    .stat-label {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.7);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* =====================================================
       ABOUT SECTION
       ===================================================== */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .about-image-block {
      position: relative;
    }
    .about-image-main {
      width: 100%;
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .about-image-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: var(--radius-lg);
    }
    .about-image-placeholder {
      color: rgba(255,255,255,0.2);
      font-size: 0.8rem;
      text-align: center;
    }
    .about-card-float {
      position: absolute;
      bottom: -20px;
      right: -24px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 18px 24px;
      box-shadow: var(--shadow-lg);
      min-width: 180px;
    }
    .about-card-float .acf-num {
      font-family: var(--font-display);
      font-size: 1.8rem;
      color: var(--navy);
      line-height: 1;
    }
    .about-card-float .acf-label {
      font-size: 0.78rem;
      color: var(--slate);
      margin-top: 4px;
    }
    .about-content .tag { margin-top: 0; }
    .about-highlights {
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .about-highlight-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .ahi-icon {
      width: 40px;
      height: 40px;
      background: var(--gold-pale);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.1rem;
    }
    .ahi-text strong {
      display: block;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--navy);
    }
    .ahi-text span {
      font-size: 0.8rem;
      color: var(--slate);
    }

    /* =====================================================
       VISION & MISSION
       ===================================================== */
    .vm-section { background: var(--off-white); }
    .vm-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      margin-top: 12px;
    }
    .vm-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 40px;
      box-shadow: var(--shadow-sm);
      border-top: 4px solid var(--gold);
      transition: var(--transition);
    }
    .vm-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .vm-card-icon {
      width: 56px;
      height: 56px;
      background: var(--gold-pale);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 20px;
    }
    .vm-card h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      color: var(--navy);
      margin-bottom: 16px;
    }
    .vm-card p {
      color: var(--slate);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    /* =====================================================
       PRINCIPAL MESSAGE
       ===================================================== */
    .principal-section { background: var(--navy); }
    .principal-grid {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 56px;
      align-items: center;
    }
    .principal-photo {
      text-align: center;
    }
    .principal-photo-frame {
      width: 220px;
      height: 260px;
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,0.06);
      border: 2px solid rgba(201,168,76,0.3);
      margin: 0 auto 20px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .principal-photo-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .principal-photo-placeholder {
      color: rgba(255,255,255,0.2);
      font-size: 0.75rem;
      text-align: center;
      padding: 20px;
    }
    .principal-name {
      font-family: var(--font-display);
      color: var(--white);
      font-size: 1.1rem;
      margin-bottom: 4px;
    }
    .principal-desig {
      color: var(--gold);
      font-size: 0.8rem;
      font-weight: 500;
    }
    .principal-content .tag { color: var(--gold); }
    .principal-content .section-title { color: var(--white); }
    .principal-quote {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.85);
      line-height: 1.75;
      font-style: italic;
      border-left: 3px solid var(--gold);
      padding-left: 20px;
      margin-bottom: 24px;
    }
    .principal-body {
      color: rgba(255,255,255,0.7);
      font-size: 0.92rem;
      line-height: 1.75;
    }
    .award-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201,168,76,0.12);
      border: 1px solid rgba(201,168,76,0.35);
      border-radius: var(--radius-sm);
      padding: 8px 16px;
      margin-top: 20px;
      font-size: 0.78rem;
      color: var(--gold);
      font-weight: 500;
    }

    /* =====================================================
       COURSES
       ===================================================== */
    .courses-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .course-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px;
      position: relative;
      transition: var(--transition);
      overflow: hidden;
    }
    .course-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--navy), var(--gold));
      transform: scaleX(0);
      transition: transform 0.3s;
      transform-origin: left;
    }
    .course-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(201,168,76,0.3);
    }
    .course-card:hover::before { transform: scaleX(1); }
    .course-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--navy), var(--navy-mid));
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 20px;
    }
    .course-card h3 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .course-card .course-full {
      font-size: 0.8rem;
      color: var(--slate);
      margin-bottom: 16px;
    }
    .course-meta {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 20px;
    }
    .course-meta-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      color: var(--slate);
    }
    .course-meta-item strong {
      color: var(--charcoal);
      font-weight: 600;
      min-width: 80px;
    }
    .course-eligibility {
      background: var(--off-white);
      border-radius: var(--radius-sm);
      padding: 12px 14px;
      font-size: 0.78rem;
      color: var(--slate);
      margin-bottom: 20px;
    }
    .course-eligibility strong { color: var(--navy); }

    /* =====================================================
       DEPARTMENTS
       ===================================================== */
    .dept-section { background: var(--off-white); }
    .dept-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .dept-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 32px;
      border-left: 5px solid var(--gold);
      transition: var(--transition);
    }
    .dept-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .dept-card h3 {
      font-family: var(--font-display);
      font-size: 1.2rem;
      color: var(--navy);
      margin-bottom: 12px;
    }
    .dept-card p {
      font-size: 0.88rem;
      color: var(--slate);
      line-height: 1.65;
      margin-bottom: 12px;
    }
    .dept-card .dept-tag {
      display: inline-block;
      background: var(--gold-pale);
      color: var(--navy);
      font-size: 0.72rem;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 20px;
      letter-spacing: 0.04em;
    }

    /* =====================================================
       FACILITIES
       ===================================================== */
    .facilities-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .facility-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition);
    }
    .facility-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .facility-image {
      width: 100%;
      aspect-ratio: 16/9;
      background: linear-gradient(135deg, var(--navy), var(--navy-mid));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
    }
    .facility-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .facility-info {
      padding: 20px;
    }
    .facility-info h4 {
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .facility-info p {
      font-size: 0.8rem;
      color: var(--slate);
      line-height: 1.5;
    }

    /* =====================================================
       ADMISSIONS
       ===================================================== */
    .admission-section { background: var(--navy); }
    .admission-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
    }
    .admission-content .tag { color: var(--gold); }
    .admission-content .section-title { color: var(--white); }
    .admission-steps {
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .admission-step {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .step-num {
      width: 36px;
      height: 36px;
      background: var(--gold);
      color: var(--navy-dark);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.85rem;
      flex-shrink: 0;
    }
    .step-text strong {
      display: block;
      color: var(--white);
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 4px;
    }
    .step-text span {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.65);
    }
    .admission-sidebar {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: var(--radius-lg);
      padding: 32px;
    }
    .admission-sidebar h3 {
      font-family: var(--font-display);
      color: var(--white);
      font-size: 1.2rem;
      margin-bottom: 20px;
    }
    .doc-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 28px;
    }
    .doc-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.8);
    }
    .doc-item::before {
      content: '✓';
      width: 20px;
      height: 20px;
      background: rgba(201,168,76,0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      color: var(--gold);
      flex-shrink: 0;
    }
    .admission-sidebar .btn { width: 100%; justify-content: center; margin-bottom: 12px; }

    /* =====================================================
       ACCREDITATIONS
       ===================================================== */
    .accred-section { background: var(--off-white); }
    .accred-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .accred-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 28px 20px;
      text-align: center;
      transition: var(--transition);
    }
    .accred-card:hover {
      border-color: var(--gold);
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
    }
    .accred-card .acc-icon {
      font-size: 2.2rem;
      margin-bottom: 12px;
    }
    .accred-card h4 {
      font-weight: 700;
      font-size: 1rem;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .accred-card p {
      font-size: 0.75rem;
      color: var(--slate);
      line-height: 1.5;
    }

    /* =====================================================
       STUDENT CORNER
       ===================================================== */
    .student-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
    .student-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px;
    }
    .student-card h3 {
      font-family: var(--font-display);
      font-size: 1.2rem;
      color: var(--navy);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .sc-icon {
      width: 36px;
      height: 36px;
      background: var(--gold-pale);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }
    .notice-list { display: flex; flex-direction: column; gap: 12px; }
    .notice-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.85rem;
      color: var(--charcoal);
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border);
    }
    .notice-item:last-child { border-bottom: none; padding-bottom: 0; }
    .notice-item::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 6px;
    }
    .link-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .sc-link {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      font-size: 0.82rem;
      color: var(--navy);
      font-weight: 500;
      transition: var(--transition);
    }
    .sc-link:hover {
      background: var(--navy);
      color: var(--white);
      border-color: var(--navy);
    }

    /* =====================================================
       STUDENT PORTAL
       ===================================================== */
    .portal-cta-section {
      background: var(--off-white);
    }
    .portal-cta-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 32px;
      align-items: stretch;
    }
    .portal-cta-content,
    .pwa-install-block {
      border-radius: var(--radius-lg);
      padding: 36px;
    }
    .portal-cta-content {
      background: var(--navy);
      color: var(--white);
    }
    .portal-cta-content .section-title {
      color: var(--white);
    }
    .portal-cta-content > p {
      color: rgba(255,255,255,0.72);
      max-width: 650px;
      margin-bottom: 24px;
    }
    .portal-feature-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin: 26px 0;
    }
    .portal-feature {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius-sm);
      padding: 14px 12px;
      font-size: 0.8rem;
      font-weight: 600;
      text-align: center;
    }
    .portal-feature span {
      display: block;
      font-size: 1.35rem;
      margin-bottom: 5px;
    }
    .pwa-install-block {
      position: relative;
      background: var(--white);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }
    .pwa-install-block h3 {
      font-family: var(--font-display);
      color: var(--navy);
      font-size: 1.35rem;
      margin-bottom: 10px;
    }
    .pwa-install-block p {
      color: var(--slate);
      font-size: 0.88rem;
      margin-bottom: 18px;
    }
    .pwa-install-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .pwa-install-status {
      display: none;
      color: var(--navy);
      font-size: 0.82rem;
      font-weight: 600;
      margin-top: 14px;
    }
    .pwa-dismiss {
      position: absolute;
      top: 12px;
      right: 12px;
      border: 0;
      background: transparent;
      color: var(--muted);
      font-size: 1.1rem;
      cursor: pointer;
      padding: 6px;
    }

    /* =====================================================
       GALLERY
       ===================================================== */
    .gallery-section { background: var(--navy-dark); }
    .gallery-section .section-title { color: var(--white); }
    .gallery-section .section-subtitle { color: rgba(255,255,255,0.6); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .gallery-item {
      border-radius: var(--radius-md);
      overflow: hidden;
      position: relative;
      cursor: pointer;
      aspect-ratio: 1;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      transition: var(--transition);
    }
    .gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .gallery-item-wide {
      grid-column: span 2;
      aspect-ratio: 2/1;
    }
    .gallery-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: rgba(255,255,255,0.25);
      font-size: 0.72rem;
    }
    .gallery-placeholder .gp-icon { font-size: 2rem; }
    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26,39,68,0.8) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.3s;
      display: flex;
      align-items: flex-end;
      padding: 14px;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay span {
      color: var(--white);
      font-size: 0.78rem;
      font-weight: 500;
    }

    /* =====================================================
       WHY CHOOSE US
       ===================================================== */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .why-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px;
      text-align: center;
      transition: var(--transition);
    }
    .why-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(201,168,76,0.3);
    }
    .why-icon {
      width: 64px;
      height: 64px;
      background: linear-gradient(135deg, var(--navy), var(--navy-mid));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin: 0 auto 20px;
    }
    .why-card h4 {
      font-weight: 700;
      font-size: 1rem;
      color: var(--navy);
      margin-bottom: 10px;
    }
    .why-card p {
      font-size: 0.85rem;
      color: var(--slate);
      line-height: 1.6;
    }

    /* =====================================================
       CTA BANNER
       ===================================================== */
    .cta-banner {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      padding: 60px 0;
    }
    .cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
    }
    .cta-text h2 {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      color: var(--navy-dark);
      margin-bottom: 8px;
    }
    .cta-text p {
      font-size: 1rem;
      color: rgba(17,28,51,0.75);
    }
    .cta-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }
    .btn-cta-primary {
      background: var(--navy-dark);
      color: var(--white);
      border: 2px solid var(--navy-dark);
      padding: 13px 28px;
    }
    .btn-cta-primary:hover {
      background: var(--navy);
      border-color: var(--navy);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(17,28,51,0.3);
    }
    .btn-cta-outline {
      background: transparent;
      color: var(--navy-dark);
      border: 2px solid var(--navy-dark);
      padding: 13px 28px;
    }
    .btn-cta-outline:hover {
      background: var(--navy-dark);
      color: var(--white);
    }

    /* =====================================================
       CONTACT
       ===================================================== */
    .contact-section { background: var(--off-white); }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 48px;
      align-items: start;
    }
    .contact-info h3 {
      font-family: var(--font-display);
      font-size: 1.4rem;
      color: var(--navy);
      margin-bottom: 20px;
    }
    .contact-items {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 32px;
    }
    .contact-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .ci-icon {
      width: 44px;
      height: 44px;
      background: var(--navy);
      color: var(--gold);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .ci-text strong {
      display: block;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 4px;
    }
    .ci-text span, .ci-text a {
      font-size: 0.88rem;
      color: var(--slate);
      transition: color 0.2s;
    }
    .ci-text a:hover { color: var(--navy); }
    .social-row {
      display: flex;
      gap: 12px;
    }
    .map-placeholder {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      border-radius: var(--radius-lg);
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      color: rgba(255,255,255,0.4);
      font-size: 0.8rem;
      text-align: center;
    }
    .contact-form {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px;
    }
    .contact-form h3 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      color: var(--navy);
      margin-bottom: 24px;
    }
    .form-group { margin-bottom: 18px; }
    .form-group label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--charcoal);
      margin-bottom: 7px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-size: 0.88rem;
      color: var(--charcoal);
      background: var(--off-white);
      transition: border-color 0.2s, background 0.2s;
      outline: none;
      resize: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--navy);
      background: var(--white);
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

    /* =====================================================
       FOOTER
       ===================================================== */
    footer {
      background: var(--navy-dark);
      color: rgba(255,255,255,0.8);
    }
    .footer-top {
      padding: 60px 0 40px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
      gap: 40px;
    }
    .footer-brand-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }
    .footer-logo-circle {
      width: 46px;
      height: 46px;
      background: rgba(201,168,76,0.15);
      border: 1px solid rgba(201,168,76,0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-family: var(--font-display);
      font-size: 1rem;
      flex-shrink: 0;
    }
    .footer-brand-name {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--white);
      line-height: 1.3;
    }
    .footer-col p {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .footer-col h4 {
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 16px;
      letter-spacing: 0.04em;
    }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links a {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.6);
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .footer-links a::before {
      content: '›';
      color: var(--gold);
      font-size: 1rem;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
    .footer-contact-item {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.6);
    }
    .footer-contact-item .fci-icon {
      color: var(--gold);
      font-size: 0.9rem;
      margin-top: 2px;
      flex-shrink: 0;
    }
    .footer-contact-item a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
    .footer-contact-item a:hover { color: var(--gold); }
    .footer-bottom {
      padding: 20px 0 4px;
    }
    .footer-bottom-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer-copyright {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.45);
    }
    .footer-bottom-links {
      display: flex;
      gap: 16px;
    }
    .footer-bottom-links a {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.45);
      transition: color 0.2s;
    }
    .footer-bottom-links a:hover { color: var(--gold); }

    /* =====================================================
       FLOATING WHATSAPP
       ===================================================== */
    .whatsapp-float {
      position: fixed;
      bottom: 96px;
      right: 28px;
      z-index: 10002;
      width: 56px;
      height: 56px;
      background: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(37,211,102,0.45);
      transition: var(--transition);
      text-decoration: none;
    }
    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 10px 32px rgba(37,211,102,0.55);
    }
    .whatsapp-float svg {
      width: 28px;
      height: 28px;
      fill: white;
    }
    body.is-menu-open .whatsapp-float {
      display: none;
    }

    /* =====================================================
       MOBILE MENU
       ===================================================== */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: var(--navy-dark);
      z-index: 1001;
      flex-direction: column;
      padding: 80px 24px 40px;
      overflow-y: auto;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu .mob-link {
      color: rgba(255,255,255,0.85);
      font-size: 1.1rem;
      font-weight: 500;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      display: block;
    }
    .mobile-menu .mob-link:hover { color: var(--gold); }
    .mobile-close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.1);
      border: none;
      border-radius: 50%;
      color: var(--white);
      font-size: 1.4rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .mob-cta {
      margin-top: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    /* =====================================================
       ANIMATIONS
       ===================================================== */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .fade-in-delay-1 { transition-delay: 0.1s; }
    .fade-in-delay-2 { transition-delay: 0.2s; }
    .fade-in-delay-3 { transition-delay: 0.3s; }
    .fade-in-delay-4 { transition-delay: 0.4s; }

    /* =====================================================
       RESPONSIVE
       ===================================================== */
    @media (max-width: 1100px) {
      body { padding-top: 0; }
      html { scroll-padding-top: 144px; }
      .navbar .container {
        height: 72px;
        flex-direction: row;
        align-items: center;
      }
      .nav-brand-text strong {
        font-size: 0.88rem;
        margin-bottom: 3px;
      }
      .nav-brand-text span { font-size: 0.72rem; }
      .nav-menu { display: none; }
      .hamburger { display: flex; }
    }

    @media (max-width: 1024px) {
      .hero-visual { display: none; }
      .hero-content { max-width: 100%; }
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-image-block { max-width: 520px; margin: 0 auto; }
      .principal-grid { grid-template-columns: 1fr; text-align: center; }
      .principal-photo-frame { margin: 0 auto; }
      .principal-quote { text-align: left; }
      .courses-grid { grid-template-columns: 1fr 1fr; }
      .accred-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .contact-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      .topbar-right, .topbar .naac-badge { display: none; }
      .nav-menu, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-item::after { display: none; }
      .vm-grid { grid-template-columns: 1fr; }
      .courses-grid { grid-template-columns: 1fr; }
      .dept-grid { grid-template-columns: 1fr; }
      .facilities-grid { grid-template-columns: 1fr 1fr; }
      .admission-inner { grid-template-columns: 1fr; }
      .admission-content,
      .admission-sidebar { min-width: 0; }
      .accred-grid { grid-template-columns: repeat(2, 1fr); }
      .student-grid { grid-template-columns: 1fr; }
      .portal-cta-grid { grid-template-columns: 1fr; }
      .portal-feature-grid { grid-template-columns: 1fr 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .gallery-item-wide { grid-column: span 2; }
      .why-grid { grid-template-columns: 1fr 1fr; }

      /* ── CTA banner buttons ── */
      .cta-inner { flex-direction: column; text-align: center; align-items: center; }
      .cta-actions { flex-direction: column; align-items: center; width: 100%; }
      .cta-actions .btn { width: 100%; max-width: 340px; justify-content: center; }

      /* ── Hero action buttons ── */
      .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
      }
      .hero-actions .btn {
        width: 100%;
        max-width: 340px;
        justify-content: center;
      }

      /* ── About section: "View All Courses" + "Talk to Admissions" ── */
      .about-cta-row {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
      }
      .about-cta-row .btn {
        width: 100%;
        max-width: 340px;
        justify-content: center;
        margin-right: 0 !important;
      }

      /* ── Admission section: "Eligibility Criteria" + "Documents Required" ── */
      .admission-cta-row {
        flex-direction: column !important;
        align-items: center;
        width: 100%;
      }
      .admission-cta-row .btn {
        width: 100%;
        max-width: 340px;
        justify-content: center;
      }

      /* ── Principal section: "Meet Our Leadership" ── */
      .principal-content > div[style*="margin-top: 24px"] {
        display: flex;
        justify-content: center;
      }
      .principal-content > div[style*="margin-top: 24px"] .btn {
        width: 100%;
        max-width: 340px;
        justify-content: center;
      }

      /* ── Gallery: "View Full Gallery" ── */
      #gallery > div > div[style*="text-align:center"] .btn {
        width: 100%;
        max-width: 340px;
        justify-content: center;
      }

      /* ── Student corner: "View All Notices" ── */
      .student-card > div[style*="margin-top: 16px"] {
        display: flex;
        justify-content: center;
      }

      /* ── Section subtitle — prevent text overflow ── */
      .section-subtitle {
        font-size: 0.92rem;
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: break-word;
      }

      /* ── Hero text overflow fix ── */
      .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.4rem);
        max-width: 100%;
      }
      .hero-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
      }
      .hero-mandal-tag {
        font-size: 0.68rem;
        padding: 5px 12px;
        white-space: normal;
        text-align: center;
      }
      .hero-badges { gap: 8px; }
      .hero-badge { font-size: 0.72rem; padding: 5px 10px; }
      .about-card-float { right: 0; }

      /* ── Global text overflow safety net ── */
      .container { padding: 0 20px; }
      p, h1, h2, h3, h4, li, span, a {
        overflow-wrap: break-word;
        word-break: break-word;
      }

      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom-inner { flex-direction: column; text-align: center; }
      .form-row { grid-template-columns: 1fr; }
      .section-pad { padding: 56px 0; }
    }

    @media (max-width: 480px) {
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .facilities-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-item-wide { grid-column: span 1; aspect-ratio: 1; }
      .why-grid { grid-template-columns: 1fr; }
      .portal-feature-grid { grid-template-columns: 1fr; }
      .portal-cta-content, .pwa-install-block { padding: 28px 22px; }
      .hero-badges { gap: 8px; }
      .accred-grid { grid-template-columns: 1fr 1fr; }
    }

    /* =====================================================
       INSTITUTIONAL LEADERSHIP SECTION
       ===================================================== */
    .leadership-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
      margin-top: 12px;
    }
    .leader-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px 16px 24px;
      text-align: center;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }
    .leader-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: rgba(201,168,76,0.35);
    }
    .leader-photo-wrap {
      margin-bottom: 16px;
    }
    .leader-photo {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid var(--gold-pale);
      outline: 2px solid var(--gold);
      outline-offset: 2px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      flex-shrink: 0;
    }
    .leader-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    /* Fallback when image errors — show initials placeholder */
    .leader-photo-fallback {
      background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    }
    .leader-photo-fallback::after {
      content: '👤';
      font-size: 2.4rem;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      opacity: 0.35;
    }
    .leader-info {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }
    .leader-name {
      font-family: var(--font-display);
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.3;
      margin-bottom: 2px;
    }
    .leader-desig {
      display: inline-block;
      background: var(--gold-pale);
      color: var(--navy);
      font-size: 0.72rem;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 20px;
      letter-spacing: 0.03em;
      margin-bottom: 4px;
    }
    .leader-inst {
      font-size: 0.72rem;
      color: var(--muted);
      line-height: 1.4;
    }

    /* Leadership responsive */
    @media (max-width: 1024px) {
      .leadership-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 640px) {
      .leadership-grid { grid-template-columns: 1fr; gap: 14px; }
      .leader-photo { width: 88px; height: 88px; }
      .leader-name { font-size: 0.88rem; }
      .leader-card { padding: 20px 16px 18px; flex-direction: row; text-align: left; gap: 16px; align-items: center; }
      .leader-photo-wrap { margin-bottom: 0; flex-shrink: 0; }
      .leader-info { align-items: flex-start; }
    }

    /* Fix 2: hide mob-cta class (WhatsApp + Apply Now buttons in hamburger) */
    .mob-cta { display: none !important; }

    /* =====================================================
       FIX 4 — OBJECTIVES GRID (responsive, no overflow)
       ===================================================== */
    .objectives-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .objective-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      min-width: 0; /* critical — prevents grid cell overflow */
    }
    .obj-num {
      color: var(--gold);
      font-size: 1.2rem;
      flex-shrink: 0;
      font-family: var(--font-display);
    }
    .objective-item p {
      font-size: 0.88rem;
      color: var(--slate);
      line-height: 1.6;
      word-break: break-word;
      min-width: 0;
    }
    @media (max-width: 768px) {
      .objectives-grid { grid-template-columns: 1fr; gap: 16px; }
    }

    /* =====================================================
       FIX 5 — SOCIAL ICON BUTTONS (SVG-based, rounded)
       ===================================================== */
    .social-btn {
      width: 42px;
      height: 42px;
      border-radius: 50% !important; /* rounded shape as specified */
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1.5px solid var(--border);
      background: var(--white);
      color: var(--navy);
      transition: var(--transition);
      flex-shrink: 0;
      text-decoration: none;
    }
    .social-btn svg {
      width: 18px;
      height: 18px;
      display: block;
      fill: currentColor;
    }
    .social-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
    .social-btn.fb:hover  { background: #1877f2; border-color: #1877f2; color: #fff; }
    .social-btn.li:hover  { background: #0a66c2; border-color: #0a66c2; color: #fff; }
    .social-btn.ig:hover  { background: #e1306c; border-color: #e1306c; color: #fff; }
    .social-btn.wa:hover  { background: #25d366; border-color: #25d366; color: #fff; }
    .social-btn.yt:hover  { background: #ff0000; border-color: #ff0000; color: #fff; }

    /* Polymath360Studio Branding Signature */
    .p360-signature {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 0 6px;
      font-size: 0.72rem;
      letter-spacing: 0.03em;
      opacity: 0.55;
      transition: opacity 0.3s ease;
      font-family: inherit;
      width: 100%;
      justify-content: center;
    }
    .p360-signature:hover { opacity: 0.9; }
    .p360-dots { display: inline-flex; align-items: center; gap: 4px; }
    .p360-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
    .p360-dot.saffron { background-color: #FF9933; }
    .p360-dot.white { background-color: #FFFFFF; border: 1px solid rgba(128,128,128,0.3); }
    .p360-dot.green { background-color: #138808; }
    .p360-link { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.25s ease; }
    .p360-link:hover { border-bottom-color: currentColor; }
