 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   user-select: none;
 }

 :root {
   --navy-midnight: #010814;
   --navy-base: linear-gradient(90deg, #0C264E, #123263);
   --navy-deep: #051e42;
   --crimson-pure: #be1226;
   --crimson-dark: #800b17;
   --gold-pure: #f59e0b;
   --gold-bright: #fbbf24;

   --accent-glow: rgba(56, 189, 248, 0.45);
   --gold-glow: rgba(245, 158, 11, 0.35);

   --font-display: 'Cinzel', serif;
   --font-sans: 'Plus Jakarta Sans', sans-serif;
   --font-ui: 'Montserrat', sans-serif;
   --font-serif: 'Cormorant Garamond', Georgia, serif;
   --font-mono: 'Space Mono', monospace;

   --bg-cream: #faf5ee;
   --terracotta: #c35933;
   --terracotta-dark: #7a2b10;
   --terracotta-light: #faeae3;
   --gold-accent: #c49a45;
   --text-main: #231c18;
   --text-muted: #64584f;
   --line-subtle: rgba(195, 89, 51, 0.14);
   --card-glass: rgba(255, 255, 255, 0.72);

   --text-primary: #f8fafc;
   --lead-muted: #94a3b8;
   --glass-bg: rgba(255, 255, 255, 0.03);
   --glass-border: rgba(255, 255, 255, 0.08);
   --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);

   --primary-deep: #2a0205;
   --primary-dark: #150204;
   --primary-red: #8b101c;
   --text-dark-new: #3b2c26;
   --text-gold-light: #e6c575;

   --accent-gold: #e2b766;
   --accent-cyan: #00f0ff;
   --text-light: #ffffff;
   --text-muted-vault: #8da4c4;
   --surface-card-vault: rgba(14, 32, 63, 0.85);
   --border-glow: rgba(226, 183, 102, 0.35);
 }



 body {
   position: relative;
   background-color: var(--bg-cream);
 }

 a {
   text-decoration: none !important;
 }

 .svg-defs {
   position: absolute;
   width: 0;
   height: 0;
   pointer-events: none;
 }

 /* ---------------- NAVBAR ---------------- */
 .navbar-wrapper {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
   width: 100%;
   display: flex;
   justify-content: center;
   padding: 16px 20px 0;
   pointer-events: none;
 }

 /* Navbar container is the single coordinate anchor for all dropdowns */
 .navbar-container {
   pointer-events: auto;
   position: relative;
   width: 100%;
   max-width: 1100px;
   height: 74px;
   border-radius: 18px;
   background: var(--navy-base);
   box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 0 14px 0 0;
   font-family: var(--font-ui);
 }

 .waves-background {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 1;
   pointer-events: none;
   border-radius: 18px;
   overflow: hidden;
 }

 .brand-section {
   position: relative;
   z-index: 5;
   display: flex;
   align-items: center;
   text-decoration: none;
   height: 100%;
   padding-left: 85px;
   padding-right: 20px;
   flex-shrink: 0;
 }

 .brand-logo-absolute {
   position: absolute;
   left: -20px;
   top: 50%;
   transform: translateY(-50%);
   width: 90px;
   height: 100px;
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 10;
 }

 .brand-logo-absolute img {
   width: 100%;
   height: 100%;
   object-fit: contain;
   filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
 }

 .brand-text {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   text-align: center;
   color: #ffffff;
   line-height: 1.15;
 }

 .brand-text .title {
   font-size: 0.92rem;
   font-weight: 900;
   letter-spacing: 0.6px;
   white-space: nowrap;
 }

 .brand-text .subtitle {
   font-size: 0.78rem;
   font-weight: 800;
   letter-spacing: 0.4px;
   margin-top: 1px;
   white-space: nowrap;
 }

 .brand-text .location-row {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 4px;
   margin-top: 2px;
 }

 .brand-text .location {
   font-size: 0.70rem;
   font-weight: 900;
   letter-spacing: 2px;
   color: #ffffff;
 }

 .accent-stars {
   color: var(--crimson-pure);
   font-size: 0.55rem;
   display: flex;
   align-items: center;
   gap: 2px;
 }

 .accent-line {
   display: inline-block;
   width: 8px;
   height: 1.5px;
   background-color: var(--crimson-pure);
 }

 .nav-menu {
   position: relative;
   z-index: 5;
   display: flex;
   align-items: center;
   list-style: none;
   flex: 1;
   height: 100%;
   margin: 0;
   padding-left: 40px;
   gap: 5px;
 }

 /* On desktop, position: static ensures all mega-dropdowns anchor to .navbar-container */
 .nav-item {
   position: static;
   display: flex;
   align-items: center;
   height: 100%;
 }

 .nav-link {
   text-decoration: none;
   color: #ffffff;
   font-size: 0.75rem;
   font-weight: 800;
   letter-spacing: 0.6px;
   text-transform: uppercase;
   padding: 6px 12px;
   border-radius: 18px;
   transition: all 0.22s ease;
   white-space: nowrap;
   display: inline-flex;
   align-items: center;
   gap: 5px;
   background: transparent;
   border: none;
   cursor: pointer;
   font-family: inherit;
 }

 .nav-link:focus:not(:focus-visible) {
   outline: none;
 }

 /* Remove Bootstrap default caret */
 .dropdown-toggle::after {
   display: none !important;
 }

 .nav-item.active .nav-link,
 .nav-link:hover,
 .nav-item:hover .nav-link,
 .nav-item.open .nav-link {
   background-color: #ffffff;
   color: #7b0d18;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
 }

 .nav-item:hover .nav-link i.fa-chevron-down,
 .nav-item.open .nav-link i.fa-chevron-down {
   transform: rotate(180deg);
 }

 .nav-item.contact-item {
   margin-left: auto;
 }

 .nav-item.contact-item .nav-link {
   background-color: #ffffff;
   color: #7b0d18;
   padding: 8px 20px;
   font-size: 0.78rem;
   font-weight: 900;
   box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
   border: 1px solid rgba(255, 255, 255, 0.9);
   letter-spacing: 0.8px;
 }

 /* Invisible bridge so moving cursor down into dropdown doesn't lose hover */
 .nav-item.has-dropdown::before {
   content: "";
   position: absolute;
   top: 100%;
   left: 0;
   width: 100%;
   height: 18px;
   background: transparent;
   display: none;
 }

 .nav-item.has-dropdown:hover::before {
   display: block;
 }

 /* FIXED-STAGE DROPDOWN: Fixed horizontal & vertical alignment on desktop */
 .mega-dropdown {
   position: absolute;
   top: calc(100% + 14px);
   left: 50%;
   transform: translateX(-50%) translateY(-10px) scale(0.97);
   width: 650px;
   max-width: calc(100% - 30px);
   background: linear-gradient(145deg, rgba(3, 20, 46, 0.98), rgba(1, 8, 18, 0.98));
   border: 1px solid rgba(255, 255, 255, 0.14);
   box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(179, 20, 34, 0.35);
   border-radius: 18px;
   padding: 18px;
   opacity: 0;
   visibility: hidden;
   transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.22s;
   backdrop-filter: blur(14px);
   z-index: 100;
   display: flex;
   gap: 16px;
   pointer-events: none;
 }

 /* Triggers on mouse hover & JS click open */
 .nav-item.has-dropdown:hover .mega-dropdown,
 .nav-item.open .mega-dropdown {
   opacity: 1;
   visibility: visible;
   transform: translateX(-50%) translateY(0) scale(1);
   pointer-events: auto;
 }

 .dd-left-banner {
   width: 175px;
   background: linear-gradient(145deg, rgba(179, 20, 34, 0.25), rgba(40, 3, 7, 0.5));
   border: 1px solid rgba(179, 20, 34, 0.35);
   border-radius: 12px;
   padding: 16px 12px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   text-align: center;
   flex-shrink: 0;
 }

 .dd-left-logo-img {
   width: 80px;
   height: 80px;
   object-fit: contain;
   margin-bottom: 8px;
 }

 .dd-left-title {
   color: #ffffff;
   font-size: 0.72rem;
   font-weight: 900;
   line-height: 1.25;
 }

 .dd-left-sub {
   color: #fca5a5;
   font-size: 0.62rem;
   font-weight: 700;
   margin-top: 4px;
 }

 .dd-right-columns {
   flex: 1;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 14px;
 }

 .dd-col-title {
   color: #ef4444;
   font-size: 0.68rem;
   font-weight: 900;
   letter-spacing: 1px;
   text-transform: uppercase;
   padding-bottom: 6px;
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
   margin-bottom: 8px;
   display: flex;
   align-items: center;
   gap: 6px;
 }

 .dd-links-list {
   display: flex;
   flex-direction: column;
   gap: 6px;
   list-style: none;
   padding: 0;
   margin: 0;
 }

 .dd-links-list li a {
   display: flex;
   align-items: center;
   gap: 8px;
   padding: 7px 9px;
   color: #cbd5e1;
   text-decoration: none;
   font-size: 0.72rem;
   font-weight: 700;
   border-radius: 8px;
   transition: all 0.2s ease;
   background: rgba(255, 255, 255, 0.03);
 }

 .dd-links-list li a .icon-circle {
   width: 20px;
   height: 20px;
   border-radius: 5px;
   background: rgba(179, 20, 34, 0.25);
   color: #ef4444;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 0.6rem;
   flex-shrink: 0;
   transition: all 0.2s ease;
 }

 .dd-links-list li a:hover {
   background: rgba(255, 255, 255, 0.1);
   color: #ffffff;
   transform: translateX(3px);
 }

 .dd-links-list li a:hover .icon-circle {
   background: #ef4444;
   color: #ffffff;
 }

 .mobile-toggle-btn {
   display: none;
   background: transparent;
   border: none;
   color: #ffffff;
   font-size: 1.5rem;
   cursor: pointer;
   z-index: 20;
   padding: 8px 12px;
 }

 /* ======================================================== */
 /* MOBILE OVERLAY & ACCORDIONS (SCREEN WIDTH <= 991px)      */
 /* ======================================================== */
 @media (max-width: 991px) {
   .navbar-wrapper {
     padding: 10px 14px 0 !important;
     pointer-events: none !important;
   }

   .navbar-container {
     height: 65px !important;
     padding: 0 12px 0 0 !important;
     position: relative;
     z-index: 1002 !important;
     pointer-events: auto !important;
   }

   .mobile-toggle-btn {
     display: inline-flex !important;
     align-items: center;
     justify-content: center;
     background: transparent;
     border: none;
     color: #ffffff;
     font-size: 1.5rem;
     cursor: pointer;
     z-index: 1005 !important;
     padding: 8px 12px;
     margin-right: 4px;
   }

   .brand-section {
     padding-left: 100px !important;
     padding-right: 10px !important;
   }

   .brand-logo-absolute {
     width: 80px !important;
     height: 80px !important;
     left: -10px !important;
   }

   .brand-text .title {
     font-size: 0.78rem !important;
   }

   .brand-text .subtitle {
     font-size: 0.65rem !important;
   }

   .brand-text .location {
     font-size: 0.58rem !important;
   }

   /* Full-Screen Drawer */
   .nav-menu {
     position: fixed !important;
     top: 0 !important;
     left: 0 !important;
     right: 0 !important;
     bottom: 0 !important;
     width: 100vw !important;
     height: 100vh !important;
     height: 100dvh !important;
     background: #041026 !important;
     z-index: 1001 !important;
     display: flex !important;
     flex-direction: column !important;
     align-items: stretch !important;
     padding: 90px 20px 40px 20px !important;
     margin: 0 !important;
     overflow-y: auto !important;
     -webkit-overflow-scrolling: touch;
     gap: 10px !important;
     visibility: hidden !important;
     opacity: 0 !important;
     transform: translateY(-10px);
     transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s !important;
     pointer-events: none !important;
   }

   .nav-menu.mobile-open {
     visibility: visible !important;
     opacity: 1 !important;
     transform: translateY(0) !important;
     pointer-events: auto !important;
   }

   .nav-item.has-dropdown::before {
     display: none !important;
   }

   .nav-item {
     width: 100% !important;
     height: auto !important;
     display: flex !important;
     flex-direction: column !important;
     align-items: stretch !important;
     flex-shrink: 0 !important;
   }

   .nav-link {
     width: 100% !important;
     display: flex !important;
     align-items: center !important;
     justify-content: space-between !important;
     padding: 13px 18px !important;
     font-size: 0.85rem !important;
     border-radius: 12px !important;
     background: rgba(255, 255, 255, 0.05) !important;
     color: #ffffff !important;
     box-shadow: none !important;
   }

   .nav-item.active>.nav-link,
   .nav-item.open>.nav-link {
     background: rgba(179, 20, 34, 0.35) !important;
     color: #ffffff !important;
     border: 1px solid rgba(179, 20, 34, 0.5) !important;
   }

   .nav-item.open>.nav-link i.fa-chevron-down {
     transform: rotate(180deg) !important;
   }

   .nav-item.contact-item {
     margin-left: 0 !important;
     margin-top: 10px !important;
   }

   .nav-item.contact-item .nav-link {
     background: #ab1322 !important;
     color: #ffffff !important;
   }

   /* Reset dropdown to natural accordion flow on mobile */
   .mega-dropdown {
     position: static !important;
     top: auto !important;
     left: auto !important;
     right: auto !important;
     transform: none !important;
     width: 100% !important;
     max-width: 100% !important;
     box-shadow: none !important;
     margin-top: 8px !important;
     padding: 14px 12px !important;
     background: rgba(0, 0, 0, 0.35) !important;
     border: 1px solid rgba(255, 255, 255, 0.08) !important;
     border-radius: 12px !important;
     display: none !important;
     flex-direction: column !important;
     opacity: 1 !important;
     visibility: visible !important;
     pointer-events: auto !important;
     gap: 14px !important;
   }

   .nav-item.open .mega-dropdown {
     display: flex !important;
   }

   .dd-left-banner {
     display: none !important;
   }

   .dd-right-columns {
     display: flex !important;
     flex-direction: column !important;
     grid-template-columns: 1fr !important;
     gap: 14px !important;
   }

   .dd-col-title {
     font-size: 0.72rem !important;
     margin-bottom: 6px !important;
   }

   .dd-links-list li a {
     padding: 10px 12px !important;
     font-size: 0.78rem !important;
     border-radius: 8px !important;
   }

   .dd-links-list li a .icon-circle {
     width: 22px !important;
     height: 22px !important;
     font-size: 0.62rem !important;
   }
 }



 /* ---------------- HERO SECTION BACKGROUND & STRUCTURE ---------------- */
 .hero-wrapper-zone {
   background-image: url('../images/skykashipur.webp');
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   position: relative;
   width: 100%;
   min-height: 100vh;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   overflow: hidden;
 }

 .sky-sun-glow {
   position: absolute;
   top: -10%;
   right: 15%;
   width: 65vw;
   height: 65vw;
   max-width: 800px;
   max-height: 800px;
   border-radius: 50%;
   background: radial-gradient(circle, rgba(254, 240, 138, 0.45) 0%, rgba(251, 191, 36, 0.2) 35%, rgba(56, 189, 248, 0.08) 70%, transparent 80%);
   filter: blur(50px);
   pointer-events: none;
   z-index: 1;
 }

 .sky-cloud-mist {
   position: absolute;
   inset: 0;
   pointer-events: none;
   z-index: 2;
   opacity: 0.4;
   background-image:
     radial-gradient(ellipse at 15% 85%, rgba(255, 255, 255, 0.7) 0%, transparent 45%),
     radial-gradient(ellipse at 85% 90%, rgba(255, 255, 255, 0.65) 0%, transparent 40%),
     radial-gradient(ellipse at 50% 98%, rgba(255, 255, 255, 0.85) 0%, transparent 55%);
 }

 #particlesBg {
   position: absolute;
   inset: 0;
   pointer-events: none;
   z-index: 3;
   opacity: 0.6;
 }

 .ambient-geometry {
   position: absolute;
   right: 5%;
   top: 50%;
   transform: translateY(-50%);
   width: 65vw;
   height: 65vw;
   max-width: 850px;
   max-height: 850px;
   border: 1.5px dashed rgba(255, 255, 255, 0.35);
   border-radius: 50%;
   pointer-events: none;
   z-index: 2;
   animation: rotateAura 70s linear infinite;
 }

 @keyframes rotateAura {
   0% {
     transform: translateY(-50%) rotate(0deg);
   }

   100% {
     transform: translateY(-50%) rotate(360deg);
   }
 }

 .hero-section {
   position: relative;
   flex: 1;
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 110px 4vw 20px;
   z-index: 10;
   background: transparent;
 }

 .hero-inner-container {
   position: relative;
   width: 100%;
   max-width: 1400px;
   display: grid;
   grid-template-columns: 1.15fr 0.85fr;
   gap: 3vw;
   align-items: center;
 }

 .story-chamber {
   position: relative;
   z-index: 10;
   max-width: 650px;
   width: 100%;
 }

 .school-tagline-chip {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 6px 16px;
   background: rgba(3, 20, 46, 0.45);
   border: 1px solid rgba(112, 196, 255, 0.45);
   border-radius: 30px;
   backdrop-filter: blur(12px);
   width: fit-content;
   margin-bottom: 18px;
 }

 .chip-gem {
   width: 8px;
   height: 8px;
   background: var(--gold-bright);
   border-radius: 50%;
   box-shadow: 0 0 10px var(--gold-pure);
 }

 .chip-text {
   font-size: 0.74rem;
   font-weight: 700;
   letter-spacing: 1.8px;
   text-transform: uppercase;
   color: #ffffff;
 }

 .swiper-text-chamber {
   width: 100%;
   overflow: hidden;
   margin-bottom: 20px;
 }

 .swiper-text-chamber .swiper-slide {
   pointer-events: none;
 }

 .swiper-text-chamber .swiper-slide-active {
   pointer-events: auto;
 }

 .hero-headline {
   font-family: var(--font-display);
   font-size: clamp(2.2rem, 4.5vw, 4.8rem);
   font-weight: 900;
   line-height: 0.88;
   letter-spacing: -1px;
   text-transform: uppercase;
   background: linear-gradient(180deg, #ffffff 15%, var(--gold-bright) 65%, var(--gold-pure) 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   filter: drop-shadow(0 10px 25px rgba(1, 8, 20, 0.6));
   display: inline-block;
   padding-right: 15px;
   margin-bottom: 10px;
 }

 .hero-subtitle {
   font-size: 1.2rem;
   font-weight: 700;
   letter-spacing: 0.5px;
   color: #ffffff;
   margin-bottom: 14px;
   display: flex;
   align-items: center;
   gap: 12px;
 }

 .hero-subtitle::after {
   content: '';
   flex: 1;
   height: 1px;
   background: linear-gradient(90deg, rgba(251, 191, 36, 0.6) 0%, transparent 100%);
 }

 .hero-paragraph {
   font-size: 1.05rem;
   line-height: 1.7;
   color: #f1f5f9;
   max-width: 540px;
   text-shadow: 0 2px 6px rgba(1, 8, 20, 0.4);
 }

 .slider-nav-control {
   display: flex;
   align-items: center;
   gap: 18px;
   margin-bottom: 26px;
 }

 .nav-arrow-btn {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   background: rgba(3, 20, 46, 0.45);
   border: 1px solid rgba(112, 196, 255, 0.4);
   color: #ffffff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 0.95rem;
   cursor: pointer;
   backdrop-filter: blur(10px);
   transition: all 0.25s ease;
 }

 .nav-arrow-btn:hover {
   background: var(--gold-bright);
   color: var(--navy-midnight);
   border-color: var(--gold-bright);
   box-shadow: 0 0 16px var(--gold-glow);
   transform: scale(1.08);
 }

 .swiper-pagination-custom {
   position: static !important;
   display: flex !important;
   align-items: center;
   gap: 10px;
   width: auto !important;
 }

 .swiper-pagination-custom .swiper-pagination-bullet {
   width: 12px;
   height: 12px;
   border-radius: 10px;
   background: rgba(255, 255, 255, 0.35);
   opacity: 1;
   margin: 0 !important;
   transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
 }

 .swiper-pagination-custom .swiper-pagination-bullet-active {
   width: 38px;
   background: var(--gold-bright);
   box-shadow: 0 0 14px var(--gold-glow);
 }

 .action-deck {
   display: flex;
   align-items: center;
   gap: 16px;
   flex-wrap: wrap;
 }

 .btn-explore {
   display: inline-flex;
   align-items: center;
   gap: 14px;
   padding: 15px 34px;
   background: linear-gradient(135deg, var(--gold-pure), #d97706);
   color: var(--navy-midnight);
   font-family: var(--font-ui);
   font-size: 0.9rem;
   font-weight: 800;
   letter-spacing: 1.2px;
   text-transform: uppercase;
   border-radius: 40px;
   text-decoration: none;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 20px var(--gold-glow);
   transition: all 0.3s ease;
 }

 .btn-explore:hover {
   transform: translateY(-2px) scale(1.02);
   box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45), 0 0 30px var(--gold-glow);
   background: linear-gradient(135deg, var(--gold-bright), var(--gold-pure));
 }

 .btn-explore svg {
   transition: transform 0.3s ease;
 }

 .btn-explore:hover svg {
   transform: translateX(5px);
 }

 .btn-virtual-tour {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 14px 26px;
   background: rgba(3, 20, 46, 0.45);
   border: 1px solid rgba(112, 196, 255, 0.45);
   color: #fff;
   font-family: var(--font-ui);
   font-size: 0.88rem;
   font-weight: 700;
   border-radius: 40px;
   text-decoration: none;
   backdrop-filter: blur(10px);
   transition: all 0.3s ease;
 }

 .btn-virtual-tour:hover {
   background: rgba(255, 255, 255, 0.2);
   border-color: #ffffff;
   transform: translateY(-2px);
 }

 /* Right: Shield Portal */
 .portal-stage {
   position: relative;
   height: 80vh;
   display: flex;
   align-items: center;
   justify-content: center;
   perspective: 1400px;
   z-index: 10;
 }

 .laurel-decor {
   position: absolute;
   width: 125%;
   max-width: 780px;
   height: 125%;
   max-height: 780px;
   pointer-events: none;
   opacity: 0.35;
   color: var(--twilight-light);
   filter: drop-shadow(0 0 25px rgba(112, 196, 255, 0.5));
   animation: wreathBreathe 8s infinite ease-in-out;
 }

 @keyframes wreathBreathe {

   0%,
   100% {
     transform: scale(1) rotate(0deg);
   }

   50% {
     transform: scale(1.03) rotate(1.5deg);
   }
 }

 .shield-housing {
   position: relative;
   width: 100%;
   max-width: 570px;
   height: 640px;
   filter:
     drop-shadow(0 35px 70px rgba(1, 8, 20, 0.65)) drop-shadow(0 0 45px rgba(245, 158, 11, 0.35)) drop-shadow(0 0 75px rgba(190, 18, 38, 0.45));
   transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
   z-index: 5;
 }

 .shield-border-ring {
   position: absolute;
   inset: 0;
   clip-path: url(#mariaShieldClip);
   background: linear-gradient(180deg, #ffffff 0%, var(--gold-bright) 30%, var(--crimson-pure) 75%, #ffffff 100%);
   padding: 7px;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .shield-inner-viewport {
   position: relative;
   width: 100%;
   height: 100%;
   clip-path: url(#mariaShieldClip);
   background: #01142a;
   overflow: hidden;
 }

 .swiper-shield-chamber {
   width: 100%;
   height: 100%;
 }

 .shield-slide-img {
   width: 100%;
   height: 100%;
   background-size: cover;
   background-position: center;
 }

 .shield-inner-viewport::after {
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(3, 20, 46, 0.35) 60%, rgba(1, 8, 20, 0.9) 100%);
   pointer-events: none;
   z-index: 2;
 }

 /* Floating Badges */
 .floating-stat-badge {
   position: absolute;
   z-index: 25;
   padding: 12px 20px;
   background: rgba(3, 20, 46, 0.92);
   border: 1px solid rgba(245, 158, 11, 0.5);
   border-radius: 14px;
   backdrop-filter: blur(15px);
   box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 158, 11, 0.3);
   display: flex;
   align-items: center;
   gap: 12px;
   pointer-events: none;
 }

 .stat-badge-icon {
   width: 36px;
   height: 36px;
   border-radius: 50%;
   background: linear-gradient(135deg, var(--gold-pure), var(--crimson-pure));
   display: flex;
   align-items: center;
   justify-content: center;
   color: #ffffff;
   font-size: 0.95rem;
   flex-shrink: 0;
 }

 .stat-badge-info h4 {
   font-family: var(--font-ui);
   font-size: 1.05rem;
   font-weight: 800;
   color: #fff;
   line-height: 1.1;
   letter-spacing: 0.5px;
 }

 .stat-badge-info span {
   font-size: 0.7rem;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 1px;
   color: #70c4ff;
 }

 .badge-pos-top {
   top: 8%;
   left: -20px;
 }

 .badge-pos-bottom {
   bottom: 8%;
   right: -20px;
 }

 /* ---------------- INTRO PARAGRAPH BLOCK ---------------- */
 .hero-intro-box {
   position: relative;
   z-index: 5;
   text-align: center;
   max-width: 900px;
   margin: 0 auto;
 }

 .hero-intro-box p {
   font-size: 1.35rem;
   line-height: 1.8;
   color: #f8fafc;
   text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
 }

 /* ---------------- FULL-WIDTH DUAL-IMAGE SECTION (.twobg) ---------------- */
 .twobg {
   position: relative;
   z-index: 10;
   opacity: 0;
   animation: fadeUp 1s ease forwards;
   animation-delay: 0.5s;
   width: 100vw;
   left: 50%;
   right: 50%;
   margin-left: -50vw;
   margin-right: -50vw;
   margin-top: auto;
   display: flex;
   flex-direction: column;
   align-items: center;
   background-image: url('../images/Kashipur\ School.webp');
   background-position: center bottom;
   background-repeat: no-repeat;
   background-size: cover;
   padding-bottom: 60px;
 }

 @keyframes fadeUp {
   from {
     opacity: 0;
     transform: translateY(20px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 .nalanda_students {
   width: 100%;
   max-width: 2200px;
   text-align: center;
   position: relative;
   z-index: 2;
   margin-bottom: 30px;
   line-height: 0;
 }

 .nalanda_students img {
   width: 100%;
   height: 100%;
   display: inline-block;
   object-fit: contain;
   filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
 }

 .twobg .container {
   position: relative;
   z-index: 5;
 }

 .twobg h2 {
   font-family: var(--font-display);
   font-size: clamp(2.5rem, 4vw, 4rem);
   font-weight: 900;
   text-transform: uppercase;
   color: #ffffff;
   text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
   margin-bottom: 15px;
   line-height: 1.1;
 }

 .twobg p {
   font-size: 1.05rem;
   color: #f1f5f9;
   max-width: 700px;
   margin: 0 auto 25px;
   text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
   line-height: 1.6;
 }

 .twobg .btn-one {
   display: inline-flex;
   align-items: center;
   gap: 12px;
   padding: 15px 34px;
   background: linear-gradient(135deg, var(--gold-pure), #d97706);
   color: var(--navy-midnight);
   font-family: var(--font-ui);
   font-size: 0.9rem;
   font-weight: 800;
   letter-spacing: 1.2px;
   text-transform: uppercase;
   border-radius: 40px;
   text-decoration: none;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 20px var(--gold-glow);
   transition: all 0.3s ease;
 }

 .twobg .btn-one:hover {
   transform: translateY(-2px) scale(1.02);
   background: linear-gradient(135deg, var(--gold-bright), var(--gold-pure));
 }

 .twobg .btn-one img {
   width: 18px;
   height: 18px;
   transition: transform 0.3s ease;
 }

 .twobg .btn-one:hover img {
   transform: translateX(5px);
 }

 /* ---------------- ABOUT US SECTION ---------------- */
 .about-us-section {
   position: relative;
   z-index: 2;
   width: 100%;
   padding: 60px 0;
   overflow: hidden;
   background-color: var(--bg-cream);
   background-image: url('../images/school\ pattern.png');
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   color: var(--text-main);
 }

 .about-us-section::before {
   content: "";
   position: absolute;
   inset: 0;
   background-image: radial-gradient(rgba(43, 35, 29, 0.035) 1px, transparent 1px);
   background-size: 22px 22px;
   pointer-events: none;
   z-index: 0;
 }

 .archival-watermark {
   position: absolute;
   top: -40px;
   left: 20px;
   font-family: var(--font-serif);
   font-size: 14rem;
   font-weight: 700;
   color: rgba(195, 89, 51, 0.035);
   line-height: 1;
   user-select: none;
   pointer-events: none;
   z-index: 0;
 }

 /* ---------------- LEFT NARRATIVE COLUMN ---------------- */
 .narrative-stream {
   display: flex;
   flex-direction: column;
   gap: 24px;
   position: relative;
   padding-right: 15px;
   z-index: 2;
 }

 .editorial-badge-row {
   display: flex;
   align-items: center;
   gap: 16px;
   flex-wrap: wrap;
 }

 .status-capsule {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 6px 16px;
   border-radius: 100px;
   background: #ffffff;
   border: 1px solid rgba(195, 89, 51, 0.25);
   color: var(--terracotta);
   font-family: var(--font-mono);
   font-size: 0.72rem;
   letter-spacing: 0.12em;
   text-transform: uppercase;
   font-weight: 700;
   box-shadow: 0 4px 15px rgba(195, 89, 51, 0.06);
 }

 .status-capsule .pulse-dot {
   width: 7px;
   height: 7px;
   border-radius: 50%;
   background: var(--terracotta);
   box-shadow: 0 0 0 3px rgba(195, 89, 51, 0.2);
 }

 .region-stamp {
   font-family: var(--font-mono);
   font-size: 0.72rem;
   letter-spacing: 0.14em;
   text-transform: uppercase;
   color: var(--gold-accent);
   font-weight: 700;
   display: flex;
   align-items: center;
   gap: 8px;
 }

 .main-title-about {
   font-family: var(--font-serif);
   font-size: 2.5rem;
   font-weight: 700;
   line-height: 1.15;
   color: var(--text-main);
   letter-spacing: -0.02em;
 }

 .main-title-about h2 {
   font-size: inherit;
   font-weight: inherit;
   line-height: inherit;
   margin: 0;
 }

 .main-title-about .highlight {
   color: var(--terracotta);
   font-style: italic;
   font-weight: 400;
   position: relative;
   display: inline-block;
 }

 .living-canvas {
   position: relative;
   display: flex;
   flex-direction: column;
   gap: 18px;
   padding-left: 32px;
 }

 .living-canvas::before {
   content: "";
   position: absolute;
   top: 10px;
   bottom: 18px;
   left: 6px;
   width: 2px;
   background: linear-gradient(180deg, var(--terracotta) 0%, var(--gold-accent) 60%, transparent 100%);
 }

 .canvas-node {
   position: absolute;
   top: 10px;
   left: 0;
   width: 14px;
   height: 14px;
   border-radius: 50%;
   background: #ffffff;
   border: 3px solid var(--terracotta);
   box-shadow: 0 0 0 4px rgba(195, 89, 51, 0.18);
 }

 .lead-story {
   font-size: 1.08rem;
   line-height: 1.82;
   color: var(--text-main);
   position: relative;
 }

 .lead-story::first-letter {
   font-family: var(--font-serif);
   font-size: 4.4rem;
   float: left;
   line-height: 0.74;
   padding: 6px 14px 0 0;
   color: var(--terracotta);
   font-weight: 700;
   text-shadow: 3px 3px 0 rgba(195, 89, 51, 0.1);
 }

 .story-paragraph {
   font-size: 1rem;
   line-height: 1.84;
   color: var(--text-muted);
 }

 .marker-highlight {
   background: linear-gradient(120deg, rgba(195, 89, 51, 0.12) 0%, rgba(196, 154, 69, 0.16) 100%);
   padding: 2px 8px;
   border-radius: 4px;
   color: var(--terracotta-dark);
   font-weight: 600;
   box-decoration-break: clone;
   -webkit-box-decoration-break: clone;
 }

 /* ---------------- READ MORE DETAILS ---------------- */
 details.story-details {
   display: flex;
   flex-direction: column;
 }

 details.story-details summary {
   list-style: none;
   cursor: pointer;
   display: inline-flex;
   align-items: center;
   gap: 14px;
   margin-top: 10px;
   width: fit-content;
   outline: none;
   user-select: none;
 }

 details.story-details summary::-webkit-details-marker {
   display: none;
 }

 .read-more-trigger {
   color: var(--terracotta);
   font-size: 0.94rem;
   font-weight: 700;
   font-family: var(--font-sans);
   letter-spacing: 0.04em;
   display: inline-flex;
   align-items: center;
   gap: 14px;
   padding: 6px 0;
   position: relative;
   transition: color 0.3s ease;
 }

 .read-more-trigger::after {
   content: "";
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 1.5px;
   background: var(--terracotta);
   transform: scaleX(0.28);
   transform-origin: left;
   transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
 }

 details.story-details summary:hover .read-more-trigger {
   color: var(--terracotta-dark);
 }

 details.story-details summary:hover .read-more-trigger::after {
   transform: scaleX(1);
   background: var(--terracotta-dark);
 }

 .trigger-circle {
   width: 34px;
   height: 34px;
   border-radius: 50%;
   border: 1px solid var(--terracotta);
   background: #ffffff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 0.8rem;
   transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s ease, color 0.3s ease;
   box-shadow: 0 4px 10px rgba(195, 89, 51, 0.1);
 }

 details.story-details summary:hover .trigger-circle {
   background: var(--terracotta);
   color: #ffffff;
   transform: translateX(5px);
 }

 .label-collapse {
   display: none;
 }

 details.story-details[open] .label-expand {
   display: none;
 }

 details.story-details[open] .label-collapse {
   display: inline;
 }

 details.story-details[open] .trigger-circle i {
   transform: rotate(-90deg);
 }

 .story-drawer-inner {
   display: flex;
   flex-direction: column;
   gap: 18px;
   padding-top: 14px;
   animation: fadeInStory 0.4s ease-in-out;
 }

 @keyframes fadeInStory {
   from {
     opacity: 0;
     transform: translateY(-6px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 .sculpted-quote {
   position: relative;
   padding: 18px 24px 18px 28px;
   background: linear-gradient(135deg, #ffffff 0%, #faeae3 100%);
   border-left: 3px solid var(--terracotta);
   border-radius: 0 18px 18px 0;
   box-shadow: 0 12px 30px rgba(195, 89, 51, 0.06);
   margin: 6px 0;
 }

 .sculpted-quote::before {
   content: "“";
   position: absolute;
   top: -14px;
   left: 10px;
   font-family: var(--font-serif);
   font-size: 3.8rem;
   line-height: 1;
   color: rgba(195, 89, 51, 0.15);
   pointer-events: none;
 }

 .quote-statement {
   font-family: var(--font-serif);
   font-size: 1.28rem;
   line-height: 1.45;
   font-style: italic;
   color: var(--terracotta-dark);
   display: block;
   position: relative;
   z-index: 1;
 }

 .quote-tag {
   font-family: var(--font-mono);
   font-size: 0.7rem;
   text-transform: uppercase;
   letter-spacing: 0.12em;
   color: var(--gold-accent);
   font-weight: 700;
   margin-top: 8px;
   display: block;
 }

 /* ---------------- METRIC RIBBON ---------------- */
 .metrics-ribbon {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 16px;
   padding-top: 24px;
   border-top: 1px solid var(--line-subtle);
 }

 .metric-item {
   display: flex;
   align-items: center;
   gap: 12px;
   background: var(--card-glass);
   padding: 12px 14px;
   border-radius: 16px;
   border: 1px solid rgba(255, 255, 255, 0.9);
   backdrop-filter: blur(10px);
   box-shadow: 0 8px 22px rgba(195, 89, 51, 0.05);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .metric-item:hover {
   transform: translateY(-3px);
   box-shadow: 0 12px 28px rgba(195, 89, 51, 0.12);
 }

 .metric-icon-badge {
   width: 40px;
   height: 40px;
   border-radius: 10px;
   background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
   display: flex;
   align-items: center;
   justify-content: center;
   color: #ffffff;
   font-size: 1rem;
   flex-shrink: 0;
   box-shadow: 0 6px 14px rgba(195, 89, 51, 0.25);
 }

 .metric-data {
   display: flex;
   flex-direction: column;
   min-width: 0;
 }

 .metric-val {
   font-family: var(--font-serif);
   font-size: 1.85rem;
   font-weight: 700;
   color: var(--terracotta);
   line-height: 1;
 }

 .metric-lbl {
   font-size: 0.68rem;
   text-transform: uppercase;
   letter-spacing: 0.08em;
   color: var(--text-muted);
   font-family: var(--font-mono);
   font-weight: 700;
   margin-top: 3px;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
 }

 /* ---------------- RIGHT STAGE & COLLAGE ---------------- */
 .visual-stream {
   position: relative;
   width: 100%;
   min-height: 680px;
   display: flex;
   justify-content: center;
   align-items: center;
   z-index: 2;
 }

 .composition-stage {
   position: relative;
   width: 540px;
   height: 650px;
 }

 /* Top Arch Frame */
 .frame-arch {
   position: absolute;
   top: 0;
   left: 8%;
   width: 380px;
   height: 540px;
   border-radius: 190px 190px 34px 34px;
   overflow: hidden;
   border: 6px solid #ffffff;
   box-shadow: 0 35px 70px rgba(195, 89, 51, 0.2), 0 10px 24px rgba(0, 0, 0, 0.06);
   z-index: 2;
 }

 /* Circular Frame (Container for the video) */
 .frame-circle {
   position: absolute;
   top: 170px;
   left: -35px;
   width: 250px;
   height: 250px;
   border-radius: 50%;
   overflow: hidden;
   border: 6px solid #ffffff;
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.14);
   z-index: 4;
   background-color: #000;
   -webkit-mask-image: -webkit-radial-gradient(white, black);
   /* Fixes overflow clip bugs on Safari */
   transform: translateZ(0);
 }

 /* YouTube Iframe - Sized and centered to completely crop black letterbox bars */
 .frame-video-embed {
   position: absolute;
   top: 50%;
   left: 50%;
   width: calc(250px * 1.7778 * 1.8);
   height: calc(250px * 1.8);
   min-width: 100%;
   min-height: 100%;
   transform: translate(-50%, -50%);
   pointer-events: none;
   border: none;
   transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
 }

 /* Local Video styling fallback (if using <video class="frame-video">) */
 .frame-video {
   width: 100%;
   height: 100%;
   object-fit: cover;
   pointer-events: none;
   transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
 }

 /* Bottom Card Frame */
 .frame-card {
   position: absolute;
   bottom: 20px;
   right: -15px;
   width: 310px;
   height: 230px;
   border-radius: 28px;
   overflow: hidden;
   border: 6px solid #ffffff;
   box-shadow: 0 30px 60px rgba(195, 89, 51, 0.18);
   z-index: 3;
 }

 .frame-photo {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
 }

 /* Hover Zooms across all frames */
 .frame-arch:hover .frame-photo,
 .frame-card:hover .frame-photo {
   transform: scale(1.08);
 }

 .frame-circle:hover .frame-video-embed {
   transform: translate(-50%, -50%) scale(1.1);
 }

 .frame-circle:hover .frame-video {
   transform: scale(1.08);
 }

 /* Floating Seal Badge */
 .floating-seal {
   position: absolute;
   bottom: 35px;
   left: -20px;
   background: rgba(255, 255, 255, 0.94);
   border: 1px solid rgba(195, 89, 51, 0.2);
   border-radius: 100px;
   padding: 12px 24px;
   display: flex;
   align-items: center;
   gap: 14px;
   box-shadow: 0 20px 40px rgba(195, 89, 51, 0.18);
   backdrop-filter: blur(12px);
   z-index: 10;
   animation: floatSeal 4.5s ease-in-out infinite alternate;
 }

 @keyframes floatSeal {
   0% {
     transform: translateY(0);
   }

   100% {
     transform: translateY(-12px);
   }
 }

 .seal-icon {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   background: linear-gradient(135deg, var(--gold-accent), var(--terracotta));
   color: #ffffff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.05rem;
   box-shadow: 0 4px 10px rgba(196, 154, 69, 0.3);
 }

 .seal-text strong {
   display: block;
   font-family: var(--font-serif);
   font-size: 1.15rem;
   color: var(--text-main);
   line-height: 1;
 }

 .seal-text span {
   font-family: var(--font-mono);
   font-size: 0.68rem;
   color: var(--terracotta);
   letter-spacing: 0.08em;
   text-transform: uppercase;
   font-weight: 700;
 }





















 /* ---------------- LEADERSHIP MESSAGE SECTION ---------------- */
 .leadership-section {
   position: relative;
   width: 100%;
   padding: 60px 0;
   background: var(--navy-base);
   color: var(--text-primary);
   overflow: hidden;
   z-index: 1;
 }

 .visual-portal {
   position: relative;
   width: 100%;
   max-width: 400px;
   margin: 0 auto;
   padding: 10px;
 }

 .image-frame {
   position: relative;
   width: 350px;
   border-radius: 40px;
   overflow: hidden;
   border: 1.5px solid rgba(255, 255, 255, 0.12);
   box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
   background: #01142a;
   transition: var(--transition-smooth);
   height: 450px;
   margin: 0 auto;
 }

 .image-frame img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center 10%;
   display: block;
 }

 .role-switcher-dock {
   position: absolute;
   bottom: -20px;
   right: -15px;
   background: rgba(3, 20, 46, 0.94);
   backdrop-filter: blur(25px);
   border: 1px solid var(--glass-border);
   padding: 8px;
   border-radius: 22px;
   display: flex;
   flex-direction: column;
   gap: 6px;
   box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
   z-index: 10;
 }

 .switch-btn {
   background: transparent;
   border: 1px solid transparent;
   padding: 10px 16px;
   border-radius: 14px;
   cursor: pointer;
   display: flex;
   align-items: center;
   gap: 12px;
   text-align: left;
   width: 210px;
 }

 .switch-btn.active {
   background: rgba(255, 255, 255, 0.08);
   border: 1px solid rgba(255, 255, 255, 0.12);
 }

 .btn-indicator {
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: var(--lead-muted);
 }

 .switch-btn.active .btn-indicator {
   background: var(--gold-bright);
   box-shadow: 0 0 10px var(--gold-bright);
 }

 .btn-lbl strong {
   display: block;
   color: var(--text-primary);
   font-size: 0.85rem;
   font-family: var(--font-ui);
 }

 .btn-lbl span {
   font-size: 0.72rem;
   color: var(--lead-muted);
 }

 .content-hub {
   position: relative;
 }

 .meta-tag {
   font-size: 0.85rem;
   text-transform: uppercase;
   letter-spacing: 3px;
   color: var(--gold-bright);
   font-weight: 700;
   margin-bottom: 12px;
   font-family: var(--font-ui);
 }

 .main-title-lead {
   font-size: clamp(2.6rem, 4vw, 3.6rem);
   font-weight: 900;
   line-height: 1.1;
   font-family: var(--font-display);
 }

 .main-title-lead .highlight {
   color: transparent;
   -webkit-text-stroke: 1px var(--text-primary);
   font-style: italic;
 }

 .message-display-box {
   position: relative;
   background: var(--glass-bg);
   border: 1px solid var(--glass-border);
   padding: 40px;
   border-radius: 32px;
   margin-bottom: 20px;
   backdrop-filter: blur(14px);
 }

 .lead-quote {
   font-size: 1rem;
   line-height: 1.6;
   font-weight: 500;
   color: #f1f5f9;
   margin-bottom: 20px;
   border-left: 3px solid var(--gold-bright);
   padding-left: 20px;
   font-family: var(--font-serif);
 }

 .body-text {
   font-size: 0.95rem;
   line-height: 1.75;
   color: #cbd5e1;
 }

 .leader-identity {
   border-top: 1px solid var(--glass-border);
   padding-top: 28px;
 }

 .identity-info h4 {
   font-size: 1.2rem;
   font-weight: 600;
   font-family: var(--font-ui);
 }

 .identity-info p {
   font-size: 0.85rem;
   color: var(--lead-muted);
 }

 .creative-action-btn {
   display: inline-flex;
   align-items: center;
   gap: 12px;
   text-decoration: none;
   color: var(--text-primary);
   font-size: 0.9rem;
   font-weight: 700;
   border: 1px solid rgba(255, 255, 255, 0.2);
   padding: 14px 28px;
   border-radius: 50px;
   font-family: var(--font-ui);
 }

 @media (max-width: 1024px) {
   .mobile-toggle-btn {
     display: block;
   }

   .nav-menu {
     position: absolute;
     top: 84px;
     left: 0;
     width: 100%;
     max-height: 80vh;
     overflow-y: auto;
     background: linear-gradient(170deg, #03142e 0%, #010a17 100%);
     border: 1px solid rgba(255, 255, 255, 0.12);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
     border-radius: 20px;
     flex-direction: column;
     align-items: stretch;
     padding: 20px;
     gap: 12px;
     display: none;
     z-index: 999;
   }

   .nav-menu.mobile-open {
     display: flex;
   }

   .mega-dropdown {
     position: static;
     transform: none !important;
     width: 100%;
     background: rgba(255, 255, 255, 0.04);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 12px;
     margin-top: 8px;
     padding: 14px;
     flex-direction: column;
     display: none;
   }

   .nav-item.open .mega-dropdown {
     display: flex;
   }

   .hero-section {
     padding: 110px 20px 20px;
   }

   .hero-inner-container {
     grid-template-columns: 1fr;
     gap: 30px;
   }

   .portal-stage {
     height: 55vh;
   }

   .shield-housing {
     max-width: 420px;
     height: 500px;
   }

   .floating-stat-badge {
     display: none;
   }
 }

















 /* =========================================================================
        ACHIEVEMENTS & NEWS SECTION STYLES (Cleaned up card formatting)
        ========================================================================= */
 .organic-showcase-section {
   background-color: var(--bg-cream);
   background-image: url('../images/school\ pattern.png');
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   color: var(--text-dark-new);
   font-family: var(--font-sans);
   position: relative;
   padding: 60px 50px;
   overflow: hidden;
 }

 .text-center {
   text-align: center;
 }

 .position-relative {
   position: relative;
 }

 .section-badge-pill {
   display: inline-block;
   font-size: 0.8rem;
   font-weight: 800;
   letter-spacing: 2px;
   color: var(--primary-red);
   text-transform: uppercase;
   background: #ffffff;
   border: 1px solid rgba(200, 154, 46, 0.4);
   padding: 6px 20px;
   border-radius: 999px;
   margin-bottom: 12px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
 }

 .section-main-heading {
   font-family: var(--font-display);
   font-size: 2.2rem;
   font-weight: 800;
   color: var(--primary-deep);
   margin: 0;
   letter-spacing: 1px;
 }

 .section-sub-italic {
   font-family: var(--font-serif);
   font-style: italic;
   color: #6a584d;
   font-size: 1.1rem;
   margin: 6px 0 16px 0;
 }

 .floral-divider-svg {
   width: 140px;
   height: 20px;
   margin: 0 auto 40px auto;
   display: block;
 }

 .organic-showcase-grid {
   max-width: 1440px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 1.2fr 1fr;
   gap: 50px;
   align-items: stretch;
   position: relative;
   z-index: 2;
 }

 .deck-minimal-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 22px;
   flex-wrap: wrap;
   gap: 12px;
 }

 .deck-badge-chip {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 6px 18px;
   background: #ffffff;
   border-radius: 999px;
   color: var(--primary-dark);
   font-size: 0.82rem;
   font-weight: 800;
   letter-spacing: 1px;
   text-transform: uppercase;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
   border: 1px solid rgba(200, 154, 46, 0.3);
 }

 .deck-badge-chip i {
   color: var(--gold-accent);
 }

 .deck-nav-action-cluster {
   display: flex;
   align-items: center;
   gap: 10px;
 }

 .deck-arrow-btn {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   background: #ffffff;
   border: 1px solid rgba(200, 154, 46, 0.35);
   color: var(--primary-dark);
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
   transition: all 0.3s ease;
 }

 .deck-arrow-btn:hover {
   background: var(--primary-red);
   color: #ffffff;
   border-color: var(--primary-red);
   transform: scale(1.08);
 }

 .btn-inline-view-all {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   background: #ffffff;
   color: var(--primary-dark);
   border: 1.5px solid rgba(200, 154, 46, 0.45);
   font-size: 0.76rem;
   font-weight: 800;
   letter-spacing: 0.8px;
   text-transform: uppercase;
   padding: 9px 18px;
   border-radius: 999px;
   text-decoration: none;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
   transition: all 0.3s ease;
   white-space: nowrap;
 }

 .btn-inline-view-all i {
   color: var(--gold-accent);
   font-size: 0.72rem;
   transition: transform 0.3s ease;
 }

 .btn-inline-view-all:hover {
   background: linear-gradient(135deg, var(--primary-red), var(--primary-dark));
   color: #ffffff;
   border-color: var(--primary-red);
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(139, 16, 28, 0.25);
 }

 .btn-inline-view-all:hover i {
   color: #ffffff;
   transform: translateX(3px);
 }

 .achieve-organic-deck,
 .testi-organic-deck {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   min-width: 0;
   position: relative;
 }

 .achieveSwiperHorizontal {
   width: 100%;
   border-radius: 30px;
   overflow: hidden;
   box-shadow: 0 25px 55px -10px rgba(60, 4, 9, 0.25);
 }

 .achieve-slide-canvas {
   position: relative;
   height: 440px;
   width: 100%;
   background: #150204;
   overflow: hidden;
 }

 .achieve-slide-canvas img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   transition: transform 0.8s ease;
 }

 .achieveSwiperHorizontal:hover .achieve-slide-canvas img {
   transform: scale(1.05);
 }

 .achieve-slide-scrim {
   position: absolute;
   inset: 0;
   background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(30, 2, 5, 0.6) 45%, rgba(20, 1, 3, 0.98) 100%);
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   padding: 34px 30px;
   color: #ffffff;
 }

 .achieve-pill-category {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 5px 14px;
   background: var(--gold-accent);
   color: var(--primary-deep);
   font-size: 0.74rem;
   font-weight: 800;
   letter-spacing: 1px;
   text-transform: uppercase;
   border-radius: 999px;
   margin-bottom: 12px;
   width: fit-content;
 }

 .achieve-slide-scrim h3 {
   font-family: var(--font-display);
   font-size: 1.55rem;
   font-weight: 700;
   margin: 0 0 8px 0;
   color: #ffffff;
   line-height: 1.25;
 }

 .achieve-slide-scrim p {
   font-size: 0.92rem;
   color: #ebdcdb;
   line-height: 1.55;
   margin: 0 0 14px 0;
   max-width: 90%;
 }

 .achieve-read-btn {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   color: var(--gold-accent);
   text-decoration: none;
   font-weight: 800;
   font-size: 0.84rem;
   letter-spacing: 1px;
   text-transform: uppercase;
   transition: gap 0.2s ease, color 0.2s ease;
 }

 .achieve-read-btn:hover {
   gap: 12px;
   color: var(--text-gold-light);
 }

 .testiSwiperVertical {
   width: 100%;
   height: 440px;
   overflow: hidden;
   padding: 0;
 }

 .floating-testi-card {
   background: #ffffff;
   border-radius: 20px;
   padding: 16px 20px;
   box-shadow: 0 10px 24px rgba(80, 6, 14, 0.06);
   border: 1px solid rgba(200, 154, 46, 0.22);
   position: relative;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   transition: all 0.35s ease;
   height: 132px;
   box-sizing: border-box;
 }

 .floating-testi-card:hover {
   transform: translateY(-3px);
   box-shadow: 0 14px 30px rgba(80, 6, 14, 0.12);
   border-color: var(--gold-accent);
 }

 .floating-testi-card.wine-variant {
   background: linear-gradient(145deg, #650611 0%, #460408 100%);
   color: #ffffff;
   border-color: rgba(200, 154, 46, 0.35);
   box-shadow: 0 12px 28px rgba(60, 4, 8, 0.22);
 }

 .testi-watermark-glyph {
   position: absolute;
   top: 12px;
   right: 16px;
   font-size: 1.2rem;
   opacity: 0.12;
   pointer-events: none;
 }

 .testi-tag-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 4px;
 }

 .testi-role-tag {
   font-size: 0.68rem;
   font-weight: 800;
   letter-spacing: 1px;
   text-transform: uppercase;
   color: var(--primary-red);
 }

 .wine-variant .testi-role-tag {
   color: var(--gold-accent);
 }

 .news-card-title {
   font-family: var(--font-display);
   font-size: 0.95rem;
   font-weight: 700;
   color: var(--primary-deep);
   margin: 0 0 2px 0;
   line-height: 1.2;
 }

 .wine-variant .news-card-title {
   color: #ffffff;
 }

 .testi-date-wrap {
   font-size: 0.7rem;
   font-weight: 600;
   color: #7a6a61;
   display: flex;
   align-items: center;
   gap: 4px;
 }

 .wine-variant .testi-date-wrap {
   color: #d1b5b8;
 }

 .testi-quote-body {
   font-family: var(--font-sans);
   font-style: normal;
   font-size: 0.82rem;
   line-height: 1.35;
   color: #55443c;
   margin-bottom: 4px;
   display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
   overflow: hidden;
 }

 .wine-variant .testi-quote-body {
   color: #f7eded;
 }

 .testi-profile-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding-top: 4px;
   border-top: 1px solid rgba(0, 0, 0, 0.06);
 }

 .wine-variant .testi-profile-row {
   border-top-color: rgba(255, 255, 255, 0.12);
 }

 .news-category-badge {
   font-size: 0.65rem;
   font-weight: 700;
   color: var(--primary-deep);
 }

 .wine-variant .news-category-badge {
   color: var(--gold-accent);
 }

 .news-read-more {
   font-size: 0.68rem;
   font-weight: 800;
   color: var(--primary-red);
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   gap: 4px;
   transition: gap 0.2s ease;
 }

 .wine-variant .news-read-more {
   color: var(--gold-accent);
 }

 .news-read-more:hover {
   gap: 6px;
 }












 /* ---------------- DUAL MATRIX VAULT GALLERY STYLES ---------------- */
 .gallery-vault-section {
   width: 100%;
   padding: 60px 0 80px 0;
   background: var(--navy-base);
   color: var(--text-light);
   position: relative;
   z-index: 1;
   overflow: hidden;
 }

 .token-header-box {
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
   border-bottom: 1px solid rgba(255, 255, 255, 0.15);
   padding-bottom: 15px;
   margin-bottom: 30px;
   flex-wrap: wrap;
   gap: 15px;
 }

 .token-title-group h3 {
   font-size: 1.6rem;
   font-weight: 700;
   letter-spacing: -0.5px;
   margin-bottom: 4px;
   font-family: var(--font-display);
 }

 .token-title-group span {
   font-size: 0.65rem;
   color: var(--accent-gold);
   text-transform: uppercase;
   letter-spacing: 2.5px;
   font-weight: 600;
   font-family: var(--font-mono);
 }

 .token-title-group p {
   font-size: 0.85rem;
   color: var(--text-muted-vault);
   margin: 0;
 }

 .video-header .token-title-group span {
   color: var(--accent-cyan);
 }

 /* Full width container allowing cards to use 100% of the col-5 space */
 .swiper-wrapper-box {
   position: relative;
   width: 100%;
   padding-bottom: 75px;
   box-sizing: border-box;
 }

 /* Swiper fills 100% of the col-5 area */
 .gallery-vault-section .swiper {
   width: 100%;
   height: 520px;
   margin: 0 auto;
   overflow: visible !important;
 }

 .gallery-vault-section .swiper-slide {
   background: var(--surface-card-vault);
   border: 1px solid rgba(255, 255, 255, 0.15);
   border-radius: 24px;
   overflow: hidden;
   width: 100%;
   height: 100%;
   display: flex;
   flex-direction: column;
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.65);
   backdrop-filter: blur(15px);
   transition: border-color 0.4s ease, box-shadow 0.4s ease;
 }

 .photo-swiper .swiper-slide-active {
   border-color: var(--accent-gold);
   box-shadow: 0 30px 60px var(--border-glow);
 }

 .video-swiper .swiper-slide-active {
   border-color: var(--accent-cyan);
   box-shadow: 0 30px 60px rgba(0, 240, 255, 0.28);
 }

 .card-media-wrap {
   position: relative;
   width: 100%;
   height: 100%;
   background-color: #040914;
   background-size: cover;
   background-position: center;
   overflow: hidden;
 }

 .card-media-wrap img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   filter: brightness(0.92);
   transition: transform 0.6s ease;
 }

 .gallery-vault-section .swiper-slide:hover .card-media-wrap img {
   transform: scale(1.05);
 }

 /* Full Frame 100% Height & Width Cover for YouTube */
 .vault-yt-frame {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%) scale(1.15);
   height: 100%;
   aspect-ratio: 16 / 9;
   min-width: 178%;
   min-height: 100%;
   border: none;
   pointer-events: none;
   filter: brightness(0.95);
 }

 .card-overlay-content {
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   padding: 45px 30px 30px 30px;
   background: linear-gradient(to top, rgba(4, 9, 20, 0.98) 25%, rgba(4, 9, 20, 0.6) 70%, transparent 100%);
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   gap: 6px;
   z-index: 3;
   pointer-events: none;
 }

 .card-overlay-content span {
   font-size: 0.7rem;
   text-transform: uppercase;
   letter-spacing: 2px;
   color: var(--accent-gold);
   font-weight: 700;
 }

 .video-swiper .card-overlay-content span {
   color: var(--accent-cyan);
 }

 .card-overlay-content h4 {
   font-size: 1.3rem;
   font-weight: 700;
   color: #fff;
   margin: 0;
 }

 .card-overlay-content p {
   font-size: 0.85rem;
   color: var(--text-muted-vault);
   margin: 2px 0 0 0;
   line-height: 1.4;
 }

 .matrix-play-btn {
   position: absolute;
   top: 42%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 64px;
   height: 64px;
   border-radius: 50%;
   background: rgba(4, 9, 20, 0.75);
   border: 2px solid var(--accent-cyan);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.25rem;
   backdrop-filter: blur(8px);
   z-index: 2;
   transition: all 0.3s ease;
   pointer-events: none;
 }

 .gallery-vault-section .swiper-slide:hover .matrix-play-btn {
   background: var(--accent-cyan);
   color: var(--navy-midnight);
   transform: translate(-50%, -50%) scale(1.12);
   box-shadow: 0 0 25px rgba(0, 240, 255, 0.5);
 }

 /* Controls Alignment */
 .swiper-controls-center {
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 15px;
   z-index: 50;
 }

 .gallery-vault-section .view-all-btn {
   background: transparent;
   border: 1px solid var(--accent-gold);
   color: var(--accent-gold);
   padding: 8px 24px;
   border-radius: 30px;
   font-size: 0.75rem;
   text-transform: uppercase;
   letter-spacing: 1.5px;
   font-weight: 600;
   cursor: pointer;
   text-decoration: none;
   transition: all 0.3s ease;
   white-space: nowrap;
 }

 .gallery-vault-section .view-all-btn:hover {
   background: var(--accent-gold);
   color: var(--navy-midnight);
   box-shadow: 0 0 15px rgba(226, 183, 102, 0.4);
 }

 .video-header-ctrl .view-all-btn {
   border-color: var(--accent-cyan);
   color: var(--accent-cyan);
 }

 .video-header-ctrl .view-all-btn:hover {
   background: var(--accent-cyan);
   color: var(--navy-midnight);
   box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
 }

 .custom-swiper-btn {
   width: 42px;
   height: 42px;
   border-radius: 50%;
   background: rgba(14, 32, 63, 0.9);
   border: 1px solid rgba(255, 255, 255, 0.2);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   transition: all 0.3s ease;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
   user-select: none;
 }

 .photo-prev:hover,
 .photo-next:hover {
   background: var(--accent-gold);
   color: var(--navy-midnight);
   border-color: var(--accent-gold);
   box-shadow: 0 0 20px rgba(226, 183, 102, 0.5);
 }

 .video-prev:hover,
 .video-next:hover {
   background: var(--accent-cyan);
   color: var(--navy-midnight);
   border-color: var(--accent-cyan);
   box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
 }

 /* Screen Adaptive Heights */
 @media (max-width: 1400px) {
   .gallery-vault-section .swiper {
     height: 460px;
   }
 }

 @media (max-width: 991px) {
   .gallery-vault-section .swiper {
     height: 440px;
   }

   .col-lg-5:first-child {
     margin-bottom: 60px;
   }
 }

 @media (max-width: 576px) {
   .gallery-vault-section .swiper {
     height: 380px;
   }

   .card-overlay-content {
     padding: 25px 20px 20px 20px;
   }

   .card-overlay-content h4 {
     font-size: 1.15rem;
   }
 }











 .toppers-section {
   background-color: var(--bg-cream);
   background-image: url('../images/school\ pattern.png');
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center;
   background-attachment: scroll;
   color: var(--text-dark-new);
   font-family: "Plus Jakarta Sans", sans-serif;
   position: relative;
   padding: 50px 0 0 0;
   overflow: hidden;
 }

 .topper-top-box,
 .topper-top-box1 {
   background-repeat: no-repeat;
   background-position: center top;
   min-height: 700px;
   position: relative;
   background-size: contain;
   width: 98%;
   filter: drop-shadow(0 20px 35px rgba(101, 6, 17, 0.2));
 }

 .topper-top-box {
   background-image: url("../images/topkash2.webp");
 }

 .topper-top-box1 {
   background-image: url("../images/birkash.webp");
 }

 .toppers-padding {
   padding-top: 28%;
 }

 .pt-lg-32p {
   padding-top: 42%;
 }

 .top-head {
   color: var(--text-white, #ffffff);
   font-family: "Cinzel", serif;
   font-size: 1.25rem;
   font-weight: 800;
   letter-spacing: 2px;
   text-transform: uppercase;
   text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
   margin: 0;
   display: inline-block;
 }

 /* --- Shield Container --- */
 .topper-frame-container {
   position: relative;
   width: 145px;
   height: 170px;
   margin: 0 auto;
   display: flex;
   align-items: center;
   justify-content: center;
   box-sizing: border-box;
   background: transparent;
   transition: transform 0.3s ease, filter 0.3s ease;
   filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.4));
   z-index: 3;
   margin-bottom: -45px;
 }

 .topper-frame-container:hover {
   transform: scale(1.03);
   filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.5));
 }

 .Topper-student {
   width: 100%;
   height: 100%;
   object-fit: cover;
   clip-path: url(#mariaShieldClip);
   -webkit-clip-path: url(#mariaShieldClip);
   display: block;
   background: #ffffff;
   margin: auto;
   box-sizing: border-box;
   position: relative;
   z-index: 5;
 }

 .shield-frame-svg {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   pointer-events: none;
   z-index: 10;
   filter: drop-shadow(0 0 6px rgba(226, 183, 102, 0.8));
 }

 /* --- Lower Card Details --- */
 .topper-card-wrapper {
   background: linear-gradient(135deg, #7a0b16 0%, #460408 100%);
   border-radius: 20px;
   padding: 50px 12px 16px 12px;
   box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
   border: 2px solid #e2b766;
   max-width: 210px;
   margin: 0 auto;
   position: relative;
   text-align: center;
 }

 .stud-name {
   color: #ffffff;
   font-family: "Cinzel", serif;
   font-size: 1rem;
   font-weight: 800;
   letter-spacing: 0.5px;
   margin-top: 8px !important;
   margin-bottom: 6px;
   display: block;
   text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
 }

 .stud-name::after {
   content: "";
   display: block;
   width: 40px;
   height: 2px;
   background: linear-gradient(90deg, transparent, #e2b766, transparent);
   margin: 4px auto 0 auto;
 }

 .score-pill {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   background: #0f0205;
   border: 1.5px solid #e2b766;
   padding: 4px 14px;
   border-radius: 999px;
   color: #ffffff;
   font-size: 0.75rem;
   font-weight: 700;
   letter-spacing: 0.5px;
   margin-top: 4px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
   white-space: nowrap;
 }

 .score-pill .score-highlight {
   background: linear-gradient(135deg, #fbeec8, #c89a2e);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   font-weight: 800;
   font-size: 0.82rem;
   margin-left: 4px;
 }

 .wish-pill {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   background: #0f0205;
   border: 1.5px solid #e2b766;
   padding: 4px 12px;
   border-radius: 999px;
   color: #e6c575;
   font-size: 0.7rem;
   font-weight: 700;
   line-height: 1.2;
   letter-spacing: 0.3px;
   margin-top: 4px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
   white-space: nowrap;
 }

 .continue-link {
   color: var(--gold-accent, #e2b766);
   font-weight: 700;
   font-size: 0.8rem;
   letter-spacing: 0.5px;
   text-transform: uppercase;
   text-decoration: none;
   transition: all 0.3s ease;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 4px;
   padding: 4px 12px;
   border-radius: 20px;
   background: rgba(0, 0, 0, 0.25);
   border: 1px solid rgba(226, 183, 102, 0.4);
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
   white-space: nowrap;
 }

 .continue-link:hover {
   color: #ffffff;
   background: var(--primary-red, #8b101c);
   transform: translateY(-2px);
 }

 .carousel-controls {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
 }

 .carousel-controls .custom-prev2,
 .carousel-controls .custom-next2 {
   background: linear-gradient(135deg, var(--gold-accent, #e2b766), #8b101c);
   color: #ffffff;
   width: 34px;
   height: 34px;
   border-radius: 50%;
   display: inline-flex;
   justify-content: center;
   align-items: center;
   box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
   transition: all 0.3s ease-in-out;
   border: 1px solid rgba(255, 255, 255, 0.4);
   font-size: 11px;
   cursor: pointer;
   flex-shrink: 0;
 }

 .carousel-controls .custom-prev2:hover,
 .carousel-controls .custom-next2:hover {
   background: #ffffff;
   color: var(--primary-dark, #460408);
   transform: scale(1.12);
   box-shadow: 0 0 15px var(--gold-glow, rgba(226, 183, 102, 0.6));
 }

 /* ======================================================== */
 /* RESPONSIVE BREAKPOINTS (MATCHED TO REFERENCE)            */
 /* ======================================================== */
 @media (min-width: 1200px) and (max-width: 1400px) {
   .topper-frame-container {
     width: 130px;
     height: 152px;
     margin-bottom: -40px;
   }

   .topper-card-wrapper {
     max-width: 190px;
     padding-top: 45px;
   }
 }

 @media (min-width: 992px) and (max-width: 1199px) {
   .toppers-padding {
     padding-top: 25%;
   }
 }

 @media (max-width: 992px) {
   .toppers-padding {
     padding-top: 0%;
     display: flex !important;
     flex-wrap: wrap;
     flex-direction: row !important;
   }

   .topper-top-box,
   .topper-top-box1 {
     background-position: center;
     min-height: 824px;
     background-size: 770px;
     margin: 0;
     padding-top: 60%;
   }

   .pt-lg-32p {
     padding-top: 35px !important;
   }
 }

 @media (min-width: 767px) and (max-width: 992px) {

   .topper-top-box,
   .topper-top-box1 {
     padding-top: 27%;
   }
 }

 @media (min-width: 406px) and (max-width: 767px) {

   .topper-top-box,
   .topper-top-box1 {
     background-position: center;
     min-height: 900px;
     background-size: 750px;
     margin: 0;
     padding-top: 45%;
   }
 }

 @media (max-width: 576px) {

   .topper-top-box,
   .topper-top-box1 {
     min-height: 900px;
     width: 100%;
     margin-top: 10px !important;
   }

   .toppers-padding {
     padding-top: 5%;
   }

   .topper-top-box .row>div[class*="col-5"],
   .topper-top-box1 .row>div[class*="col-5"] {
     width: 48% !important;
     padding-left: 4px !important;
     padding-right: 4px !important;
   }

   .topper-frame-container {
     width: 120px;
     height: 140px;
     margin-bottom: -35px;
   }

   .topper-card-wrapper {
     max-width: 165px;
     padding: 40px 8px 12px 8px;
   }

   .top-head {
     font-size: 1.05rem;
     letter-spacing: 1px;
     margin-bottom: 4px;
   }

   .stud-name {
     font-size: 0.88rem;
     margin-top: 4px !important;
     margin-bottom: 4px;
   }

   .stud-name::after {
     width: 32px;
     height: 2px;
     margin-top: 3px;
   }

   .score-pill {
     padding: 3px 10px;
     font-size: 0.68rem;
     letter-spacing: 0.3px;
   }

   .score-pill .score-highlight {
     font-size: 0.76rem;
     margin-left: 3px;
   }

   .wish-pill {
     padding: 3px 8px;
     font-size: 0.65rem;
     white-space: normal;
   }

   .carousel-controls .custom-prev2,
   .carousel-controls .custom-next2 {
     width: 28px;
     height: 28px;
     font-size: 10px;
     margin: 0 3px;
   }

   .continue-link {
     font-size: 0.72rem;
     padding: 3px 8px;
   }
 }


 /* banner  */
 /* ------ Junior Wing Section Styling ------- */
 .junior-wingin {
   padding: 60px 0;
   background: linear-gradient(rgba(3, 20, 46, 0.8), rgba(3, 20, 46, 0.85)), url('../images/kashopur.jpeg');
   background-repeat: no-repeat !important;
   position: relative;
   background-size: cover !important;
   background-position: center center;
 }

 .junior-wingin .title {
   margin: 0 auto 40px;
   width: 100%;
   text-align: center;
 }

 .junior-wingin .title .subtitle {
   font-family: var(--font-ui);
   font-size: 15px;
   font-weight: 600;
   letter-spacing: 2px;
   text-transform: uppercase;
   color: #50c3ff;
   margin-bottom: 8px;
 }

 .junior-wingin .title h2 {
   text-align: center;
   font-family: var(--font-display);
   font-weight: 700;
   font-size: 44px;
   letter-spacing: 1.2px;
   color: #fff;
   text-transform: uppercase;
   opacity: 1;
   padding-bottom: 12px;
   line-height: 1.2;
 }

 .junior-wingin .title p.desc {
   text-align: center;
   font-family: var(--font-sans);
   font-weight: 300;
   font-size: 16px;
   line-height: 26px;
   color: #f1f5f9;
   text-transform: none;
   opacity: 1;
   letter-spacing: 0;
   padding-top: 6px;
   max-width: 850px;
   margin: 0 auto;
 }

 .kids-area {
   position: relative;
   min-height: 220px;
 }

 .kids-area .counter {
   padding-bottom: 30px;
 }

 /* Feature Icons Layout */
 .ani-icon {
   text-align: center;
   padding: 10px;
 }

 .ani-icon .svgsize.fa-icon-wrap {
   width: 65px;
   height: 65px;
   margin: 0 auto 15px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 42px;
   color: #ffffff;
   filter: drop-shadow(0 4px 10px rgba(80, 195, 255, 0.45));
   transition: transform 0.3s ease, color 0.3s ease;
 }

 .ani-icon:hover .fa-icon-wrap {
   transform: translateY(-4px);
   color: #50c3ff;
 }

 .ani-icon h3 {
   font-family: var(--font-ui);
   font-size: 14px;
   font-weight: 600;
   color: #ffffff;
   text-transform: uppercase;
   letter-spacing: 0.8px;
   line-height: 22px;
 }

 /* Admissions Header & Buttons */
 .junior-wingin h4 {
   font-family: var(--font-ui);
   font-size: 22px;
   font-weight: 700;
   color: #00f0ff;
   letter-spacing: 1.5px;
   margin-bottom: 25px;
   text-transform: uppercase;
 }

 .btn-enroll {
   background: #00a8ff;
   color: #ffffff !important;
   padding: 12px 28px;
   border-radius: 30px;
   font-family: var(--font-ui);
   font-weight: 600;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   margin-right: 15px;
   box-shadow: 0 4px 15px rgba(0, 168, 255, 0.4);
   transition: all 0.3s ease;
   text-transform: uppercase;
   font-size: 14px;
   letter-spacing: 0.5px;
 }

 .btn-enroll .btn-fa-icon {
   font-size: 16px;
   margin-right: 8px;
 }

 .btn-learnmore {
   background: transparent;
   color: #ffffff !important;
   border: 2px solid rgba(255, 255, 255, 0.8);
   padding: 10px 28px;
   border-radius: 30px;
   font-family: var(--font-ui);
   font-weight: 600;
   text-decoration: none;
   display: inline-block;
   transition: all 0.3s ease;
   text-transform: uppercase;
   font-size: 14px;
   letter-spacing: 0.5px;
 }

 .btn-enroll:hover {
   background: #0090e0;
   transform: translateY(-2px);
   box-shadow: 0 6px 18px rgba(0, 168, 255, 0.5);
 }

 .btn-learnmore:hover {
   background: #ffffff;
   color: #03142e !important;
   border-color: #ffffff;
   transform: translateY(-2px);
 }

 .rkli {
   background: #f0f4ff !important;
   margin: 10px 0 !important;
   padding: 12px 20px !important;
   border-left: 5px solid #2b6cb0 !important;
   border-radius: 8px !important;
   font-family: var(--font-sans);
 }

 /* ========================================================
       CAMPUS LIFE & INFRASTRUCTURE SECTION (Scroll-Driven Animation Styles)
       ======================================================== */
 .campus-life-section {
   background-color: var(--bg-cream);
   background-image: url('../images/school\ pattern.png');
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   position: relative;
   padding: 50px 0;
   color: var(--text-dark-new);
   overflow: clip;
 }

 .campus-badge-tag {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 6px 16px;
   background: rgba(139, 16, 28, 0.08);
   border: 1px solid rgba(139, 16, 28, 0.25);
   color: var(--primary-red);
   font-size: 0.78rem;
   font-weight: 700;
   letter-spacing: 2px;
   text-transform: uppercase;
   border-radius: 50px;
   backdrop-filter: blur(8px);
 }

 /* Reduced Scroll Track Height to minimize blank space */
 .scroll-track {
   position: relative;
   height: 250vh;
   width: 100%;
 }

 .sticky-stage {
   position: sticky;
   top: 80px;
   height: calc(100vh - 90px);
   max-height: 720px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   overflow: hidden;
 }

 .student-presentation-anchor {
   position: relative;
   z-index: 10;
   width: 100%;
   max-width: 640px;
   text-align: center;
   margin-bottom: -35px;
   pointer-events: none;
 }

 .student-presentation-anchor .student-body {
   width: 100%;
   height: auto;
   object-fit: contain;
   filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
 }

 /* Wider Cards Container Constraints */
 .animated-cards-viewport {
   position: relative;
   width: 100%;
   max-width: 1280px;
   margin: 0 auto;
   height: 440px;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 0 20px;
 }

 .scroll-card {
   position: absolute;
   width: 100%;
   background: var(--navy-base);
   /* Updated card background */
   border: 1px solid rgba(255, 255, 255, 0.1);
   /* Adjusted border for dark card */
   border-radius: 24px;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
   padding: 35px 40px;
   opacity: 0;
   visibility: hidden;
   transform: translateY(60px) scale(0.92) rotate(3deg);
   transition: none;
   will-change: transform, opacity;
   color: #ffffff;
   /* Ensuring text readability inside dark card */
 }

 .scroll-card.active-card {
   visibility: visible;
 }

 .card-number {
   font-family: 'Space Grotesk', sans-serif;
   font-size: 1.5rem;
   font-weight: 700;
   color: #ff4d6d;
   /* Adjusted accent color for visibility on dark background */
   opacity: 0.95;
   display: inline-block;
   margin-bottom: 8px;
 }

 .category-pill {
   font-size: 0.75rem;
   font-weight: 600;
   letter-spacing: 1px;
   text-transform: uppercase;
   color: #f3c65d;
   /* Adjusted for dark card contrast */
   background: rgba(243, 198, 93, 0.15);
   padding: 4px 12px;
   border-radius: 30px;
   margin-left: 8px;
   font-family: 'Plus Jakarta Sans', sans-serif;
 }

 .deck-card-heading {
   font-family: 'Space Grotesk', 'Cinzel', sans-serif;
   font-size: clamp(1.4rem, 2vw, 1.95rem);
   font-weight: 700;
   color: #ffffff;
   /* White text for dark card background */
   line-height: 1.25;
   margin-bottom: 12px;
 }

 .deck-card-desc {
   color: rgba(255, 255, 255, 0.75);
   /* Muted white text for contrast */
   font-size: 0.95rem;
   line-height: 1.65;
   margin-bottom: 22px;
   font-family: 'Plus Jakarta Sans', sans-serif;
 }

 .action-btn-campus {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   color: #ffffff;
   background: rgba(243, 198, 93, 0.15);
   border: 1px solid rgba(243, 198, 93, 0.35);
   padding: 10px 22px;
   border-radius: 50px;
   font-size: 0.88rem;
   font-weight: 700;
   text-decoration: none;
   transition: all 0.25s ease;
   font-family: 'Plus Jakarta Sans', sans-serif;
 }

 .action-btn-campus i {
   transition: transform 0.25s ease;
   color: #f3c65d;
 }

 .action-btn-campus:hover {
   background: #ff4d6d;
   color: #ffffff;
   border-color: #ff4d6d;
   box-shadow: 0 6px 18px rgba(255, 77, 109, 0.25);
 }

 .action-btn-campus:hover i {
   color: #ffffff;
   transform: translateX(4px);
 }

 .campus-image-wrapper {
   position: relative;
   width: 100%;
   height: 100%;
   max-height: 380px;
   border-radius: 16px;
   overflow: hidden;
   border: 1px solid rgba(255, 255, 255, 0.15);
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
 }

 .campus-image-wrapper img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
 }

 .scroll-card:hover .campus-image-wrapper img {
   transform: scale(1.05);
 }

 @media (max-width: 991px) {
   .scroll-track {
     height: 220vh;
   }

   .sticky-stage {
     top: 80px;
     height: calc(100vh - 90px);
   }

   .student-presentation-anchor {
     max-width: 480px;
     margin-bottom: 50px;
   }

   .scroll-card {
     padding: 20px;
   }
 }

 @media (min-width: 768px) and (max-width: 980px) {
   .student-presentation-anchor {
     max-width: 480px;
     margin-bottom: 70px;
   }
 }

 @media (min-width: 530px) and (max-width: 584px) {
   .student-presentation-anchor {
     max-width: 480px;
     margin-bottom: 70px;
   }
 }

 @media (min-width: 360px) and (max-width: 410px) {
   .student-presentation-anchor {
     max-width: 480px;
     margin-bottom: 20px;
   }
 }






 .site-footer {
   background:
     url('../images/skykashipur.webp') no-repeat center center;
   background-size: cover;
   color: var(--text-primary);
   position: relative;
   padding-top: 100px;
   overflow: hidden;
 }

 .footer-wave {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   line-height: 0;
 }

 .footer-wave svg {
   display: block;
   width: 100%;
   height: 60px;
 }

 .footer-wave .shape-fill {
   fill: #F5EFDC;
 }

 .logo-box {
   background: #ffffff;
   width: fit-content;
   padding: 15px;
   border-radius: 12px;
   margin-bottom: 20px;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
 }

 .logo-box img {
   max-width: 100px;
   height: auto;
 }

 .footer-brand h2 {
   font-family: 'Cinzel', serif;
   font-size: 1.6rem;
   color: var(--gold-pure);
   margin-bottom: 15px;
 }

 .footer-brand h2 span {
   color: #fff;
   font-size: 1.3rem;
 }

 .footer-brand p {
   font-size: 0.9rem;
   opacity: 0.85;
   line-height: 1.7;
 }

 .f-heading {
   font-family: 'Cinzel', serif;
   font-size: 1.25rem;
   color: var(--text-primary);
   margin-bottom: 25px;
   position: relative;
   display: inline-block;
 }

 .f-heading::after {
   content: '';
   position: absolute;
   left: 0;
   bottom: -8px;
   width: 35px;
   height: 3px;
   background: var(--gold-pure);
 }

 .f-links {
   list-style: none;
   padding: 0;
 }

 .f-links li {
   margin-bottom: 12px;
 }

 .f-links a {
   color: rgba(255, 255, 255, 0.75);
   text-decoration: none;
   font-size: 0.9rem;
   transition: 0.3s;
   display: flex;
   align-items: center;
 }

 .f-links a i {
   font-size: 0.7rem;
   margin-right: 10px;
   color: var(--gold-pure);
 }

 .f-links a:hover {
   color: var(--gold-bright);
   transform: translateX(8px);
 }

 .c-item {
   display: flex;
   align-items: flex-start;
   margin-bottom: 20px;
 }

 .c-item i {
   background: var(--gold-pure);
   color: var(--navy-midnight);
   width: 35px;
   height: 35px;
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-right: 15px;
   flex-shrink: 0;
   box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
 }

 .c-item p {
   margin: 0;
   font-size: 0.9rem;
   line-height: 1.4;
 }

 .map-container {
   border-radius: 15px;
   overflow: hidden;
   height: 130px;
   margin-bottom: 20px;
   border: 1px solid rgba(255, 255, 255, 0.15);
 }

 .map-container iframe {
   width: 100%;
   height: 100%;
   border: 0;
 }

 .store-btns {
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   gap: 10px;
 }

 .store-btn {
   flex: 1;
   min-width: 120px;
   background: rgba(255, 255, 255, 0.08);
   padding: 8px 10px;
   border-radius: 10px;
   display: flex;
   align-items: center;
   text-decoration: none;
   color: #fff;
   transition: 0.3s;
   border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .store-btn:hover {
   background: var(--gold-pure);
   color: var(--navy-midnight);
   transform: translateY(-3px);
 }

 .store-btn i {
   font-size: 1.2rem;
   margin-right: 8px;
 }

 .store-btn span {
   display: block;
   font-size: 0.6rem;
   opacity: 0.8;
   line-height: 1;
 }

 .store-btn b {
   font-size: 0.8rem;
 }

 .school-frame {
   position: relative;
   margin-top: 50px;
   border-radius: 20px;
   overflow: hidden;
   line-height: 0;

 }

 .school-frame img {
   width: 100%;
   height: auto;
   object-fit: cover;
   margin-top: -80px;
 }

 .bottom-bar {
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   background: var(--navy-base);
   backdrop-filter: blur(5px);
   padding: 15px 0;
   text-align: center;
   font-size: 0.85rem;
   line-height: 1.5;
   border-top: 1px solid rgba(255, 255, 255, 0.06);
 }

 .social-row a {
   color: #fff;
   background: rgba(255, 255, 255, 0.08);
   width: 35px;
   height: 35px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   margin-right: 8px;
   transition: 0.3s;
   text-decoration: none;
   border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .social-row a:hover {
   background: var(--gold-pure);
   color: var(--navy-midnight);
   transform: translateY(-3px);
 }

 @media (max-width: 575px) {
   .school-frame img {
     margin-bottom: 80px;
     margin-top: 0 !important;
   }
 }







 /* Media query  */

 @media (max-width: 580px) {

   /* Fix Hero Shield Portal on mobile */
   .portal-stage {
     height: 400px;
     width: 100%;
     margin-top: 20px;
     right: 10px;
   }

   .story-chamber {
     max-width: 350px;

   }

   .frame-arch {

     width: 300px;
     height: 500px;

   }

   .frame-circle,
   .floating-seal {
     display: none;
   }

   .visual-portal {
     padding-bottom: 50px;
   }

   .role-switcher-dock {
     margin-bottom: 50px;
   }

   .student-presentation-anchor {
     max-width: 480px;
     margin-bottom: 30px;
   }

 }

 @media (max-width: 991px) {

   .shield-housing {
     max-width: 300px;
     height: 360px;
   }

   .floating-stat-badge {
     display: flex;
     /* Show badges nicely scaled or hide if preferred, let's scale them down */
     padding: 8px 12px;
     font-size: 0.8rem;
   }

   .badge-pos-top {
     top: 5%;
     left: -10px;
   }

   .badge-pos-bottom {
     bottom: 5%;
     right: -10px;
   }

   /* Fix Achievements & News Section stacking */
   .organic-showcase-grid {
     grid-template-columns: 1fr;
     gap: 30px;
   }

   .organic-showcase-section {
     padding: 40px 20px;
   }

   .achieveSwiperHorizontal {
     height: 380px;
   }

   .achieve-slide-canvas {
     height: 380px;
   }

   .testiSwiperVertical {
     height: 400px;
   }
 }




 /* ================================Page Css======================================= */
 /* ============================================================================== */

 .hero-banner {
   background: linear-gradient(to right, rgba(1, 8, 20, 0.9), rgba(5, 30, 66, 0.85), rgba(1, 8, 20, 0.9)), url('../images/page\ school.png') center/cover no-repeat;
   height: 380px;
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;
 }

 .section-title {
   color: var(--text-light);
   text-transform: uppercase;
 }

 .hero-divider {
   width: 130px;
   height: 4px;
   background: var(--navy-base);
   margin: 0 auto;
   border-radius: 30px;
 }

 .hero-title {
   z-index: 3;
   padding: 15px;
   border-radius: 100px;
   width: 95%;
   max-width: 1100px;
   position: absolute;
   bottom: 30px;
   left: 50%;
   transform: translate(-50%);
   height: 100px;
 }

 .about-content {
   padding: 50px 0px;
   background: var(--bg-cream);
 }

 .page-heading {
   text-transform: uppercase;
   position: relative;
   color: var(--navy-deep);
   font-weight: 700;
 }

 .about-quote {
   text-transform: uppercase;
   position: relative;
   color: var(--navy-deep);
   font-weight: 600;
 }

 /* Swiper full size */
 .heroSwiper {
   width: 100%;
   height: 100%;
 }

 .heroSwiper .swiper-slide {
   width: 100%;
   height: 100%;
 }

 .heroSwiper img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }

 /* Dark overlay */
 .hero-overlay {
   position: absolute;
   inset: 0;
   background: rgba(1, 8, 20, 0.75);
   z-index: 1;
 }

 /* ================================== */

 .custom-card {
   transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .custom-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 20px rgba(5, 30, 66, 0.15);
 }

 .card-img-top {
   height: 220px;
   object-fit: cover;
 }

 /* ============================= */

 .yellow-divider {
   width: 200px;
   height: 6px;
   background: var(--gold-pure);
   margin: 10px auto;
   border-radius: 1px;
 }

 .list-styling-arrow {
   padding: 0% 0% 0% 1%;
   margin: 0;
 }

 .list-styling-arrow li {
   position: relative;
   line-height: 28px;
   padding: 0px 0 0px 32px;
   list-style: none;
   margin: 8px 0;
   color: var(--text-main);
 }

 .list-styling-arrow li::before {
   content: "\f00c";
   font-family: "Font Awesome 6 Free";
   font-weight: 900;
   position: absolute;
   left: 0;
   top: 14px;
   transform: translateY(-50%);
   width: 20px;
   height: 20px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: var(--crimson-pure);
   color: var(--text-light);
   font-size: 11px;
   border-radius: 20px;
 }

 thead th {
   background: var(--navy-base) !important;
   color: var(--text-light) !important;
   text-align: center;
   vertical-align: middle;
   font-weight: 500;
 }

 table td {
   font-size: 15px;
   background: var(--card-glass) !important;
   color: var(--text-main);
 }

 ol li {
   line-height: 28px;
   padding: 0px 0px 0px 0px !important;
   list-style-type: disc !important;
   background: none !important;
   list-style: none;
   margin: 8px 0px;
   vertical-align: middle;
   color: var(--text-main);
 }

 /* ===================Accordion===================== */

 .accordion-item {
   border: none;
   background: transparent;
   margin-bottom: 10px;
 }

 /* Default ALL buttons */
 .accordion-button {
   background: var(--navy-base);
   color: var(--text-light);
   border-radius: 10px !important;
   padding: 15px 20px;
   border: none;
   box-shadow: none;
   transition: all 0.3s ease;
   font-weight: 600;
 }

 /* Remove Bootstrap arrow */
 .accordion-button::after {
   display: none;
 }

 /* Arrow */
 .arrow-icon {
   transition: transform 0.3s ease;
   font-size: 14px;
   color: var(--text-light);
 }

 /* Rotate when open */
 .accordion-button:not(.collapsed) .arrow-icon {
   transform: rotate(180deg);
 }

 /* OPEN STATE HEADER */
 .accordion-button:not(.collapsed) {
   border-radius: 10px 10px 0 0 !important;
   background: var(--navy-deep);
   color: var(--gold-bright);
 }

 /* BODY STYLE */
 .accordion-body {
   background: var(--bg-cream);
   border: 1px solid var(--line-subtle);
   border-top: none;
   border-radius: 0 0 10px 10px;
   padding: 20px;
   color: var(--text-main);
 }

 /* Remove gap between header & body */
 .accordion-collapse {
   border: none;
   margin-top: -5px;
 }

 /* Remove focus */
 .accordion-button:focus {
   box-shadow: none;
 }