@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #FF7E67;
    /* Vibrant Coral */
    --secondary: #5BC0BE;
    /* Clean Teal */
    --accent: #F9D423;
    /* Golden Yellow */
    --soft-blue: #D1E8E2;
    --soft-pink: #FAD0C4;
    --white: #FFFFFF;
    --text-main: #2D3436;
    --text-muted: #636E72;
    --bg-light: #F8F9FA;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 15px 35px rgba(0, 0, 0, 0.08);
    --radius-lg: 32px;
    --radius-md: 20px;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700;
    letter-spacing: -0.02em;
}

section .tagline, .tagline {
    color: var(--secondary) !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    margin-bottom: 15px;
    display: block;
    font-size: 0.9rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

section .sec-title, .sec-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif !important;
}

.sec-title span {
    color: var(--primary) !important;
}

.section-header {
    margin: 0 auto 60px;
    max-width: 800px;
    text-align: center;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* --- Layout Utils --- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 60px 0;
    position: relative;
    scroll-margin-top: 100px;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    font-size: 1rem;
    gap: 10px;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(255, 126, 103, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 126, 103, 0.4);
    background: #ff6a50;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-outline-dark {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
}

/* --- Premium Decorations --- */
.blob {
    position: absolute;
    z-index: -1;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.3;
}

/* --- Header --- */
header {
    position: fixed;
    top: 25px;
    left: 0;
    width: 100%;
    z-index: 1100;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-inner {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 30px;
    border-radius: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

header.scrolled {
    top: 0;
}

header.scrolled .header-inner {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    padding: 10px 80px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

.logo:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.5px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
    border-radius: 10px;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::before {
    width: 25px;
}

/* --- Mobile Menu Toggle --- */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1200;
    width: 30px;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-main);
    border-radius: 5px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: var(--primary);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: var(--primary);
}

/* --- Mobile Overlay --- */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 1150;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(100%);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mobile-nav a {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    font-family: 'Fredoka', sans-serif;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: var(--primary);
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(255, 126, 103, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 126, 103, 0.4);
}

/* --- Hero (Full Width Slider) --- */
.hero {
    height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 2s ease-out;
    transform: scale(1.1);
}

.bg-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 30%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-container-overlay {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-top: 160px;
}

.hero-content-wide {
    max-width: 750px;
    color: var(--white);
}

.hero-content-wide h1 {
    font-size: 4.2rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
}

.hero-content-wide h1 span {
    color: var(--primary);
    background: none;
    -webkit-text-fill-color: initial;
}

.hero-content-wide p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 550px;
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* Slider Nav */
.slider-nav-container {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slider-dots-bg {
    display: flex;
    gap: 12px;
}

.dot-bg {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.3s;
}

.dot-bg.active {
    background: var(--primary);
    width: 40px;
    border-radius: 20px;
}

.slider-arrows-bg {
    display: flex;
    gap: 15px;
}

.arrow-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    backdrop-filter: blur(10px);
}

.arrow-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.floating-card {
    position: absolute;
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-1 {
    top: 10%;
    left: -60px;
    transform: rotate(-5deg);
}

.card-2 {
    bottom: 15%;
    right: -40px;
    transform: rotate(5deg);
}

/* --- About --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    padding: 40px;
}

.about-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background: var(--soft-blue);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.5;
}

.about-img-1 {
    width: 85%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
    border: 8px solid var(--white);
}

.about-img-2 {
    width: 55%;
    border-radius: var(--radius-md);
    position: absolute;
    bottom: -20px;
    right: 0;
    z-index: 3;
    border: 8px solid var(--white);
    box-shadow: var(--shadow-md);
}

.about-text .tagline { margin-bottom: 15px; }
.about-text p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 25px; }

.feat-mini {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: 0.3s;
}

.feat-mini:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

/* --- Programs --- */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.program-card {
    padding: 30px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, border-color 0.5s ease;
    text-align: center;
    border: 1px solid #EEE;
}

.program-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.p-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: 0.5s;
}

.program-card h3 {
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.program-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* --- Stats --- */
.stats {
    background: var(--text-main);
    color: var(--white);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-num {
    font-size: 4rem;
    font-family: 'Fredoka', sans-serif;
    color: var(--accent);
    margin-bottom: 5px;
}

/* --- Gallery --- */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: 0.4s;
    border: 1px solid #EEE;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 126, 103, 0.8), transparent);
    opacity: 0;
    transition: 0.4s;
    z-index: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--white);
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.4s 0.1s;
    font-weight: 700;
    font-size: 1.1rem;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* --- Premium Footer --- */
.footer-premium {
    position: relative;
    background: url('assets/images/hero_kids_playing.png') center/cover no-repeat;
    color: var(--white);
    padding: 100px 0 50px;
    overflow: hidden;
}

.footer-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    /* Dark background like reference */
    z-index: 1;
}

.footer-premium .container {
    position: relative;
    z-index: 10;
}

.footer-grid-new {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-title {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 1px;
}

.footer-desc {
    color: #BBB;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-contact-mini p {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #FFF;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact-mini i {
    color: var(--primary);
    /* Orange accent */
    width: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links li a {
    color: #BBB;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links li a i {
    font-size: 0.8rem;
    color: var(--primary);
}

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

/* Recent Work Grid */
.footer-thumb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.footer-thumb-grid .thumb {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-thumb-grid .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.footer-thumb-grid .thumb:hover img {
    transform: scale(1.2);
}

.view-more-link {
    color: #BBB;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.view-more-link:hover {
    color: var(--primary);
}

/* Newsletter */
.newsletter-form {
    display: flex;
    background: #FFF;
    border-radius: 50px;
    padding: 5px;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    outline: none;
    font-size: 0.9rem;
}

.newsletter-form button {
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    transform: rotate(15deg);
    opacity: 0.9;
}

.privacy-text {
    color: #777;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.footer-socials a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 126, 103, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

.back-to-top {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    text-decoration: none;
    z-index: 20;
    transition: 0.4s;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* --- Responsive --- */
/* --- Page Hero --- */
.page-hero {
    height: 45vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 150px;
    text-align: center;
    overflow: hidden;
}

.page-hero .container {
    position: relative;
    z-index: 10;
}

.page-hero .tagline {
    color: var(--white) !important;
}

.page-hero h1 span {
    color: var(--primary);
}

@media (max-width: 768px) {
    .page-hero {
        height: 35vh;
    }
    .page-hero h1 {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero-content-wide h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .header-inner {
        width: 95%;
        padding: 12px 25px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content-wide {
        margin: 0 auto;
        text-align: center;
    }

    .hero-content-wide p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image-container {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .slider-nav-container {
        flex-direction: column;
        gap: 30px;
    }
}

/* --- Facilities --- */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.fac-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: 0.4s;
    border-bottom: 5px solid transparent;
    box-shadow: var(--shadow-sm);
}

.fac-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.fac-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    color: var(--secondary);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto 25px;
}

.fac-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.fac-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Testimonials --- */
.testimonial-slider-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid #EEE;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.15;
    margin-bottom: 20px;
}

.t-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 30px;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.t-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.t-author h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.t-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Admission --- */
.admission-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.admission-visual {
    position: relative;
    padding: 20px;
}

.admission-visual::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 100px;
    height: 100px;
    background: var(--accent);
    border-radius: 20px;
    z-index: 0;
    opacity: 0.3;
}

.admission-visual img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transform: rotate(-3deg);
    border: 10px solid var(--white);
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.admission-visual:hover img {
    transform: rotate(0deg) scale(1.02);
}

.process-list {
    margin-top: 40px;
    display: grid;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-num {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 126, 103, 0.3);
}

.step-item h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.step-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 992px) {

    .testimonial-slider-container,
    .admission-grid {
        grid-template-columns: 1fr;
    }

    .admission-visual {
        order: -1;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {

    .nav-menu,
    .btn-header {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    header.scrolled .header-inner {
        padding: 10px 25px;
    }

    .hero {
        padding-top: 100px;
    }

    .gallery-container {
        columns: 2;
    }

    .sec-title {
        font-size: 2.5rem;
    }

    .hero-content-wide h1 {
        font-size: 2.8rem;
    }

    .footer-grid-new {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 30px;
    }

    .footer-thumb-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}