
        :root {
            --primary-green: #68B04D; 
            --primary-green-hover: #56963f;
            --primary-orange: #FF8A00; 
            --primary-orange-hover: #e67c00;
            --dark-navy: #151E2D; 
            --light-bg: #F8FAFC;
            --text-dark: #1E293B;
            --text-muted: #64748B;
            --border-light: #E2E8F0;
             --swiper-navigation-size: 20px;
        }
         a {
   
    text-decoration: none;
}

        html { scroll-behavior: smooth; }
        body { transition: background 0.4s ease, color 0.4s ease; font-family: 'Inter', sans-serif; overflow-x: hidden; color: var(--text-dark); background-color: #ffffff; }
        h1, h2, h3, h4, h5 { font-weight: 800; letter-spacing: -0.5px; color: var(--dark-navy); }
        .text-green { color: var(--primary-green) !important; }
        .text-orange { color: var(--primary-orange) !important; }
        .bg-light-gray { background-color: var(--light-bg); }
        
        /* Responsive Section Padding */
        .section-padding { padding: 50px 0; }
        @media (max-width: 768px) { .section-padding { padding: 50px 0; } }
        
        .section-title { text-align: center; margin-bottom: 50px; }
        .section-title h2 { font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 15px; }
        .section-title p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

        /* --- Buttons --- */
        .btn-orange { background: var(--primary-orange); color: #fff !important; border-radius: 8px; padding: 12px 30px; font-weight: 600; border: none; transition: 0.3s ease; display: inline-block; text-decoration: none; }
        .btn-orange:hover { background: var(--primary-orange-hover); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(255, 138, 0, 0.4); }
        
        .btn-green { background: var(--primary-green); color: #fff !important; border-radius: 8px; padding: 12px 30px; font-weight: 600; border: none; transition: 0.3s ease; display: inline-block; text-decoration: none; }
        .btn-green:hover { background: var(--primary-green-hover); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(104, 176, 77, 0.3); }

        .btn-outline-green { border: 1px solid var(--primary-green); color: var(--primary-green) !important; background: transparent; border-radius: 8px; padding: 10px 25px; font-weight: 600; transition: 0.3s ease; text-decoration: none; }
        .btn-outline-green:hover, .navbar-scrolled .btn-outline-green:hover { background: var(--primary-green); color: #fff !important; }
        
        .btn-outline-light-custom { border: 1px solid #fff; color: #fff !important; background: transparent; border-radius: 8px; padding: 12px 30px; font-weight: 600; transition: 0.3s ease; text-decoration: none; }
        .btn-outline-light-custom:hover { background: #fff; color: var(--dark-navy) !important; }

        /* --- Transparent Navbar Setup --- */
        .header-wrapper { position: absolute; top: 0; left: 0; width: 100%; z-index: 1030; transition: background 0.3s; }
        .top-bar { background: transparent; border-bottom: 1px solid rgba(255,255,255,0.1); color: #E2E8F0; padding: 10px 0; font-size: 0.85rem; transition: 0.3s; }
        .top-bar a { color: #E2E8F0; text-decoration: none; margin-right: 20px; transition: 0.3s; }
        .top-bar a:hover { color: var(--primary-green); }
        
        .navbar { background: transparent; padding: 15px 0; transition: 0.4s ease; }
        .navbar-brand h4 { color: white; transition: 0.3s; }
        .navbar-brand span { color: rgba(255,255,255,0.7); }
        .logo-circle { width: 45px; height: 45px; background: var(--primary-green); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.2rem; margin-right: 12px; }
        
        .nav-link { color: white !important; font-weight: 500; font-size: 0.9rem; margin: 0 4px; transition: 0.3s; }
        .nav-link:hover, .nav-link.active-link { color: var(--primary-green) !important; border-bottom: 2px solid var(--primary-green); }
        .btn-outline-green { border-color: rgba(255,255,255,0.5); color: white !important; }

        /* Scrolled & Mobile Open State */
        .header-wrapper.navbar-scrolled, .header-wrapper.mobile-open { position: fixed; background: #ffffff; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
        .navbar-scrolled .top-bar { display: none; } 
        .navbar-scrolled .navbar { padding: 10px 0; }
        .navbar-scrolled .navbar-brand h4, .mobile-open .navbar-brand h4 { color: var(--dark-navy); }
        .navbar-scrolled .navbar-brand span, .mobile-open .navbar-brand span { color: var(--text-muted); }
        .navbar-scrolled .nav-link, .mobile-open .nav-link { color: var(--text-dark) !important; }
        .navbar-scrolled .nav-link:hover, .mobile-open .nav-link:hover { color: var(--primary-green) !important; }
        .navbar-scrolled .btn-outline-green, .mobile-open .btn-outline-green { border-color: var(--primary-green); color: var(--primary-green) !important; }
        .navbar-scrolled .navbar-toggler i, .mobile-open .navbar-toggler i { color: var(--text-dark) !important; }
        .navbar-toggler i { color: white; transition: 0.3s;} 

        /* --- Swiper Hero Banner --- */
        .hero-swiper { height: 100vh; width: 100%; }
        .hero-slide { background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; position: relative; }
        .hero-slide::before { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(21, 30, 45, 0.45), rgba(21, 30, 45, 0.5)); z-index: 1; }
        .hero-content { position: relative; z-index: 2; color: white; text-align: center; max-width: 900px; padding-top: 110px; }
        .hero-content h1 { color: white; font-size: clamp(2.5rem, 6vw, 5rem); margin-bottom: 1.5rem; text-shadow: 0 4px 10px rgba(0,0,0,0.3); line-height: 1.1; }
        .hero-content p { font-size: clamp(1rem, 2vw, 1.2rem); margin-bottom: 2rem; color: #E2E8F0; }
        
        .swiper-button-next, .swiper-button-prev { color: white; background: rgba(255,255,255,0.1); width: 50px; height: 50px; border-radius: 50%; backdrop-filter: blur(5px); transition: 0.3s; }
        .swiper-button-next:hover, .swiper-button-prev:hover { background: var(--primary-green); }
        
        .swiper-slide-active .anim-title { animation: fadeInUp 0.8s ease forwards; }
        .swiper-slide-active .anim-text { animation: fadeInUp 0.8s ease 0.2s forwards; opacity: 0; }
        .swiper-slide-active .anim-btns { animation: fadeInUp 0.8s ease 0.4s forwards; opacity: 0; }
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

        /* --- Stats Strip --- */
        .stats-strip { background: var(--primary-green); color: white; padding: 40px 0; position: relative; z-index: 10; }
        .stat-item { text-align: center; border-right: 1px solid rgba(255,255,255,0.2); }
        .stat-item:last-child { border-right: none; }
        @media (max-width: 767px) {
            .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 15px; margin-bottom: 15px; }
            .stat-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
        }
        .stat-item h3 { color: white; font-size: 2.5rem; margin-bottom: 5px; }
        .stat-item p { margin: 0; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; }

        /* --- About Section --- */
        .about-image { border-radius: 12px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); position: relative; }
        .about-image img { width: 100%; height: auto; object-fit: cover; transition: transform 0.5s; }
        .about-image:hover img { transform: scale(1.05); }

        /* --- Principal Section --- */
        .principal-section { background: rgba(104, 176, 77, 0.04); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
        .principal-img {     max-height: 360px;width: 100%; max-width: 350px; border-radius: 12px; box-shadow: -15px 15px 0 var(--primary-green); margin: 0 auto; display: block; }
        .quote-icon-large { font-size: 3rem; color: rgba(104, 176, 77, 0.2); margin-bottom: -15px; display: block; }

        /* --- Vision & Mission --- */
        .vm-card { background: white; padding: 40px; border-radius: 12px; height: 100%; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-bottom: 4px solid var(--primary-green); transition: 0.4s; }
        .vm-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
        .vm-icon { width: 60px; height: 60px; background: var(--dark-navy); color: white; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }

        /* --- Why Choose Us --- */
        .feature-card { background: white; padding: 35px 25px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.04); text-align: center; transition: all 0.4s ease; height: 100%; border: 1px solid var(--border-light); }
        .feature-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(104, 176, 77, 0.15); border-color: var(--primary-green); }
        .feature-icon { width: 70px; height: 70px; background: rgba(104, 176, 77, 0.1); color: var(--primary-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 20px; transition: 0.3s; }
        .feature-card:hover .feature-icon { background: var(--primary-green); color: white; }

        /* --- Our Programmes --- */
        .program-card { position: relative; border-radius: 12px; overflow: hidden; height: 350px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); cursor: pointer; }
        .program-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
        .program-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(21, 30, 45, 0.9) 0%, rgba(21, 30, 45, 0) 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; }
        .program-overlay h4 { color: white; margin-bottom: 5px; transform: translateY(10px); transition: 0.3s; }
        .program-overlay p { color: var(--primary-green); font-weight: 600; margin: 0; opacity: 0; transform: translateY(10px); transition: 0.3s; }
        .program-card:hover img { transform: scale(1.1); }
        .program-card:hover .program-overlay h4, .program-card:hover .program-overlay p { transform: translateY(0); opacity: 1; }

        /* --- NEW: Service Image Carousel --- */
        .service-box { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: 0.4s; border: 1px solid var(--border-light); height: 100%; }
        .service-box:hover { transform: translateY(-10px); border-color: var(--primary-green); box-shadow: 0 15px 35px rgba(104, 176, 77, 0.15); }
        .service-img-wrapper { overflow: hidden; height: 220px; width: 100%; }
        .service-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .service-box:hover .service-img-wrapper img { transform: scale(1.1); }
        .service-content { padding: 25px; text-align: center; }
        .services-swiper { padding-bottom: 50px; } /* Room for pagination */

        /* --- Beyond Academics --- */
        .extra-card { text-align: center; background: white; padding: 30px 20px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); transition: 0.3s; }
        .extra-card:hover { transform: translateY(-8px); border-color: var(--primary-orange); box-shadow: 0 15px 30px rgba(255, 138, 0, 0.1); }
        .extra-img { width: 130px; height: 130px; border-radius: 50%; margin: 0 auto 20px; object-fit: cover; border: 3px solid var(--primary-green); padding: 3px; }

        /* --- Achievements --- */
        .achievements-section { background: linear-gradient(rgba(21, 30, 45, 0.85), rgba(21, 30, 45, 0.85)), url('https://images.unsplash.com/photo-1523050335392-9affa7474230?q=80&w=2070'); background-attachment: fixed; background-position: center; background-size: cover; padding: 90px 0; color: white; text-align: center; } 
        .achievements-section .counter-box i { font-size: 2.5rem; background: var(--primary-green); color: white; width: 80px; height: 80px; line-height: 80px; border-radius: 50%; margin-bottom: 15px; display: inline-block; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
        .achievements-section .counter-val { font-size: 3.5rem; font-weight: 900; line-height: 1; margin-bottom: 5px; color: white; }

        /* --- Video Promo Banner --- */
        .video-promo { position: relative; padding: 120px 0; text-align: center; background: url('https://images.unsplash.com/photo-1509062522246-3755977927d7?q=80&w=2000') center/cover; }
        .video-promo::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
        .video-content { position: relative; z-index: 2; color: white; }
        .play-btn { width: 80px; height: 80px; background: var(--primary-orange); color: white; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 2rem; text-decoration: none; position: relative; transition: 0.3s; margin-bottom: 20px; }
        .play-btn:hover { color: white; transform: scale(1.1); }
        .play-btn::after { content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%; border: 2px solid var(--primary-orange); animation: pulse 2s infinite; }
        @keyframes pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }

        /* --- Gallery Grid --- */
        .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
        @media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 576px) { .gallery-grid { grid-template-columns: 1fr; } }
        .gallery-item { border-radius: 10px; overflow: hidden; height: 250px; position: relative; }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s ease; }
        .gallery-item:hover img { transform: scale(1.1) rotate(2deg); }

        /* --- FAQ Accordion --- */
        .accordion-item { border: 1px solid var(--border-light); margin-bottom: 15px; border-radius: 8px !important; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
        .accordion-button { font-weight: 600; padding: 20px; color: var(--text-dark); background: white; }
        .accordion-button:not(.collapsed) { background-color: rgba(104, 176, 77, 0.1); color: var(--primary-green); box-shadow: none; }
        .accordion-button:focus { box-shadow: none; }
        .accordion-body { padding: 20px; color: var(--text-muted); line-height: 1.7; background: white;}

        /* --- Testimonial Swiper --- */
        .testimonial-card { background: white; padding: 40px; border-radius: 12px; border: 1px solid var(--border-light); box-shadow: 0 10px 30px rgba(0,0,0,0.03); margin: 15px; position: relative; transition: 0.3s; height: auto; min-height: 250px;}
        .testimonial-card:hover { transform: translateY(-5px); border-color: var(--primary-green); box-shadow: 0 15px 35px rgba(0,0,0,0.08); }
        .quote-icon-top { color: var(--primary-green); font-size: 2rem; margin-bottom: 15px; opacity: 0.3; }
        .testimonial-swiper { padding-bottom: 50px; }

        /* --- Blog Cards --- */
        .blog-card { border-radius: 12px; overflow: hidden; background: white; border: 1px solid var(--border-light); transition: 0.3s; }
        .blog-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
        .blog-img { width: 100%; height: 220px; object-fit: cover; }
        .blog-date { background: var(--primary-orange); color: white; display: inline-block; padding: 8px 15px; font-weight: 700; font-size: 0.85rem; border-radius: 4px; margin-top: -20px; position: relative; margin-left: 20px; z-index: 2; }
        .blog-content { padding: 25px; }

        /* --- Admission Form Section --- */
        .admission-section { background: var(--dark-navy); color: white; }
        .form-control, .form-select { border-radius: 8px; padding: 12px 15px; border: 1px solid var(--border-light); margin-bottom: 15px; }
        .form-control:focus, .form-select:focus { border-color: var(--primary-green); box-shadow: 0 0 0 0.2rem rgba(104, 176, 77, 0.25); }

        /* Footer */
        footer { padding: 70px 0 30px; background: var(--dark-navy); color: #94A3B8; border-top: 1px solid rgba(255,255,255,0.05);}
        footer h5 { color: white; margin-bottom: 25px; font-weight: 700; }
        .footer-links a { color: #94A3B8; text-decoration: none; display: block; margin-bottom: 12px; transition: 0.3s; }
        .footer-links a:hover { color: var(--primary-green); transform: translateX(5px); }

        /* =========================================
           FLOATING ACTION BUTTONS (NEW ENHANCEMENTS)
           ========================================= */
        
        /* 1. Sticky Apply (Right) */
        .sticky-apply { position: fixed; right: 0; top: 50%; transform: translateY(-50%); background: var(--primary-orange); color: white; padding: 15px 10px; border-radius: 8px 0 0 8px; font-weight: bold; writing-mode: vertical-rl; text-orientation: mixed; text-decoration: none; z-index: 1000; transition: 0.3s; box-shadow: -2px 0 10px rgba(0,0,0,0.2); letter-spacing: 2px;}
        .sticky-apply:hover { background: var(--primary-orange-hover); padding-right: 15px; color: white;}

        /* 2. WhatsApp Floating Button (Bottom Right) */
        .whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 35px; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4); z-index: 1000; transition: 0.3s; text-decoration: none; animation: floatBounce 3s infinite;}
        .whatsapp-float:hover { transform: scale(1.1); color: white; background: #20b858;}
        @keyframes floatBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

      

        /* 4. Left Social Media Bar */
        .left-social-bar { position: fixed; left: 0; top: 50%; transform: translateY(-50%); z-index: 1000; display: flex; flex-direction: column; box-shadow: 2px 0 15px rgba(0,0,0,0.15); border-radius: 0 8px 8px 0; overflow: hidden; }
        .left-social-bar a { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; transition: 0.3s; text-decoration: none; position: relative;}
        .left-social-bar a.fb { background: #3b5998; }
        .left-social-bar a.ig { background: #E1306C; }
        .left-social-bar a.yt { background: #ff0000; }
        .left-social-bar a.tw { background: #1DA1F2; }
        .left-social-bar a:hover { width: 55px; background: var(--dark-navy); } 

        
  
/* DARK GRADIENT OVERLAY */
/* .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(21,30,45,0.3));
    z-index: 1;
} */

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
}

/* BADGE */
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* GRADIENT TEXT */
.gradient-text {
    background: linear-gradient(90deg, #68B04D, #FF8A00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* HERO TITLE */
.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    font-weight: 900;
}

/* BUTTON GROUP */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* GLOW BUTTON */
.glow-btn {
    box-shadow: 0 0 20px rgba(255,138,0,0.4);
    transition: 0.3s;
}
.glow-btn:hover {
    box-shadow: 0 0 30px rgba(255,138,0,0.7);
    transform: translateY(-3px) scale(1.05);
}

/* SWIPER NAV IMPROVED */
.swiper-button-next,
.swiper-button-prev {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

/* PAGINATION STYLE */
.swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
}
.swiper-pagination-bullet-active {
    background: var(--primary-green);
}






/* GLASS NAVBAR */
.header-wrapper {
    position: fixed;
    width: 100%;
    z-index: 999;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.08);
    transition: 0.4s ease;
}

.header-wrapper.navbar-scrolled {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(16px);
}

 LOGO 
.logo-circle {
    background: linear-gradient(135deg, #68B04D, #FF8A00);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.navbar-brand h4 {
    color: white;
    font-weight: 800;
}
.navbar-brand span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

/* NAV LINKS ANIMATION */
.nav-link {
    position: relative;
    overflow: hidden;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-green);
    transition: 0.3s;
}
.nav-link:hover::after {
    width: 100%;
}

/* CTA BUTTONS */
.nav-cta {
    padding: 10px 22px;
    border-radius: 30px;
}

/* SOCIAL BAR UPGRADE */
.left-social-bar a {
    position: relative;
    backdrop-filter: blur(10px);
}
.left-social-bar a span {
    position: absolute;
    left: 50px;
    opacity: 0;
    background: var(--dark-navy);
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
    transition: 0.3s;
}
.left-social-bar a:hover span {
    opacity: 1;
    left: 60px;
}

/* WHATSAPP GLOW */
.whatsapp-float {
    animation: pulseGlow 2s infinite;
}
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}



/* STICKY APPLY MODERN */
.sticky-apply {
    background: linear-gradient(135deg, #FF8A00, #ffb347);
    box-shadow: -5px 5px 20px rgba(0,0,0,0.2);
    letter-spacing: 2px;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 135px);
    right: auto;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 135px);
    left: auto;
}


/* LOGO BASE */
.navbar-brand img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* TABLET */
@media (max-width: 992px) {
    .navbar-brand img {
        height: 50px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .navbar-brand img {
        height: 42px;
    }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 400px) {
    .navbar-brand img {
        height: 36px;
    }
}

/* SCROLLED NAVBAR (SHRINK EFFECT) */
.header-wrapper.navbar-scrolled .navbar-brand img {
    height: 60px;
}




/* BACKGROUND UPGRADE */
.stats-strip {
  
    background: #202C45;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

/* SUBTLE GLOW BACKGROUND */
.stats-strip::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    filter: blur(120px);
    top: -100px;
    left: -100px;
}

/* CARD STYLE */
.stat-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 10px 15px;
    text-align: center;
    color: white;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.15);
}

/* HOVER EFFECT */
.stat-card:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(255,255,255,0.15);
}

/* ICON */
.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

/* NUMBER */
.stat-card h3 {
    font-size: 2.3rem;
    font-weight: 900;
    margin-bottom: 5px;
     color: #FF8A00;
}

/* LABEL */
.stat-card p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* MOBILE */
@media (max-width: 576px) {
    .stat-card {
        padding: 25px 15px;
    }
    .stat-card h3 {
        font-size: 2rem;
    }
}



/* SECTION BG */
.about-section {
    position: relative;
    background: #fff;
}

/* IMAGE WRAPPER */
.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.about-image-wrapper img {
    width: 100%;
    transition: 0.6s ease;
}
.about-image-wrapper:hover img {
    transform: scale(1.05);
}

/* FLOATING CARD */
.about-floating-card {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-floating-card h4 {
    font-size: 2rem;
    color: var( --dark-navy);
   
    margin: 0;
}
.about-floating-card p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* TAG */
.about-tag {
    display: inline-block;
    background: rgba(255,138,0,0.1);
    color: var(--primary-orange);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* TITLE */
.about-title {
    font-size: clamp(2rem, 4vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 20px;
}

/* GRADIENT TEXT */
.gradient-text {
    /* background: linear-gradient(90deg, #68B04D, #FF8A00); */
    background: #68B04D;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT */
.about-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* FEATURES */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    background: #FF8A00;
    color: white;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* BUTTON ENHANCE */
.glow-btn {
    box-shadow: 0 0 15px rgba(104,176,77,0.4);
}
.glow-btn:hover {
    box-shadow: 0 0 25px rgba(104,176,77,0.7);
    transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
    .about-floating-card {
       
        margin-top: 15px;
    }
}



/* SECTION BG */
.principal-section {
    background: linear-gradient(135deg, rgba(104,176,77,0.05), rgba(255,138,0,0.05));
}

/* IMAGE WRAPPER */
.principal-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.principal-image-wrapper img {
    width: 100%;
    transition: 0.5s;
}
.principal-image-wrapper:hover img {
    transform: scale(1.05);
}

/* BADGE */
.principal-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--primary-green);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* CARD */
.principal-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
}

/* QUOTE ICON */
.principal-card::before {
    content: "“";
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    color: rgba(104,176,77,0.15);
}

/* TAG */
.principal-tag {
    display: inline-block;
    background: rgba(255,138,0,0.1);
    color: var(--primary-orange);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

/* TITLE */
.principal-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 15px;
}



/* QUOTE */
.principal-quote {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

/* INFO */
.principal-info h5 {
    font-weight: 700;
    margin-bottom: 5px;
}
.principal-info p {
    color: var(--primary-green);
    font-weight: 600;
    margin: 0;
}

/* MOBILE */
@media (max-width: 768px) {
    .principal-card {
        padding: 25px;
    }
}






/* SECTION BACKGROUND (DARK PREMIUM) */
.testimonial-section {
    background: linear-gradient(135deg, #0f172a, #020617);
}

/* CARD - DARK GLASS */
.testimonial-card {
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    transition: 0.4s;
    height: 100%;
    position: relative;
}

/* HOVER EFFECT */
.testimonial-card:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: var(--primary-green);
    /* box-shadow: 0 20px 60px rgba(104,176,77,0.2); */
}

/* QUOTE ICON */
.quote-icon {
    font-size: 2.2rem;
    color: var(--primary-orange);
    opacity: 0.9;
    margin-bottom: 10px;
}

/* TEXT */
.testimonial-card p {
    color: #cbd5e1;
    font-style: italic;
    line-height: 1.7;
}

/* STARS */
.stars {
    color: #fbbf24;
    margin: 12px 0;
}

/* USER */
.user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-green);
}

/* NAME */
.user h6 {
    margin: 0;
    font-weight: 700;
    color: #fff;
}

/* ROLE */
.user span {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* OPTIONAL GLOW LINE */
.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(120deg, transparent, rgba(104,176,77,0.15), transparent);
    opacity: 0;
    transition: 0.4s;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.faq-heading h2{
  color: var(--primary-orange);
}









/* PAGINATION */
.swiper-pagination-bullet {
    background: #ccc;
}
.swiper-pagination-bullet-active {
    background: var(--primary-green);
}


.testimonial-swiper {
    overflow: hidden;
}

.testimonial-swiper .swiper-wrapper {
    align-items: stretch;
}

.testimonial-swiper .swiper-slide {
    height: auto;
}



/* BACKGROUND */
.achievements-section {
    background: linear-gradient(rgba(21,30,45,0.9), rgba(21,30,45,0.9)),
                url('https://images.unsplash.com/photo-1523050335392-9affa7474230?q=80&w=2070');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

/* TAG */
.section-tag-light {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

/* CARD */
.milestone-card {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.08);
}

/* ICON */
.milestone-card .icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 25px rgba(255,138,0,0.4);
}

/* NUMBER */
.milestone-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

/* TEXT */
.milestone-card p {
    margin: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #cbd5e1;
    letter-spacing: 1px;
}

/* HOVER */
.milestone-card:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(255,255,255,0.08);
    border-color: var(--primary-orange);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .milestone-card {
        padding: 25px 15px;
    }
}



/* FOOTER */
.footer-section {
    background: #0f172a;
    color: #cbd5e1;
    padding: 70px 0 20px;
}

/* LOGO */
.footer-logo img {
    height: 120px;
}

/* TEXT */
.footer-text {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #94a3b8;
}

/* HEADINGS */
.footer-section h5 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

/* SOCIAL */
.footer-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    color: white;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

/* CONTACT */
.footer-section p i {
    color: var(--primary-green);
    margin-right: 8px;
}

/* NEWSLETTER */
.footer-newsletter {
    display: flex;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.footer-newsletter input {
    border: none;
    padding: 10px;
    flex: 1;
    background: transparent;
    color: white;
}

.footer-newsletter input:focus {
    outline: none;
}

.footer-newsletter button {
    background: var(--primary-orange);
    border: none;
    color: white;
    padding: 0 15px;
    transition: 0.3s;
}

.footer-newsletter button:hover {
    background: var(--primary-green);
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 15px;
    font-size: 0.85rem;
    color: #94a3b8;
}



/* DARK BACKGROUND */
.faq-dark {
    background: linear-gradient(135deg, #0f172a, #020617);
    color: #e2e8f0;
}

/* LEFT SIDE */
.faq-tag {
    color: var(--primary-orange);
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.85rem;
}

.faq-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.faq-desc {
    color: #94a3b8;
    margin-bottom: 25px;
}

/* BUTTON */
.faq-btn {
    background: linear-gradient(45deg, var(--primary-green), var(--primary-orange));
    padding: 12px 28px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.faq-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* ACCORDION */
.faq-accordion .accordion-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* BUTTON */
.faq-accordion .accordion-button {
    background: transparent;
    color: #fff;
    font-weight: 600;
    padding: 18px 20px;
    box-shadow: none;
}

/* ICON CUSTOM */
.faq-accordion .accordion-button::after {
    filter: invert(1);
}

/* ACTIVE */
.faq-accordion .accordion-button:not(.collapsed) {

    background: rgba(104,176,77,0.08);
}

/* BODY */
.faq-accordion .accordion-body {
    color: #54575a;
    line-height: 1.6;
    padding: 20px;
}

.fa-quote-left-alt:before, .fa-quote-left:before {
    content: "\f10d";

}



/* SECTION BACKGROUND */
.why-light {
    background: linear-gradient(135deg, #f8fafc, #eef3f7);
}

/* CARD */
.feature-card-light {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s;
    height: 100%;
    border: 1px solid #eef2f7;
}

/* HOVER */
.feature-card-light:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: var(--primary-green);
}

/* ICON */
.feature-icon-light {
    width: 70px;
    height: 70px;
    background: rgba(104,176,77,0.1);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: 0.3s;
}

/* ICON HOVER */
.feature-card-light:hover .feature-icon-light {
    background: var(--primary-green);
    color: white;
    box-shadow: 0 10px 25px rgba(104,176,77,0.3);
}

/* TEXT */
.feature-card-light h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-navy);
}

.feature-card-light p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* OPTIONAL SOFT GLOW EFFECT */
.feature-card-light::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(120deg, transparent, rgba(104,176,77,0.08), transparent);
    opacity: 0;
    transition: 0.4s;
}

.feature-card-light:hover::after {
    opacity: 1;
}


/* NAVBAR BASE */
.custom-navbar {
    background: transparent;
    transition: all 0.4s ease;
    padding: 15px 0;
    z-index: 999;
}

 ON SCROLL (solid bg) 
.custom-navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
}

/* LOGO */
.navbar-brand img {
    height: 65px;
    transition: 0.3s;
}

/* LINKS */
.navbar .nav-link {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 8px;
    transition: 0.3s;
}

/* HOVER */
.navbar .nav-link:hover,
.navbar .active-link {
    color: #fbbf24;
}

/* DROPDOWN */
.dropdown-menu {
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 0px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* DROPDOWN ITEM */
.dropdown-item {
    padding: 10px 18px;
    font-size: 0.85rem;
    transition: 0.3s;
}

.dropdown-item:hover {
    background: #f1f5f9;
    color: #f59e0b;
}

/* DESKTOP HOVER DROPDOWN */
@media(min-width: 992px){
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* CTA BUTTON */
.btn-tour {
    background: linear-gradient(135deg,#f59e0b,#ea580c);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}

.btn-tour:hover {
    opacity: 0.9;
}

/* MOBILE FIX */
@media(max-width: 991px){

    .custom-navbar {
        background: #0f172a;
    }

    .navbar-collapse {
        background: #0f172a;
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
    }

    .nav-link {
        padding: 10px 0;
        text-align: center;
    }

    .dropdown-menu {
        background: transparent;
        box-shadow: none;
        text-align: center;
    }

    .dropdown-item {
        color: #ddd;
    }

    .dropdown-item:hover {
        color: #fbbf24;
        background: none;
    }
}

@media (min-width: 1200px) {
    .h4, h4 {
        font-size: 1.2rem;
    }
}
/* NAVBAR DEFAULT (TRANSPARENT) */
.custom-navbar {
    background: transparent;
    transition: all 0.4s ease;
    padding: 15px 0;
}

/* ON SCROLL → WHITE BACKGROUND */
.custom-navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* REMOVE UNDERLINE COMPLETELY */
.navbar .nav-link {
    text-decoration: none !important;
    border: none !important;
    position: relative;
}

/* REMOVE ANY HOVER LINE */
.navbar .nav-link:hover {
    text-decoration: none !important;
}

/* REMOVE ::after EFFECT */
.navbar .nav-link::after {
    display: none !important;
    content: none !important;
}

/* TEXT COLOR DEFAULT (ON HERO - WHITE) */
.custom-navbar .nav-link {
    color: #ffffff;
}

/* TEXT COLOR AFTER SCROLL (ON WHITE BG) */
.custom-navbar.scrolled .nav-link {
    color: #1f2937;
}

/* HOVER COLOR */
.navbar .nav-link:hover {
    color: #f59e0b;
}

/* ACTIVE LINK */
.navbar .active-link {
    color: #f59e0b;
}


.admission-section {
    position: relative;
    background: url('img/291378.jpg') center/cover no-repeat;
    padding: 100px 0;
    overflow: hidden;
}

/* DARK OVERLAY for readability */
.admission-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75); /* adjust darkness here */
    
    z-index: 1;
}

/* Keep content above overlay */
.admission-section .container {
    position: relative;
    z-index: 2;
}


.admission-section form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
}

@media (max-width: 768px) {
    .admission-section {
        padding: 70px 0;
        text-align: center;
    }
}
.admission-section form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
}
.admission-section {
    animation: zoomBg 20s ease-in-out infinite alternate;
}

@keyframes zoomBg {
    from { background-size: 100%; }
    to { background-size: 110%; }
}


/* FOOTER CONTACT WRAPPER */
.footer-contact1 {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-family: Arial, sans-serif;
}

/* EACH LINE */
.footer-contact1 p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 15px;
    color: #cbd5e1; /* soft light gray */
    line-height: 1.6;
}

/* ICON STYLE */
.footer-contact1 i {
    color: #22c55e; /* green accent */
    font-size: 16px;
    min-width: 20px;
}

/* LINKS */
.footer-contact1 a {
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
    word-break: break-word;
}

/* LINK HOVER EFFECT */
.footer-contact1 a:hover {
    color: #22c55e;
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .footer-contact1 p {
        font-size: 14px;
        gap: 10px;
    }

    .footer-contact1 i {
        font-size: 15px;
    }

   .swiper-button-next,  .swiper-button-prev {
    display: none;
}

}




.view-more-btn {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #FF8A00;
    text-decoration: none;
    position: relative;
    transition: 0.3s ease;
}

.view-more-btn::after {
    content: " →";
    transition: 0.3s;
}

.view-more-btn:hover {
    color: #151E2D; 
    transform: translateX(3px);
}


.custom-navbar {
    background: transparent;
    transition: all 0.3s ease;
    padding: 15px 0;
}

/* ON SCROLL */
.header-wrapper.navbar-scrolled .custom-navbar {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* OPTIONAL: CHANGE LINK COLOR AFTER SCROLL */
.header-wrapper.navbar-scrolled .nav-link {
    color: #111 !important;
}

.header-wrapper.navbar-scrolled .navbar-toggler i {
    color: #111;
}



/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 35px;
    width: 40px;
    height: 40px;
    background: var(--dark-navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    text-decoration: none;
}

/* SHOW BUTTON */
.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

/* HOVER */
.back-to-top:hover {
    background: var(--primary-green);
    transform: translateY(-5px);
}

/* SVG RING */
.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.progress-ring circle {
    fill: none;
    stroke: var(--primary-green);
    stroke-width: 3;
    stroke-dasharray: 163;
    stroke-dashoffset: 163;
    transition: stroke-dashoffset 0.2s linear;
}


@media (max-width: 600px) {
    .header-wrapper.navbar-scrolled .nav-link {
        color: white !important;
    }
    .admission-section {
    position: relative;
    background: url(img/291378.jpg) center / cover no-repeat;
    padding: 100px 0 !important;
    overflow: hidden;
    /* height: 473px; */
    background-size: cover;
    background-position: 10%;
}
.admission-section {
    animation: none;
}


.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}
.navbar-brand img {
    height: 60px;
    transition: 0.3s;
}
.phone-number{
        justify-content: center;
}
}



.footer-bottom  p a{
    color:#FF8A00;
}

/* =========================================================
   INNER PAGES - New Millennium Public School
   Reuses existing theme variables and animations.
   ========================================================= */
.inner-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    padding: 150px 0 90px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15,23,42,.88), rgba(15,23,42,.62));
    z-index: 1;
}
.inner-hero::after {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    right: -160px;
    bottom: -220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(104,176,77,.35), transparent 65%);
    z-index: 1;
}
.inner-hero .container { position: relative; z-index: 2; }
.inner-hero h1 {
    color: #fff;
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 1.05;
    margin-bottom: 16px;
}
.inner-hero p {
    max-width: 720px;
    color: #dbeafe;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0;
}
.inner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.16);
    color: #fff;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
    backdrop-filter: blur(12px);
}
.breadcrumb-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: rgba(255,255,255,.72);
    margin-top: 18px;
    font-size: .9rem;
}
.breadcrumb-mini a { color: #fff; font-weight: 700; }
.breadcrumb-mini i { color: var(--primary-orange); }
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 50px;
    background: rgba(255,138,0,.1);
    color: var(--primary-orange);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.lead-text { color: var(--text-muted); line-height: 1.85; font-size: 1.02rem; }
.inner-card,
.icon-card,
.detail-card,
.timeline-card,
.career-card,
.contact-card,
.subject-card,
.staff-card,
.facility-detail-card,
.activity-detail-card,
.gallery-hub-card,
.event-card,
.video-card,
.photo-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(15,23,42,.06);
    transition: .35s ease;
    height: 100%;
    overflow: hidden;
}
.inner-card:hover,
.icon-card:hover,
.detail-card:hover,
.timeline-card:hover,
.career-card:hover,
.contact-card:hover,
.subject-card:hover,
.staff-card:hover,
.facility-detail-card:hover,
.activity-detail-card:hover,
.gallery-hub-card:hover,
.event-card:hover,
.video-card:hover,
.photo-card:hover {
    transform: translateY(-8px);
    border-color: rgba(104,176,77,.48);
    box-shadow: 0 20px 55px rgba(15,23,42,.11);
}
.inner-card { padding: 32px; }
.icon-card { padding: 30px; text-align: center; }
.icon-card .icon,
.detail-icon,
.contact-icon,
.subject-icon,
.timeline-number,
.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-orange));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    margin-bottom: 18px;
    box-shadow: 0 12px 28px rgba(104,176,77,.22);
}
.icon-card p,
.detail-card p,
.subject-card p,
.facility-detail-card p,
.activity-detail-card p,
.event-card p,
.video-card p { color: var(--text-muted); line-height: 1.7; }
.split-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(15,23,42,.14);
    position: relative;
}
.split-image img { width: 100%; min-height: 360px; object-fit: cover; transition: .7s ease; }
.split-image:hover img { transform: scale(1.06); }
.floating-note {
    position: absolute;
    left: 22px;
    bottom: 22px;
    background: rgba(255,255,255,.95);
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 14px 35px rgba(15,23,42,.14);
    max-width: 260px;
}
.floating-note h4 { margin: 0 0 4px; color: var(--primary-orange); }
.floating-note p { margin: 0; color: var(--text-muted); font-size: .9rem; }
.check-list { list-style: none; padding: 0; margin: 22px 0 0; }
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 13px;
    color: var(--text-muted);
    line-height: 1.65;
}
.check-list li i {
    color: #fff;
    background: var(--primary-green);
    min-width: 23px;
    height: 23px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    margin-top: 2px;
}
.dark-cta {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}
.dark-cta::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -140px;
    top: -160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,138,0,.3), transparent 68%);
}
.dark-cta h2,
.dark-cta h3,
.dark-cta h4 { color: #fff; }
.dark-cta p { color: #cbd5e1; }
.dark-cta > * { position: relative; z-index: 1; }
.timeline-wrap { position: relative; }
.timeline-card { padding: 28px; position: relative; }
.timeline-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 900;
}
.timeline-card h5 { margin-bottom: 10px; }
.timeline-card p { color: var(--text-muted); margin-bottom: 0; line-height: 1.7; }
.grade-band {
    background: var(--light-bg);
    border-radius: 18px;
    padding: 26px;
    border: 1px solid var(--border-light);
    height: 100%;
}
.subject-card { padding: 26px; }
.subject-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.subject-pill {
    display: inline-flex;
    padding: 8px 13px;
    background: rgba(104,176,77,.09);
    color: var(--dark-navy);
    border: 1px solid rgba(104,176,77,.15);
    border-radius: 50px;
    font-size: .86rem;
    font-weight: 600;
}
.staff-card img,
.facility-detail-card img,
.activity-detail-card img,
.gallery-hub-card img,
.event-card img,
.photo-card img,
.video-card img {
    width: 100%;
    height: 245px;
    object-fit: cover;
    transition: .55s ease;
}
.staff-card:hover img,
.facility-detail-card:hover img,
.activity-detail-card:hover img,
.gallery-hub-card:hover img,
.event-card:hover img,
.photo-card:hover img,
.video-card:hover img { transform: scale(1.06); }
.staff-card .content,
.facility-detail-card .content,
.activity-detail-card .content,
.gallery-hub-card .content,
.event-card .content,
.photo-card .content,
.video-card .content { padding: 24px; }
.staff-card .role {
    display: inline-block;
    color: var(--primary-orange);
    font-size: .82rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .8px;
}
.staff-meta { color: var(--text-muted); font-size: .9rem; margin-bottom: 0; }
.facility-tags,
.event-meta,
.photo-meta { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0; }
.tag-soft {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 30px;
    background: rgba(255,138,0,.1);
    color: var(--primary-orange);
    font-size: .78rem;
    font-weight: 700;
}
.table-modern {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(15,23,42,.06);
    border: 1px solid var(--border-light);
}
.table-modern table { margin-bottom: 0; }
.table-modern th {
    background: #0f172a !important;
    color: #fff !important;
    padding: 16px !important;
}
.table-modern td { padding: 16px !important; color: var(--text-muted); vertical-align: middle; }
.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}
.filter-btn {
    border: 1px solid var(--border-light);
    background: #fff;
    color: var(--dark-navy);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 700;
    transition: .3s ease;
}
.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-green);
    color: #fff;
    border-color: var(--primary-green);
}
.photo-card { display: block; color: inherit; text-decoration: none; }
.photo-card .content { padding: 18px 20px; }
.photo-card h5 { margin-bottom: 4px; }
.video-thumb { position: relative; display: block; overflow: hidden; }
.video-thumb::after {
    content: "\f04b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--primary-orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,.25);
}
.event-date-box {
    width: 74px;
    min-width: 74px;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 22px rgba(15,23,42,.1);
}
.event-date-box span { display: block; background: var(--primary-orange); color: #fff; padding: 7px; font-weight: 800; font-size: .82rem; }
.event-date-box strong { display: block; background: #fff; color: var(--dark-navy); padding: 10px 0; font-size: 1.6rem; }
.event-list-item {
    display: flex;
    gap: 18px;
    padding: 24px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 28px rgba(15,23,42,.05);
    height: 100%;
    transition: .3s ease;
}
.event-list-item:hover { transform: translateY(-6px); border-color: var(--primary-green); }
.event-list-item p { color: var(--text-muted); margin-bottom: 0; }
.career-card { padding: 28px; }
.career-card .career-type {
    color: var(--primary-green);
    font-size: .85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 10px;
}
.career-card ul { color: var(--text-muted); padding-left: 18px; line-height: 1.8; }
.contact-card { padding: 28px; }
.contact-card a { color: var(--text-dark); font-weight: 700; }
.contact-form-wrap {
    background: #fff;
    border-radius: 22px;
    padding: 34px;
    border: 1px solid var(--border-light);
    box-shadow: 0 15px 40px rgba(15,23,42,.08);
}
.map-box {
    border-radius: 22px;
    overflow: hidden;
    min-height: 380px;
    box-shadow: 0 15px 40px rgba(15,23,42,.08);
    border: 1px solid var(--border-light);
}
.map-box iframe { width: 100%; height: 420px; border: 0; display: block; }
.testimonial-page-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 12px 35px rgba(15,23,42,.06);
    height: 100%;
    transition: .3s ease;
}
.testimonial-page-card:hover { transform: translateY(-8px); border-color: var(--primary-green); }
.testimonial-page-card .stars { color: #fbbf24; margin-bottom: 14px; }
.testimonial-page-card p { color: var(--text-muted); line-height: 1.8; font-style: italic; }
.parent-profile { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.parent-profile img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary-green); }
.parent-profile h6 { margin: 0; }
.parent-profile span { color: var(--text-muted); font-size: .85rem; }
.stats-mini {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}
.stats-mini .mini-box {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 28px rgba(15,23,42,.05);
}
.stats-mini .mini-box h3 { color: var(--primary-orange); margin-bottom: 4px; }
.stats-mini .mini-box p { color: var(--text-muted); margin: 0; font-weight: 700; }
.sidebar-box {
    background: #fff;
    border-radius: 18px;
    padding: 26px;
    border: 1px solid var(--border-light);
    box-shadow: 0 12px 35px rgba(15,23,42,.06);
    margin-bottom: 22px;
}
.sidebar-box h5 { margin-bottom: 16px; }
.sidebar-links { list-style: none; padding: 0; margin: 0; }
.sidebar-links li a {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-muted);
    font-weight: 700;
}
.sidebar-links li:last-child a { border-bottom: 0; }
.sidebar-links li a:hover { color: var(--primary-green); }
.detail-banner-img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
    min-height: 380px;
    box-shadow: 0 16px 42px rgba(15,23,42,.1);
}
.content-prose p { color: var(--text-muted); line-height: 1.85; }
.content-prose h3 { margin-top: 26px; }
.content-prose ul { color: var(--text-muted); line-height: 1.9; }
@media (max-width: 991px) {
    .inner-hero { min-height: 360px; padding: 130px 0 70px; }
    .dark-cta { padding: 34px; }
    .stats-mini { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 576px) {
    .inner-hero { padding: 120px 0 55px; }
    .inner-card, .icon-card, .detail-card, .contact-form-wrap, .dark-cta { padding: 24px; }
    .event-list-item { flex-direction: column; }
    .stats-mini { grid-template-columns: 1fr; }
    .floating-note { position: static; margin: 15px; }
    .filter-buttons { justify-content: flex-start; }
}


/* =========================================================
   PREMIUM INNER PAGES V2 - ENHANCED DESIGN AND ANIMATION
   ========================================================= */
:root {
    --nmps-radius-xl: 28px;
    --nmps-shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.10);
    --nmps-shadow-hover: 0 28px 70px rgba(15, 23, 42, 0.16);
}
.premium-hero {
    min-height: 450px;
    padding: 100px 0 50px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    isolation: isolate;
}
.premium-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 25%, rgba(255, 138, 0, .32), transparent 24%),
        radial-gradient(circle at 78% 18%, rgba(104, 176, 77, .32), transparent 26%),
        linear-gradient(120deg, rgba(2, 6, 23, .86), rgba(15, 23, 42, .66));
    z-index: -2;
}
.premium-hero::after {
    content: "";
    position: absolute;
    inset: auto -12% -35% -12%;
    height: 50%;
    background: #fff;
    transform: skewY(-3deg);
    z-index: -1;
    opacity: .08;
}
.premium-hero .container { position: relative; z-index: 2; max-width: 980px; }
.premium-hero h1 {
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4.9rem);
    line-height: 1.05;
    margin: 16px 0 18px;
    text-shadow: 0 18px 46px rgba(0,0,0,.35);
}
.premium-hero p {
    color: rgba(255,255,255,.84);
    font-size: clamp(1rem, 2vw, 1.22rem);
    max-width: 760px;
}
.hero-shape {
    position: absolute;
    border-radius: 999px;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(10px);
    animation: nmpsFloat 8s ease-in-out infinite;
    z-index: 1;
}
.hero-shape-one { width: 130px; height: 130px; right: 12%; top: 26%; }
.hero-shape-two { width: 74px; height: 74px; left: 9%; bottom: 20%; animation-delay: 1.2s; }
@keyframes nmpsFloat { 0%, 100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-22px,0); } }
.inner-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: 0 14px 34px rgba(0,0,0,.14);
}
.breadcrumb-mini { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 26px; color: rgba(255,255,255,.72); }
.breadcrumb-mini a { color: #fff; font-weight: 800; }
.breadcrumb-mini i { color: var(--primary-orange); font-size: .72rem; }
.page-stats-wrap { margin-top: -46px; position: relative; z-index: 5; padding-bottom: 24px; }
.page-stat-card {
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(226,232,240,.9);
    border-radius: 22px;
    box-shadow: var(--nmps-shadow-soft);
    padding: 22px 18px;
    text-align: center;
    height: 100%;
    transition: .35s ease;
    backdrop-filter: blur(12px);
}
.page-stat-card:hover { transform: translateY(-8px); box-shadow: var(--nmps-shadow-hover); }
.page-stat-card i {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-orange));
    color: #fff;
    margin-bottom: 12px;
    box-shadow: 0 12px 28px rgba(104,176,77,.25);
}
.page-stat-card h3 { color: var(--dark-navy); margin: 0; font-size: 1.95rem; }
.page-stat-card p { color: var(--text-muted); margin: 4px 0 0; font-weight: 800; font-size: .84rem; text-transform: uppercase; letter-spacing: .7px; }
.premium-title .section-eyebrow,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px;
    border-radius: 999px;
    color: var(--primary-orange);
    background: rgba(255,138,0,.10);
    font-weight: 900;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    margin-bottom: 12px;
}
.lead-text { color: var(--text-muted); line-height: 1.85; font-size: 1.04rem; }
.mosaic-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    grid-template-rows: 160px 160px 160px;
    gap: 16px;
    position: relative;
}
.mosaic-grid::before {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(104,176,77,.12), rgba(255,138,0,.12));
    z-index: -1;
}
.mosaic-item { border-radius: 24px; overflow: hidden; box-shadow: var(--nmps-shadow-soft); position: relative; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: .7s ease; }
.mosaic-item:hover img { transform: scale(1.08) rotate(1deg); }
.mosaic-item.item-1 { grid-row: span 2; }
.mosaic-item.item-4 { grid-column: span 2; }
.story-highlight {
    display: flex;
    gap: 16px;
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(104,176,77,.10), rgba(255,138,0,.10));
    border: 1px solid rgba(104,176,77,.16);
    margin: 24px 0;
}
.story-highlight i { color: var(--primary-orange); font-size: 1.8rem; }
.story-highlight p { color: var(--dark-navy); margin: 0; font-weight: 700; line-height: 1.7; }
.two-column-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px 18px; }
.premium-card,
.image-feature-card,
.process-card,
.document-panel,
.staff-premium-card,
.event-premium-card,
.video-premium-card,
.visit-panel,
.premium-form {
    border-radius: 24px;
    border: 1px solid var(--border-light);
    background: #fff;
    box-shadow: var(--nmps-shadow-soft);
    transition: .35s ease;
}
.premium-card {
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.premium-card::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -65px;
    top: -65px;
    border-radius: 50%;
    background: rgba(104,176,77,.10);
    transition: .35s ease;
}
.premium-card:hover,
.image-feature-card:hover,
.process-card:hover,
.staff-premium-card:hover,
.event-premium-card:hover,
.video-premium-card:hover { transform: translateY(-9px); box-shadow: var(--nmps-shadow-hover); border-color: rgba(104,176,77,.38); }
.premium-card:hover::before { transform: scale(1.5); background: rgba(255,138,0,.13); }
.premium-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-orange));
    font-size: 1.35rem;
    margin-bottom: 18px;
    box-shadow: 0 16px 28px rgba(104,176,77,.25);
}
.premium-card h4 { margin-bottom: 10px; }
.premium-card p { color: var(--text-muted); line-height: 1.75; margin: 0; }
.image-feature-card { display: block; overflow: hidden; height: 100%; color: inherit; text-decoration: none; }
.image-feature-media { height: 245px; overflow: hidden; }
.image-feature-media img { width: 100%; height: 100%; object-fit: cover; transition: .65s ease; }
.image-feature-card:hover img { transform: scale(1.08); }
.image-feature-body { padding: 24px; }
.image-feature-body h4 { margin-bottom: 9px; }
.image-feature-body p { color: var(--text-muted); line-height: 1.7; min-height: 54px; }
.image-feature-body span { color: var(--primary-orange); font-weight: 900; }
.mini-info {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 10px 24px rgba(15,23,42,.05);
    font-weight: 800;
    color: var(--dark-navy);
}
.mini-info i { color: var(--primary-green); }
.process-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 18px; }
.process-grid-four { grid-template-columns: repeat(4, minmax(0,1fr)); }
.process-card { padding: 26px; position: relative; overflow: hidden; }
.process-card span {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--dark-navy);
    color: #fff;
    font-weight: 900;
    margin-bottom: 20px;
}
.process-card h4 { margin-bottom: 8px; }
.process-card p { color: var(--text-muted); margin: 0; line-height: 1.7; }
.timeline-pro { display: grid; gap: 16px; }
.timeline-step {
    display: flex;
    gap: 16px;
    padding: 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 26px rgba(15,23,42,.05);
}
.timeline-step span {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-orange);
    color: #fff;
    font-weight: 900;
}
.timeline-step p { color: var(--text-muted); margin: 0; line-height: 1.65; }
.document-panel { padding: 34px; background: linear-gradient(135deg, #fff, #f8fafc); }
.contact-mini-list { display: grid; gap: 12px; margin-top: 20px; }
.contact-mini-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(15,23,42,.05);
}
.contact-mini-list i { color: var(--primary-green); }
.premium-form { padding: 34px; }
.premium-form .form-control,
.premium-form .form-select { margin-bottom: 16px; min-height: 50px; }
.mini-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 18px;
}
.mini-gallery-item,
.photo-premium-card {
    display: block;
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    height: 245px;
    color: #fff;
    box-shadow: var(--nmps-shadow-soft);
    background: var(--dark-navy);
}
.mini-gallery-item::before,
.photo-premium-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,.88), rgba(15,23,42,.08) 58%);
    z-index: 1;
}
.mini-gallery-item img,
.photo-premium-card img { width: 100%; height: 100%; object-fit: cover; transition: .65s ease; }
.mini-gallery-item:hover img,
.photo-premium-card:hover img { transform: scale(1.1) rotate(1deg); }
.mini-gallery-item span,
.photo-premium-card div {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 2;
    font-weight: 900;
    text-shadow: 0 4px 18px rgba(0,0,0,.35);
}
.photo-premium-card h5 { color: #fff; margin-bottom: 2px; }
.photo-premium-card span { color: rgba(255,255,255,.76); font-size: .82rem; font-weight: 700; }
.staff-premium-card { overflow: hidden; height: 100%; }
.staff-premium-card img { width: 100%; height: 270px; object-fit: cover; }
.staff-premium-card div { padding: 22px; }
.staff-premium-card span { color: var(--primary-orange); font-weight: 900; text-transform: uppercase; font-size: .8rem; letter-spacing: .8px; }
.staff-premium-card p { color: var(--text-muted); margin: 0; line-height: 1.65; }
.event-premium-card { overflow: hidden; height: 100%; }
.event-img { height: 235px; overflow: hidden; }
.event-img img { width: 100%; height: 100%; object-fit: cover; transition: .65s ease; }
.event-premium-card:hover .event-img img { transform: scale(1.08); }
.event-body { padding: 24px; position: relative; }
.event-date-pill {
    display: inline-flex;
    align-items: stretch;
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 14px;
    box-shadow: 0 12px 24px rgba(15,23,42,.1);
}
.event-date-pill span { background: var(--primary-orange); color: #fff; padding: 8px 10px; font-weight: 900; }
.event-date-pill strong { background: var(--dark-navy); color: #fff; padding: 8px 12px; }
.event-body p { color: var(--text-muted); line-height: 1.7; }
.event-body a { color: var(--primary-green); font-weight: 900; }
.video-premium-card { display: block; overflow: hidden; color: inherit; text-decoration: none; height: 100%; }
.video-media { position: relative; height: 250px; overflow: hidden; }
.video-media img { width: 100%; height: 100%; object-fit: cover; transition: .65s ease; }
.video-premium-card:hover img { transform: scale(1.08); }
.video-media span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15,23,42,.32);
}
.video-media span i {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--primary-orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 42px rgba(0,0,0,.28);
}
.video-premium-card > div:last-child { padding: 24px; }
.video-premium-card p { color: var(--text-muted); line-height: 1.7; margin: 0; }
.detail-article { background: #fff; border: 1px solid var(--border-light); border-radius: 28px; padding: 22px; box-shadow: var(--nmps-shadow-soft); }
.event-info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.event-info-list li { display: flex; gap: 12px; align-items: center; color: var(--text-muted); font-weight: 800; }
.event-info-list i { color: var(--primary-orange); }
.bg-dark-soft { background: linear-gradient(135deg, #0f172a, #1e293b); color: #cbd5e1; }
.bg-dark-soft h5 { color: #fff; }
.bg-dark-soft p { color: #cbd5e1; }
.premium-testimonial { position: relative; overflow: hidden; }
.premium-testimonial::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -80px;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(104,176,77,.10);
}
.visit-panel { padding: 30px; background: linear-gradient(135deg, #fff, #f8fafc); }
.visit-panel p { color: var(--text-muted); }
.premium-cta {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 46px;
    background: linear-gradient(135deg, #0f172a, #151e2d 55%, #21304a);
    color: #cbd5e1;
    box-shadow: 0 24px 70px rgba(15,23,42,.22);
}
.premium-cta h2 { color: #fff; margin-bottom: 12px; }
.premium-cta p { color: #cbd5e1; margin: 0; }
.cta-pattern {
    position: absolute;
    width: 420px;
    height: 420px;
    right: -150px;
    top: -170px;
    background: radial-gradient(circle, rgba(255,138,0,.36), transparent 62%);
    filter: blur(6px);
}
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2,6,23,.92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 5000;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img { max-width: min(100%, 1050px); max-height: 82vh; border-radius: 22px; box-shadow: 0 24px 80px rgba(0,0,0,.45); }
.lightbox-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    color: var(--dark-navy);
    font-size: 1.15rem;
}
/*.reveal-up,*/
/*.reveal-left,*/
/*.reveal-right,*/
/*.stagger-grid > * {*/
/*    opacity: 0;*/
/*    transform: translateY(28px);*/
/*    transition: opacity .75s ease, transform .75s ease;*/
/*}*/
/*.reveal-left { transform: translateX(-34px); }*/
/*.reveal-right { transform: translateX(34px); }*/
/*.reveal-up.in-view,*/
/*.reveal-left.in-view,*/
/*.reveal-right.in-view,*/
/*.stagger-grid > *.in-view {*/
/*    opacity: 1;*/
/*    transform: translate(0,0);*/
/*}*/
.stagger-grid > *:nth-child(2) { transition-delay: .06s; }
.stagger-grid > *:nth-child(3) { transition-delay: .12s; }
.stagger-grid > *:nth-child(4) { transition-delay: .18s; }
.stagger-grid > *:nth-child(5) { transition-delay: .08s; }
.stagger-grid > *:nth-child(6) { transition-delay: .14s; }
/*.magnetic-btn { position: relative; overflow: hidden; }*/
@media (max-width: 1199px) {
    .process-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
    .mini-gallery-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 991px) {
    .premium-hero { min-height: 430px; padding: 135px 0 75px; }
    .mosaic-grid { grid-template-rows: 140px 140px 140px; }
    .process-grid,
    .process-grid-four { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .mini-gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .premium-cta { padding: 34px; }
}
@media (max-width: 767px) {
    .page-stats-wrap { margin-top: 0; padding-top: 24px; }
    .two-column-list { grid-template-columns: 1fr; }
    .mosaic-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 140px 140px; }
    .mosaic-item.item-1,
    .mosaic-item.item-4 { grid-column: auto; grid-row: auto; }
    .process-grid,
    .process-grid-four { grid-template-columns: 1fr; }
    .mini-gallery-grid { grid-template-columns: 1fr; }
    .premium-form,
    .document-panel { padding: 24px; }
    .hero-shape { display: none; }
}
.hide-disktop{
  display:none;
}

@media (max-width: 575px) {
    .premium-hero { padding: 125px 0 60px; }
    .mosaic-grid { display: block; }
    .mosaic-item { height: 210px; margin-bottom: 14px; }
    .mini-gallery-item,
    .photo-premium-card { height: 225px; }
    .premium-cta { border-radius: 22px; padding: 28px; }
    
    .navbar-scrolled .nav-link, .mobile-open .nav-link {
    color: #ffffff !important;
}

.hide{
    display:none;
}
.hide-disktop{
  display:block;
}
.premium-card::before {

    display:none;
}

.btn-orange {
    padding: 9px 19px;
    font-weight: 500;

    display: inline-block;
    text-decoration: none;
    font-size: 14px;
}

.btn-outline-light-custom {
    padding: 10px 12px;
    font-weight: 400;
    font-size: 14px;
}

}



/* Premium hero overlay stacking fix */
.premium-hero::before { z-index: 1; pointer-events: none; }
.premium-hero::after { z-index: 1; pointer-events: none; }
.premium-hero .hero-shape { z-index: 2; pointer-events: none; }
.premium-hero .container { z-index: 3; }

/* 1. Global Box-Sizing & Viewport Fix */
html, body {
    overflow-x: hidden !important;
    max-width: 100%;
    width: 100%;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* 2. Floating Card Mobile Fix */
@media (max-width: 768px) {
    .about-floating-card {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 15px;
        max-width: 100%;
    }
}

/* 3. Animation Overflow Safety Wrapper */
/* Add this class to the sections containing your reveal animations */
.overflow-safe-section {
    overflow-x: hidden;
    width: 100%;
}


/** {*/
/*    outline: 1px solid red !important;*/
/*}*/

