* {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Poppins', sans-serif;
}
 body {
     background: #fdfdfd;
     color: #333;
     line-height: 1.6;
}
 header {
     background: #fff;
     color: #fff;
     display: flex;
     justify-content: space-between;
     align-items: center;
     position: sticky;
     top: 0;
     z-index: 1000;
}
 header img {
     height: 50px;
}
 header .contact {
     display: flex;
     gap: 15px;
}
 header .contact a {
     color: #0d47a1;
     text-decoration: none;
     font-weight: 600;
     transition: 0.3s;
}
/* Hero Section */
 .hero {
     color: white;
     text-align: center;
     padding: 80px 20px;
}
 .hero h1 {
     font-size: 42px;
     margin-bottom: 20px;
}
 .hero p {
     font-size: 20px;
     margin-bottom: 30px;
}
 .btn {
     background: #ff9800;
     color: #fff;
     padding: 12px 25px;
     border-radius: 6px;
     text-decoration: none;
     font-weight: 600;
     transition: 0.3s;
}
 .btn:hover {
     background: #e65100;
}
/* About Section */
/* section {
     padding: 60px 20px;
     max-width: 1100px;
     margin: auto;
}
 */
 section h2 {
     text-align: center;
     font-size: 32px;
     margin-bottom: 25px;
     color: #1470ff;
     ;
}
/* Core Values */
 .values {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 20px;
     text-align: center;
}
 .values div {
     padding: 20px;
     border-radius: 10px;
     background: #f1f5ff;
     transition: 0.3s;
}
 .values div:hover {
     transform: translateY(-8px);
     background: #e3f2fd;
}
 .values h3 {
     margin-bottom: 12px;
     color: #0d47a1;
}
/* Leadership */
 .leader {
     display: flex;
     align-items: center;
     gap: 20px;
     background: #fff;
     padding: 20px;
     border-radius: 10px;
     margin-bottom: 20px;
     box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
 .leader img {
     width: 120px;
     height: 120px;
     border-radius: 50%;
     object-fit: cover;
}
 .leader div {
     flex: 1;
}
 .leader h4 {
     margin-bottom: 8px;
     color: #0d47a1;
}
/* Gallery */
 .gallery {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 15px;
}
 .gallery img {
     width: 100%;
     border-radius: 10px;
     transition: 0.3s;
}
 .gallery img:hover {
     transform: scale(1.05);
}
/* FAQ */
 .faq {
     max-width: 800px;
     margin: auto;
}
 .faq details {
     margin-bottom: 15px;
     background: #e3f2fd;
     padding: 15px;
     border-radius: 8px;
     cursor: pointer;
}
 .faq summary {
     font-weight: 600;
     font-size: 18px;
     color: #0d47a1;
}
/* Footer */
 footer {
     background: #0d47a1;
     color: #fff;
     text-align: center;
     padding: 25px 20px;
    /* margin-top: 50px;
     */
}
 :root {
     --accent-1: #0d47a1;
     --muted: #6b7280;
     --radius: 999px;
}
 .site-header {
     position: sticky;
     top: 0;
     z-index: 1000;
     background: linear-gradient(90deg, #ffffff 0%, rgba(25, 118, 210, 0.03) 100%);
     box-shadow: 0 2px 8px rgba(16, 24, 40, 0.04);
     border-bottom: 1px solid rgba(13, 71, 161, 0.04);
}
/* container centers content but the logo is left and contact right inside it */
 .header-inner {
     max-width: 1400px;
     margin: 0 auto;
     padding: 10px 22px;
     display: flex;
     align-items: center;
     justify-content: space-between;
    /* keeps brand left and contact right */
     gap: 18px;
}
/* Brand (left) */
 .brand {
     display: flex;
     align-items: center;
     gap: 12px;
     flex: 0 0 auto;
    /* stay left, don't grow */
}
 .brand-link {
     display: inline-block;
}
 .logo {
     width: 56px;
     height: 56px;
     object-fit: cover;
     border-radius: 12px;
     border: 3px solid rgba(25, 118, 210, 0.06);
     background: linear-gradient(135deg, rgba(13, 71, 161, 0.04), rgba(25, 118, 210, 0.02));
}
 .school-name .title {
     font-weight: 700;
     font-size: 1rem;
     color: var(--accent-1);
     line-height: 1;
}
 .school-name .subtitle {
     font-size: 0.78rem;
     color: var(--muted);
     margin-top: 2px;
}
/* Contact (right) */
 .contact {
     display: flex;
     gap: 12px;
     align-items: center;
     margin-left: auto;
    /* pushes it to the far right inside header-inner */
}
/* ================================================================= Responsive Header Styles ================================================================= */
/* --- Base Header Layout --- */
 .site-header {
     background: #fff;
     padding: 10px 20px;
     border-bottom: 1px solid #e0e0e0;
     position: sticky;
     top: 0;
     z-index: 1000;
}
 .header-inner {
     max-width: 1400px;
     margin: 0 auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 20px;
}
 .brand {
     display: flex;
     align-items: center;
     gap: 15px;
}
 .logo {
     height: 50px;
     width: auto;
}
 .school-name .title {
     font-weight: 700;
     font-size: 1.2rem;
     color: #0d47a1;
}
 .school-name .subtitle {
     font-size: 0.8rem;
     color: #555;
}
/* --- Desktop Navigation --- */
 .header-options-desktop ul {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     gap: 25px;
}
 .header-options-desktop a {
     text-decoration: none;
     color: #0d47a1;
     font-weight: 600;
     padding: 5px 0;
     position: relative;
     transition: color 0.3s;
}
 .header-options-desktop a::after {
     content: '';
     position: absolute;
     bottom: -2px;
     left: 0;
     width: 0;
     height: 2px;
     background-color: #1e88e5;
     transition: width 0.3s ease;
}
 .header-options-desktop a:hover {
     color: #1e88e5;
}
 .header-options-desktop a:hover::after {
     width: 100%;
}
/* --- Right Side Elements --- */
 .header-right {
     display: flex;
     align-items: center;
     gap: 15px;
}
 .contact-btn {
    /* Styles are already in your file, these are just for reference */
     display: flex;
     align-items: center;
     gap: 8px;
     text-decoration: none;
}
 .contact-btn .label {
     font-size: 0.9rem;
}
/* --- Mobile Menu Elements (Hidden on Desktop) --- */
 .hamburger-menu, .mobile-nav, .nav-overlay {
     display: none;
}
/* ================================================================= Media Query for Tablet & Mobile (e.g., screens <= 992px) ================================================================= */
 @media (max-width: 992px) {
    /* Hide desktop nav and show hamburger */
     .header-options-desktop {
         display: none;
    }
     .contact {
         display: none !important;
    }
     .hamburger-menu {
         display: flex;
         flex-direction: column;
         justify-content: space-around;
         width: 30px;
         height: 25px;
         background: transparent;
         border: none;
         cursor: pointer;
         padding: 0;
         z-index: 1011;
        /* Above everything */
    }
     .hamburger-menu span {
         width: 30px;
         height: 3px;
         background-color: #0d47a1;
         border-radius: 10px;
         transition: all 0.3s linear;
         position: relative;
         transform-origin: 1px;
    }
    /* Hide text labels on contact buttons to save space */
     .contact-btn .label {
         display: none;
    }
     @media (max-width: 480px) {
         .brand {
             gap: 10px;
        }
    }
    /* --- Mobile Navigation Panel --- */
     .mobile-nav {
         display: block;
         position: fixed;
         top: 0;
         right: 0;
         width: 280px;
         height: 100vh;
         background-color: #fff;
         z-index: 10000;
         box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
         padding: 60px 20px 20px;
         transform: translateX(100%);
         transition: transform 0.3s ease-in-out;
    }
     .mobile-nav.is-open {
         transform: translateX(0);
    }
     .mobile-nav ul {
         list-style: none;
         padding: 0;
         margin-top: 20px;
    }
     .mobile-nav li {
         margin-bottom: 10px;
    }
     .mobile-nav a {
         display: block;
         padding: 12px 15px;
         font-size: 1.1rem;
         font-weight: 600;
         color: #0d47a1;
         text-decoration: none;
         border-radius: 5px;
         transition: background-color 0.2s, color 0.2s;
    }
     .mobile-nav a:hover {
         background-color: #f0f4ff;
         color: #1e88e5;
    }
     .close-btn {
         position: absolute;
         top: 15px;
         right: 20px;
         background: none;
         border: none;
         font-size: 2.5rem;
         color: #333;
         cursor: pointer;
    }
    /* --- Overlay --- */
     .nav-overlay {
         position: fixed;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background: rgba(0, 0, 0, 0.5);
         z-index: 1005;
         opacity: 0;
         visibility: hidden;
         transition: opacity 0.3s ease, visibility 0.3s ease;
    }
     .nav-overlay.is-open {
         display: block;
         opacity: 1;
         visibility: visible;
    }
}
 .contact-btn {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 10px 14px;
     border-radius: var(--radius);
     text-decoration: none;
     font-weight: 600;
     font-size: 0.92rem;
     transition: transform .14s ease, box-shadow .14s ease;
     border: 1px solid transparent;
     background: white;
     color: var(--accent-1);
     min-width: 220px;
}
 .contact-btn svg {
     flex: 0 0 18px;
     height: 18px;
     width: 18px;
     display: block;
     opacity: 0.95;
}
 .contact-btn .label {
     overflow: hidden;
     text-overflow: ellipsis;
     white-space: nowrap;
}
 .phone-btn {
     border-color: rgba(25, 118, 210, 0.12);
     background: linear-gradient(180deg, rgba(13, 71, 161, 0.04), rgba(13, 71, 161, 0.02));
     color: var(--accent-1);
}
 .phone-btn:hover, .phone-btn:focus {
     transform: translateY(-3px);
     box-shadow: 0 14px 34px rgba(13, 71, 161, 0.12);
}
 .email-btn {
     border-color: rgba(25, 118, 210, 0.12);
     background: linear-gradient(180deg, rgba(13, 71, 161, 0.04), rgba(13, 71, 161, 0.02));
     color: var(--accent-1);
}
 .email-btn:hover, .email-btn:focus {
     transform: translateY(-3px);
     box-shadow: 0 14px 34px rgba(255, 213, 79, 0.12);
}
/* Responsive tweaks */
 @media (max-width: 880px) {
     .contact-btn {
         min-width: 160px;
         padding: 9px 12px;
         font-size: 0.86rem;
    }
     .contact-btn .label {
         max-width: 120px;
    }
     .logo {
         width: 48px;
         height: 48px;
    }
}
 @media (max-width: 520px) {
     .header-inner {
         padding: 8px 12px;
    }
    /* compact */
     .contact-btn {
         min-width: 120px;
         padding: 8px 10px;
         font-size: 0.85rem;
    }
     .contact-btn .label {
         display: none;
    }
    /* icon-only on small screens */
}
/* Accessibility focus */
 .contact-btn:focus-visible {
     box-shadow: 0 0 0 4px rgba(25, 118, 210, 0.12);
     outline: none;
}
 header.site-header, .site-header {
    /* ensure the sticky/header visuals remain but use the header-inner flex for layout */
     display: block;
    /* keep header element block so header-inner handles flex */
     background: inherit;
    /* keep whatever background you've defined */
}
/* Ensure header-inner is the flex container that aligns left/right */
 .header-inner {
     display: flex !important;
     align-items: center;
     justify-content: space-between;
    /* brand left, contact right */
     gap: 18px;
     width: 100%;
}
/* Keep brand pinned left and prevent growing */
 .brand {
     flex: 0 0 auto;
    /* don't grow */
     display: flex;
     align-items: center;
     gap: 12px;
     order: 0;
}
/* Push contact to the far right */
 .contact {
     display: flex;
     gap: 12px;
     align-items: center;
     margin-left: auto !important;
    /* strongest way to push it right */
     order: 1;
}
/* If any generic `header img` rules conflict, be explicit for the logo */
 header .logo, .logo {
     height: 56px;
    /* desired height */
     width: 56px;
    /* keep square so object-fit works */
     object-fit: cover;
}
/* small responsive tweak to preserve layout on narrow widths */
 @media (max-width:520px) {
     .header-inner {
         padding: 8px 12px;
    }
    /* keep logo visible, hide text */
     .contact-btn .label {
         display: none;
    }
    /* show icons only */
}
/* ---------- base (keeps matching your theme) ---------- */
 :root {
     --accent: #0d47a1;
     --accent-2: #1976d2;
     --gold: #ffd54f;
     --muted: #6b7280;
     --card-bg: rgba(255, 255, 255, 0.9);
     --glass: rgba(255, 255, 255, 0.65);
     --radius: 14px;
     --shadow: 0 10px 30px rgba(13, 71, 161, 0.08);
}
 .hero-wrap {
     padding: 0px 0px;
     background-image: url('/assets/img/images/main-banner.jpg');
}
/* ---------- hero layout (3 columns) ---------- */
 .hero {
     max-width: 100%;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1.2fr 64px;
    /* left | center | right tab */
     gap: 22px;
     align-items: center;
     min-height: 420px;
}
/* LEFT image */
 .hero-left {
     border-radius: var(--radius);
     overflow: hidden;
     box-shadow: var(--shadow);
     display: flex;
     align-items: stretch;
     justify-content: stretch;
     margin-left: 66px;
     width: 100%;
}
 .hero-left img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transform-origin: center;
     transition: transform .9s cubic-bezier(.16, .84, .44, 1);
}
 .hero-left:hover img {
     transform: scale(1.03) translateY(-4px);
}
/* CENTER card */
 .hero-center {
     display: flex;
     align-items: center;
     justify-content: center;
}
 .hero-card {
     width: 100%;
     padding: 34px;
     border-radius: var(--radius);
     backdrop-filter: blur(2px) saturate(110%);
     box-shadow: var(--shadow);
     color: #032a5a;
     position: relative;
     overflow: hidden;
     margin-left: 100px;
     height: 424px;
}
/* subtle tint overlay */
 .hero-card::after {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.5));
     pointer-events: none;
}
 .hero-card .kicker {
     display: inline-block;
     background: linear-gradient(90deg, var(--accent), var(--accent-2));
     color: #fff;
     padding: 6px 12px;
     border-radius: 999px;
     font-weight: 700;
     font-size: .8rem;
     margin-bottom: 12px;
     z-index: 1;
     position: relative;
}
 .hero-card h1 {
     font-size: 34px;
     margin: 0 0 12px 0;
     color: #042a53;
     line-height: 1.05;
     z-index: 1;
     position: relative;
}
 .hero-card .lead {
     margin: 0 0 18px 0;
     font-size: 1.05rem;
     color: #063a6d;
     z-index: 1;
}
 .features {
     list-style: none;
     display: flex;
     gap: 14px;
     margin: 16px 0 22px;
     flex-wrap: wrap;
     z-index: 1;
     position: relative;
}
 .features li {
     background: rgba(255, 255, 255, 0.6);
     padding: 8px 12px;
     border-radius: 999px;
     font-weight: 600;
     color: #063a6d;
     box-shadow: 0 6px 18px rgba(5, 60, 120, 0.06);
}
 .cta-row {
     display: flex;
     gap: 12px;
     align-items: center;
     margin-top: 6px;
     z-index: 1;
     position: relative;
}
 .btn {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 10px 16px;
     border-radius: 10px;
     font-weight: 700;
     text-decoration: none;
     border: none;
     cursor: pointer;
}
 .btn.primary {
     background: linear-gradient(90deg, var(--accent), var(--accent-2));
     color: #fff;
     box-shadow: 0 10px 28px rgba(25, 118, 210, 0.14);
}
 .btn.ghost {
     background: rgba(255, 255, 255, 0.8);
     color: var(--accent-2);
     border: 1px solid rgba(13, 71, 161, 0.06);
}
 .note {
     display: block;
     margin-top: 5px;
     color: var(--muted);
     font-size: 0.88rem;
}
/* RIGHT vertical register tab */
 .hero-right {
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     height: 100%;
}
 .vertical-tab {
     writing-mode: vertical-rl;
     transform: rotate(180deg);
    /* keeps text readable top->bottom */
     background: linear-gradient(180deg, var(--accent-2), var(--accent));
     color: #fff;
     border: none;
     padding: 14px 10px;
     border-radius: 10px 10px 2px 2px;
     cursor: pointer;
     font-weight: 700;
     display: flex;
     gap: 8px;
     align-items: center;
     justify-content: center;
     box-shadow: 0 10px 30px rgba(13, 71, 161, 0.12);
     transition: transform .18s ease, box-shadow .18s ease;
     min-height: 180px;
}
 .vertical-tab svg {
     transform: rotate(-90deg);
     opacity: 0.95;
}
 .vertical-tab:hover {
     transform: rotate(180deg) translateY(-6px);
     box-shadow: 0 18px 36px rgba(13, 71, 161, 0.18);
}
 ---------- modal / form ---------- .modal-backdrop {
     position: fixed;
     inset: 0;
     display: flex;
    /* kept for when shown */
     align-items: center;
     justify-content: center;
     padding: 28px;
     background: rgba(4, 6, 10, 0.6);
     z-index: 9999;
     -webkit-overflow-scrolling: touch;
     transition: opacity .18s ease, visibility .18s ease;
}
/* HIDE when aria-hidden is true (initial state) */
 .modal-backdrop[aria-hidden="true"] {
     display: none;
    /* attribute selector + class is more specific, will override */
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
}
/* SHOW when aria-hidden is false */
 .modal-backdrop[aria-hidden="false"] {
     display: flex;
     opacity: 1;
     visibility: visible;
     pointer-events: auto;
}
 .modal-backdrop[aria-hidden="false"] {
     display: flex;
}
 .modal {
     width: 100%;
     max-width: 520px;
     background: #ffffff;
     border-radius: 12px;
     padding: 22px;
     box-shadow: 0 20px 60px rgba(2, 6, 23, 0.35);
     position: relative;
}
 .modal-close {
     position: absolute;
     top: 12px;
     right: 12px;
     background: transparent;
     border: none;
     font-size: 22px;
     cursor: pointer;
     color: var(--muted);
}
 .reg-form label {
     display: block;
     margin-bottom: 12px;
     font-weight: 600;
     color: #0b3a63;
}
 .reg-form input[type="text"], .reg-form input[type="tel"], .reg-form input[type="email"], .reg-form select, .reg-form textarea {
     width: 100%;
     padding: 10px 12px;
     margin-top: 6px;
     border-radius: 8px;
     border: 1px solid rgba(5, 68, 120, 0.06);
     background: #fbfdff;
     font-size: 0.95rem;
     box-shadow: inset 0 2px 6px rgba(12, 38, 78, 0.02);
}
 .reg-form textarea {
     resize: vertical;
}
 .form-row.actions {
     display: flex;
     gap: 10px;
     align-items: center;
     margin-top: 8px;
}
 .form-feedback {
     margin-top: 12px;
     color: green;
     font-weight: 600;
     display: block;
     min-height: 24px;
}
 @media (max-width:980px) {
     .hero {
         grid-template-columns: 1fr 1fr 56px;
         gap: 14px;
         min-height: 360px;
    }
     .hero-card {
         padding: 24px;
    }
     .vertical-tab {
         min-height: 140px;
    }
}
 @media (max-width:700px) {
    /* stack: image top, content, vertical tab becomes bottom-right floating button */
     .hero {
         grid-template-columns: 1fr;
         grid-template-rows: auto auto;
         gap: 14px;
         padding-bottom: 60px;
         min-height: auto;
    }
     .hero-right {
         position: absolute;
         right: 16px;
         bottom: 18px;
         height: auto;
         z-index: 50;
    }
     .vertical-tab {
         writing-mode: horizontal-tb;
         transform: none;
         padding: 10px 14px;
         border-radius: 12px;
         display: flex;
    }
     .hero-card {
         background-position: center top;
         background-size: cover;
    }
}
/* Theme-aware About section (no image, no buttons) */
 :root {
     --accent: #0d47a1;
     --accent-2: #1976d2;
     --gold: #ffd54f;
     --muted: #6b7280;
     --card-radius: 14px;
}
 .about-section {
     padding: 56px 20px;
     background: linear-gradient(180deg, #fbfdff 0%, #f7fbff 100%);
}
 .about-container {
     max-width: 920px;
     margin: 0 auto;
     display: flex;
     align-items: center;
     justify-content: center;
}
 .about-content-centered {
     width: 100%;
     background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 250, 255, 0.95));
     padding: 28px;
     border-radius: 12px;
     box-shadow: 0 12px 34px rgba(10, 30, 80, 0.06);
     text-align: center;
}
 .about-content-centered h2 {
     font-size: 2rem;
     color: var(--accent);
     margin-bottom: 8px;
     font-weight: 700;
     position: relative;
     display: inline-block;
}
 .about-content-centered h2::after {
     content: "";
     display: block;
     width: 64px;
     height: 6px;
     margin: 10px auto 0;
     border-radius: 6px;
     background: linear-gradient(90deg, var(--accent), var(--gold));
}
 .about-content-centered .lead {
     color: #213a63;
     font-size: 1.03rem;
     margin: 18px auto 20px;
     line-height: 1.6;
     max-width: 760px;
}
 .about-features {
     list-style: none;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 12px;
     margin: 0 auto 20px;
     max-width: 820px;
     padding: 0;
}
 .about-features li {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     background: rgba(255, 255, 255, 0.9);
     padding: 12px 14px;
     border-radius: 10px;
     box-shadow: 0 8px 20px rgba(8, 30, 70, 0.03);
     text-align: left;
}
 .about-features svg {
     color: var(--accent);
     flex: 0 0 22px;
     margin-top: 4px;
}
 .about-features span {
     display: flex;
     flex-direction: column;
}
 .about-features span small {
     color: var(--muted);
     font-weight: 600;
     font-size: 0.88rem;
     margin-top: 4px;
}
 .about-stats {
     display: flex;
     gap: 18px;
     margin-top: 8px;
     justify-content: center;
     flex-wrap: wrap;
}
 .about-stats .stat {
     background: linear-gradient(180deg, rgba(13, 71, 161, 0.04), rgba(255, 255, 255, 0.9));
     border-radius: 10px;
     padding: 12px 16px;
     display: flex;
     flex-direction: column;
     align-items: center;
     min-width: 120px;
     box-shadow: 0 8px 20px rgba(8, 30, 70, 0.03);
}
 .about-stats .num {
     font-size: 1.3rem;
     font-weight: 800;
     color: var(--accent);
}
 .about-stats .label {
     font-size: 0.92rem;
     color: var(--muted);
     margin-top: 6px;
     text-align: center;
}
/* Small entrance */
 .about-content-centered {
     transform: translateY(8px);
     opacity: 0;
     animation: fadeInUp .6s ease forwards;
     animation-delay: .06s;
}
 @keyframes fadeInUp {
     to {
         transform: none;
         opacity: 1;
    }
}
/* Responsive */
 @media (max-width:880px) {
     .about-content-centered {
         padding: 22px;
    }
     .about-features {
         grid-template-columns: 1fr;
    }
     .about-stats .stat {
         min-width: 100px;
         padding: 10px 12px;
    }
}
/* === Overrides: bigger card + heavier shadow === */
 .about-container {
    /* increase the available container width so the card can grow */
     max-width: 1100px;
    /* was 920px — increase as needed */
}
 .about-content-centered {
    /* make the card wider and give it more breathing room */
     max-width: 1100px;
    /* new card max width */
     width: 100%;
     padding: 34px;
    /* slightly larger padding */
     border-radius: 14px;
    /* richer, deeper shadow for stronger 'card' feel */
     box-shadow: 0 20px 50px rgba(8, 30, 70, 0.12), 0 10px 30px rgba(8, 30, 70, 0.08), 0 4px 12px rgba(8, 30, 70, 0.06);
}
/* optional: give stats and feature cards a slightly stronger lift */
 .about-features li, .about-stats .stat {
     box-shadow: 0 12px 30px rgba(8, 30, 70, 0.06), 0 4px 12px rgba(8, 30, 70, 0.03);
     border-radius: 12px;
}
/* Core Values styling — drop this after your main CSS */
 :root {
     --cv-bg: #fbfdff;
     --accent-a: #0d47a1;
     --muted: #5b6470;
     --card-radius: 16px;
     --card-shadow-1: 0 20px 45px rgba(9, 30, 66, 0.12);
     --card-shadow-2: 0 8px 20px rgba(9, 30, 66, 0.06);
     --glass: rgba(255, 255, 255, 0.86);
}
 .core-values-section {
     background: linear-gradient(180deg, var(--cv-bg) 0%, #f4f9ff 100%);
     padding: 56px 18px;
}
 .container-core {
     max-width: 1200px;
     margin: 0 auto;
}
 .section-title {
     font-size: 2rem;
     color: var(--accent-a);
     text-align: center;
     margin-bottom: 6px;
     font-weight: 800;
}
 .section-sub {
     text-align: center;
     color: var(--muted);
     margin-bottom: 20px;
     max-width: 820px;
     margin-left: auto;
     margin-right: auto;
     font-size: 1rem;
}
 .values-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
     margin-top: 18px;
}
 .value-card {
     background: linear-gradient(180deg, var(--glass), rgba(255, 255, 255, 0.96));
     border-radius: var(--card-radius);
     padding: 22px;
     min-height: 168px;
     display: flex;
     flex-direction: column;
     gap: 12px;
     align-items: flex-start;
     box-shadow: var(--card-shadow-1), var(--card-shadow-2);
     transition: transform .26s cubic-bezier(.2, .9, .3, 1), box-shadow .26s ease;
     border: 1px solid rgba(13, 71, 161, 0.05);
     position: relative;
     overflow: hidden;
}
 .value-card:focus, .value-card:hover {
     transform: translateY(-10px) scale(1.01);
     box-shadow: 0 32px 70px rgba(9, 30, 66, 0.18), 0 12px 30px rgba(9, 30, 66, 0.08);
     outline: none;
}
 .icon-wrap {
     width: 56px;
     height: 56px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
     box-shadow: inset 0 -6px 14px rgba(0, 0, 0, 0.03);
     transition: transform .26s ease;
     flex-shrink: 0;
}
 .value-card:hover .icon-wrap {
     transform: translateY(-6px) rotate(-6deg);
}
 .value-card h3 {
     font-size: 1.06rem;
     color: #052a53;
     margin: 0;
     font-weight: 800;
}
 .value-card p {
     margin: 0;
     color: var(--muted);
     font-size: 0.95rem;
     line-height: 1.45;
}
/* Decorative accents for each card (subtle gradient sliver) */
 .value-card::before {
     content: "";
     position: absolute;
     right: -40px;
     top: -40px;
     width: 140px;
     height: 140px;
     transform: rotate(26deg);
     opacity: .06;
     filter: blur(6px);
     pointer-events: none;
}
/* unique tints */
 .value-card:nth-child(1)::before {
     background: linear-gradient(90deg, #1976d2, #0d47a1);
}
 .value-card:nth-child(2)::before {
     background: linear-gradient(90deg, #ffd54f, #ffb74d);
}
 .value-card:nth-child(3)::before {
     background: linear-gradient(90deg, #00bfa5, #00695c);
}
 .value-card:nth-child(4)::before {
     background: linear-gradient(90deg, #8e24aa, #6a1b9a);
}
/* Responsive */
 @media (max-width:1100px) {
     .values-grid {
         grid-template-columns: repeat(2, 1fr);
    }
}
 @media (max-width:640px) {
     .values-grid {
         grid-template-columns: 1fr;
         gap: 14px;
    }
     .value-card {
         min-height: 140px;
         padding: 16px;
    }
     .icon-wrap {
         width: 48px;
         height: 48px;
         border-radius: 10px;
    }
}
/* Reduced motion preference */
 @media (prefers-reduced-motion: reduce) {
     .value-card, .icon-wrap {
         transition: none;
         transform: none !important;
    }
}
/* Adjusted Core Values: images + centered text */
 .values-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
     margin-top: 18px;
}
 .value-card {
     background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 255, 0.98));
     border-radius: 16px;
     padding: 20px 18px;
     min-height: 180px;
     display: flex;
     flex-direction: column;
     gap: 12px;
     align-items: center;
    /* center horizontally */
     text-align: center;
    /* center text */
     box-shadow: 0 20px 45px rgba(9, 30, 66, 0.10), 0 8px 22px rgba(9, 30, 66, 0.06);
     transition: transform .26s cubic-bezier(.2, .9, .3, 1), box-shadow .26s ease;
     border: 1px solid rgba(13, 71, 161, 0.04);
     position: relative;
     overflow: hidden;
}
 .value-card:focus, .value-card:hover {
     transform: translateY(-10px) scale(1.01);
     box-shadow: 0 32px 70px rgba(9, 30, 66, 0.18), 0 12px 30px rgba(9, 30, 66, 0.08);
     outline: none;
}
/* Image wrapper: centers image and gives a circular mask */
 .value-img-wrap {
     width: 152px;
     height: 152px;
     border-radius: 50%;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 247, 255, 0.9));
     box-shadow: inset 0 -6px 12px rgba(0, 0, 0, 0.03);
}
 .value-img-wrap img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transform-origin: center;
     transition: transform .6s ease;
}
 .value-card:hover .value-img-wrap img {
     transform: scale(1.06);
}
 .value-card h3 {
     font-size: 1.05rem;
     color: #052a53;
     margin: 6px 0 0;
     font-weight: 800;
}
 .value-card p {
     margin: 0;
     color: #5b6470;
     font-size: 0.95rem;
     line-height: 1.45;
     max-width: 240px;
}
/* decorative tint (subtle) */
 .value-card::before {
     content: "";
     position: absolute;
     right: -30px;
     top: -30px;
     width: 120px;
     height: 120px;
     transform: rotate(26deg);
     opacity: .06;
     filter: blur(6px);
     pointer-events: none;
}
 .value-card:nth-child(1)::before {
     background: linear-gradient(90deg, #1976d2, #0d47a1);
}
 .value-card:nth-child(2)::before {
     background: linear-gradient(90deg, #ffd54f, #ffb74d);
}
 .value-card:nth-child(3)::before {
     background: linear-gradient(90deg, #00bfa5, #00695c);
}
 .value-card:nth-child(4)::before {
     background: linear-gradient(90deg, #8e24aa, #6a1b9a);
}
/* Responsive */
 @media (max-width:1100px) {
     .values-grid {
         grid-template-columns: repeat(2, 1fr);
    }
}
 @media (max-width:640px) {
     .values-grid {
         grid-template-columns: 1fr;
         gap: 14px;
    }
     .value-card {
         min-height: 140px;
         padding: 16px;
    }
     .value-img-wrap {
         width: 72px;
         height: 72px;
    }
     .value-card p {
         max-width: 100%;
    }
}
/* Respect reduced motion preference */
 @media (prefers-reduced-motion: reduce) {
     .value-img-wrap img {
         transition: none;
    }
     .value-card {
         transition: none;
         transform: none !important;
    }
}
 .leadership-section {
     background-color: #ffffff;
     padding: 20px;
     color: #000;
     text-align: center;
     background-image: url('/assets/img/images/bg.png');
}
 .leadership-section h2 {
     font-size: 2.8rem;
     margin-bottom: 50px;
     font-weight: 800;
     color: #0d47a1;
}
 .leader-card {
     display: flex;
     align-items: flex-start;
     gap: 30px;
     max-width: 1000px;
     margin: 40px auto;
     padding: 20px;
     border-radius: 14px;
     background: #f7f7f7;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     position: relative;
     flex-wrap: wrap;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 .leader-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
/* Alternating layout */
 .leader-card.reverse {
     flex-direction: row-reverse;
}
 .leader-img img {
     width: 100%;
     max-width: 350px;
     height: auto;
     object-fit: cover;
     border-radius: 12px;
}
 .leader-content {
     flex: 1;
     text-align: left;
     padding-top: 10px;
}
 .leader-card.reverse .leader-content {
     text-align: left;
}
 .leader-content h4 {
     font-size: 1.6rem;
     margin-bottom: 6px;
     font-weight: 700;
     color: #000;
}
 .leader-content .subtitle {
     font-size: 0.95rem;
     margin-bottom: 12px;
     font-weight: 500;
     color: #555;
}
 .leader-content p {
     font-size: 1rem;
     line-height: 1.6;
     color: #333;
}
/* Responsive for tablets */
 @media (max-width: 900px) {
     .leader-card, .leader-card.reverse {
         flex-direction: column;
         text-align: center;
    }
     .leader-card.reverse .leader-content {
         text-align: center;
    }
     .leader-img img {
         max-width: 100%;
         margin-bottom: 20px;
    }
     .leader-content {
         padding-top: 0;
    }
}
/* Responsive for mobile */
 @media (max-width: 600px) {
     .leadership-section h2 {
         font-size: 2rem;
         margin-bottom: 30px;
    }
     .leader-content h4 {
         font-size: 1.4rem;
    }
     .leader-content .subtitle {
         font-size: 0.9rem;
    }
     .leader-content p {
         font-size: 0.95rem;
         line-height: 1.5;
    }
     .leader-card {
         margin: 30px 15px;
         padding: 15px;
         gap: 20px;
    }
}
 .leader-card.reverse {
     flex-direction: row-reverse;
}
 .feature-section {
     padding: 80px 20px;
     background: #f3f6ff;
}
 .feature-inner {
     display: flex;
     align-items: center;
     gap: 40px;
     max-width: 1200px;
     margin: 0 auto;
     flex-wrap: wrap;
}
 .feature-img {
     flex: 1;
     text-align: center;
}
 .feature-img img {
     width: 100%;
     max-width: 500px;
     border-radius: 20px;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
     transition: transform 0.3s ease;
}
 .feature-img img:hover {
     transform: scale(1.05);
}
 .feature-content {
     flex: 1;
     position: relative;
     min-height: 400px;
     background-image: url('/assets/img/images/digital-bg.jpg');
     border-radius: 20px;
     overflow: hidden;
}
 .content-overlay {
     background: rgba(255, 255, 255, 0.9);
     padding: 40px 30px;
     height: 100%;
     display: flex;
     flex-direction: column;
     justify-content: center;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
 .feature-section-full {
     width: 100%;
     display: flex;
     justify-content: center;
     background: #f3f6ff;
     padding: 0;
}
 .feature-inner-full {
     display: flex;
     width: 100%;
     max-width: 1400px;
     min-height: 500px;
     flex-wrap: wrap;
}
 .feature-img-full {
     flex: 0 0 40%;
     max-width: 40%;
     overflow: hidden;
}
 .feature-img-full img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     border-radius: 0;
     transition: transform 0.3s ease;
}
 .feature-img-full img:hover {
     transform: scale(1.05);
}
 .feature-content-full {
     flex: 0 0 60%;
     max-width: 60%;
     position: relative;
     background: url('/assets/img/images/digital-bg.jpg') center/cover no-repeat;
     display: flex;
     align-items: center;
}
 .content-overlay-full {
     background: rgba(0, 0, 0, 0.5);
     padding: 50px 40px;
     width: 100%;
     height: 100%;
     box-sizing: border-box;
     display: flex;
     flex-direction: column;
     justify-content: center;
}
 .feature-content-full h2 {
     font-size: 2.6rem;
     margin-bottom: 20px;
     color: #2779f7;
     font-weight: 700;
}
 .feature-content-full p {
     font-size: 1.1rem;
     color: #fff;
     line-height: 1.8;
     margin-bottom: 30px;
}
 .feature-content-full .btn {
     display: inline-block;
     background: #ff9800;
     color: #fff;
     padding: 12px 30px;
     border-radius: 8px;
     font-weight: 600;
     text-decoration: none;
     transition: 0.3s;
}
 .feature-content-full .btn:hover {
     background: #e65100;
     transform: translateY(-3px);
}
/* Responsive for tablet and mobile */
 @media (max-width: 1024px) {
     .feature-img-full {
         flex: 0 0 50%;
         max-width: 50%;
    }
     .feature-content-full {
         flex: 0 0 50%;
         max-width: 50%;
    }
     .content-overlay-full {
         padding: 40px 30px;
    }
     .feature-content-full h2 {
         font-size: 2.2rem;
    }
     .feature-content-full p {
         font-size: 1rem;
    }
     .feature-section-full {
         width: 100%;
         justify-content: center;
         background: #f3f6ff;
         padding: 0;
         display: unset;
    }
}
 @media (max-width: 768px) {
     .feature-inner-full {
         flex-direction: column;
    }
     .feature-img-full, .feature-content-full {
         flex: 1 1 100%;
         max-width: 100%;
    }
     .feature-img-full img {
         height: auto;
    }
     .content-overlay-full {
         padding: 30px 20px;
    }
     .feature-content-full h2 {
         font-size: 2rem;
    }
     .feature-content-full p {
         font-size: 0.95rem;
    }
     .feature-content-full .btn {
         padding: 10px 25px;
         font-size: 0.95rem;
    }
     .feature-section-full {
         width: 100%;
         justify-content: center;
         background: #f3f6ff;
         padding: 0;
    }
}
 @media (max-width: 480px) {
     .content-overlay-full {
         padding: 25px 15px;
    }
     .feature-content-full h2 {
         font-size: 1.8rem;
    }
     .feature-content-full p {
         font-size: 0.9rem;
    }
     .feature-content-full .btn {
         padding: 8px 20px;
         font-size: 0.9rem;
    }
}
 .gallery-section {
     padding: 60px 20px;
     background: #f3f6ff;
     text-align: center;
}
 .gallery-section h2 {
     font-size: 2.8rem;
     color: #0d47a1;
     margin-bottom: 40px;
     font-weight: 800;
}
/* Grid */
 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
}
/* Images */
 .gallery-grid img {
     width: 100%;
     border-radius: 15px;
     object-fit: cover;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     cursor: pointer;
}
 .gallery-grid img:hover {
     transform: scale(1.05);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
/* Responsive */
 @media (max-width: 900px) {
     .gallery-grid {
         grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
         gap: 15px;
    }
}
 @media (max-width: 600px) {
     .gallery-section h2 {
         font-size: 2rem;
         margin-bottom: 30px;
    }
     .gallery-grid {
         grid-template-columns: 1fr;
         gap: 15px;
    }
}
 .gallery-section {
     padding: 60px 20px;
     background: #f3f6ff;
     text-align: center;
}
 .gallery-section h2 {
     font-size: 2.8rem;
     color: #0d47a1;
     margin-bottom: 40px;
     font-weight: 800;
}
/* Wrapper for gallery and buttons */
 .gallery-wrapper {
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
}
/* Horizontal scroll container */
 .gallery-scroll {
     display: flex;
     overflow-x: hidden;
     gap: 20px;
     scroll-behavior: smooth;
     padding: 10px 0;
     width: 100%;
}
/* Gallery items */
 .gallery-item {
     flex: 0 0 250px;
     height: 180px;
     overflow: hidden;
     border-radius: 12px;
     background: #fff;
     box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 .gallery-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
}
 .gallery-item:hover img {
     transform: scale(1.1);
}
 .gallery-item:hover {
     box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}
/* Scroll buttons */
 .scroll-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(36, 37, 38, 0.8);
     border: none;
     color: #fff;
     font-size: 1rem;
     padding: 8px;
     cursor: pointer;
     z-index: 10;
     transition: background 0.3s ease, transform 0.3s ease;
}
 .scroll-btn:hover {
     background: rgba(13, 71, 161, 1);
     transform: translateY(-50%) scale(1.1);
}
 .left-btn {
     left: 5px;
}
 .right-btn {
     right: 5px;
}
/* Responsive */
 @media (max-width: 900px) {
     .gallery-item {
         flex: 0 0 200px;
         height: 150px;
    }
     .scroll-btn {
         font-size: 1.8rem;
         padding: 10px;
    }
}
 @media (max-width: 600px) {
     .gallery-item {
         flex: 0 0 160px;
         height: 120px;
    }
     .scroll-btn {
         font-size: 1.5rem;
         padding: 8px;
    }
}
 .gallery-section h2 {
     font-size: 2.8rem;
     color: #0d47a1;
     margin-bottom: 40px;
     font-weight: 800;
}
 .gallery-wrapper {
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
}
 .gallery-scroll {
     display: flex;
     gap: 20px;
     overflow: hidden;
     scroll-behavior: smooth;
     width: 100%;
     cursor: grab;
}
 .gallery-item {
     flex: 0 0 250px;
     height: 180px;
     overflow: hidden;
     border-radius: 12px;
     background: #fff;
     box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 .gallery-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
}
 .gallery-item:hover img {
     transform: scale(1.1);
}
 .gallery-item:hover {
     box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}
 @media (max-width: 900px) {
     .gallery-item {
         flex: 0 0 200px;
         height: 150px;
    }
     .scroll-btn {
         font-size: 1.8rem;
         padding: 10px;
    }
}
 @media (max-width: 600px) {
     .gallery-item {
         flex: 0 0 160px;
         height: 120px;
    }
     .scroll-btn {
         font-size: 1.5rem;
         padding: 8px;
    }
}
 .faq-section {
     background: #f3f6ff;
     padding: 60px 20px;
     text-align: center;
}
 .faq-section h2 {
     font-size: 2.5rem;
     color: #0d47a1;
     margin-bottom: 40px;
     font-weight: 800;
}
/* FAQ Accordion */
 .faq {
     max-width: 800px;
     margin: auto;
     text-align: left;
}
 .faq details {
     background: #fff;
     margin-bottom: 15px;
     padding: 20px 25px;
     border-radius: 12px;
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     cursor: pointer;
}
 .faq summary {
     font-size: 1.1rem;
     font-weight: 600;
     color: #0d47a1;
     list-style: none;
     position: relative;
}
 .faq summary::marker {
     display: none;
}
/* remove default triangle */
 .faq summary::after {
     content: '+';
     position: absolute;
     right: 20px;
     font-size: 1.4rem;
     transition: transform 0.3s ease;
}
 .faq details[open] summary::after {
     content: '-';
}
 .faq p {
     margin-top: 10px;
     font-size: 1rem;
     color: #333;
     line-height: 1.6;
}
/* Hover effect */
 .faq details:hover {
     transform: translateY(-3px);
     box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
/* Responsive */
 @media(max-width:600px) {
     .faq details {
         padding: 15px 20px;
    }
     .faq summary::after {
         right: 15px;
    }
}
 .site-footer {
     background: #0d47a1;
     color: #fff;
     padding: 40px 20px 20px;
     text-align: center;
     font-family: 'Poppins', sans-serif;
}
 .footer-inner {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: space-between;
     max-width: 1150px;
     margin: auto;
     gap: 20px;
}
 .footer-brand {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 12px;
}
 .footer-logo {
     width: 210px;
     height: 80px;
     object-fit: cover;
     border-radius: 10px;
     border: 2px solid rgba(255, 255, 255, 0.3);
     background: #fff;
     padding: 4px;
}
 .slogan {
     font-size: 1rem;
     font-weight: 500;
     color: #ffd54f;
     text-align: center;
}
 .footer-social {
     display: flex;
     gap: 15px;
}
 .footer-social a img {
     width: 28px;
     height: 28px;
     transition: transform 0.3s ease, filter 0.3s ease;
}
 .footer-social a:hover img {
     transform: scale(1.2);
     filter: brightness(1) invert(0.7);
}
 .footer-copy {
     margin-top: 25px;
     font-size: 0.9rem;
     color: rgba(255, 255, 255, 0.7);
}
/* Responsive */
 @media(max-width:768px) {
     .footer-inner {
         flex-direction: column;
         gap: 15px;
    }
     .footer-social {
         justify-content: center;
    }
}
/* ===================== Responsive Styles ===================== */
/* --------------------- Hero Section --------------------- */
 @media (max-width: 1024px) {
     .hero-wrap .hero {
         flex-direction: column;
         text-align: center;
    }
     .hero-left img {
         width: 380px;
         height: 620px;
    }
     .hero-center .hero-card {
         width: 90%;
         margin: 0 auto;
         padding: 20px;
    }
     .hero-center .features li {
         font-size: 0.95rem;
    }
     .cta-row .btn {
         width: 100%;
         margin-top: 10px;
    }
}
 @media (max-width: 768px) {
     .hero-wrap .hero {
         gap: 15px;
    }
     .hero-center .hero-card h1 {
         font-size: 2rem;
    }
     .hero-center .hero-card .lead {
         font-size: 1rem;
    }
     .hero-left img {
         height: 250px;
         width: 500px;
         object-fit: cover;
    }
     .hero-left {
         width: 376px;
         margin-left: 21px;
    }
}
/* --------------------- About Section --------------------- */
 @media (max-width: 1024px) {
     .about-container {
         padding: 20px;
    }
     .about-content-centered {
         text-align: center;
    }
     .about-features li {
         display: flex;
         flex-direction: column;
         align-items: center;
         gap: 8px;
    }
     .about-stats {
         display: flex;
         flex-direction: column;
         gap: 15px;
    }
}
 @media (max-width: 768px) {
     .about-stats .stat .num {
         font-size: 1.2rem;
    }
}
/* --------------------- Core Values Section --------------------- */
 @media (max-width: 1024px) {
     .values-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
    }
}
 @media (max-width: 768px) {
     .values-grid {
         grid-template-columns: 1fr;
    }
     .value-card h3 {
         font-size: 1.1rem;
    }
     .value-card p {
         font-size: 0.95rem;
    }
     .value-img-wrap img {
         width: 120px;
         height: 120px;
    }
}
/* --------------------- Leadership Section --------------------- */
 @media (max-width: 1024px) {
     .leader-card, .leader-card.reverse {
         flex-direction: column !important;
         text-align: center;
    }
     .leader-img img {
         max-width: 100%;
         margin-bottom: 15px;
    }
     .leader-content h4 {
         font-size: 1.4rem;
    }
     .leader-content .subtitle {
         font-size: 0.9rem;
    }
}
 @media (max-width: 768px) {
     .leader-card p {
         font-size: 0.95rem;
    }
     .leader-card {
         padding: 15px;
    }
}
/* --------------------- Feature Full Section --------------------- */
 @media (max-width: 1024px) {
     .feature-img-full, .feature-content-full {
         flex: 1 1 100%;
         max-width: 100%;
    }
     .feature-inner-full {
         flex-direction: column;
    }
     .content-overlay-full {
         padding: 40px 25px;
         text-align: center;
    }
     .feature-content-full h2 {
         font-size: 2rem;
    }
     .feature-content-full p {
         font-size: 1rem;
    }
}
/* ✅ Mobile */
 @media (max-width: 768px) {
     .content-overlay-full {
         padding: 30px 18px;
    }
     .feature-content-full h2 {
         font-size: 1.8rem;
    }
     .feature-content-full p {
         font-size: 0.95rem;
    }
     .feature-content-full .btn {
         width: 100%;
         padding: 10px;
         font-size: 1rem;
    }
}
/* ✅ Extra small */
 @media (max-width: 480px) {
     .content-overlay-full {
         padding: 20px 15px;
    }
     .feature-content-full h2 {
         font-size: 1.6rem;
    }
     .feature-content-full p {
         font-size: 0.9rem;
    }
     .feature-content-full .btn {
         font-size: 0.9rem;
         padding: 8px;
    }
}
/* --------------------- Gallery Section --------------------- */
 @media (max-width: 1024px) {
     .gallery-scroll {
         gap: 10px;
    }
     .gallery-item img {
         width: 200px;
         height: 140px;
    }
}
 @media (max-width: 768px) {
     .gallery-scroll {
         gap: 8px;
    }
     .gallery-item img {
         width: 100%;
         height: 100%;
    }
     .scroll-btn {
         font-size: 17px;
         padding: 0px 0px;
         width: 25px;
    }
}
/* --------------------- FAQ Section --------------------- */
 @media (max-width: 768px) {
     .faq details {
         font-size: 0.95rem;
    }
     .faq summary {
         font-size: 1rem;
    }
}
/* --------------------- Footer Section --------------------- */
 @media (max-width: 1024px) {
     .footer-inner {
         flex-direction: column;
         align-items: center;
         gap: 15px;
    }
     .footer-social {
         justify-content: center;
    }
}
 @media (max-width: 768px) {
     .footer-logo {
         width: 215px;
    }
     .slogan {
         font-size: 0.9rem;
         text-align: center;
    }
     .footer-social a img {
         width: 24px;
         height: 24px;
    }
     .footer-copy {
         font-size: 0.85rem;
         text-align: center;
    }
}
/* Tablet */
 @media (max-width: 992px) {
     .hero {
         padding: 60px 15px;
    }
     .hero h1 {
         font-size: 32px;
    }
     .hero p {
         font-size: 18px;
    }
     .features li {
         font-size: 16px;
         margin-bottom: 8px;
    }
}
/* Mobile */
 @media (max-width: 576px) {
     .hero {
         padding: 40px 12px;
    }
     .hero h1 {
         font-size: 26px;
         line-height: 1.3;
    }
     .hero p {
         font-size: 16px;
    }
     .btn {
         display: block;
         width: 100%;
         padding: 14px;
         font-size: 16px;
    }
     .features {
         padding-left: 20px;
         text-align: left;
    }
     .note {
         display: block;
         margin-top: 15px;
         font-size: 13px;
    }
}
/* make section a positioned container so the info-bar can overlap */
 .info-contact-section {
     position: relative;
     padding-top: 120px;
    /* leave space for the overlapping bar */
     margin-top: 60px;
     background: url('/assets/img/images/counter-bg.jpg') center/cover no-repeat;
}
/* Info bar that sits half outside the section */
 .info-bar {
     position: absolute;
     top: 0;
    /* top of the section */
     left: 50%;
     transform: translate(-50%, -50%);
    /* move up 50% of its height -> half outside */
     width: calc(100% - 80px);
     max-width: 1200px;
     background: #0e74ff;
     color: #fff;
     border-radius: 18px;
     padding: 22px 28px;
     display: flex;
     gap: 18px;
     align-items: center;
     justify-content: space-between;
     box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
     z-index: 50;
}
/* each column inside the info bar */
 .info-box {
     flex: 1 1 33%;
     text-align: center;
     padding: 6px 12px;
     min-width: 160px;
}
/* heading + description */
 .info-box h4 {
     margin: 6px 0 6px;
     font-size: 16px;
     font-weight: 700;
}
 .info-box p {
     margin: 0;
     font-size: 13.5px;
     line-height: 1.45;
     opacity: 0.95;
}
/* ensure the main content below (choose-contact) has breathing room */
 .choose-contact {
    /* keep your existing styles, but ensure top padding is big enough so the info-bar doesn't cover the content */
     padding-top: 40px;
    /* content already accounted by .info-contact-section padding-top */
     display: flex;
     gap: 30px;
     justify-content: space-between;
     align-items: flex-start;
     color: white;
     background: url('/assets/img/images/counter-bg.jpg') center/cover no-repeat;
}
/* small visual tweaks to match reference */
 .form-card {
     background: rgba(255, 255, 255, 0.92);
     border-radius: 16px;
     padding: 28px;
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
/* Responsive: info bar stacks on smaller screens */
 @media (max-width: 992px) {
     .info-bar {
         position: relative;
         top: auto;
         left: auto;
         transform: none;
         margin-bottom: -245px;
         flex-direction: column;
         width: 60%;
         padding: 18px;
         border-radius: 14px;
         margin-left: 235px;
    }
     .info-contact-section {
         padding-top: 40px;
        /* reduce unnecessary top space */
    }
     .info-box {
         text-align: center;
         padding: 8px 6px;
    }
     .info-box i {
         width: 40px;
         height: 40px;
         font-size: 18px;
    }
     .choose-contact {
         flex-direction: column;
         padding-top: 20px;
         align-items: stretch;
    }
     .form-row {
         flex-direction: column;
    }
}
/* Mobile: tighter spacing and readable font sizes */
 @media (max-width: 576px) {
     .info-contact-section {
         padding-top: 100px;
    }
     .info-bar {
         padding: 14px;
         transform: translate(-50%, -58%);
         border-radius: 12px;
    }
     .info-box {
         width: 100%;
         min-width: auto;
    }
     .info-box h4 {
         font-size: 15px;
    }
     .info-box p {
         font-size: 13px;
    }
     .info-box i {
         width: 36px;
         height: 36px;
         font-size: 16px;
    }
     .form-card {
         padding: 18px;
         border-radius: 12px;
    }
}
/* Why Choose Us + Contact */
 .choose-contact {
     display: flex;
     justify-content: space-between;
     gap: 30px;
     padding: 50px 20px;
     color: white;
}
 .choose-left {
     flex: 1;
}
 .choose-left h2 {
     margin-bottom: 20px;
     font-size: 28px;
     font-weight: 700;
}
 .choose-left ul {
     list-style: none;
     padding: 0;
}
 .choose-left li {
     margin-bottom: 15px;
     line-height: 1.5;
}
/* Right Form */
 .form-card {
     background: rgba(255, 255, 255, 0.9);
     color: black;
     padding: 25px;
     border-radius: 15px;
     flex: 1;
     min-width: 300px;
}
 .form-card h3 {
     text-align: center;
     margin-bottom: 20px;
}
 .form-row {
     display: flex;
     gap: 10px;
     margin-bottom: 15px;
}
 .form-row input {
     flex: 1;
     padding: 10px;
     border: 1px solid #ccc;
     border-radius: 6px;
}
 textarea {
     width: 100%;
     padding: 10px;
     border-radius: 6px;
     border: 1px solid #ccc;
     margin-bottom: 15px;
     resize: none;
}
 button {
     background: black;
     color: white;
     padding: 12px 25px;
     border: none;
     border-radius: 6px;
     font-weight: bold;
     cursor: pointer;
     width: 120px;
     display: block;
     margin: 0 auto;
}
/* Responsive */
 @media (max-width: 992px) {
     .choose-contact {
         flex-direction: column;
         align-items: center;
         text-align: center;
    }
     .form-row {
         flex-direction: column;
    }
}
/* Icon circle fixes — targets FA v4/v5/v6 classes */
 .info-box i, .info-box .fa, .info-box .fas, .info-box .far, .info-box .fal, .info-box .fab {
     display: inline-flex !important;
    /* make it a flex box so we can center icon */
     align-items: center;
     justify-content: center;
     width: 46px;
    /* circle size */
     height: 46px;
     border-radius: 50%;
     background: rgba(255, 210, 74, 0.10);
    /* faint yellow circle */
     color: #ffd24a !important;
    /* icon color */
     font-size: 18px;
    /* icon size */
     line-height: 1;
     margin: 0 auto 8px;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
/* if you want slightly larger icons on desktop */
 @media (min-width: 992px) {
     .info-box i, .info-box .fa, .info-box .fas, .info-box .far {
         width: 50px;
         height: 50px;
         font-size: 20px;
    }
}
/* fallback: if your markup uses <span> instead of <i> */
 .info-box span.icon {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 46px;
     height: 46px;
     border-radius: 50%;
     background: rgba(255, 210, 74, 0.10);
     color: #ffd24a;
     font-size: 18px;
     margin-bottom: 8px;
}
/* wrapper that creates the circular badge for either <i> or <svg> */
 .info-box .icon-wrap {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 46px;
     height: 46px;
     border-radius: 50%;
     background: rgba(255, 210, 74, 0.10);
     margin: 0 auto 8px;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
/* font icon (FA) inside wrapper */
 .info-box .icon-wrap i, .info-box .icon-wrap .fa, .info-box .icon-wrap .fas, .info-box .icon-wrap .fa-solid {
     color: #ffd24a !important;
     font-size: 18px;
     line-height: 1;
}
/* inline SVG inside wrapper */
 .info-box .icon-wrap svg {
     width: 20px;
     height: 20px;
     display: block;
     fill: #ffd24a;
    /* svg color */
}
/* responsive tweaks */
 @media (min-width: 992px) {
     .info-box .icon-wrap {
         width: 50px;
         height: 50px;
    }
     .info-box .icon-wrap i {
         font-size: 20px;
    }
     .info-box .icon-wrap svg {
         width: 22px;
         height: 22px;
    }
}
/* ---------- Modal backdrop & base ---------- */
 .modal-backdrop {
     position: fixed;
     inset: 0;
    /* top:0;
     right:0;
     bottom:0;
     left:0;
     */
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 28px;
     background: rgba(4, 6, 10, 0.6);
     z-index: 9999;
     -webkit-overflow-scrolling: touch;
}
/* center modal card */
 .modal {
     background: #ffffff;
     color: #111;
     width: 640px;
     max-width: calc(100% - 60px);
     border-radius: 12px;
     padding: 26px;
     box-shadow: 0 18px 40px rgba(2, 6, 23, 0.6);
     box-sizing: border-box;
     max-height: 90vh;
     overflow-y: auto;
    /* scroll inside the modal when tall */
     position: relative;
     transform-origin: center;
     transition: transform .18s ease, opacity .15s ease;
}
/* header / close button */
 .modal h3 {
     margin: 0 0 12px;
     font-size: 20px;
     font-weight: 700;
}
 .modal-close {
     position: absolute;
     top: 12px;
     right: 12px;
     width: 36px;
     height: 36px;
     border-radius: 8px;
     background: transparent;
     border: 0;
     color: #666;
     font-size: 22px;
     line-height: 1;
     cursor: pointer;
     display: inline-flex;
     align-items: center;
     justify-content: center;
}
 .modal-close:focus {
     outline: 3px solid rgba(13, 110, 253, 0.18);
}
/* form layout */
 .reg-form label {
     display: block;
     margin-bottom: 12px;
     font-size: 14px;
     color: #222;
}
 .reg-form input[type="text"], .reg-form input[type="tel"], .reg-form input[type="email"], .reg-form select, .reg-form textarea {
     width: 100%;
     padding: 10px 12px;
     border: 1px solid #d7d7d7;
     border-radius: 8px;
     box-sizing: border-box;
     font-size: 15px;
     color: #111;
     background: #fff;
}
 .reg-form textarea {
     resize: vertical;
     min-height: 80px;
}
/* action row */
 .form-row.actions {
     display: flex;
     gap: 12px;
     align-items: center;
     justify-content: flex-end;
     margin-top: 14px;
}
 .btn.primary {
     background: #0e74ff;
     color: #fff;
     padding: 10px 16px;
     border-radius: 8px;
     border: 0;
     font-weight: 700;
     cursor: pointer;
     min-width: 160px;
}
 .btn.primary:active {
     transform: translateY(0.5px);
}
 .btn.primary:focus {
     outline: 3px solid rgba(14, 116, 255, 0.18);
}
/* feedback area */
 .form-feedback {
     margin-top: 12px;
     font-size: 14px;
     color: #155724;
    /* success color by default;
     override as needed */
     min-height: 20px;
}
/* ---------- Responsive adjustments ---------- */
/* tablet / small laptops */
 @media (max-width: 992px) {
     .modal {
         width: 560px;
         padding: 20px;
         max-width: calc(100% - 40px);
    }
     .form-row.actions {
         justify-content: center;
    }
     .btn.primary {
         min-width: 180px;
    }
}
/* mobile: switch to bottom-sheet style for better UX on phones */
 @media (max-width: 576px) {
     .modal-backdrop {
         align-items: flex-end;
        /* push modal to bottom */
         padding: 0;
    }
     .modal {
         width: 100%;
         max-width: 100%;
         border-radius: 12px 12px 0 0;
         padding: 16px;
         max-height: 92vh;
         box-shadow: 0 -8px 30px rgba(2, 6, 23, 0.55);
         transform: translateY(0);
    }
     .modal-close {
         top: 10px;
         right: 12px;
    }
    /* make labels smaller & controls more touch friendly */
     .reg-form label {
         font-size: 13px;
         margin-bottom: 10px;
    }
     .reg-form input, .reg-form select, .reg-form textarea {
         font-size: 15px;
         padding: 12px;
         border-radius: 10px;
    }
     .form-row.actions {
         flex-direction: column;
         gap: 10px;
         align-items: stretch;
         justify-content: stretch;
         margin-top: 16px;
    }
     .btn.primary {
         width: 100%;
         min-width: 0;
         padding: 12px;
         border-radius: 10px;
    }
}
/* very small devices: increase tappable areas */
 @media (max-width: 360px) {
     .modal {
         padding: 12px;
         border-radius: 10px 10px 0 0;
    }
     .modal h3 {
         font-size: 18px;
    }
     .modal-close {
         width: 40px;
         height: 40px;
         font-size: 20px;
    }
     .reg-form input, .reg-form select, .reg-form textarea {
         padding: 14px;
    }
}
/* ---------- Small accessibility & polish ---------- */
/* show smooth scrollbars inside modal on desktop */
 .modal::-webkit-scrollbar {
     width: 10px;
     height: 6px;
}
 .modal::-webkit-scrollbar-thumb {
     background: rgba(0, 0, 0, 0.12);
     border-radius: 10px;
}
/* keep focusable form element visible when keyboard opens on mobile */
 @supports (padding: max(0px)) {
     .modal {
         padding-bottom: env(safe-area-inset-bottom, 20px);
    }
}
/* ---------- Responsive modal polishing & animations ---------- */
/* base animation states */
 .modal-backdrop[aria-hidden="false"] {
     opacity: 1;
     visibility: visible;
}
 .modal-backdrop[aria-hidden="true"] {
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
}
/* Desktop / tablet modal animation */
 .modal {
     transform: translateY(8px) scale(.995);
     opacity: 0;
     transition: transform .22s cubic-bezier(.2, .9, .2, 1), opacity .18s ease;
}
/* shown state */
 .modal-backdrop[aria-hidden="false"] .modal {
     transform: translateY(0) scale(1);
     opacity: 1;
}
/* ensure modal never exceeds viewport and remains scrollable */
 .modal {
     width: 640px;
     max-width: calc(100% - 40px);
     max-height: calc(100vh - 120px);
     overflow-y: auto;
     -webkit-overflow-scrolling: touch;
}
/* mobile: bottom-sheet style */
 @media (max-width: 576px) {
     .modal-backdrop {
         align-items: flex-end;
         padding: 0;
    }
    /* start off-screen, slide up when visible */
     .modal {
         width: 100%;
         max-width: 100%;
         border-radius: 12px 12px 0 0;
         padding: 16px;
         box-shadow: 0 -10px 30px rgba(2, 6, 23, 0.5);
         transform: translateY(100%);
         transition: transform .28s cubic-bezier(.22, .9, .2, 1);
         max-height: 92vh;
         margin-right: 16px;
         margin-left: 16px;
         margin-bottom: 10px;
    }
     .modal-backdrop[aria-hidden="false"] .modal {
         transform: translateY(0);
    }
    /* bigger close affordance */
     .modal-close {
         width: 44px;
         height: 44px;
         border-radius: 10px;
         font-size: 22px;
    }
    /* touch-friendly inputs */
     .reg-form input, .reg-form select, .reg-form textarea {
         font-size: 16px;
         padding: 12px 14px;
         border-radius: 10px;
    }
    /* actions stacked & full width */
     .form-row.actions {
         flex-direction: column;
         gap: 12px;
         align-items: stretch;
         justify-content: stretch;
         margin-top: 14px;
    }
     .btn.primary {
         width: 100%;
         min-width: 0;
         padding: 12px;
         border-radius: 10px;
    }
}
/* ensure large-viewport spacing remains comfortable */
 @media (min-width: 577px) and (max-width: 992px) {
     .modal {
         width: 560px;
         max-height: calc(100vh - 100px);
         padding: 20px;
    }
     .btn.primary {
         min-width: 160px;
    }
}
/* body scroll-lock helper (applied by JS via class or inline styles) */
 body.modal-scroll-locked {
     overflow: hidden;
     position: fixed;
     left: 0;
     right: 0;
}
/* small polish: keep safe area padding on iPhones */
 .modal {
     padding-bottom: env(safe-area-inset-bottom, 20px);
}
/* anchored modal (for small-screen popover placement) */
 .modal.anchored {
     position: fixed !important;
     transform: none !important;
     transition: none !important;
     max-width: 360px;
     width: auto;
     margin: 0;
    /* keep usual visual style but stronger shadow so it reads as a popover */
     box-shadow: 0 18px 40px rgba(2, 6, 23, 0.65);
     border-radius: 12px;
     z-index: 10001;
    /* above backdrop */
}
/* ensure anchored modal doesn't get bottom-sheet styles on mobile */
 .modal-backdrop .modal.anchored {
    /* remove the bottom-sheet translate-from behavior */
     transform: none;
     bottom: auto;
}
/* ===== FACILITIES ===== */
 .facilities-section {
     background: #f9fbff;
     padding: 60px 20px;
     text-align: center;
}
 .facilities-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
     gap: 25px;
     margin-top: 30px;
}
 .facility-card {
     background: #fff;
     padding: 25px;
     border-radius: 12px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s ease;
}
 .facility-card:hover {
     transform: translateY(-6px);
}
 .facility-icon {
     font-size: 36px;
     color: #0d47a1;
     margin-bottom: 15px;
}
/* ===== CONTACT ===== */
 .contact-section {
     background: linear-gradient(135deg, #0d47a1, #1976d2);
     color: #fff;
     padding: 70px 20px;
}
 .contact-container {
     display: flex;
     flex-wrap: wrap;
     gap: 30px;
     align-items: flex-start;
}
 .contact-info {
     flex: 1;
     font-size: 16px;
}
 .contact-info p {
     margin: 12px 0;
}
 .contact-form {
     flex: 1;
     display: flex;
     flex-direction: column;
     gap: 15px;
}
 .contact-form input, .contact-form textarea {
     padding: 12px;
     border: none;
     border-radius: 6px;
     outline: none;
     font-size: 15px;
}
 .contact-form button {
     background: #ffca28;
     border: none;
     padding: 12px;
     font-weight: 600;
     border-radius: 6px;
     cursor: pointer;
     transition: background 0.3s;
}
 .contact-form button:hover {
     background: #ffc107;
}
/* ===== ADMISSION INFO ===== */
 .admission-section {
     background: #fff;
     padding: 60px 20px;
}
 .admission-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 25px;
     margin-top: 30px;
}
 .admission-box {
     padding: 25px;
     border: 2px solid #0d47a1;
     border-radius: 12px;
     background: #f9fbff;
     transition: box-shadow 0.3s ease;
}
 .admission-box:hover {
     box-shadow: 0 6px 20px rgba(13, 71, 161, 0.15);
}
 .admission-box h3 {
     margin-bottom: 12px;
     color: #0d47a1;
}
/* ===== REGISTRATION FORM SECTION ===== */
 .registration-section {
     background: linear-gradient(135deg, #e3f2fd, #ffffff);
     padding: 60px 20px;
     display: flex;
     justify-content: center;
}
 .registration-container {
     max-width: 600px;
     width: 100%;
     background: #fff;
     border-radius: 14px;
     padding: 35px;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
     position: relative;
}
 .registration-container h3 {
     text-align: center;
     margin-bottom: 25px;
     color: #0d47a1;
     font-weight: 700;
}
 .modal-close {
     position: absolute;
     right: 15px;
     top: 15px;
     font-size: 22px;
     background: none;
     border: none;
     cursor: pointer;
     color: #444;
}
 .reg-form {
     display: flex;
     flex-direction: column;
     gap: 18px;
}
 .reg-form label {
     display: flex;
     flex-direction: column;
     font-weight: 600;
     color: #333;
     font-size: 15px;
}
 .reg-form input, .reg-form select, .reg-form textarea {
     margin-top: 6px;
     padding: 12px 14px;
     border: 1.5px solid #ccc;
     border-radius: 8px;
     font-size: 15px;
     transition: border-color 0.3s, box-shadow 0.3s;
}
 .reg-form input:focus, .reg-form select:focus, .reg-form textarea:focus {
     border-color: #0d47a1;
     box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.15);
     outline: none;
}
 .btn.primary {
     background: #0d47a1;
     color: #fff;
     border: none;
     padding: 12px;
     border-radius: 8px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     transition: background 0.3s, transform 0.2s;
}
 .btn.primary:hover {
     background: #1565c0;
     transform: translateY(-2px);
}
 .form-feedback {
     margin-top: 12px;
     font-size: 14px;
     text-align: center;
}
 @media (max-width: 600px) {
     .registration-container {
         padding: 25px 18px;
    }
     .reg-form label {
         font-size: 14px;
    }
}
 :root {
     --fac-accent: #4663ff;
     --muted: #6b7280;
     --card-radius: 14px;
     --card-shadow: 0 12px 30px rgba(14, 22, 40, 0.08);
     font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}
/* Section basics */
 #facilities-section-01 {
     padding: 64px 20px;
     background: linear-gradient(180deg, #ffffff 0%, #f7fbff 60%);
}
 #facilities-section-01 .section-title {
     text-align: center;
     font-size: 1.6rem;
     margin: 0 0 28px;
     font-weight: 700;
     color: #071033;
}
/* Grid */
 #facilities-grid-01 {
     max-width: 1180px;
     margin: 0 auto;
     display: grid;
     gap: 20px;
     grid-template-columns: repeat(4, 1fr);
     align-items: stretch;
}
/* Card */
 .facility-card {
     border-radius: var(--card-radius);
     overflow: hidden;
     background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 252, 255, 0.92));
     box-shadow: var(--card-shadow);
     border: 1px solid rgba(14, 22, 40, 0.04);
     display: flex;
     flex-direction: column;
     transition: transform .28s cubic-bezier(.2, .9, .3, 1), box-shadow .28s ease;
     will-change: transform;
}
/* media area: image + overlay */
 .facility-media {
     position: relative;
     min-height: 160px;
     overflow: hidden;
     background: #e9f1ff;
}
 .facility-media img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transition: transform .8s cubic-bezier(.2, .9, .3, 1);
     transform-origin: center;
}
/* icon badge (floating) */
 .facility-badge {
     position: absolute;
     left: 14px;
     top: 14px;
     width: 54px;
     height: 54px;
     border-radius: 12px;
     display: grid;
     place-items: center;
     background: rgba(255, 255, 255, 0.92);
     box-shadow: 0 6px 18px rgba(14, 22, 40, 0.06);
     color: var(--fac-accent);
     font-size: 20px;
     border: 1px solid rgba(70, 99, 255, 0.10);
}
/* subtle gradient overlay at bottom for readability */
 .facility-media::after {
     content: "";
     position: absolute;
     left: 0;
     right: 0;
     bottom: 0;
     height: 40%;
     background: linear-gradient(0deg, rgba(8, 12, 20, 0.38), rgba(8, 12, 20, 0));
     pointer-events: none;
     mix-blend-mode: multiply;
}
/* body area */
 .facility-body {
     padding: 18px 16px 22px;
     display: flex;
     flex-direction: column;
     gap: 8px;
     flex: 1 1 auto;
}
 .facility-body h3 {
     margin: 0;
     font-size: 1.06rem;
     color: #071033;
}
 .facility-body p {
     margin: 0;
     color: var(--muted);
     font-size: 0.95rem;
     line-height: 1.45;
}
/* hover interactions */
 .facility-card:hover {
     transform: translateY(-10px) scale(1.01);
     box-shadow: 0 22px 48px rgba(14, 22, 40, 0.12);
}
 .facility-card:hover .facility-media img {
     transform: scale(1.08) translateY(-3%);
}
/* Responsive: 2 columns on tablet, 1 on mobile */
 @media (max-width: 980px) {
     #facilities-grid-01 {
         grid-template-columns: repeat(2, 1fr);
    }
}
 @media (max-width: 560px) {
     #facilities-grid-01 {
         grid-template-columns: 1fr;
    }
     .facility-media {
         min-height: 180px;
    }
     .facility-badge {
         left: 12px;
         top: 12px;
         width: 48px;
         height: 48px;
         font-size: 18px;
         border-radius: 10px;
    }
}
/* Footer options */
 .footer-options ul {
     list-style: none;
     padding: 0;
     margin: 8px 0 0;
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
     align-items: center;
}
 .footer-options a {
     display: inline-block;
     font-size: 14px;
     padding: 8px 12px;
     color: var(--text);
     text-decoration: none;
     border-radius: 10px;
     background: var(--glass);
     transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
}
 .footer-options a:hover {
     transform: translateY(-5px);
     background: rgba(255, 255, 255, 0.06);
     box-shadow: 0 10px 24px rgba(2, 6, 23, 0.45);
     color: #fff;
     ;
}
/* Footer options */
 .header-options ul {
     list-style: none;
     padding: 0;
     margin: 8px 0 0;
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
     align-items: center;
}
 .header-options a {
     display: inline-block;
     font-size: 14px;
     padding: 8px 12px;
     color: var(--text);
     text-decoration: none;
     border-radius: 10px;
     background: var(--glass);
     transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
}
 .header-options a:hover {
     transform: translateY(-5px);
     background: rgba(255, 255, 255, 0.06);
     box-shadow: 0 10px 24px rgba(2, 6, 23, 0.45);
     color: #0d47a1;
     ;
}
/* ---------- Gallery section ---------- */
 .gallery-section {
     max-width: 1200px;
     margin: 40px auto;
     padding: 24px;
     font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
     color: #0b3a4a;
}
/* .gallery-section .section-title {
     font-size: 28px;
     font-weight: 700;
     margin-bottom: 18px;
     text-align: left;
     color: #07203a;
}
 */
/* Grid layout: responsive columns */
 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 16px;
     align-items: stretch;
}
/* Card / figure */
 .gallery-card {
     position: relative;
     overflow: hidden;
     border-radius: 12px;
     background: #fff;
     box-shadow: 0 8px 24px rgba(7, 32, 58, 0.06);
     cursor: pointer;
     transition: transform .18s ease, box-shadow .18s ease;
     display: block;
     text-decoration: none;
     color: inherit;
}
/* lift effect on hover */
 .gallery-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 20px 40px rgba(7, 32, 58, 0.12);
}
/* Make all images same size and crop neatly */
 .gallery-card img {
     width: 100%;
     height: 200px;
    /* all images same height */
     object-fit: cover;
    /* crop to fill */
     display: block;
    /* vertical-align: middle;
     */
     transition: transform .45s cubic-bezier(.2, .8, .2, 1);
}
/* zoom the image a touch on hover */
 .gallery-card:hover img {
     transform: scale(1.06);
}
/* caption overlay - hidden by default, fades in on hover */
 .gallery-card figcaption {
     position: absolute;
     left: 0;
     right: 0;
     bottom: 0;
     padding: 12px 14px;
     background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 100%);
     color: #fff;
     font-size: 14px;
     line-height: 1.3;
     transform: translateY(100%);
     transition: transform .22s ease, opacity .22s ease;
     opacity: 0;
}
/* show caption on hover/focus */
 .gallery-card:hover figcaption, .gallery-card:focus-within figcaption {
     transform: translateY(0);
     opacity: 1;
}
/* small caption styling when present */
 .gallery-card figcaption small {
     display: block;
     font-size: 12px;
     opacity: .9;
     margin-top: 6px;
}
/* Make figures keyboard-focusable */
 .gallery-card:focus {
     outline: 2px dashed rgba(11, 110, 209, 0.18);
     outline-offset: 6px;
}
/* ---------- Lightbox (modal) ---------- */
 .gallery-lightbox {
     position: fixed;
     inset: 0;
     display: none;
    /* toggled by JS */
     align-items: center;
     justify-content: center;
     background: rgba(3, 12, 20, 0.65);
     z-index: 1200;
     padding: 24px;
}
 .gallery-lightbox.open {
     display: flex;
}
 .gallery-lightbox .lb-inner {
     max-width: 1100px;
     width: 100%;
     max-height: 90vh;
     background: #fff;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 28px 60px rgba(3, 12, 20, 0.6);
     display: grid;
     grid-template-columns: 1fr 360px;
}
/* image panel */
 .gallery-lightbox .lb-img {
     display: flex;
     align-items: center;
     justify-content: center;
     background: #000;
     min-height: 320px;
}
 .gallery-lightbox .lb-img img {
     max-width: 100%;
     max-height: 90vh;
     object-fit: contain;
     display: block;
}
/* right panel: caption + controls */
 .gallery-lightbox .lb-panel {
     padding: 20px;
     background: #fff;
     display: flex;
     flex-direction: column;
     gap: 12px;
}
 .gallery-lightbox .lb-title {
     font-size: 20px;
     font-weight: 700;
     color: #07203a;
}
 .gallery-lightbox .lb-desc {
     font-size: 14px;
     color: #345d6f;
     line-height: 1.6;
     overflow: auto;
}
/* controls */
 .lb-controls {
     margin-top: auto;
     display: flex;
     gap: 8px;
     align-items: center;
}
 .lb-controls .btn {
     padding: 8px 12px;
     border-radius: 8px;
     background: #0b6ed1;
     color: #fff;
     text-decoration: none;
     border: none;
     cursor: pointer;
}
 .lb-close {
     background: transparent;
     color: #07203a;
     font-size: 18px;
     padding: 6px 10px;
     border-radius: 8px;
     border: 1px solid rgba(7, 32, 58, 0.06);
}
/* responsive: stack panels on small screens */
 @media (max-width: 880px) {
     .gallery-lightbox .lb-inner {
         grid-template-columns: 1fr;
    }
     .gallery-lightbox .lb-panel {
         order: 2;
         max-height: 40vh;
         overflow: auto;
    }
     .gallery-lightbox .lb-img {
         order: 1;
         min-height: 220px;
    }
     .gallery-card img {
         height: 160px;
    }
}
 @media (max-width: 480px) {
     .gallery-card img {
         height: 140px;
    }
}
/* ================================================================= ADDITIVE RESPONSIVE STYLES (DO NOT REMOVE ANYTHING ABOVE THIS LINE) ================================================================= */
/* --- Tablet Breakpoint (for header and general layout) --- */
 @media (max-width: 992px) {
    /* Hide desktop-specific elements */
     .header-options-desktop, .contact-btn .label {
         display: none;
    }
    /* Show and style the hamburger menu */
     .hamburger-menu {
         display: flex;
         flex-direction: column;
         justify-content: space-around;
         width: 30px;
         height: 25px;
         background: transparent;
         border: none;
         cursor: pointer;
         z-index: 1011;
    }
     .hamburger-menu span {
         width: 30px;
         height: 3px;
         background-color: #0d47a1;
         border-radius: 10px;
    }
    /* Show and style the mobile navigation panel */
     .mobile-nav {
         display: block;
         position: fixed;
         top: 0;
         right: 0;
         width: 280px;
         height: 100vh;
         background-color: #fff;
         z-index: 10000;
         box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
         padding: 60px 20px 20px;
         transform: translateX(100%);
         transition: transform 0.3s ease-in-out;
    }
     .mobile-nav.is-open {
         transform: translateX(0);
    }
     .mobile-nav ul {
         list-style: none;
         padding: 0;
    }
     .mobile-nav a {
         display: block;
         padding: 12px 15px;
         font-size: 1.1rem;
         font-weight: 600;
         color: #0d47a1;
         text-decoration: none;
    }
     .close-btn {
         position: absolute;
         top: 15px;
         right: -5px;
         background: none;
         border: none;
         font-size: 2.5rem;
         color: #333;
         cursor: pointer;
    }
     .nav-overlay {
         display: block;
         position: fixed;
         inset: 0;
         background: rgba(0, 0, 0, 0.5);
         z-index: 1005;
         opacity: 0;
         visibility: hidden;
         transition: opacity 0.3s ease;
    }
     .nav-overlay.is-open {
         opacity: 1;
         visibility: visible;
    }
}
/* --- Mobile Breakpoint (for full redesign based on screenshot) --- */
 @media (max-width: 768px) {
    /* General Mobile Styles */
     body {
         background-color: #f8f9fa;
    }
     section {
         padding: 40px 15px;
    }
     h1, h2, h3, h4 {
         color: #1a237e;
    }
     section>h2, h2.section-title {
         font-size: 2rem;
         font-weight: 700;
         text-align: center;
         position: relative;
         padding-bottom: 15px;
    }
     section>h2::after, h2.section-title::after {
         content: '';
         position: absolute;
         bottom: 0;
         left: 50%;
         transform: translateX(-50%);
         width: 60px;
         height: 4px;
         background: linear-gradient(90deg, #1a237e 50%, #ffc107 50%);
         border-radius: 2px;
    }
     section>p.lead, p.section-sub {
         text-align: center;
    }
    /* Hero Section */
     .hero-wrap {
         padding: 0;
    }
     .hero {
         grid-template-columns: 1fr;
         padding: 15px;
         gap: 15px;
    }
     .hero-left {
         order: 1;
         width: 100%;
         margin-left: 0;
    }
     .hero-left img {
         border-radius: 16px;
         box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
     .hero-center {
         order: 2;
         width: 100%;
         margin-left: 0;
    }
     .hero-card {
         padding: 0;
         box-shadow: none;
         background: none;
         text-align: center;
         backdrop-filter: none;
         height: auto;
    }
     .hero-card .kicker {
         display: inline-block;
         background: linear-gradient(90deg, #42a5f5, #1e88e5);
         color: white;
         padding: 8px 20px;
         border-radius: 50px;
         font-weight: 600;
    }
     .hero-card h1 {
         font-size: 2.5rem;
    }
     .hero-card .features {
         flex-direction: column;
         gap: 10px;
         margin: 25px 0;
    }
     .hero-card .features li {
         background: #fff;
         border: 1px solid #e0e0e0;
         border-radius: 50px;
         padding: 12px 20px;
         box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }
    /* About Section */
     .about-content-centered {
         background: #fff;
         border-radius: 20px;
         padding: 30px 20px;
         box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }
     .about-features {
         grid-template-columns: 1fr;
    }
     .about-stats {
         flex-direction: column;
         gap: 10px;
    }
     .stat {
         width: 100%;
    }
    /* Core Values */
     .values-grid {
         grid-template-columns: 1fr;
    }
     .value-card {
         border-radius: 20px !important;
         box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
    }
    /* Leadership Section */
     .leader-card, .leader-card.reverse {
         flex-direction: column;
         background: #fff;
         border-radius: 20px;
         padding: 20px;
         box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }
     .leader-img img {
         max-width: 100%;
         border-radius: 16px;
    }
    /* Vision & Mission */
     .feature-inner-full {
         flex-direction: column;
    }
     .feature-img-full {
         display: none;
    }
     .feature-section-full {
         background-size: cover;
         background-position: center;
         padding: 60px 20px;
    }
     .feature-content-full {
         max-width: 100%;
    }
     .content-overlay-full {
         position: static;
         text-align: center;
    }
     .content-overlay-full h2::after {
         background: linear-gradient(90deg, #fff 50%, #ffc107 50%);
    }
    /* Gallery */
     .scroll-btn {
         display: block;
         position: absolute;
         top: 50%;
         transform: translateY(-50%);
         background: rgba(36, 37, 38, 0.8);
         border: none;
         color: #fff;
         font-size: 1rem;
         padding: 8px;
         cursor: pointer;
         z-index: 10;
         width: 35px !important;
        /* Overriding inline style */
    }
     .left-btn {
         left: 5px;
    }
     .right-btn {
         right: 5px;
    }
    /* FAQ Section */
     .faq details {
         border-radius: 12px;
         box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
         border: none;
    }
    /* Contact & Why Choose Us */
     .info-contact-section {
         padding-top: 40px;
         margin-top: 0;
    }
     .info-bar {
         position: relative;
         top: auto;
         left: auto;
         transform: none;
         flex-direction: column;
         width: 100%;
         margin: 0 auto 40px;
         border-radius: 20px;
    }
     .choose-contact {
         flex-direction: column;
         gap: 40px;
    }
     .form-row {
         flex-direction: column;
    }
    /* Social Sidebar */
     .social-sidebar {
         display: none;
    }
}
 .btn.primary {
     text-align: center !important;
     display: inline-flex !important;
     justify-content: center !important;
     align-items: center !important;
}