    :root {
      --primary: #8B4789;
      --primary-dark: #6B3569;
      --secondary: #D4AF37;
      --accent: #FF6B9D;

      --bg-light: #FFF5F7;
      --bg-card: #FFFFFF;

      --text-dark: #2D1B2E;
      --text-muted: #6B5B6E;

      --border: #E8D5E8;

      --shadow-sm: 0 2px 8px rgba(139, 71, 137, 0.08);
      --shadow-md: 0 8px 24px rgba(139, 71, 137, 0.12);

      --gradient-primary: linear-gradient(135deg, #8B4789 0%, #D4AF37 100%);

      --top-header-h: 54px;
      --safe-top: env(safe-area-inset-top);
      --safe-bottom: env(safe-area-inset-bottom);
    }

    html[data-theme="dark"] {
      --primary: #B87FB8;
      --primary-dark: #8B4789;
      --secondary: #FFD700;
      --accent: #FF8FAB;

      --bg-light: #1A0F1A;
      --bg-card: #2D1B2E;

      --text-dark: #F5E6F5;
      --text-muted: #C9B5C9;

      --border: #4A3A4A;

      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
      --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    html,
    body {
      width: 100%;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--text-muted);
      overflow-x: hidden;
      line-height: 1.7;

      -webkit-text-size-adjust: 100%;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;

      background:
        radial-gradient(1200px 600px at 15% 10%, rgba(212, 175, 55, 0.18), transparent 60%),
        radial-gradient(900px 500px at 85% 20%, rgba(139, 71, 137, 0.18), transparent 55%),
        linear-gradient(135deg, var(--bg-card) 0%, var(--bg-light) 100%);
      background-repeat: no-repeat;
      background-size: cover;

      position: relative;
      min-height: 100vh;
      background-attachment: fixed;
    }

    body.no-scroll {
      overflow: hidden;
    }

    body::before,
    body::after {
      content: "";
      position: fixed;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      filter: blur(45px);
      opacity: 0.18;
      pointer-events: none;
      z-index: 0;
    }

    body::before {
      left: -120px;
      top: 120px;
      background: var(--secondary);
    }

    body::after {
      right: -140px;
      top: 180px;
      background: var(--primary);
    }

    .global-blob {
      position: fixed;
      left: 35%;
      bottom: -170px;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      filter: blur(55px);
      opacity: 0.14;
      background: var(--accent);
      pointer-events: none;
      z-index: 0;
    }

    .page-wrap {
      position: relative;
      z-index: 1;
      overflow-x: clip;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    button,
    a {
      touch-action: manipulation;
    }

    /* =======================
       TOP HEADER (students.html exact)
    ======================= */
    .top-header {
      background: rgba(139, 71, 137, 0.55);
      border-bottom: 1px solid rgba(255, 255, 255, 0.18);
      padding: calc(12px + var(--safe-top)) 20px 12px;
      position: sticky;
      top: 0;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: var(--shadow-md);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      min-height: var(--top-header-h);
      gap: 14px;
    }

    html[data-theme="dark"] .top-header {
      background: rgba(45, 27, 46, 0.72);
      border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .top-header-info {
      display: flex;
      gap: 30px;
      color: white;
      font-size: 14px;
      font-weight: 300;
      min-width: 0;
    }

    .top-header-info i {
      color: var(--secondary);
      margin-right: 6px;
    }

    .top-header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
    }

    .theme-toggle-input,
    .lang-toggle-input {
      display: none;
    }

    .theme-toggle {
      position: relative;
      width: 60px;
      height: 30px;
      background: rgba(255, 255, 255, 0.22);
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s;
      backdrop-filter: blur(10px);
      display: block;
    }

    .theme-toggle::before {
      content: '☀️';
      position: absolute;
      top: 3px;
      left: 5px;
      width: 24px;
      height: 24px;
      background: white;
      border-radius: 50%;
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
    }

    .theme-toggle-input:checked+.theme-toggle::before {
      content: '🌙';
      left: 31px;
    }

    .lang-toggle {
      position: relative;
      width: 74px;
      height: 30px;
      background: rgba(255, 255, 255, 0.22);
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s;
      backdrop-filter: blur(10px);
      display: block;
    }

    .lang-toggle::before {
      content: 'EN';
      position: absolute;
      top: 3px;
      left: 5px;
      width: 34px;
      height: 24px;
      background: white;
      border-radius: 999px;
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 900;
      color: #2D1B2E;
    }

    .lang-toggle-input:checked+.lang-toggle::before {
      content: 'اردو';
      left: 35px;
      font-family: 'Roboto', sans-serif;
      font-weight: 700;
    }

    /* ✅ Urdu mode = Roboto only for text + ✅ icons safe (students.html exact) */
    #langScope[data-lang="ur"] {
      font-family: 'Roboto', sans-serif !important;
    }

    #langScope[data-lang="ur"] * {
      font-family: inherit;
    }

    #langScope[data-lang="ur"] i,
    #langScope[data-lang="ur"] .fa,
    #langScope[data-lang="ur"] .fas,
    #langScope[data-lang="ur"] .far,
    #langScope[data-lang="ur"] .fal,
    #langScope[data-lang="ur"] .fab,
    #langScope[data-lang="ur"] [class^="fa-"],
    #langScope[data-lang="ur"] [class*=" fa-"] {
      font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
      font-style: normal;
    }

    /* =======================
       NAVBAR (students.html exact)
    ======================= */
    .navbar {
      background: rgba(255, 255, 255, 0.62);
      padding: 18px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;

      position: sticky;
      top: var(--top-header-h);
      z-index: 999;

      box-shadow: var(--shadow-sm);
      border-bottom: 1px solid rgba(139, 71, 137, 0.15);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    html[data-theme="dark"] .navbar {
      background: rgba(45, 27, 46, 0.62);
      border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .logo-section {
      display: flex;
      align-items: center;
      gap: 15px;
      min-width: 0;
    }

    .logo-section img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      border: 3px solid var(--secondary);
      box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
      transition: transform 0.3s;
      object-fit: cover;
      flex: 0 0 auto;
    }

    .logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 700;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: 1px;
      white-space: nowrap;
    }

    .nav-menu {
      display: flex;
      gap: 5px;
      align-items: center;
    }

    .nav-menu a {
      color: var(--text-dark);
      text-decoration: none;
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: 600;
      font-size: 15px;
      position: relative;
      transition: all 0.3s;
      overflow: hidden;
      line-height: 1.2;
    }

    .nav-menu a::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: var(--gradient-primary);
      z-index: -1;
      transition: left 0.4s;
      border-radius: 25px;
    }

    .nav-menu a:hover::before,
    .nav-menu a:focus-visible::before {
      left: 0;
    }

    .nav-menu a:hover,
    .nav-menu a:focus-visible {
      color: white;
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
      outline: none;
    }

    .nav-menu a[aria-current="page"] {
      background: rgba(212, 175, 55, 0.18);
      border: 1px solid rgba(212, 175, 55, 0.35);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 1001;
      background: none;
      border: none;
      padding: 5px;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: var(--primary);
      border-radius: 3px;
      transition: all 0.3s;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    /* =======================
       COMMON
    ======================= */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding-left: clamp(14px, 3vw, 22px);
      padding-right: clamp(14px, 3vw, 22px);
    }

    .section-title {
      text-align: center;
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 4.2vw, 42px);
      font-weight: 700;
      color: var(--text-dark);
      margin: clamp(36px, 6vw, 60px) 0 10px;
      position: relative;
      display: inline-block;
      left: 50%;
      transform: translateX(-50%);
    }

    .section-title::before,
    .section-title::after {
      content: '✦';
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: var(--secondary);
      font-size: 24px;
    }

    .section-title::before {
      left: -40px;
    }

    .section-title::after {
      right: -40px;
    }

    .section-title-line {
      width: 80px;
      height: 4px;
      background: var(--gradient-primary);
      margin: 10px auto 0;
      border-radius: 4px;
    }

    /* =======================
       HERO SLIDER (unchanged content)
    ======================= */
    .hero-slider {
      margin: 26px auto;
      max-width: 1200px;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: var(--shadow-md);
      position: relative;
      border: 1px solid rgba(255, 255, 255, 0.22);
    }

    html[data-theme="dark"] .hero-slider {
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero-slider .swiper-slide {
      height: clamp(260px, 50vw, 520px);
      position: relative;
    }

    .hero-slider .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-slider .swiper-slide::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 50%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.62), transparent);
    }

    .hero-slider .swiper-pagination-bullet {
      background: white;
      opacity: 0.5;
      width: 12px;
      height: 12px;
    }

    .hero-slider .swiper-pagination-bullet-active {
      opacity: 1;
      background: var(--secondary);
      width: 30px;
      border-radius: 6px;
    }

    /* =======================
       INFO CARDS (index content same)
    ======================= */
    .info-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(14px, 2.2vw, 22px);
      margin: 10px 0 40px;
    }

    @media (min-width: 900px) {
      .info-grid {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
      }
    }

    .info-card {
      background: rgba(255, 255, 255, 0.70);
      border: 1px solid rgba(139, 71, 137, 0.18);
      border-radius: 22px;
      box-shadow: var(--shadow-md);
      overflow: hidden;
      position: relative;
      transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }

    html[data-theme="dark"] .info-card {
      background: rgba(45, 27, 46, 0.66);
      border: 1px solid rgba(255, 255, 255, 0.10);
    }

    .info-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 45px rgba(139, 71, 137, 0.18);
      border-color: rgba(212, 175, 55, 0.55);
    }

    .info-head {
      padding: 22px 22px 18px;
      background: linear-gradient(135deg, rgba(139, 71, 137, 0.10), rgba(212, 175, 55, 0.12));
      border-bottom: 1px solid rgba(139, 71, 137, 0.18);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    html[data-theme="dark"] .info-head {
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .info-title {
      display: flex;
      gap: 12px;
      align-items: center;
      min-width: 0;
    }

    .info-icon {
      width: 44px;
      height: 44px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--gradient-primary);
      color: white;
      font-size: 18px;
      box-shadow: 0 10px 22px rgba(139, 71, 137, 0.16);
      border: 1px solid rgba(255, 255, 255, 0.25);
      flex: 0 0 44px;
    }

    .info-head h2 {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      color: var(--text-dark);
      line-height: 1.2;
    }

    .info-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      font-weight: 800;
      font-size: 12px;
      letter-spacing: .4px;
      color: var(--text-dark);
      background: rgba(212, 175, 55, 0.18);
      border: 1px solid rgba(212, 175, 55, 0.35);
      white-space: nowrap;
      flex: 0 0 auto;
    }

    .info-body {
      padding: 18px 22px 22px;
    }

    .info-body p {
      font-size: 15.5px;
      margin-bottom: 12px;
      color: var(--text-muted);
    }

    .info-body b {
      color: var(--text-dark);
    }

    .clamp {
      overflow: hidden;
      max-height: 190px;
      transition: max-height .55s ease;
      position: relative;
      padding-right: 6px;
    }

    .clamp.open {
      max-height: 1800px;
      overflow: auto;
    }

    .clamp::-webkit-scrollbar {
      width: 8px;
    }

    .clamp::-webkit-scrollbar-track {
      background: rgba(139, 71, 137, 0.12);
      border-radius: 10px;
    }

    .clamp::-webkit-scrollbar-thumb {
      background: var(--gradient-primary);
      border-radius: 10px;
    }

    .fade {
      height: 62px;
      background: linear-gradient(to top, rgba(255, 255, 255, 0.70) 15%, rgba(255, 255, 255, 0) 100%);
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      pointer-events: none;
      transition: opacity .25s ease;
      opacity: 1;
    }

    html[data-theme="dark"] .fade {
      background: linear-gradient(to top, rgba(45, 27, 46, 0.66) 15%, rgba(45, 27, 46, 0) 100%);
    }

    .clamp.open+.fade {
      opacity: 0;
    }

    .info-actions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 16px;
      padding-top: 14px;
      border-top: 1px dashed rgba(139, 71, 137, 0.28);
    }

    .btn {
      border: none;
      cursor: pointer;
      border-radius: 999px;
      padding: 12px 18px;
      font-weight: 800;
      font-size: 14px;
      transition: transform .25s ease, box-shadow .25s ease;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .btn-primary {
      background: var(--gradient-primary);
      color: #fff;
      box-shadow: var(--shadow-sm);
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
      outline: none;
    }

    .btn-outline {
      background: rgba(255, 255, 255, 0.25);
      color: var(--text-dark);
      border: 1px solid rgba(139, 71, 137, 0.28);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    html[data-theme="dark"] .btn-outline {
      background: rgba(45, 27, 46, 0.22);
      border: 1px solid rgba(255, 255, 255, 0.10);
    }

    .btn-outline:hover,
    .btn-outline:focus-visible {
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
      outline: none;
    }

    /* =======================
       MISSION SECTION (index content same)
       ✅ FIX: -webkit-mask error safe with @supports + fallback
    ======================= */
    .mission-section {
      position: relative;
      padding: 80px 0;
      margin: 70px 0;
      overflow: hidden;
      border-top: 1px solid rgba(139, 71, 137, 0.14);
      border-bottom: 1px solid rgba(139, 71, 137, 0.14);
    }

    html[data-theme="dark"] .mission-section {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mission-bg-shapes .m-shape {
      position: absolute;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      filter: blur(30px);
      opacity: 0.20;
      pointer-events: none;
    }

    .mission-bg-shapes .s1 {
      left: -80px;
      top: 60px;
      background: var(--secondary);
    }

    .mission-bg-shapes .s2 {
      right: -90px;
      top: 120px;
      background: var(--primary);
    }

    .mission-bg-shapes .s3 {
      left: 35%;
      bottom: -120px;
      width: 320px;
      height: 320px;
      background: var(--accent);
      opacity: 0.14;
    }

    .missionSwiper {
      padding: 25px 0 55px;
    }

    .missionSwiper .swiper-slide {
      width: 330px;
      display: flex;
      align-items: stretch;
    }

    .mission-card {
      position: relative;
      border-radius: 22px;
      padding: 26px 26px 22px;
      min-height: 320px;
      background: rgba(255, 255, 255, 0.62);
      border: 1px solid rgba(255, 255, 255, 0.28);
      box-shadow: var(--shadow-md);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      overflow: hidden;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
      outline: none;
    }

    html[data-theme="dark"] .mission-card {
      background: rgba(45, 27, 46, 0.62);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* Fallback border if mask isn't supported */
    .mission-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 22px;
      pointer-events: none;
      opacity: 0.55;
      border: 1.5px solid rgba(212, 175, 55, 0.55);
    }

    /* ✅ Modern gradient stroke (safe) */
    @supports (-webkit-mask: linear-gradient(#000 0 0)) or (mask: linear-gradient(#000 0 0)) {
      .mission-card::before {
        content: "";
        position: absolute;
        inset: 0;
        padding: 1.5px;
        border-radius: 22px;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(139, 71, 137, 0.9));
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0.55;
        pointer-events: none;
        border: none;
      }
    }

    .mission-card:hover,
    .mission-card:focus-visible {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 18px 45px rgba(139, 71, 137, 0.22);
    }

    .mission-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 14px;
    }

    .mission-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 36px;
      padding: 0 14px;
      border-radius: 999px;
      font-weight: 900;
      letter-spacing: 1px;
      font-size: 13px;
      color: var(--text-dark);
      background: rgba(212, 175, 55, 0.20);
      border: 1px solid rgba(212, 175, 55, 0.40);
    }

    .mission-icon {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--gradient-primary);
      color: #fff;
      box-shadow: 0 10px 24px rgba(139, 71, 137, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.25);
    }

    .mission-title {
      font-family: 'Playfair Display', serif;
      color: var(--text-dark);
      font-size: 22px;
      line-height: 1.25;
      margin: 6px 0 10px;
    }

    .mission-text {
      color: var(--text-muted);
      font-size: 15.5px;
      line-height: 1.85;
    }

    .mission-controls {
      display: flex;
      justify-content: center;
      gap: 14px;
      margin-top: 12px;
    }

    .mission-nav {
      position: static !important;
      width: 46px !important;
      height: 46px !important;
      border-radius: 14px !important;
      background: rgba(255, 255, 255, 0.55) !important;
      border: 1px solid rgba(139, 71, 137, 0.14) !important;
      box-shadow: var(--shadow-sm) !important;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    html[data-theme="dark"] .mission-nav {
      background: rgba(45, 27, 46, 0.55) !important;
      border: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .mission-nav:hover,
    .mission-nav:focus-visible {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
      border-color: var(--secondary) !important;
      outline: none;
    }

    .mission-nav::after {
      font-size: 16px !important;
      font-weight: 900 !important;
      color: var(--primary) !important;
    }

    .mission-section .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      opacity: 0.35;
      background: var(--primary);
    }

    .mission-section .swiper-pagination-bullet-active {
      opacity: 1;
      background: var(--secondary);
      width: 28px;
      border-radius: 20px;
    }

    @media (max-width: 768px) {
      .mission-card {
        min-height: 280px;
        padding: 22px;
      }

      .missionSwiper .swiper-slide {
        width: 92%;
      }

      .mission-title {
        font-size: 20px;
      }
    }

    @media (max-width: 360px) {
      .missionSwiper .swiper-slide {
        width: 96%;
      }

      .mission-card {
        padding: 20px;
      }
    }

    /* =======================
       NOTICE BOARD + LIGHTBOX (unchanged)
    ======================= */
    .notice-board {
      background: rgba(255, 255, 255, 0.68);
      padding: 50px 30px;
      border-radius: 20px;
      margin: 60px auto;
      max-width: 1100px;
      box-shadow: var(--shadow-md);
      border: 1px solid rgba(139, 71, 137, 0.18);
      position: relative;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }

    html[data-theme="dark"] .notice-board {
      background: rgba(45, 27, 46, 0.64);
      border: 1px solid rgba(255, 255, 255, 0.10);
    }

    .notice-board::before {
      content: '📌';
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 40px;
      background: rgba(255, 255, 255, 0.75);
      padding: 10px 20px;
      border-radius: 50%;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(139, 71, 137, 0.18);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    html[data-theme="dark"] .notice-board::before {
      background: rgba(45, 27, 46, 0.72);
      border: 1px solid rgba(255, 255, 255, 0.10);
    }

    .notice-board h2 {
      text-align: center;
      color: var(--primary);
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      margin-bottom: 30px;
    }

    .notice-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .notice-item {
      background: rgba(255, 255, 255, 0.62);
      border: 1px solid rgba(139, 71, 137, 0.18);
      border-radius: 14px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.3s;
      box-shadow: var(--shadow-sm);
      display: grid;
      grid-template-columns: 98px 1fr;
      min-height: 98px;
      position: relative;
      outline: none;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    html[data-theme="dark"] .notice-item {
      background: rgba(45, 27, 46, 0.60);
      border: 1px solid rgba(255, 255, 255, 0.10);
    }

    .notice-item::before {
      content: '📎';
      position: absolute;
      top: 8px;
      right: 10px;
      font-size: 22px;
      z-index: 2;
      filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
    }

    .notice-item:hover,
    .notice-item:focus-visible {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: rgba(212, 175, 55, 0.55);
    }

    .notice-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .notice-caption {
      padding: 12px 12px;
      font-size: 14px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: transparent;
    }

    .notice-date {
      color: var(--secondary);
      font-weight: 900;
      font-size: 12px;
      letter-spacing: 0.3px;
    }

    .notice-title {
      color: var(--text-dark);
      font-weight: 800;
      line-height: 1.35;
    }

    .notice-sub {
      color: var(--text-muted);
      font-size: 12px;
    }

    @media (min-width: 768px) {
      .notice-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
      }

      .notice-item {
        grid-template-columns: 1fr;
        min-height: 320px;
      }

      .notice-item img {
        height: 200px;
      }

      .notice-caption {
        padding: 14px 14px;
      }
    }

    .lightbox {
      display: none;
      position: fixed;
      z-index: 10000;
      inset: 0;
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(10px);
      align-items: center;
      justify-content: center;
    }

    .lightbox.show {
      display: flex;
    }

    .lightbox-content {
      max-width: 90%;
      max-height: 85%;
      border-radius: 12px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
      object-fit: contain;
    }

    .lightbox-close {
      position: absolute;
      top: 30px;
      right: 40px;
      font-size: 40px;
      color: white;
      cursor: pointer;
      transition: transform 0.3s;
      background: none;
      border: none;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lightbox-close:hover,
    .lightbox-close:focus-visible {
      transform: scale(1.2) rotate(90deg);
      outline: 2px solid white;
      border-radius: 50%;
    }

    .download-btn {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      padding: 12px 30px;
      background: var(--gradient-primary);
      color: white;
      text-decoration: none;
      border-radius: 25px;
      font-weight: 700;
      transition: all 0.3s;
    }

    .download-btn:hover,
    .download-btn:focus-visible {
      transform: translateX(-50%) translateY(-3px);
      box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
      outline: 2px solid white;
    }

    /* =======================
       FOOTER (students.html exact)
    ======================= */
    footer {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-start;
      padding: 40px 20px;
      padding-bottom: calc(40px + var(--safe-bottom));
      margin-top: 90px;
    }

    footer .footer-box {
      flex: 3 1 500px;
      background: rgba(139, 71, 137, 0.55);
      padding: 20px;
      border-radius: 18px;
      box-shadow: var(--shadow-md);
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }

    html[data-theme="dark"] footer .footer-box {
      background: rgba(45, 27, 46, 0.70);
      border: 1px solid rgba(255, 255, 255, 0.10);
    }

    footer .donation-card {
      background: rgba(255, 255, 255, 0.14);
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: 15px;
      padding: 15px;
      text-align: center;
      color: #fff;
      flex: 1 1 220px;
      box-shadow: var(--shadow-sm);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    footer .donation-card h2 {
      color: #fff;
      font-size: 18px;
      margin-bottom: 8px;
    }

    footer .donation-card p {
      color: rgba(255, 255, 255, 0.88);
      font-size: 13px;
      margin-bottom: 12px;
    }

    footer .qr img {
      width: 120px;
      height: 120px;
      border-radius: 8px;
      border: 3px solid rgba(255, 255, 255, 0.25);
      display: block;
      margin: 0 auto;
    }

    footer .btn {
      display: block;
      background: rgba(255, 255, 255, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.22);
      color: white;
      text-decoration: none;
      padding: 8px;
      border-radius: 20px;
      font-weight: 900;
      margin: 6px 0;
      transition: 0.3s;
      font-size: 13px;
    }

    footer .btn:hover {
      background: rgba(255, 255, 255, 0.26);
    }

    footer .footer-bottom {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.90);
      text-align: center;
      margin-top: 15px;
      border-top: 1px solid rgba(255, 255, 255, 0.30);
      padding-top: 8px;
      flex-basis: 100%;
    }

    footer .footer-card {
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 18px;
      padding: 22px;
      max-width: 360px;
      box-shadow: var(--shadow-sm);
      color: #fff;
      font-family: 'Poppins', sans-serif;
      flex: 1 1 320px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    footer .footer-brand-head {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 14px;
    }

    footer .footer-brand-head img {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      border: 3px solid var(--secondary);
      box-shadow: 0 10px 22px rgba(212, 175, 55, 0.18);
      object-fit: cover;
    }

    footer .footer-brand-text h3 {
      margin: 0;
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      color: #fff;
    }

    footer .footer-tagline {
      margin-top: 4px;
      font-size: 12.5px;
      font-weight: 900;
      letter-spacing: .4px;
      color: var(--secondary);
    }

    footer .footer-about {
      font-size: 14.5px;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.86);
      margin: 12px 0 18px;
    }

    footer .footer-social {
      display: flex;
      gap: 10px;
    }

    footer .footer-social a {
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.14);
      border: 1px solid rgba(255, 255, 255, 0.18);
      color: #fff;
      transition: 0.25s;
      text-decoration: none;
    }

    footer .footer-social a:hover {
      background: rgba(212, 175, 55, 0.22);
      border-color: rgba(212, 175, 55, 0.35);
      transform: translateY(-2px);
    }

    footer .footer-columns {
      display: flex;
      flex-direction: column;
      min-width: 150px;
    }

    footer .footer-column h3 {
      font-size: 16px;
      margin-bottom: 10px;
      font-weight: 900;
      color: #fff;
    }

    footer .footer-column a {
      display: block;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.88);
      text-decoration: none;
      margin: 4px 0;
    }

    footer .footer-column a:hover {
      text-decoration: underline;
      color: #fff;
    }

    footer .contact-info {
      font-size: 14px;
      margin-top: 10px;
      color: rgba(255, 255, 255, 0.88);
    }

    footer .contact-info a {
      color: rgba(255, 255, 255, 0.88);
      text-decoration: none;
    }

    footer .contact-info a:hover {
      color: #fff;
      text-decoration: underline;
    }

    /* =======================
       RESPONSIVE (students.html exact)
    ======================= */
    @media (max-width: 768px) {
      .top-header-info {
        display: none;
      }

      .navbar {
        padding: 14px 16px;
      }

      .logo-text {
        font-size: 20px;
      }

      .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.72);
        flex-direction: column;
        padding-top: 80px;
        transition: right 0.35s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
      }

      html[data-theme="dark"] .nav-menu {
        background: rgba(45, 27, 46, 0.72);
      }

      .nav-menu.active {
        right: 0;
      }

      .hamburger {
        display: flex;
      }

      .section-title::before,
      .section-title::after {
        display: none;
      }

      body {
        background-attachment: scroll;
      }

      body::before,
      body::after,
      .global-blob {
        filter: blur(40px);
      }
    }

    @media (hover: none) {

      .mission-card:hover,
      .info-card:hover,
      .notice-item:hover,
      .btn:hover {
        transform: none !important;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        scroll-behavior: auto !important;
      }

      .mission-card,
      .info-card,
      .notice-item,
      .btn {
        transition: none !important;
      }
    }