*,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --navy: #0a1628;
      --navy-mid: #13243d;
      --navy-light: #1e3a5f;
      --gold: #c9a84c;
      --gold-light: #e8c96a;
      --gold-pale: #f7eed6;
      --cream: #fdfaf4;
      --white: #ffffff;
      --text-dark: #0a1628;
      --text-mid: #3d5272;
      --text-light: #7a8fa8;
      --border: rgba(201, 168, 76, 0.25);
      --shadow-soft: 0 4px 24px rgba(10, 22, 40, 0.08);
      --shadow-mid: 0 8px 40px rgba(10, 22, 40, 0.14);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--white);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(10, 22, 40, 0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: all 0.3s ease;
    }

    .nav-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2rem;
      height: 76px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
    }

    .logo-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: 20px;
      color: var(--navy);
      flex-shrink: 0;
    }

    .logo-text {
      color: var(--white);
    }

    .logo-text strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .logo-text span {
      font-size: 11px;
      color: var(--gold);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 0;
      list-style: none;
    }

    .nav-links a {
      display: block;
      padding: 0 18px;
      height: 76px;
      line-height: 76px;
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-size: 13.5px;
      font-weight: 500;
      letter-spacing: 0.03em;
      transition: color 0.2s, border-bottom 0.2s;
      border-bottom: 2px solid transparent;
    }

    .nav-links a:hover {
      color: var(--gold);
      border-bottom-color: var(--gold);
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn-outline {
      padding: 9px 22px;
      border: 1px solid var(--gold);
      border-radius: 6px;
      color: var(--gold);
      background: transparent;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
    }

    .btn-outline:hover {
      background: var(--gold);
      color: var(--navy);
    }

    .btn-primary {
      padding: 9px 22px;
      border: 1px solid var(--gold);
      border-radius: 6px;
      background: var(--gold);
      color: var(--navy);
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
    }

    .btn-primary:hover {
      background: var(--gold-light);
    }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      background: var(--navy);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 75% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 80% at 15% 80%, rgba(30, 58, 95, 0.6) 0%, transparent 50%);
    }

    .hero-pattern {
      position: absolute;
      inset: 0;
      opacity: 0.04;
      background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
      background-size: 28px 28px;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2rem;
      padding-top: 76px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      min-height: 100vh;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201, 168, 76, 0.15);
      border: 1px solid rgba(201, 168, 76, 0.3);
      border-radius: 100px;
      padding: 6px 16px;
      margin-bottom: 28px;
      color: var(--gold);
      font-size: 12.5px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 5vw, 4.4rem);
      font-weight: 700;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 24px;
    }

    .hero-title em {
      color: var(--gold);
      font-style: normal;
    }

    .hero-subtitle {
      font-size: 17px;
      line-height: 1.75;
      color: rgba(255, 255, 255, 0.65);
      margin-bottom: 40px;
      max-width: 500px;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 56px;
    }

    .hero-btn-primary {
      padding: 15px 36px;
      background: var(--gold);
      color: var(--navy);
      border: none;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.25s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .hero-btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
    }

    .hero-btn-ghost {
      padding: 15px 36px;
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 8px;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.25s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .hero-btn-ghost:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .hero-stats {
      display: flex;
      gap: 36px;
      flex-wrap: wrap;
    }

    .hero-stat {}

    .hero-stat .number {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 700;
      color: var(--gold);
      display: block;
      line-height: 1;
    }

    .hero-stat .label {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.5);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-top: 4px;
    }

    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-card-stack {
      position: relative;
      width: 100%;
      max-width: 480px;
    }

    .hero-img-frame {
      width: 100%;
      aspect-ratio: 4/3;
      border-radius: 16px;
      border: 1px solid rgba(201, 168, 76, 0.3);
      background: transparent;
      position: relative;
      perspective: 1000px;
    }

    .flip-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transition: transform 0.6s;
      transform-style: preserve-3d;
      border-radius: 16px;
    }

    .hero-img-frame:hover .flip-card-inner {
      transform: rotateY(180deg);
    }

    .hero-img-placeholder,
    .flip-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      border-radius: 16px;
      overflow: hidden;
      top: 0;
      left: 0;
    }

    .hero-img-placeholder {
      background: linear-gradient(135deg, #0d1f3a 0%, #1a3055 40%, #0f2845 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      color: rgba(201, 168, 76, 0.5);
    }

    .flip-card-back {
      transform: rotateY(180deg);
    }

    .hero-img-placeholder i {
      font-size: 64px;
    }

    .hero-img-placeholder p {
      font-size: 14px;
      letter-spacing: 0.05em;
    }

    .hero-float-card {
      position: absolute;
      background: rgba(10, 22, 40, 0.95);
      border: 1px solid rgba(201, 168, 76, 0.3);
      border-radius: 12px;
      padding: 14px 20px;
      backdrop-filter: blur(12px);
    }

    .float-card-1 {
      bottom: -20px;
      left: -30px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .float-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(201, 168, 76, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 18px;
    }

    .float-text strong {
      display: block;
      color: var(--white);
      font-size: 14px;
      font-weight: 600;
    }

    .float-text span {
      font-size: 12px;
      color: var(--gold);
    }

    .float-card-2 {
      top: -20px;
      right: -20px;
      text-align: center;
    }

    .float-card-2 strong {
      display: block;
      color: var(--gold);
      font-family: 'Playfair Display', serif;
      font-size: 22px;
    }

    .float-card-2 span {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.6);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* ── SECTION COMMON ── */
    section {
      padding: 96px 0;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }

    .section-tag::before {
      content: '';
      display: block;
      width: 24px;
      height: 2px;
      background: var(--gold);
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 700;
      line-height: 1.2;
      color: var(--navy);
      margin-bottom: 20px;
    }

    .section-desc {
      font-size: 16px;
      line-height: 1.8;
      color: var(--text-mid);
      max-width: 560px;
    }

    .section-header {
      margin-bottom: 56px;
    }

    .section-header.centered {
      text-align: center;
    }

    .section-header.centered .section-tag {
      justify-content: center;
    }

    .section-header.centered .section-tag::before {
      display: none;
    }

    .section-header.centered .section-desc {
      margin: 0 auto;
    }

    /* ── NOTICE TICKER ── */
    .notice-bar {
      background: var(--gold);
      color: var(--navy);
      padding: 10px 0;
      overflow: hidden;
      white-space: nowrap;
    }

    .notice-bar-inner {
      display: flex;
      align-items: center;
    }

    .notice-label {
      background: var(--navy);
      color: var(--gold);
      padding: 4px 20px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      flex-shrink: 0;
      margin-right: 24px;
    }

    .notice-ticker {
      overflow: hidden;
      flex: 1;
    }

    .notice-items {
      display: inline-flex;
      gap: 60px;
      animation: ticker 28s linear infinite;
      font-size: 13.5px;
      font-weight: 500;
    }

    @keyframes ticker {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    /* ── ABOUT ── */
    #about {
      background: var(--cream);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }

    .about-visual {
      position: relative;
    }

    .about-img-main {
      width: 100%;
      aspect-ratio: 4/5;
      background: linear-gradient(160deg, var(--navy-light) 0%, var(--navy) 100%);
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(201, 168, 76, 0.3);
      border: 1px solid var(--border);
    }

    .about-img-main i {
      font-size: 80px;
    }

    .about-badge {
      position: absolute;
      bottom: -24px;
      right: -24px;
      width: 160px;
      height: 160px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: var(--navy);
    }

    .about-badge strong {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      font-weight: 900;
      line-height: 1;
    }

    .about-badge span {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-align: center;
      margin-top: 4px;
      line-height: 1.3;
    }

    .about-pillars {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 32px;
    }

    .pillar {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 20px;
    }

    .pillar-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(201, 168, 76, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 18px;
      margin-bottom: 12px;
    }

    .pillar strong {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 4px;
    }

    .pillar p {
      font-size: 13px;
      color: var(--text-mid);
      line-height: 1.6;
    }

    /* ── PROGRAMS ── */
    #programs {
      background: var(--white);
    }

    .programs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .program-card {
      border: 1px solid #e8e0cc;
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.3s;
      cursor: pointer;
      position: relative;
      background: var(--white);
    }

    .program-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-mid);
      border-color: var(--gold);
    }

    .program-img {
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .program-img.kg {
      background: linear-gradient(135deg, #1a3055 0%, #0a1628 100%);
    }

    .program-img.primary {
      background: linear-gradient(135deg, #1e3a5f 0%, #13243d 100%);
    }

    .program-img.secondary {
      background: linear-gradient(135deg, #0d1f3a 0%, #1a3055 100%);
    }

    .program-img i {
      font-size: 60px;
      color: rgba(201, 168, 76, 0.5);
    }

    .program-grade-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      background: var(--gold);
      color: var(--navy);
      border-radius: 100px;
      padding: 5px 14px;
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 0.04em;
    }

    .program-body {
      padding: 28px;
    }

    .program-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 12px;
    }

    .program-body p {
      font-size: 14px;
      line-height: 1.75;
      color: var(--text-mid);
      margin-bottom: 20px;
    }

    .program-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 24px;
    }

    .program-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--text-mid);
    }

    .program-features li i {
      color: var(--gold);
      font-size: 11px;
      flex-shrink: 0;
    }

    .program-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--gold);
      font-size: 13.5px;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: gap 0.2s;
    }

    .program-link:hover {
      gap: 12px;
    }

    /* ── STATS ── */
    #stats {
      background: var(--navy);
      padding: 72px 0;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

    .stat-item {
      text-align: center;
      padding: 40px 20px;
      border-right: 1px solid rgba(201, 168, 76, 0.2);
      position: relative;
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: rgba(201, 168, 76, 0.1);
      border: 1px solid rgba(201, 168, 76, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 22px;
      margin: 0 auto 20px;
    }

    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 48px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      display: block;
      margin-bottom: 8px;
    }

    .stat-label {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.55);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    /* ── ADMISSION ── */
    #admission {
      background: var(--cream);
    }

    .admission-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: start;
    }

    .admission-steps {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .step {
      display: flex;
      gap: 20px;
      padding: 28px 0;
      border-bottom: 1px solid var(--border);
      position: relative;
    }

    .step:last-child {
      border-bottom: none;
    }

    .step-num {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 2px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--gold);
      flex-shrink: 0;
    }

    .step-content strong {
      display: block;
      font-size: 16px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .step-content p {
      font-size: 14px;
      line-height: 1.7;
      color: var(--text-mid);
    }

    .admission-form-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px;
      position: sticky;
      top: 100px;
    }

    .form-title {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .form-subtitle {
      font-size: 14px;
      color: var(--text-mid);
      margin-bottom: 28px;
    }

    .form-row {
      margin-bottom: 18px;
    }

    .form-row label {
      display: block;
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--text-mid);
      margin-bottom: 7px;
    }

    .form-row input,
    .form-row select,
    .form-row textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 14px;
      font-family: 'DM Sans', sans-serif;
      color: var(--text-dark);
      outline: none;
      transition: border-color 0.2s;
    }

    .form-row input:focus,
    .form-row select:focus,
    .form-row textarea:focus {
      border-color: var(--gold);
    }

    .form-row textarea {
      resize: vertical;
      min-height: 90px;
    }

    .form-row-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .submit-btn {
      width: 100%;
      padding: 15px;
      background: var(--navy);
      color: var(--white);
      border: none;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s;
      margin-top: 8px;
      font-family: 'DM Sans', sans-serif;
      letter-spacing: 0.03em;
    }

    .submit-btn:hover {
      background: var(--navy-light);
    }

    /* ── FACULTY ── */
    #faculty {
      background: var(--white);
    }

    .faculty-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .faculty-card {
      border: 1px solid #efe8d8;
      border-radius: 16px;
      overflow: hidden;
      text-align: center;
      transition: all 0.3s;
    }

    .faculty-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-mid);
    }

    .faculty-img {
      height: 200px;
      background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(201, 168, 76, 0.4);
    }

    .faculty-img i {
      font-size: 52px;
    }

    .faculty-body {
      padding: 20px;
    }

    .faculty-body h4 {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 4px;
    }

    .faculty-body .role {
      font-size: 12.5px;
      color: var(--gold);
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .faculty-body p {
      font-size: 13px;
      color: var(--text-mid);
      line-height: 1.6;
    }

    /* ── EVENTS ── */
    #events {
      background: var(--cream);
    }

    .events-layout {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 3rem;
    }

    .events-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .event-item {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 24px;
      transition: all 0.25s;
    }

    .event-item:hover {
      border-color: var(--gold);
      box-shadow: var(--shadow-soft);
    }

    .event-date-box {
      background: var(--navy);
      border-radius: 12px;
      padding: 14px 18px;
      text-align: center;
      flex-shrink: 0;
      min-width: 70px;
    }

    .event-date-box .month {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--gold);
      font-weight: 600;
    }

    .event-date-box .day {
      font-family: 'Playfair Display', serif;
      font-size: 30px;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
    }

    .event-info strong {
      display: block;
      font-size: 16px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .event-info p {
      font-size: 13.5px;
      color: var(--text-mid);
      line-height: 1.65;
      margin-bottom: 10px;
    }

    .event-meta {
      display: flex;
      gap: 16px;
    }

    .event-meta span {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      color: var(--text-light);
    }

    .event-meta i {
      color: var(--gold);
      font-size: 11px;
    }

    .notice-board {
      background: var(--navy);
      border-radius: 16px;
      padding: 28px;
      color: var(--white);
    }

    .notice-board h3 {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      margin-bottom: 20px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(201, 168, 76, 0.3);
      color: var(--white);
    }

    .notice-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .notice-list li {
      padding: 14px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 13.5px;
      color: rgba(255, 255, 255, 0.75);
      display: flex;
      gap: 12px;
      align-items: flex-start;
      cursor: pointer;
      transition: color 0.2s;
    }

    .notice-list li:hover {
      color: var(--gold);
    }

    .notice-list li:last-child {
      border-bottom: none;
    }

    .notice-list li i {
      color: var(--gold);
      font-size: 10px;
      margin-top: 5px;
      flex-shrink: 0;
    }

    .notice-list li .notice-date {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.4);
      display: block;
      margin-top: 3px;
    }

    /* ── TESTIMONIALS ── */
    #testimonials {
      background: var(--navy);
      padding: 96px 0;
      overflow: hidden;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 56px;
    }

    .testi-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(201, 168, 76, 0.2);
      border-radius: 16px;
      padding: 32px;
      transition: all 0.3s;
    }

    .testi-card:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(201, 168, 76, 0.5);
    }

    .testi-quote {
      color: var(--gold);
      font-size: 40px;
      line-height: 1;
      margin-bottom: 16px;
      font-family: Georgia, serif;
    }

    .testi-text {
      font-size: 15px;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.75);
      margin-bottom: 24px;
      font-style: italic;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .testi-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(201, 168, 76, 0.2);
      border: 1px solid rgba(201, 168, 76, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: var(--gold);
      font-size: 15px;
      flex-shrink: 0;
    }

    .testi-author strong {
      display: block;
      color: var(--white);
      font-size: 14px;
    }

    .testi-author span {
      font-size: 12px;
      color: var(--gold);
    }

    .stars {
      color: var(--gold);
      font-size: 12px;
      margin-bottom: 4px;
    }

    /* ── GALLERY ── */
    #gallery {
      background: var(--white);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: 200px 200px;
      gap: 12px;
      margin-top: 48px;
    }

    .gallery-item {
      border-radius: 12px;
      overflow: hidden;
      background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(201, 168, 76, 0.3);
      cursor: pointer;
      transition: all 0.3s;
      border: 1px solid var(--border);
    }

    .gallery-item:hover {
      transform: scale(0.98);
      border-color: var(--gold);
    }

    .gallery-item i {
      font-size: 36px;
    }

    .gallery-item:nth-child(1) {
      grid-column: span 2;
      grid-row: span 2;
    }

    .gallery-item:nth-child(1) i {
      font-size: 64px;
    }

    /* ── CONTACT ── */
    #contact {
      background: var(--cream);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin-top: 32px;
    }

    .contact-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .contact-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(201, 168, 76, 0.1);
      border: 1px solid rgba(201, 168, 76, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 18px;
      flex-shrink: 0;
    }

    .contact-item strong {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 3px;
    }

    .contact-item p {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.6;
    }

    .contact-map {
      background: var(--navy);
      border-radius: 16px;
      height: 320px;
      margin-top: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(201, 168, 76, 0.3);
      border: 1px solid var(--border);
      flex-direction: column;
      gap: 12px;
    }

    .contact-map i {
      font-size: 48px;
    }

    .contact-map p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
    }

    .contact-form-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--navy);
      color: rgba(255, 255, 255, 0.7);
      padding: 72px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    }

    .footer-brand .logo-icon {
      margin-bottom: 20px;
    }

    .footer-brand p {
      font-size: 14px;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 24px;
    }

    .footer-social {
      display: flex;
      gap: 10px;
    }

    .social-btn {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      border: 1px solid rgba(201, 168, 76, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.5);
      font-size: 14px;
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
    }

    .social-btn:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .footer-col h4 {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--gold);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 0;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.35);
    }

    .footer-bottom a {
      color: var(--gold);
      text-decoration: none;
    }

    /* ── MOBILE HAMBURGER ── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-left>* {
      animation: fadeInUp 0.7s ease both;
    }

    .hero-left>*:nth-child(1) {
      animation-delay: 0.1s;
    }

    .hero-left>*:nth-child(2) {
      animation-delay: 0.2s;
    }

    .hero-left>*:nth-child(3) {
      animation-delay: 0.3s;
    }

    .hero-left>*:nth-child(4) {
      animation-delay: 0.4s;
    }

    .hero-left>*:nth-child(5) {
      animation-delay: 0.5s;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .faculty-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .stats-grid .stat-item:nth-child(2) {
        border-right: none;
      }
    }

    @media (max-width: 768px) {

      .nav-links,
      .nav-cta {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .hero-visual {
        display: none;
      }

      .hero-actions {
        justify-content: center;
      }

      .hero-stats {
        justify-content: center;
      }

      .about-grid,
      .programs-grid,
      .admission-grid,
      .contact-grid,
      .events-layout,
      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .about-badge {
        display: none;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
      }

      .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
      }

      .form-row-2 {
        grid-template-columns: 1fr;
      }

      .faculty-grid {
        grid-template-columns: 1fr;
      }

      section {
        padding: 64px 0;
      }
    }

    /* highlight active nav */
    .nav-links .active {
      color: var(--gold) !important;
      border-bottom-color: var(--gold) !important;
    }

/* -- ERP PORTAL -- */
.erp-coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 40%, var(--navy) 100%);
  text-align: center;
  padding: 120px 20px 60px;
}

.erp-container {
  max-width: 600px;
  background: rgba(10, 22, 40, 0.6);
  border: 1px solid var(--border);
  padding: 60px 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.erp-icon {
  font-size: 72px;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0.9;
}

.erp-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}

.erp-title span {
  color: var(--gold);
}

.erp-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}
