@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Quicksand:wght@400;500;600;700&family=Fredoka+One&display=swap');

:root {
    --primary: #4a0b3e;
    --secondary: #4ECDC4;
    --accent: #FFE66D;
    --pink: #4a0b3e;
    --dark: #2F3E46;
    --light: #F7FFF7;
    --white: #ffffff;
    --gray: #f8f9fa;
    --text-muted: #6c757d;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Preloader Styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
}

.loader-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--primary);
    animation: loader-spin 1.5s linear infinite;
}

.loader-inner:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-top-color: var(--accent);
    animation: loader-spin 2s linear infinite reverse;
}

.loader-inner:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-top-color: #d81b60;
    animation: loader-spin 1s linear infinite;
}

@keyframes loader-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

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

body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    min-width: 200px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: #4a0b3e;
    color: var(--white);
}

.btn-red {
    background-color: #ff0000 !important;
    color: var(--white) !important;
}

.btn-red:hover {
    background-color: #cc0000 !important;
    color: var(--white) !important;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4) !important;
}

.btn-primary:hover {
    background-color: var(--accent);
    color: #4a0b3e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 230, 109, 0.4);
}

.btn-secondary {
    background-color: #4a0b3e;
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: #4a0b3e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 230, 109, 0.4);
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--primary);
    color: var(--white);
    height: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
}

.marquee {
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    font-weight: 700;
    font-size: 0.9rem;
    padding-left: 100%;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Header & Navigation */
header {
    background: var(--white);
    padding: 0px 3%;
    position: fixed;
    top: 40px;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: top 0.3s ease, padding 0.3s ease, height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    height: 150px;
}

header.scrolled {
    top: 0;
    padding: 0 5%;
    height: 70px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: visible !important;
}

header.scrolled .logo {
    display: none;
}

header.scrolled nav {
    width: 100%;
}

header.scrolled nav ul {
    justify-content: center;
    gap: 4px;
}

/* Ensure announcement bar doesn't interfere */
.announcement-bar {
    position: relative;
    z-index: 1001;
}

.logo img {
    height: 150px;
    margin: 0;
    padding: 0;
    transition: height 0.3s ease;
}

.mobile-menu-btn {
    display: none;
}

nav ul {
    display: flex;
    gap: 4px;
    align-items: center;
}

nav ul li {
    position: relative;
}

nav>ul>li>a {
    font-weight: 700;
    font-size: 0.82rem;
    /* Slightly smaller font to fit better */
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 105px;
    /* Updated width for better fit */
    height: 38px;
    background-color: #4a0b3e;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

nav>ul>li>a:hover {
    background-color: var(--accent);
    /* Yellow */
    color: #4a0b3e;
    /* Dark Purple for contrast */
    box-shadow: 0 4px 8px rgba(255, 230, 109, 0.4);
}



/* Dropdown Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 5px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all 0.2s ease;
    z-index: 100;
    border: 1px solid #eee;
    display: flex;
    /* Overriding potential global ul display */
    flex-direction: column;
    /* This ensures items are one below another */
    gap: 0;
    /* Removing gap from top-level nav ul */
}

/* Removing the yellow background from the container as it conflicts with item hover */
.dropdown-menu:hover {
    background-color: var(--white);
}

.dropdown.active .dropdown-menu,
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
    width: 100%;
}

.dropdown-menu li a {
    padding: 10px 15px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a0b3e;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #f1f1f1;
    width: 100%;
    transition: all 0.2s ease;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a i {
    font-size: 0.7rem;
    color: inherit;
    /* Icon will take label color */
}

.dropdown-menu li a:hover {
    background: var(--accent);
    color: #4a0b3e;
}

.dropdown>a {
    cursor: pointer;
}

/* Enroll Now Button in Navigation */
.nav-enroll a.btn {
    width: 100px;
    min-width: 100px;
    height: 38px;
    padding: 0;
    font-size: 0.85rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}


/* Hero Text Visibility */
.hero-content h1,
.hero-content p {
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 5%;
    margin-top: 160px;
}

/* Background Image with Zoom Effect */
/* Hero Slider Styles - Horizontal Sliding */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    /* Align items side by side */
    transition: transform 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    /* Smooth sliding effect */
}

.slide-item {
    flex: 0 0 100%;
    /* Each slide takes full width */
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* We don't need .active opacity anymore for sliding */
.slide-item.active {
    opacity: 1;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes rainbowMotion {
    0% {
        filter: hue-rotate(0deg) brightness(1);
    }

    50% {
        filter: hue-rotate(10deg) brightness(1.2);
    }

    100% {
        filter: hue-rotate(0deg) brightness(1);
    }
}



/* Floating Elements Container */
.animated-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    z-index: 2;
    position: relative;
    max-width: 1200px;
    padding-left: 8%;
    padding-top: 130px;
    /* Moved slightly down as requested */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-main-title {
    font-size: 3.8rem;
    /* Reduced size slightly */
    color: #f7e14a !important;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Fredoka One', cursive;
    font-weight: 400;
    white-space: nowrap;
}

.hero-main-p {
    font-size: 2.2rem;
    color: #ffffff;
    max-width: 750px;
    margin-bottom: 40px;
    line-height: 1.25;
    font-family: 'Fredoka One', cursive;
    /* Same font for paragraph */
    font-weight: 400;
}

.hero-actions-row {
    display: flex;
    align-items: center;
    margin-top: 40px;
    /* Reduced to pull icons up on the first slide */
    gap: 30px;
}

.hero-btns-new {
    display: flex;
    justify-content: flex-start;
    padding-left: 200px;
    /* Adjusted position */
}

.btn-pill-enroll {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: #4a0b3e;
    padding: 4px 4px 4px 18px;
    /* Extra small button */
    border-radius: 50px;
    font-size: 0.9rem;
    /* Very small text */
    font-family: 'Fredoka One', cursive;
    font-weight: 400;
    text-decoration: none;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    /* Fixes Enroll Now coming on two lines */
    min-width: fit-content;
}

.btn-pill-enroll:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.arrow-circle {
    background: #4a0b3e;
    color: #ffffff;
    width: 26px;
    /* Extra small circle */
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.hero-social-icons {
    display: flex;
    gap: 20px;
    padding-left: 3%;
}

.hero-social-icons a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-social-icons a:hover {
    background: #ffffff;
    color: #4a0b3e;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-social-icons a i.fa-whatsapp:hover {
    color: #25D366;
}

.hero-social-icons a i.fa-facebook:hover {
    color: #1877F2;
}

.hero-social-icons a i.fa-instagram:hover {
    color: #E4405F;
}

.hero-social-icons a i.fa-phone:hover {
    color: #007bff;
}

.hero-social-icons a i.fa-envelope:hover {
    color: #ffc107;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Info Cards Scroll */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Forced 4 columns in one line */
    gap: 20px;
    /* Reduced gap slightly to fit better in one line */
    padding: 100px 5%;
    /* Adjusted side padding */
    margin-top: 0;
    /* Removed negative margin to pull it away from hero image */
    background: linear-gradient(to bottom, #ffffff, #fff9f3);
    position: relative;
    z-index: 10;
}

.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: 0 15px 45px rgba(74, 11, 62, 0.08);
    /* Soft themed shadow */
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(74, 11, 62, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 230, 109, 0.1), transparent);
    opacity: 0;
    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(74, 11, 62, 0.15);
    border-color: #FFE66D;
}

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

.feature-card i {
    font-size: 3.5rem;
    background: linear-gradient(45deg, #4a0b3e, #d81b60);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.2) rotate(5deg);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #1a237e;
    font-size: 1.5rem;
    font-family: 'Fredoka One', cursive;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Section Common */
section {
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

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

/* Programs Section Updated */
.programs {
    background: #fff9f3;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.program-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: none;
    text-align: center;
    cursor: pointer;
}

.program-card:hover {
    transform: translateY(-10px);
}

.program-img {
    height: 300px;
    background-size: cover;
    background-position: center;
    border: 5px solid white;
    margin: 10px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.program-content {
    display: none;
}

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

.about-img img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

/* Testimonials */
.testimonials {
    background: var(--light);
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin: 10px;
}

.stars {
    color: var(--accent);
    margin-bottom: 10px;
}

/* Program Image Overlays */
.detail-image {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.curriculum-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    background: rgba(74, 11, 62, 0.75);
    /* Semi-transparent maroon */
    padding: 20px 15px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.curriculum-overlay h3 {
    color: #FFE66D;
    /* Yellow */
    font-family: 'Fredoka One', cursive;
    font-size: 2.2rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.02);
}

.curriculum-overlay p {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    color: #FFE66D !important;
    font-family: 'Quicksand', sans-serif;
}

@media(max-width: 1200px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }

    .curriculum-overlay h3 {
        font-size: 1.8rem;
    }

    .curriculum-overlay p {
        font-size: 0.85rem;
    }
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 10% 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

.footer-links h4 {
    margin-bottom: 20px;
    color: var(--secondary);
}

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

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
}

@media (max-width: 992px) {
    header {
        padding: 15px 5%;
        justify-content: space-between;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
        color: var(--primary);
        cursor: pointer;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 20px;
        transition: 0.3s ease;
        z-index: 1000;
        display: block !important;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        display: flex !important;
        flex-direction: column;
        gap: 20px;
    }

    nav ul li {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        background: #f9f9f9;
        margin-top: 10px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-cta {
        display: none;
    }

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

    .about-container {
        grid-template-columns: 1fr;
    }

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

/* Enquiry Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    backdrop-filter: blur(5px);
}

.popup-content {
    background: #fff;
    width: 90%;
    max-width: 550px;
    padding: 35px 30px;
    border-radius: 20px;
    position: relative;
    border: 2px solid #4a0b3e;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: popupFadeIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popupFadeIn {
    from {
        transform: scale(0.6);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.6rem;
    cursor: pointer;
    color: #000;
    font-weight: 700;
}

.popup-content h2 {
    color: #4a0b3e;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 25px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

.enquiry-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.enquiry-form-grid input,
.enquiry-form-grid select {
    padding: 12px 15px;
    border: 1.2px solid #4a0b3e;
    border-radius: 12px;
    font-size: 0.95rem;
    outline: none;
    color: #333;
    background: #fff;
}

.submit-container {
    text-align: center;
    margin-top: 25px;
}

.submit-container .btn-submit {
    background: #4a0b3e;
    color: white;
    padding: 12px 50px;
    border-radius: 4px;
    min-width: 200px;
    font-size: 1.3rem;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
    box-shadow: 0 8px 15px rgba(125, 38, 110, 0.2);
}

.submit-container .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(74, 11, 62, 0.3);
}

@media (max-width: 600px) {
    .enquiry-form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .popup-content {
        padding: 30px 15px;
        width: 95%;
    }

    .popup-content h2 {
        font-size: 1.8rem;
    }

    .submit-container .btn-submit {
        padding: 10px 40px;
        font-size: 1.1rem;
    }
}

/* Side Enquiry Button */
.side-enquiry-btn {
    position: fixed;
    right: 0;
    top: 60%;
    transform: translateY(-50%);
    background: #4a0b3e;
    color: white;
    padding: 25px 12px;
    border-radius: 15px 0 0 15px;
    cursor: pointer;
    z-index: 2500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: -3px 0 15px rgba(125, 38, 110, 0.3);
    transition: all 0.3s ease;
}

.side-enquiry-btn:hover {
    padding-right: 20px;
    background: var(--accent);
    color: #4a0b3e;
    box-shadow: -5px 0 20px rgba(255, 230, 109, 0.4);
}

.side-enquiry-btn i {
    font-size: 1.5rem;
    transform: rotate(-10deg);
}

.side-enquiry-btn span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transform: rotate(180deg);
}

@media (max-width: 600px) {
    .side-enquiry-btn {
        padding: 15px 8px;
        top: 70%;
    }

    .side-enquiry-btn span {
        font-size: 0.9rem;
    }

    .side-enquiry-btn i {
        font-size: 1.1rem;
    }
}

/* Our School Page Styles */
.page-title-section {
    padding: 120px 0 60px;
    background: url('/images/hero_preschool.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--primary);
    /* Changed to dark for readability */
    margin-top: 150px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.page-title-section h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    font-weight: 600;
}

.breadcrumb li a {
    color: var(--secondary);
    transition: var(--transition);
}

.breadcrumb li a:hover {
    color: var(--accent);
}

.breadcrumb li.active {
    color: var(--white);
}

.breadcrumb li+li::before {
    content: "//";
    margin-right: 10px;
    color: var(--secondary);
}

.why-choose-section {
    padding: 80px 5%;
    background-color: #fff9f3;
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
}

.sub-title {
    color: #4a0b3e;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #4a0b3e;
}

.section-header h2 .highlight {
    color: #4a0b3e;
}

.features-grid-custom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 3px solid #4a0b3e;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(216, 27, 96, 0.1);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #4a0b3e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    border: 3px dashed rgba(255, 255, 255, 0.4);
}

.feature-item h3 {
    color: #4a0b3e;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.foundations-section {
    padding: 80px 5%;
    background: #fff;
}

.foundations-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.foundations-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.foundations-content h2 {
    font-size: 2.5rem;
    color: #4a0b3e;
    margin-bottom: 25px;
    position: relative;
}

.foundations-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: #4a0b3e;
}

.foundations-content p {
    margin-bottom: 20px;
    color: #444;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .foundations-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .page-title-section h1 {
        font-size: 2.5rem;
    }
}

/* Methodology Page Styles */
.methodology-content-section {
    padding: 80px 5%;
    background: #fff;
}

.methodology-content-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.methodology-header {
    text-align: center;
    margin-bottom: 40px;
}

.methodology-header h2 {
    font-size: 2.8rem;
    color: #4a0b3e;
}

.highlight-pink {
    color: #4a0b3e;
}

.methodology-description {
    margin-bottom: 50px;
}

.methodology-description p {
    color: #4a0b3e;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.methodology-description strong {
    color: #4a0b3e;
    font-weight: 700;
}

.curriculum-section {
    margin-bottom: 50px;
}

.curriculum-section h3 {
    color: #4a0b3e;
    font-size: 2rem;
    margin-bottom: 20px;
}

.curriculum-section p {
    color: #4a0b3e;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.curriculum-section strong {
    color: #4a0b3e;
    font-weight: 700;
}

.teaching-methods-section {
    margin-bottom: 50px;
}

.teaching-methods-section h3 {
    color: #4a0b3e;
    font-size: 2rem;
    margin-bottom: 30px;
}

.methods-list {
    list-style: none;
    padding-left: 0;
}

.methods-list li {
    color: #4a0b3e;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.methods-list li strong {
    color: #4a0b3e;
    font-weight: 700;
}

.emphasis-section h3 {
    color: #4a0b3e;
    font-size: 2rem;
    margin-bottom: 25px;
}

.emphasis-list {
    list-style: none;
    padding-left: 0;
}

.emphasis-list li {
    color: #4a0b3e;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.emphasis-list li i {
    color: #4a0b3e;
    margin-top: 5px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .methodology-header h2 {
        font-size: 2rem;
    }

    .curriculum-section h3,
    .teaching-methods-section h3,
    .emphasis-section h3 {
        font-size: 1.5rem;
    }

    .methodology-description p,
    .curriculum-section p,
    .methods-list li,
    .emphasis-list li {
        font-size: 1rem;
    }
}

/* Facilities Page Styles */
.facilities-content-section {
    padding: 80px 5%;
    background: #fff;
}

.facilities-content-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.facilities-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

.facilities-text-content h2 {
    font-size: 2.8rem;
    color: #4a0b3e;
    margin-bottom: 25px;
}

.facilities-text-content p {
    color: #4a0b3e;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.section-subtitle {
    color: #4a0b3e;
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.facilities-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.facilities-list li {
    color: #4a0b3e;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.facilities-list li i {
    color: #4a0b3e;
    margin-top: 5px;
    font-size: 1rem;
}

.facilities-images {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.facility-image-card {
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.facility-image-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.bus-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

@media (max-width: 992px) {
    .facilities-grid {
        grid-template-columns: 1fr;
    }

    .facilities-text-content h2 {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }
}

/* Unique Features Page Styles */
.unique-features-section {
    padding: 80px 5%;
    background: #fff;
}

.unique-features-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.unique-header {
    text-align: center;
    margin-bottom: 60px;
}

.unique-header h2 {
    font-size: 2.8rem;
    color: #4a0b3e;
    margin-bottom: 25px;
}

.unique-intro {
    color: #4a0b3e;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.unique-intro strong {
    color: #4a0b3e;
    font-weight: 700;
}

.cater-heading {
    color: #4a0b3e;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 30px;
    letter-spacing: 1px;
}

.unique-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.unique-feature-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.unique-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(216, 27, 96, 0.15);
}

.unique-feature-image {
    height: 250px;
    overflow: hidden;
}

.unique-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.unique-feature-card:hover .unique-feature-image img {
    transform: scale(1.05);
}

.unique-feature-text {
    padding: 25px;
    background: #f8f9fa;
}

.unique-feature-text p {
    color: #4a0b3e;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 600;
}

.unique-feature-text strong {
    color: #4a0b3e;
    font-weight: 700;
}

@media (max-width: 992px) {
    .unique-features-grid {
        grid-template-columns: 1fr;
    }

    .unique-header h2 {
        font-size: 2.2rem;
    }

    .cater-heading {
        font-size: 1.1rem;
    }
}

/* Programs Page Styles */
.programs-page-header {
    padding: 150px 5% 60px;
    background: #fff9f3;
    text-align: center;
    margin-top: 150px;
}

.programs-page-header h1 {
    font-size: 3rem;
    color: #4a0b3e;
}

.programs-main-section {
    padding: 80px 5%;
    background: #fff9f3;
}

.programs-main-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.main-programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.main-program-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.main-program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.main-program-image {
    height: 200px;
    overflow: hidden;
}

.main-program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-program-content {
    padding: 25px;
}

.program-title {
    color: #4a0b3e;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-program-content p {
    color: #4a0b3e;
    font-size: 0.95rem;
    line-height: 1.7;
}

.programs-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.program-feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.program-feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.program-feature-item p {
    color: #4a0b3e;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.6;
}

.programs-bottom-section {
    padding: 80px 5%;
    background: #fff;
}

.programs-bottom-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.bottom-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.bottom-text-content h2 {
    font-size: 2rem;
    color: #4a0b3e;
    margin-bottom: 25px;
    line-height: 1.4;
}

.bottom-text-content p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
}

.bottom-image-content img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .main-programs-grid {
        grid-template-columns: 1fr;
    }

    .programs-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .bottom-content-grid {
        grid-template-columns: 1fr;
    }

    .programs-page-header h1 {
        font-size: 2.2rem;
    }

    .bottom-text-content h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .programs-features-grid {
        grid-template-columns: 1fr;
    }
}

.highlight-pink {
    color: var(--pink);
}

/* Admission Criteria Page Styles */
.admission-criteria-header {
    background: url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?q=80&w=1200&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 180px 5% 100px;
    color: #4a0b3e;
    /* Using dark color */
    text-align: center;
    margin-top: 150px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.admission-criteria-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.admission-procedure-section {
    padding: 80px 5%;
    background: #f8f9fa;
    /* Light gray background to make white container pop */
}

.admission-procedure-section .container {
    max-width: 1100px;
    margin: 0 auto;
    border: 3px solid rgba(125, 38, 110, 0.2);
    padding: 50px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.admission-header {
    text-align: center;
    margin-bottom: 50px;
}

.admission-header h2 {
    font-size: 2.5rem;
    color: #4a0b3e;
}

.admission-table-wrapper {
    margin: 40px 0;
    overflow-x: auto;
}

.admission-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.admission-table thead {
    background: #4a0b3e;
}

.admission-table thead th {
    color: white;
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
}

.admission-table tbody tr {
    border-bottom: 2px solid #4a0b3e;
}

.admission-table tbody tr:last-child {
    border-bottom: none;
}

.admission-table tbody td {
    padding: 25px 20px;
    vertical-align: top;
    color: #333;
}

.admission-table tbody td:first-child {
    width: 35%;
    background: #f8f9fa;
}

.admission-table tbody td strong {
    color: #4a0b3e;
    font-size: 1rem;
}

.admission-table tbody td p {
    margin: 8px 0;
    color: #666;
    line-height: 1.6;
}

.admission-contact-info {
    margin-top: 50px;
    padding: 30px;
    background: #f8f9fa;
    border-left: 4px solid #4a0b3e;
    border-radius: 5px;
}

.admission-contact-info p {
    color: #333;
    font-size: 1rem;
    margin: 10px 0;
    line-height: 1.8;
}

.admission-contact-info strong {
    color: #4a0b3e;
    font-weight: 700;
}

.admission-contact-info a {
    color: #4a0b3e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.admission-contact-info a:hover {
    color: #4a0b3e;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .admission-criteria-header h1 {
        font-size: 2rem;
    }

    .admission-header h2 {
        font-size: 1.8rem;
    }

    .admission-table {
        font-size: 0.9rem;
    }

    .admission-table thead th,
    .admission-table tbody td {
        padding: 15px 10px;
    }

    .admission-table tbody td:first-child {
        width: 100%;
        display: block;
    }

    .admission-table tbody td {
        display: block;
        width: 100%;
    }

    .admission-procedure-section .container {
        padding: 30px 20px;
    }
}

/* EWS Page Styles */
.ews-header {
    background: url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?q=80&w=1200&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 180px 5% 100px;
    color: #4a0b3e;
    text-align: center;
    margin-top: 150px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.ews-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.ews-content-section {
    padding: 80px 5%;
    background: #f8f9fa;
}

.ews-content-section .container {
    max-width: 1100px;
    margin: 0 auto;
    border: 3px solid rgba(125, 38, 110, 0.2);
    padding: 50px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.ews-title-section {
    text-align: center;
    margin-bottom: 50px;
}

.ews-title-section h2 {
    font-size: 2rem;
    color: #4a0b3e;
}

.ews-detailed-info {
    margin-top: 50px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.ews-detailed-info p {
    color: #333;
    font-size: 1rem;
    margin: 15px 0;
    line-height: 1.8;
}

.ews-detailed-info strong {
    color: #4a0b3e;
    font-weight: 700;
}

.ews-info-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.ews-info-list li {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 10px 0;
    padding-left: 0;
}

.ews-certificate-info {
    margin-top: 25px;
    padding: 20px;
    background: #fff;
    border-left: 4px solid #4a0b3e;
    border-radius: 5px;
}

.ews-certificate-info p {
    color: #666;
    font-size: 0.95rem;
    margin: 10px 0;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .ews-header h1 {
        font-size: 2rem;
    }

    .ews-title-section h2 {
        font-size: 1.5rem;
    }

    .ews-detailed-info {
        padding: 20px;
    }

    .ews-content-section .container {
        padding: 30px 20px;
    }
}

/* Admission Form Page Styles */
.admission-form-header {
    background: url('/images/receptionist.png');
    background-size: cover;
    background-position: center;
    padding: 180px 5% 100px;
    color: #4a0b3e;
    /* Using dark purple for readability on light image */
    text-align: center;
    margin-top: 150px;
}

.admission-form-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

.admission-form-section {
    padding: 80px 5%;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://images.unsplash.com/photo-1541105538009-117bc87e3697?q=80&w=1200&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.admission-form-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

.form-container {
    background: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 3px solid rgba(125, 38, 110, 0.2);
    /* Subtle primary color border */
    position: relative;
}

.form-header-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    gap: 15px;
}

.form-title {
    color: #4a0b3e;
    /* Reverted to school dark purple */
    font-size: 2.22rem;
    font-weight: 800;
    margin: 0;
    text-align: center;
}

.download-form-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    background: white;
    color: #4a0b3e;
    border: 2px solid #4a0b3e;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.download-form-btn:hover {
    background: #4a0b3e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.2);
}

.form-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.form-sections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.form-section {
    display: flex;
    flex-direction: column;
}

.section-heading {
    color: #4a0b3e;
    font-size: 1.2rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4a0b3e;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #4a0b3e;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.required {
    color: #4a0b3e;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fff;
    color: #333;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4a0b3e;
    box-shadow: 0 0 0 3px rgba(216, 27, 96, 0.1);
}

.form-group input::placeholder {
    color: #adb5bd;
}

.form-group select {
    cursor: pointer;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #dee2e6;
}

.required-note {
    color: #666;
    font-size: 0.9rem;
}

.submit-btn {
    background: linear-gradient(135deg, #4a0b3e 0%, #4a0b3e 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #4a0b3e 0%, #4a0b3e 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(216, 27, 96, 0.3);
}

.submit-btn i {
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .form-sections-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-container {
        padding: 30px;
        border: 3px solid rgba(125, 38, 110, 0.2);
        /* Adding border for mobile too */
    }

    .admission-form-header h1 {
        font-size: 2rem;
    }

    .form-title {
        font-size: 1.6rem;
        text-align: center;
        /* Ensuring center on mobile */
    }
}

@media (max-width: 576px) {
    .form-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Admission FAQ Page Styles */
.faq-page-header {
    background: url('https://images.unsplash.com/photo-1503454537195-1dcabb73ffb9?q=80&w=1200&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 180px 5% 100px;
    color: #4a0b3e;
    text-align: center;
    margin-top: 150px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.faq-page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.faq-content-section {
    padding: 80px 5%;
    background: #fff;
}

.faq-content-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.faq-label {
    color: #4a0b3e;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.faq-section-title h2 {
    font-size: 2.2rem;
    color: #4a0b3e;
    line-height: 1.4;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-accordion-item {
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    border-color: #4a0b3e;
}

.faq-accordion-item.active {
    border-color: #4a0b3e;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    cursor: pointer;
    background: #fff;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-number {
    background: #4a0b3e;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.faq-text {
    flex: 1;
    color: #4a0b3e;
    font-weight: 600;
    font-size: 1rem;
}

.faq-icon {
    color: #4a0b3e;
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-accordion-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8f9fa;
}

.faq-accordion-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 75px;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .faq-page-header h1 {
        font-size: 2rem;
    }

    .faq-section-title h2 {
        font-size: 1.6rem;
    }

    .faq-question {
        padding: 15px 20px;
        gap: 12px;
    }

    .faq-number {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }

    .faq-text {
        font-size: 0.9rem;
    }

    .faq-accordion-item.active .faq-answer {
        padding: 0 20px 15px 62px;
    }
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 80px 5%;
    background: white;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.vm-card {
    background: #fff9f3;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.vm-icon {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-size: 2.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.vm-card:hover .vm-icon {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.vm-card h2 {
    color: #4a0b3e;
    font-size: 2rem;
    margin-bottom: 20px;
}

.vm-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Decorative blobs */
.vm-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.vm-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: var(--pink);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

@media (max-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
}

/* Mission & Vision Section Styles */
.mission-vision-section {
    padding: 80px 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mission-image img,
.vision-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.mission-image img:hover,
.vision-image img:hover {
    transform: scale(1.02);
}

.mission-content h2,
.vision-content h2 {
    font-size: 2.8rem;
    color: #4a0b3e;
    margin-top: 10px;
}

.mission-content .highlight {
    color: var(--primary);
}

.vision-content .highlight-pink {
    color: var(--pink);
}

.mission-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.mission-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

.mission-list li i {
    color: var(--primary);
    font-size: 1.2rem;
}

.vision-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.vision-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.vision-card i {
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.vision-card h4 {
    color: #4a0b3e;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vision-content {
        order: 2;
    }

    .vision-image {
        order: 1;
    }

    .mission-content h2,
    .vision-content h2 {
        font-size: 2.2rem;
    }
}

/* =========================================
   Animated Hero Elements
   ========================================= */

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

@keyframes floatCloudNormal {
    0% {
        left: -200px;
    }

    100% {
        left: 100%;
        margin-left: 200px;
    }
}

@keyframes floatCloudReverse {
    0% {
        right: -200px;
    }

    100% {
        right: 100%;
        margin-right: 200px;
    }
}

@keyframes spinSun {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes floatPlane {
    0% {
        left: -150px;
        bottom: 100px;
        transform: rotate(5deg) scale(0.8);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    25% {
        bottom: 150px;
        transform: rotate(10deg) scale(0.9);
    }

    50% {
        bottom: 100px;
        transform: rotate(5deg) scale(1.0);
    }

    75% {
        bottom: 180px;
        transform: rotate(10deg) scale(0.9);
    }

    95% {
        opacity: 1;
    }

    100% {
        left: 110%;
        bottom: 300px;
        transform: rotate(0deg) scale(0.8);
        opacity: 0;
    }
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Clouds */
.cloud-1 {
    position: absolute;
    top: 10%;
    left: -200px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.4);
    animation: floatCloudNormal 60s linear infinite;
    z-index: 1;
}

.cloud-2 {
    position: absolute;
    top: 25%;
    right: -200px;
    font-size: 7rem;
    color: rgba(255, 255, 255, 0.25);
    animation: floatCloudReverse 80s linear infinite;
    z-index: 1;
}

/* Sun */
.sun {
    position: absolute;
    top: 120px;
    /* Below navbar */
    right: 5%;
    font-size: 5rem;
    color: #FFD700;
    animation: spinSun 60s linear infinite;
    opacity: 0.9;
    z-index: 1;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
}

/* Plane */
.plane {
    position: absolute;
    bottom: 20%;
    left: -150px;
    font-size: 2.5rem;
    color: #fff;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.2));
    animation: floatPlane 30s linear infinite;
    animation-delay: 2s;
    z-index: 1;
}

/* Stars for fun */
.star-1,
.star-2,
.star-3 {
    position: absolute;
    color: #FFF;
    opacity: 0.6;
    animation: twinkle 4s ease-in-out infinite;
}

.star-1 {
    top: 20%;
    left: 20%;
    font-size: 1.5rem;
    animation-delay: 0s;
}

.star-2 {
    top: 40%;
    right: 30%;
    font-size: 1rem;
    animation-delay: 1.5s;
}

.star-3 {
    top: 15%;
    left: 60%;
    font-size: 1.2rem;
    animation-delay: 3s;
}

/* Program Detail Common Styles */
.program-detail-section {
    padding: 80px 5%;
    background: #fdf7f2;
}

.detail-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.detail-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.detail-text h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.detail-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.age-badge {
    display: inline-block;
    background: var(--accent);
    color: #4a0b3e;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
    padding: 0;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.features-list li i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .detail-container {
        grid-template-columns: 1fr;
    }
}