  :root {
      --school-blue: #0b3a78;
      --school-light: #1e88e5;
      --glass-white: rgba(255, 255, 255, 0.92);
      --hover-blue: #0b3a78;
      --brand-gold: #d4af37;
      --brand-navy: #0b3a78;
      --brand-gold: #d4af37;
      --text-dark: #333333;
      --bg-light: #f4f7fa;
      --text-muted: #667085;
      --dark-navy: #0c397c;
      --text-light: #ffffff;
      --text-muted-light: rgba(255, 255, 255, 0.7);
      --accent-purple: #7042f8;
      --accent-pink: #ff4d94;
      --pg-primary: #0b3a80;
      --pg-border: #f2f4f7;
      --pg-text-main: #1d2939;
      --pg-text-muted: #667085;
      --brand-yellow: #fdf500;
      --bright-blue: #0b3a78;
      --accent: #00e5ff;
      --glass: rgba(255, 255, 255, 0.05);
  }

  body {
      font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
      margin: 0;
      background: #f6f6ef;
      color: white;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      font-family: "Inter", sans-serif;
  }

  .small-blue {
      color: var(--accent);
  }

  /* ================= NAVIGATION ================= */

  .nav-wrapper {
      position: fixed;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1050;
      padding-top: 15px;
      width: 100%;
      max-width: 1200px;
  }

  /* ================= TOP UTILITY BAR ================= */

  .top-utility-bar {
      background: var(--school-blue);
      color: white;
      width: 90%;
      max-width: 900px;
      margin: 0 auto;
      border-radius: 40px 40px 0 0;
      padding: 8px 60px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.75rem;
      /* font-weight: 600; */
      border: 1px solid #fff;
  }

  /* ================= MAIN NAVIGATION ================= */

  .main-navigation-dock {
      background: #fff;
      /* background: var(--glass-white); */
      backdrop-filter: blur(12px);
      width: 95%;
      max-width: 1200px;
      margin: -18px auto 0;
      border-radius: 50px;
      height: 65px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
      position: relative;
      padding: 0 15px;
      border: 1px solid var(--school-blue);
  }

  .home-btn-circle {
      background: var(--school-blue);
      color: white !important;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
  }

  .home-btn-circle:hover {
      background: var(--school-light);
      transform: scale(1.1);
  }

  .logo-anchor {
      position: absolute;
      left: 50%;
      top: -40px;
      transform: translate(-50%);
      width: 115px;
      height: 115px;
      background: white;
      border-radius: 50%;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--school-blue);
  }

  .logo-anchor img {
      width: 100%;
      object-fit: contain;
  }

  /* ================= NAV GROUP ================= */

  .nav-group {
      display: flex;
      gap: 5px;
      width: 45%;
      align-items: center;
  }

  .nav-group.left {
      justify-content: flex-start;
  }

  .nav-group.right {
      justify-content: flex-end;
  }

  .custom-nav-link {
      color: var(--school-blue) !important;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.8rem;
      text-transform: uppercase;
      padding: 8px 12px;
      border-radius: 10px;
      font-family: "Poppins", sans-serif;
  }

  .custom-nav-link:hover {
      background: rgba(11, 58, 120, 0.08);
      color: var(--school-light) !important;
  }

  /* ================= DESKTOP DROPDOWN ================= */

  .nav-item-wrapper {
      position: relative;
  }

  .dropdown-menu-custom {
      position: absolute;
      top: 120%;
      left: 0;
      background: white;
      width: 200px;
      min-width: 200px;
      border-radius: 12px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
      padding: 10px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: 0.3s ease;
      z-index: 1000;
      white-space: normal;
  }

  .dropdown-menu-custom a {
      display: block;
      padding: 8px 15px;
      color: var(--school-blue);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 600;
  }

  .dropdown-menu-custom a:hover {
      background: #f2f6ff;
  }

  .nav-item-wrapper:hover .dropdown-menu-custom {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }

  /* ================= MOBILE ================= */

  .mobile-toggle {
      display: none;
  }

  @media (max-width: 991px) {

      .top-utility-bar,
      .nav-group.right,
      .nav-group.left .nav-item-wrapper:not(:first-child) {
          display: none !important;
      }

      .nav-wrapper {
          padding-top: 40px;
      }

      .main-navigation-dock {
          height: 60px;
          padding: 0 15px;
      }

      .logo-anchor {
          width: 70px;
          height: 70px;
      }

      .mobile-toggle {
          display: block;
          font-size: 1.8rem;
          color: var(--school-blue);
          cursor: pointer;
      }

      .dropdown-menu-custom {
          display: none;
      }

      /* Overlay */

      .mobile-overlay {
          position: fixed;
          inset: 0;
          background: rgba(0, 0, 0, 0.5);
          opacity: 0;
          visibility: hidden;
          transition: 0.3s ease;
          z-index: 1040;
      }

      .mobile-overlay.active {
          opacity: 1;
          visibility: visible;
      }

      /* Slide Menu */

      .mobile-menu {
          position: fixed;
          top: 0;
          right: -100%;
          width: 280px;
          height: 100vh;
          background: white;
          padding: 80px 25px 40px;
          transition: 0.4s ease;
          z-index: 1050;
          overflow-y: auto;
          box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
      }

      .mobile-menu.active {
          right: 0;
      }

      .mobile-menu a {
          display: block;
          padding: 14px 0;
          font-weight: 600;
          text-decoration: none;
          color: var(--school-blue);
          border-bottom: 1px solid #eee;
      }

      .mobile-dropdown>a::after {
          content: "▾";
          float: right;
      }

      .mobile-submenu {
          display: none;
          padding-left: 15px;
      }

      .mobile-submenu a:hover {
          background: rgba(11, 58, 120, 0.08);
          color: var(--school-light) !important;
      }

      .mobile-dropdown.active .mobile-submenu {
          display: block;
      }
  }

  /* ================= HERO VIDEO ================= */

  .hero-section {
      height: 100vh;
      position: relative;
      overflow: hidden;
      background-color: #000;
  }

  .video-bg {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      transform: translate(-50%, -50%) scale(1.05);
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.8);
  }

  .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(75deg,
              rgba(11, 58, 120, 0.9) 0%,
              rgba(11, 58, 120, 0.4) 50%,
              rgba(0, 0, 0, 0.2) 100%);
      z-index: 1;
  }

  .z-index-1 {
      z-index: 2;
  }

  .text-gradient {
      background: linear-gradient(90deg, #38bdf8, #818cf8);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  .btn-glass {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
      transition: all 0.3s ease;
  }

  .btn-glass:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: #38bdf8;
      color: white;
  }

  .hover-lift {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .hover-lift:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3);
  }

  /* ================= SCROLL INDICATOR ================= */

  .scroll-indicator {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
  }

  .mouse {
      width: 25px;
      height: 40px;
      border: 2px solid rgba(255, 255, 255, 0.5);
      border-radius: 20px;
      position: relative;
  }

  .wheel {
      width: 4px;
      height: 8px;
      background: white;
      border-radius: 2px;
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      animation: scroll-wheel 1.5s infinite;
  }

  /* ================= ANIMATIONS ================= */

  @keyframes scroll-wheel {
      0% {
          opacity: 1;
          transform: translate(-50%, 0);
      }

      100% {
          opacity: 0;
          transform: translate(-50%, 15px);
      }
  }

  .animate-up {
      animation: fadeInUp 0.8s ease-out forwards;
  }

  .animate-up-delayed {
      animation: fadeInUp 0.8s ease-out 0.2s forwards;
      opacity: 0;
  }

  .animate-up-more {
      animation: fadeInUp 0.8s ease-out 0.4s forwards;
      opacity: 0;
  }

  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }


  /* ================= NEWS SECTION ================= */

  .bulletin-section {
      padding: 80px 0px 30px 0px;
      position: relative;
      overflow: hidden;
      /* background:
          linear-gradient(rgba(246, 246, 239, 0.61), rgba(246, 246, 239, 0.86)),
          url("../images/bg-image.jpg"); */
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
  }

  .bullet-student-img {
      position: absolute;
      width: 180px;
      left: -40px;
      bottom: -20px;
      z-index: 9;
  }

  .bullet-student-img1 {
      position: absolute;
      right: -70px;
      bottom: -30px;
      z-index: 9;
      width: 190px;
  }

  .bulletin-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
      padding: 0 130px;
  }


  @media (max-width: 966px) {
      .bullet-student-img {
      display: none;
  }
  .bullet-student-img1 {
      display: none;
  }
  .bulletin-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
      padding: 0 50px;
  }
  }


  .latest-title {
      display: flex;
      align-items: center;
      gap: 15px;
  }

  .latest-title h2 {
      color: var(--school-blue);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin: 0;
      font-size: 1.5rem;
  }

  .pulse-icon {
      width: 12px;
      height: 12px;
      background: var(--brand-gold);
      border-radius: 50%;
      display: inline-block;
      box-shadow: 0 0 0 rgba(212, 175, 55, 0.4);
      animation: pulse 2s infinite;
  }

  .btn-view-all {
      background: var(--school-blue);
      color: white;
      padding: 5px 15px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.85rem;
      transition: all 0.3s ease;
      border: 2px solid var(--school-blue);
  }

  .btn-view-all:hover {
      background: transparent;
      color: var(--school-blue);
      transform: translateX(5px);
  }

  .bulletin-wrap {
      background: white;
      padding: 30px 20px;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      border-radius: 20px;
  }

  .bulletin-wrap::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 50px;
      height: 100%;
      background: linear-gradient(to right, white, transparent);
      z-index: 2;
      pointer-events: none;
  }

  .sliding-track {
      display: flex;
      animation: infiniteScroll 35s linear infinite;
  }

  .bulletin-wrap:hover .sliding-track {
      animation-play-state: paused;
  }

  @keyframes infiniteScroll {
      0% {
          transform: translateX(0);
      }

      100% {
          transform: translateX(-50%);
      }
  }

  .news-card {
      background: var(--glass-white);
      border: 3px solid rgba(0, 0, 0, 0.05);
      width: 400px;
      margin-right: 25px;
      padding: 15px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      text-decoration: none !important;
      transition: all 0.4s ease;
      flex-shrink: 0;
  }

  .news-card:hover {
      transform: translateY(-8px);
      border-color: var(--brand-gold);
      box-shadow: 0 12px 24px rgba(11, 58, 120, 0.12);
  }

  .date-box {
      background: var(--school-blue);
      min-width: 60px;
      height: 60px;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-right: 18px;
      border-bottom: 4px solid var(--brand-gold);
  }

  .date-box b {
      color: white;
      font-size: 1.3rem;
      line-height: 1;
  }

  .date-box span {
      color: var(--brand-yellow);
      font-size: 0.65rem;
      text-transform: uppercase;
      font-weight: 700;
  }

  .news-content h6 {
      color: var(--school-blue);
      font-weight: 700;
      margin: 0;
      font-size: 0.95rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
  }

  .news-content p {
      color: var(--text-muted);
      font-size: 0.8rem;
      margin: 5px 0;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
  }

  .read-more {
      color: var(--brand-gold);
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
  }

  @keyframes pulse {
      0% {
          box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
      }

      70% {
          box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
      }

      100% {
          box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
      }
  }

  @media (max-width: 768px) {
      .news-card {
          width: 320px;
      }

      .latest-title h2 {
          font-size: 1.2rem;
      }
  }

  @media (max-width: 768px) {

      .bulletin-header {
          flex-direction: column;
          align-items: flex-start;
          gap: 10px;
      }

      .latest-title h2 {
          font-size: 1.1rem;
      }

      .btn-view-all {
          align-self: flex-start;
      }

      .news-card {
          width: 300px;
          padding: 12px;
      }

      .date-box {
          min-width: 55px;
          height: 55px;
          margin-right: 12px;
      }

      .date-box b {
          font-size: 1.1rem;
      }

      .news-content {
          width: 100%;
          overflow: hidden;
      }

      .news-content h6 {
          white-space: normal;
          /* IMPORTANT FIX */
          font-size: 0.85rem;
          line-height: 1.3;
      }

      .news-content p {
          font-size: 0.75rem;
          -webkit-line-clamp: 2;
      }

  }

  /* ================= ABOUT SECTION ================= */

  .section-pad {
      padding: 50px 0;
      position: relative;
      overflow: hidden;
      /* background:
          linear-gradient(rgba(246, 246, 239, 0.61), rgba(246, 246, 239, 0.86)),
          url("../images/bg-image.jpg"); */
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
  }

  .about-header {
      margin-bottom: 40px;
      text-align: center;
      background: transparent;
  }

  .about-header h2 {
      /* font-family: "Playfair Display", serif; */
      font-size: 2.8rem;
      color: #0b3a78;
      font-weight: 700;
      margin-bottom: 10px;
      letter-spacing: -1px;
      text-transform: uppercase;

      text-transform: uppercase;
      font-weight: 700;
      color: transparent;
      background: linear-gradient(0deg, var(--pg-text-main) 0%, var(--school-light) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      font-size: 2.8rem;
      margin-bottom: 0px;
  }

  .about-header .flourish {
      display: block;
      color: #d4af37;
      font-size: 1.2rem;
      opacity: 0.8;
  }

  .about-header .flourish i {
      font-size: 0.9rem;
      vertical-align: middle;
  }

  .about-header p {
      font-family: "Inter", sans-serif;
      text-transform: uppercase;
      letter-spacing: 3px;
      font-size: 0.75rem;
      font-weight: 700;
      color: #666;
      margin-bottom: 5px;
  }

  .image-wrapper {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      height: 480px;
      box-shadow: var(--soft-shadow);
  }

  .image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .heritage-card-overlay {
      background: var(--hover-blue);
      color: white;
      border-radius: 15px;
      padding: 25px;
      margin: -40px 20px 0;
      position: relative;
      z-index: 5;
      border: 1px solid rgba(212, 175, 55, 0.3);
  }

  .tagline-badge {
      display: inline-block;
      background: rgba(11, 58, 125, 0.05);
      color: var(--hover-blue);
      padding: 5px 15px;
      border-radius: 5px;
      font-size: 0.8rem;
      font-weight: 700;
      margin-bottom: 15px;
  }

  .main-title-text {
      font-weight: 600;
      /* font-family: "Playfair Display", serif; */
      color: var(--hover-blue);
      font-size: 2rem;
      line-height: 1.2;
      margin-bottom: 20px;
  }

  .stat-box1 {
      background: #f8fafc;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      border: 1px solid #e2e8f0;
      transition: 0.3s ease;
  }

  .stat-box1:hover {
      border-color: var(--brand-gold);
      background: #fff;
  }

  .stat-number {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--brand-gold);
      display: block;
  }

  .stat-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      font-weight: 700;
      color: #64748b;
  }

  .feature-item {
      position: relative;
      padding-left: 20px;
      margin-bottom: 20px;
      border-left: 3px solid #e2e8f0;
      transition: border-color 0.3s;
  }

  .feature-item:hover {
      border-left-color: var(--brand-gold);
  }

  .feature-item h5 {
      font-size: 1.1rem;
      margin-bottom: 5px;
      color: var(--hover-blue);
  }

  .feature-item p {
      font-size: 0.95rem;
      color: #444;
      margin-bottom: 0;
  }

  .read-more-link {
      color: var(--school-blue);
      text-decoration: none;
      font-weight: 700;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      transition: all 0.3s ease;
  }

  .read-more-link:hover {
      color: var(--school-light);
      transform: translateX(5px);
  }

  .read-more-link i {
      margin-left: 8px;
      font-size: 0.8rem;
  }

  @media (max-width: 991px) {

      .section-pad {
          padding: 40px 0;
      }

      .image-wrapper {
          height: auto;
      }

      .image-wrapper img {
          width: 100%;
          height: auto;
          object-fit: cover;
      }

      .heritage-card-overlay {
          margin: -20px 10px 20px;
          padding: 18px;
      }

      .main-title-text {
          font-size: 1.8rem;
      }

      .stat-box1 {
          padding: 15px;
      }

      .stat-number {
          font-size: 1.5rem;
      }
  }



  /*................  MESSAGE SECTION  .....................*/

  .management-section {
      padding: 50px 0;
      background: linear-gradient(135deg, #0b3a78 0%, #1e88e5 100%);
      font-family: "Inter", sans-serif;
      color: #ffffff;
      /* position: relative; */
      overflow: hidden;
  }

  .management-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px,
              transparent 1px);
      background-size: 30px 30px;
      z-index: 0;
  }

  .pill-tag {
      background: #d4af37;
      color: #0b3a78;
      padding: 5px 15px;
      border-radius: 2px;
      font-size: 0.7rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 15px;
      display: inline-block;
  }

  .hero-title {
      /* font-family: "Playfair Display", serif; */
      font-size: 2.2rem;
      line-height: 1.2;
      margin-bottom: 25px;
      letter-spacing: -0.5px;
  }

  .hero-title span {
      color: #d4af37;
      font-style: italic;
  }

  .main-quote {
      font-size: 1.2rem;
      line-height: 1.5;
      font-weight: 600;
      margin-bottom: 15px;
      color: #ffffff;
      border-left: 3px solid #d4af37;
      padding-left: 20px;
  }

  .sub-text {
      font-size: 0.95rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 10px;
      max-width: 95%;
  }

  .read-more-link1 {
      color: #d4af37;
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
      transition: 0.3s;
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  .read-more-link1:hover {
      color: #ffffff;
      transform: translateX(5px);
  }

  .footer-action {
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      padding-top: 10px;
      margin-top: 10px;
  }

  .sig-name h4 {
      /* font-family: "Playfair Display", serif; */
      font-size: 1.4rem;
      margin: 0;
      line-height: 1.1;
      font-weight: 700;
  }

  .sig-name span {
      color: #d4af37;
      text-transform: uppercase;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      display: block;
      margin-top: 2px;
  }

  .image-col {
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .principal-frame {
      width: 370px;
      height: 370px;
      border-radius: 50%;
      padding: 10px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .principal-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      border: 4px solid #ffffff;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  }


  /* ................  GALLERY SECTION .................. */


  .pg-gallery-section .quick-video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      transform: translate(-50%, -50%);
      object-fit: cover;
      z-index: -2;
  }

  .pg-gallery-section .quick-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(360deg, #f6f6efe5, #f6f6eff8);
      z-index: -1;
  }

  .pg-gallery-section {
      padding: 50px 0;
      position: relative;
      overflow: hidden;
      /* background:
          linear-gradient(rgba(246, 246, 239, 0.84), rgba(246, 246, 239, 0.89)), url("../images/school.jpg"); */
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
  }

  .pg-wrapper {
      display: flex;
      gap: 100px;
      align-items: center;
      padding: 30px;
      background: #f3eacdcc;
      /* background: #d3d3d36e; */
      border-radius: 32px;
      border: 1px solid var(--school-blue);
      box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
      margin-bottom: 40px;
  }

  .pg-text-content {
      flex: 1;
  }

  .pg-text-content h2 {
      font-size: 22px;
      font-weight: 600;
      color: var(--dark-navy);
      margin-bottom: 20px;
      letter-spacing: -1px;
  }

  .pg-text-content p {
      color: var(--pg-text-muted);
      font-size: 18px;
      line-height: 1.6;
      margin-bottom: 35px;
  }

  .pg-main-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 32px;
      background: var(--pg-primary);
      color: #ffffff;
      border-radius: 14px;
      text-decoration: none;
      font-size: 16px;
      font-weight: 600;
      transition: all 0.3s ease;
  }

  .pg-main-btn:hover {
      background: #000;
      color: #fff;
      transform: translateY(-2px);
  }

  .pg-slider-container {
      flex: 1;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
      position: relative;
  }

  .pg-carousel-img {
      width: 100%;
      height: 330px;
      object-fit: cover;
      display: block;
  }

  .pg-nav-btn {
      width: 45px;
      height: 45px;
      background: rgba(255, 255, 255, 0.8);
      border-radius: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--pg-primary);
      border: none;
      backdrop-filter: blur(8px);
      transition: 0.3s;
      position: absolute;
      z-index: 5;
  }

  .pg-nav-btn:hover {
      background: white;
      scale: 1.1;
      color: #000;
  }

  .pg-sub-header {
      margin-bottom: 40px;
      border-left: 5px solid var(--pg-primary);
      padding-left: 20px;
  }

  .pg-sub-header h5 {
      font-size: 30px;
      font-weight: 800;
      color: var(--dark-navy);
      margin: 0;
  }

  .pg-highlight-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      height: 200px;
      cursor: pointer;
      background: #000;
      transition: transform 0.3s ease;
  }

  .pg-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
      opacity: 0.85;
  }

  .pg-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top,
              rgba(0, 0, 0, 0.8) 0%,
              transparent 60%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 15px;
  }

  .pg-card-overlay h4 {
      color: white;
      font-size: 16px;
      font-weight: 700;
      margin: 0;
  }

  .pg-card-overlay p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 14px;
      margin: 5px 0 0px 0;
  }

  .pg-album-btn {
      align-self: flex-start;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: white;
      padding: 8px 18px;
      border-radius: 10px;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s;
  }

  .pg-highlight-card:hover .pg-card-img {
      transform: scale(1.1);
      opacity: 0.6;
  }

  .pg-highlight-card:hover .pg-album-btn {
      background: #fff;
      color: var(--pg-primary);
  }


  /*..............  RESPONSIVE   .....................*/

  @media (max-width: 992px) {

      .management-section {
          padding: 60px 0;
          text-align: center;
      }

      .main-quote {
          border-left: none;
          padding-left: 0;
      }

      .read-more-link1 {
          justify-content: center;
      }

      .image-col {
          order: -1;
          margin-bottom: 40px;
      }

      .principal-frame {
          width: 280px;
          height: 280px;
      }

      .pg-wrapper {
          flex-direction: column;
          padding: 30px;
      }

      .pg-text-content {
          text-align: center;
      }

      .pg-carousel-img {
          height: 300px;
      }
  }


  /*............. MOTTO DIVIDER  ..............*/

  .motto-divider {
      position: relative;
      width: 100%;
      min-height: 450px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background:
          linear-gradient(135deg,
              rgba(11, 58, 120, 0.9) 0%,
              rgba(30, 136, 229, 0.8) 100%),
          url("../images/school_bul.png");
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
  }

  .glass-overlay {
      width: 100%;
      padding: 40px 0;
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(10px);
      border-top: 2px solid rgba(255, 255, 255, 0.17);
      border-bottom: 2px solid rgba(255, 255, 255, 0.27);
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .icon-circle {
      width: 80px;
      height: 80px;
      border: 2px solid #d4af37;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      background: radial-gradient(circle,
              rgba(212, 175, 55, 0.2) 0%,
              transparent 70%);
  }

  .motto-content {
      text-align: center;
      max-width: 80%;
  }

  .motto-text {
      color: #ffffff;
      font-family: "Georgia", serif;
      font-size: 3rem;
      font-style: italic;
      font-weight: 300;
      margin: 15px 0;
      text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
  }

  .motto-line {
      border: 0;
      height: 3px;
      background: linear-gradient(to right,
              #00000045,
              rgb(255, 255, 255),
              #00000045);
      width: 100%;
  }

  .motto-subtext {
      display: block;
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.7rem;
      letter-spacing: 4px;
      margin-top: 10px;
  }


  /* ............  TOPPERS • BIRTHDAY • ACHIEVEMENTS  ...........*/

  .tba {
      padding: 50px 0;
      position: relative;
      overflow: hidden;
      /* background:
          linear-gradient(rgba(246, 246, 239, 0.61),
              rgba(246, 246, 239, 0.86)),
          url("../images/bg-image.jpg"); */
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
  }

  .premium-card {
      background: linear-gradient(135deg, #0b3a78 0%, #1e88e5 100%);
      border-radius: 40px;
      box-shadow: 0 25px 50px -12px rgba(12, 57, 124, 0.4);
      padding: 35px;
      height: 460px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
  }

  .premium-card h3 {
      color: white;
      font-weight: 700;
      font-size: 2rem;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      text-align: center;
  }

  .label-style {
      font-weight: 800;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      font-size: 0.65rem;
      color: #fdf500;
      background: rgba(112, 66, 248, 0.1);
      display: inline-block;
      padding: 2px 10px;
      border-radius: 4px;
  }

  .achieve-card-inner {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 25px;
      height: 260px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      display: flex;
      flex-direction: column;
  }

  .achieve-img-top {
      width: 100%;
      height: 165px;
      object-fit: cover;
      mask-image: none !important;
      -webkit-mask-image: none !important;
  }

  .achieve-content {
      padding: 15px 20px;
      text-align: left;
      flex-grow: 1;
      background: rgba(0, 0, 0, 0.2);
  }

  .achieve-title {
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 8px;
      color: #fff;
  }

  .achieve-desc {
      font-size: 0.8rem;
      line-height: 1.5;
      color: var(--text-muted-light);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
  }

  .achieve-date-tag {
      position: absolute;
      top: 10px;
      left: 10px;
      background: var(--accent-purple);
      color: white;
      padding: 4px 10px;
      border-radius: 8px;
      font-size: 0.6rem;
      font-weight: 700;
      z-index: 10;
  }

  .topper-img-stack {
      position: relative;
      width: 180px;
      height: 180px;
      margin: 0 auto 25px;
  }

  .topper-img-stack::before {
      content: "";
      position: absolute;
      inset: -5px;
      border: 2px solid var(--brand-gold);
      /* border: 2px solid var(--accent-purple); */
      border-radius: 20px;
      transform: rotate(-6deg);
      z-index: 0;
  }

  .topper-main-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 18px;
      position: relative;
      z-index: 2;
      border: 4px solid white;
  }

  .score-pill {
      position: absolute;
      bottom: -10px;
      right: -15px;
      background: var(--brand-gold);
      /* background: var(--accent-purple); */
      color: white;
      padding: 4px 12px;
      border-radius: 50px;
      font-weight: 800;
      font-size: 0.85rem;
      z-index: 3;
  }

  .bday-blob-container {
      width: 180px;
      height: 180px;
      margin: 0 auto 20px;
      position: relative;
  }

  .bday-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
      border: 4px solid white;
  }

  .bday-icon-float {
      position: absolute;
      top: 0px;
      right: 0px;
      background: white;
      color: var(--accent-pink);
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
  }

  .custom-nav {
      margin-top: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 15px;
      padding-top: 15px;
  }

  .nav-btn {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-btn:hover {
      background: white;
      color: var(--dark-navy);
      transform: translateY(-2px);
  }

  .view-all-mid {
      background: white;
      color: var(--dark-navy);
      border: none;
      padding: 8px 24px;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 800;
      text-transform: uppercase;
      transition: 0.3s;
  }

  .view-all-mid:hover {
      background: #fdf500;
      color: var(--dark-navy);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }


  /*..............   FOUNDRESS DIVIDER  ..........*/

  .foundress-divider {
      position: relative;
      width: 100%;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      background:
          linear-gradient(135deg,
              rgba(11, 58, 120, 0.9) 0%,
              rgba(30, 136, 229, 0.8) 100%),
          url("../images/school_bul.png");
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      padding: 60px 0;
  }

  .glass-overlay-dark {
      width: 90%;
      max-width: 1100px;
      padding: 50px;
      background: rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 30px;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  }

  .foundress-container {
      display: flex;
      align-items: center;
      gap: 50px;
  }

  .foundress-image-wrapper {
      flex-shrink: 0;
  }

  .image-border-glow {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      /* padding: 8px; */
      background: linear-gradient(45deg, #d4af37, #f9e29c);
      box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  }

  .foundress-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      border: 4px solid rgba(255, 255, 255, 0.1);
  }

  .foundress-content {
      position: relative;
  }

  .quote-mark {
      font-family: "Georgia", serif;
      font-size: 8rem;
      color: rgba(212, 175, 55, 0.2);
      position: absolute;
      top: -60px;
      left: -30px;
      line-height: 1;
  }

  .quote-text {
      color: #ffffff;
      font-family: "Georgia", serif;
      font-size: 2rem;
      font-style: italic;
      font-weight: 300;
      line-height: 1.4;
      margin-bottom: 25px;
      position: relative;
      z-index: 1;
  }

  .attribution {
      border-left: 3px solid #d4af37;
      padding-left: 20px;
  }

  .foundress-name {
      display: block;
      color: #d4af37;
      font-weight: 700;
      font-size: 1.2rem;
      letter-spacing: 1px;
      text-transform: uppercase;
  }

  .foundress-title {
      display: block;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
      margin-top: 5px;
  }


  @media (max-width: 992px) {

      .foundress-container {
          flex-direction: column;
          text-align: center;
          gap: 30px;
      }

      .attribution {
          border-left: none;
          padding-left: 0;
      }

      .quote-text {
          font-size: 1.6rem;
      }

      .quote-mark {
          left: 50%;
          transform: translateX(-50%);
      }
  }

  @media (max-width: 768px) {

      .motto-text {
          font-size: 1.8rem;
      }

      .icon-circle {
          width: 60px;
          height: 60px;
      }
  }




  /*...............  Facilities  ..................*/



  .facility-section {
      padding: 50px 0;
      position: relative;
      overflow: hidden;
      /* background:
          linear-gradient(rgba(246, 246, 239, 0.61), rgba(246, 246, 239, 0.86)),
          url("../images/bg-image.jpg");
      background-size: cover;
      background-position: center;
      background-attachment: fixed; */
  }

  .experience-tag {
      color: #000000;
      letter-spacing: 1px;
      font-size: 14px;
      margin-bottom: 5px;
  }

  .facility-left h2 {
      font-size: 42px;
      font-weight: 700;
      color: var(--hover-blue);
      line-height: 1.1;
      margin-bottom: 20px;
  }

  @media (max-width: 768px) {
      .facility-left h2 {
          font-size: 32px;
      }

      .facility-section {
          padding: 40px 0;
      }
  }

  .slider-wrapper {
      position: relative;
      cursor: grab;
      touch-action: pan-y;
  }

  .slider-wrapper:active {
      cursor: grabbing;
  }

  .facility-slider {
      display: flex;
      gap: 25px;
      overflow-x: auto;
      padding: 10px 0;
      scrollbar-width: none;
      -ms-overflow-style: none;
      scroll-behavior: auto;
      -webkit-overflow-scrolling: touch;
  }

  .facility-slider::-webkit-scrollbar {
      display: none;
  }

  .facility-card {
    max-width: 280px;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    position: relative;
    flex-shrink: 0;
    user-select: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
  @media (max-width: 576px) {
      .facility-card {
          min-width: 240px;
          height: 240px;
      }

      .facility-slider {
          gap: 15px;
      }
  }

  .card-image-wrapper {
      position: relative;
      width: 100%;
      height: 100%;
  }

  .facility-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
      pointer-events: none;
  }

  .facility-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(12, 39, 124, 0.9);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 25px;
      text-align: center;
      opacity: 0;
      transition: all 0.4s ease;
  }

  .facility-overlay p {
      color: #fff;
      font-size: 14px;
      margin-bottom: 15px;
  }

  .facility-card:hover .facility-overlay {
      opacity: 1;
  }

  .facility-card:hover img {
      transform: scale(1.1);
  }

  .facility-card h3 {
      position: absolute;
      top: 15px;
      left: 15px;
      padding: 6px 14px;
      border-radius: 8px;
      font-size: 0.95rem;
      font-weight: 800;
      background: var(--brand-yellow);
      color: var(--hover-blue);
      z-index: 4;
      font-family: "Segoe UI", sans-serif;
  }

  .explore-btn {
      background: var(--brand-gold);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      padding: 8px 18px;
      border-radius: 50px;
      text-decoration: none;
  }

  .scroll-progress-container {
      width: 100%;
      height: 3px;
      background: #eee;
      margin-top: 20px;
      border-radius: 10px;
      position: relative;
      cursor: pointer;
      touch-action: none;
  }

  .scroll-progress-bar {
      position: absolute;
      top: -2px;
      left: 0;
      width: 60px;
      height: 7px;
      background: var(--brand-gold);
      border-radius: 10px;
      cursor: grab;
      transition: transform 0.1s;
  }

  .view-btn {
      display: inline-block;
      padding: 10px 22px;
      background: #0b3a80;
      color: #fff;
      border-radius: 30px;
      text-decoration: none;
      font-size: 14px;
      transition: 0.3s;
  }

  .view-btn:hover {
      background: #06265a;
  }






  /*.......... Foter  ............*/





  .modern-footer {
      background: #0b3a78;
      color: white;
      padding-top: 60px;
      font-family: 'Inter', sans-serif;
      position: relative;
  }

  .logo-name {

      display: flex;
      align-items: center;
      margin-bottom: 20px;
      gap: 15px;

  }


  .patron-floating-hero {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    width: 80%;
    gap: 30px;
    margin: 0px auto 60px auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
  .patron-image-wrapper {
      position: relative;
      flex-shrink: 0;
  }

  .patron-main-img {
      width: 120px;
      height: 190px;


      object-fit: cover;
      position: relative;
      z-index: 2;

  }

  .image-halo {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 180px;
      height: 180px;
      background: var(--brand-gold);
      filter: blur(40px);
      opacity: 0.15;
      z-index: 1;
  }

  .patron-details h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      margin: 5px 0;
      color: var(--brand-gold);
  }

  .pre-title {
      text-transform: uppercase;
      letter-spacing: 4px;
      font-size: 0.75rem;
      opacity: 0.7;
      font-weight: 600;
  }

  .patron-quote {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      color: var(--brand-gold);
      margin-top: 10px;
      opacity: 0.9;
  }

  .footer-main-content {
      display: flex;
      justify-content: space-between;
      gap: 40px;
      padding-bottom: 40px;
      flex-wrap: wrap;
  }

  .footer-info-brand {
      flex: 1.5;
      min-width: 300px;
  }

  .floating-logo {
      height: 70px;

      transition: var(--transition);
      filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
  }

  .footer-info-brand h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
      font-weight: 700;
  }

  .school-motto {
      display: block;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 600;
      font-size: 0.85rem;
      color: var(--brand-gold);
      margin-bottom: 15px;
  }

  .school-bio {
      font-size: 0.95rem;
      line-height: 1.6;
      opacity: 0.8;
      max-width: 350px;
      margin-bottom: 35px;
  }

  .social-sec {
      display: flex;
      gap: 10px;
      margin-right: 15rem;
      justify-content: center;
      justify-items: center;

  }


  .social-sec li {
      list-style: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.25);
      transition: 0.3s ease;
      cursor: pointer;
  }

  .social-sec li a {
      color: white;
      font-size: 18px;
      transition: 0.3s;
  }

  .social-sec li:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: translateY(-5px) scale(1.05);
  }

  .footer-nav {
      flex: 1;
      min-width: 200px;
  }

  .footer-nav h4 {
      color: var(--brand-gold);
      font-size: 1.1rem;
      margin-bottom: 25px;
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  .clean-links {
      list-style: none;
      padding: 0;
  }

  .clean-links li {
      margin-bottom: 15px;
  }

  .clean-links a {
      color: white;
      text-decoration: none;
      opacity: 0.7;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
  }

  .clean-links a:hover {
      opacity: 1;
      color: var(--brand-gold);
      transform: translateX(8px);
  }

  .footer-contact-bento {
      flex: 1.2;
      min-width: 300px;
      background: var(--glass);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 25px;
  }

  .contact-item {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
      font-size: 0.95rem;
  }

  .contact-item i {
      color: var(--brand-gold);
      font-size: 1.1rem;
  }

  .mini-map {
      border-radius: 12px;
      overflow: hidden;
      margin: 20px 0;
      height: 120px;
      border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .portal-btn {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: var(--brand-gold);
      color: var(--bright-blue);
      padding: 14px 22px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 700;
      transition: var(--transition);
  }

  .portal-btn:hover {
      background: white;
      transform: translateY(-3px);
  }

  .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 30px 0;
      font-size: 0.85rem;
      opacity: 0.6;
  }

  .bottom-flex {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .legal-links a {
      color: white;
      margin-left: 25px;
      text-decoration: none;
      transition: 0.3s;
  }

  .legal-links a:hover {
      color: var(--brand-gold);
  }

  @media (max-width: 768px) {
      .social-sec {
          margin-right: 0 !important;
          justify-content: center;
          padding: 0;
      }

      .logo-name {
          justify-content: center;
          flex-direction: column;
          text-align: center;
      }
  }

  @media (max-width: 576px) {
      .patron-floating-hero {
          padding: 30px 20px;
          gap: 20px;
          margin-left: 15px;
          margin-right: 15px;
      }

      .patron-details h2 {
          font-size: 1.8rem;
      }

      .patron-main-img {
          width: 100px;
          height: 160px;
      }
  }

  @media (max-width: 992px) {
      .footer-main-content {
          display: flex;
          flex-direction: column;
          align-items: center;
          text-align: center;
      }

      .footer-info-brand,
      .footer-nav,
      .footer-contact-bento {
          width: 100%;
          max-width: 450px;
          min-width: unset;
      }

      .school-bio {
          max-width: 100%;
          margin-bottom: 25px;
      }

      .clean-links a {
          justify-content: center;
      }

      .contact-item {
          justify-content: center;
      }
  }



  /*.................. Page ................. */


  /*............... Banner  ......................*/
  .header-section {
      position: relative;
      width: 100%;
      height: 450px;
      background: #0b3a78;
      overflow: hidden;
      display: flex;
      align-items: center;
  }

  .image-mask {
      position: absolute;
      right: 0%;
      width: 50%;
      height: 100%;
      z-index: 2;
      clip-path: circle(70.7% at 70% 50%);
      background-image: url('../images/school_bul.png');
      background-size: cover;
      background-position: center;
      box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.5);
      transition: 0.5s ease-in-out;
  }

  .header-section:hover .image-mask {
      clip-path: circle(75% at 70% 50%);
      transform: scale(1.02);
  }

  .content-area {
      position: relative;
      z-index: 10;
      margin-left: 8%;
      max-width: 600px;
  }

  .category-tag {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 10px;
      font-size: 0.8rem;
      margin-bottom: 20px;
      display: block;
      animation: slideUp 0.8s ease forwards;
  }

  .main-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 900;
      font-size: 5rem;
      color: var(--white);
      line-height: 0.8;
      margin-bottom: 30px;
      text-transform: uppercase;
      animation: slideUp 1s ease forwards;
      margin-top: 130px;
  }

  .main-title span {
      color: transparent;
      -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.3);
  }

  .breadcrumb-container {
      display: flex;
      align-items: center;
      gap: 20px;
      animation: slideUp 1.2s ease forwards;
  }

  .breadcrumb-item {
      text-decoration: none;
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.9rem;
      font-weight: 500;
      transition: 0.3s;
  }

  .breadcrumb-item:hover {
      color: var(--accent);
  }

  .line-divider {
      width: 50px;
      height: 1px;
      background: rgba(255, 255, 255, 0.2);
  }

  .active-page {
      color: var(--white);
      font-weight: 200;
      font-style: italic;
  }

  .floating-circle {
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
      top: -100px;
      left: -100px;
      border-radius: 50%;
      z-index: 1;
  }

  .scroll-down {
      position: absolute;
      bottom: 40px;
      left: 8%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      z-index: 10;
  }

  .scroll-line {
      width: 1px;
      height: 60px;
      background: linear-gradient(to bottom, var(--accent), transparent);
      animation: growLine 2s infinite;
  }

  @keyframes slideUp {
      from {
          opacity: 0;
          transform: translateY(40px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes growLine {
      0% {
          height: 0;
          opacity: 0;
      }

      50% {
          height: 60px;
          opacity: 1;
      }

      100% {
          height: 60px;
          opacity: 0;
      }
  }

  @media (max-width: 992px) {
      .image-mask {
          width: 100%;
          right: 0;
          clip-path: none;
          opacity: 0.3;
          border-radius: 0;
          height: 100%;
      }

      .main-title {
          font-size: 3.5rem;
      }

      .content-area {
          text-align: center;
          margin: 0 auto;
          padding: 20px;
      }

      .breadcrumb-container {
          justify-content: center;
      }

      .scroll-down {
          display: none;
      }
  }