
/* Ensure the body takes full height */
html, body {
    height: 100%;
}

/* Ensure footer stays at bottom if content is short */
body {
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}
/* --- Global Styles --- */
body {
    font-family: 'Quicksand', sans-serif;
    color: #444;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* --- Navigation --- */
.navbar-brand {
    font-weight: 700;
    color: #FF6B6B !important;
}

.nav-link {
    font-weight: 600;
    color: #555 !important;
    margin: 0 10px;
}

    .nav-link.active {
        color: #4ECDC4 !important;
    }

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)), url('https://images.unsplash.com/photo-1503454537195-1dcabb73ffb9?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
}

/* --- Components --- */
.btn-primary {
    background-color: #4ECDC4;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-primary:hover {
        background-color: #45b7af;
        transform: scale(1.05);
    }

.program-card {
    border: none;
    border-radius: 20px;
    transition: transform 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

    .program-card:hover {
        transform: translateY(-10px);
    }

.icon-box {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* --- Gallery --- */
.gallery-item img {
    transition: transform 0.4s ease;
    cursor: pointer;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* --- Footer --- */
footer {
    background-color: #F7FFF7;
    padding: 50px 0;
    border-top: 5px solid #FFE66D;
}

.signature-img {
    height: 60px;
    opacity: 0.7;
}

/* --- Responsive Fixes --- */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .display-3 {
        font-size: 2.5rem;
    }
}
.hero-slider {
    position: relative;
    height: 80vh; /* Adjust height as needed */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

    .slide.active {
        opacity: 1;
    }

/* Semi-transparent overlay to make text pop */
.hero-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.3); /* Darken slightly for readability */
    padding: 40px;
    border-radius: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #FFD93D;
}
/* Fun yellow color */

.btn-primary {
    background-color: #FF6B6B;
    padding: 15px 30px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-right: 15px;
}

.btn-secondary {
    background-color: #4ECDC4;
    padding: 15px 30px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}
/* Navigation Buttons Styling */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.5);
    color: #333;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    z-index: 20;
    transition: background-color 0.3s, transform 0.2s;
}

    .prev-btn:hover, .next-btn:hover {
        background-color: #FF6B6B;
        color: white;
        transform: translateY(-50%) scale(1.1);
    }

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Hide buttons on very small mobile screens for a cleaner look */
@media (max-width: 480px) {
    .prev-btn, .next-btn {
        display: none;
    }
}
.dot-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 25;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .dot.active {
        background-color: #FF6B6B; /* Our Coral brand color */
        transform: scale(1.3);
    }

    .dot:hover {
        background-color: #4ECDC4; /* Our Mint brand color */
    }
.teachers-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-title {
    color: #FF6B6B;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align:center;
}

.section-subtitle {
    color: #666;
    margin-bottom: 40px;
}

.teacher-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; /* Wraps to next line on mobile */
    max-width: 1100px;
    margin: 0 auto;
}

.teacher-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

    .teacher-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.image-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 8px; /* Space for the colored border */
}

    .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

/* Specific Border Colors */
.border-pink {
    border: 4px dashed #FF6B6B;
}

.border-blue {
    border: 4px dashed #4ECDC4;
}

.border-yellow {
    border: 4px dashed #FFD93D;
}

.teacher-card h3 {
    margin-bottom: 5px;
    color: #333;
}

.teacher-card span {
    color: #4ECDC4;
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
}

.teacher-card p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.4;
}
/* Page Wrapper Background */
.whimsical-page-wrapper {
    background: linear-gradient(180deg, #e0f7fa 0%, #ffffff 100%);
    overflow: hidden;
    position: relative;
}

/* Card Styling Enhancements */
.program-card {
    border: none;
    border-radius: 25px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 5px solid #ddd; /* Adds a 3D button look */
}

    .program-card:hover {
        transform: translateY(-10px) rotate(1deg);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    }

/* Section Title with "Crayon" style */
.section-title {
    color: #2D3436;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

/* Cartoon Landscape at Bottom */
.cartoon-landscape {
    position: relative;
    height: 150px;
    margin-top: 50px;
}

.grass-base {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    background-color: #78e08f; /* Nice green grass */
    border-top-left-radius: 50% 20px;
    border-top-right-radius: 50% 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landscape-elements {
    font-size: 2.5rem;
    letter-spacing: 20px;
    margin-bottom: 20px;
}

/* Animated Sun */
.sun {
    position: absolute;
    right: 10%;
    top: -50px;
    font-size: 4rem;
    animation: rotateSun 10s linear infinite;
}

/* Floating Clouds */
.cloud-1, .cloud-2 {
    position: absolute;
    opacity: 0.6;
    font-size: 3rem;
    z-index: 1;
}

.cloud-1 {
    top: -20px;
    left: 10%;
    animation: drift 15s linear infinite;
}

.cloud-2 {
    top: 20px;
    right: 20%;
    animation: drift 20s linear infinite reverse;
}

@keyframes rotateSun {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes drift {
    from {
        transform: translateX(-50px);
    }

    to {
        transform: translateX(50px);
    }
}

/* FAQ Accordion "Bubble" Look */
.accordion-button {
    background-color: #f8f9fa !important;
    border: 2px solid #e9ecef !important;
}

    .accordion-button:not(.collapsed) {
        background-color: #4ECDC4 !important;
        color: white !important;
    }
.mission-vision {
    background-color: #ffffff;
    padding: 80px 0;
}

.mv-card {
    padding: 40px;
    border-radius: 40px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

/* Mission Specific Style */
.mission {
    background-color: #fff5f5; /* Very light pink */
    border-bottom: 8px solid #FF6B6B;
}

    .mission h2 {
        color: #FF6B6B;
        font-weight: 800;
    }

/* Vision Specific Style */
.vision {
    background-color: #f0fdfa; /* Very light mint */
    border-bottom: 8px solid #4ECDC4;
}

    .vision h2 {
        color: #4ECDC4;
        font-weight: 800;
    }

.mv-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Hover Effect */
.mv-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Decorative "Scribble" underline for titles */
.mv-card h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    margin: 10px auto;
    border-radius: 2px;
}

.mission h2::after {
    background: #FF6B6B;
}

.vision h2::after {
    background: #4ECDC4;
}