body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(-45deg, #ffd6e8, #ffe8b3, #e0f7ff, #ffd6e8, #fff0c9, #e0f7ff);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #333;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 🌟 VIBRANT HEADER 🌟 */
header {
    ackground: linear-gradient(-45deg, #ffd6e8, #ffe8b3, #e0f7ff, #ffd6e8, #fff0c9, #e0f7ff);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 20px rgba(255, 95, 162, 0.15);
    position: sticky; 
    top: 0;
    z-index: 1000;
    border-bottom: 5px solid;
    border-image: linear-gradient(to right, #ff5fa2, #ffcc00, #5ce1e6, #cb6ce6) 1; 
}

/* Logo animation in header */
.header-logo {
    max-width: 60px;
    vertical-align: middle;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

header h2 {
    margin: 0;
    color: #ff5fa2;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    cursor: pointer;
}

header h2:hover .header-logo {
    transform: rotate(-15deg) scale(1.1);
}

/* Fun Nav Links */
nav a {
    text-decoration: none;
    margin: 0 8px;
    color: #ff5fa2;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

/* Updated Lighter Hover Effect */
nav a:hover {
    background-color: #fff0c9; /* Soft pastel yellow */
    color: #ff5fa2; /* Keeps the text pink for readability */
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(255, 240, 201, 0.8); /* Softer shadow */
}

/* Global Styles */
.center-logo {
    display: block;
    margin: 0 auto 20px auto;
    max-width: 250px;
    height: auto;
}

section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
}

h1, h2, h3 {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    background: #ff5fa2;
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background: #ff2f7a;
    transform: scale(1.05);
}

.card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 15px 0;
}

.grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

input, select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box; 
}

/* Footer */
footer {
    background: linear-gradient(to right, #ff5fa2, #cb6ce6); 
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 40px;
    border-top-left-radius: 30px; 
    border-top-right-radius: 30px;
}


        /* REVIEWS SECTION STYLING */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;

    }

.review-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-top: 5px solid #5ce1e6; /* Playful Blue */
    transition: transform 0.3s ease;
    }

.review-card:hover {
    transform: translateY(-10px);
    }

.stars {
    color: #ffcc00;
    font-size: 1.2em;
    margin-bottom: 15px;
    }

.review-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    }

.parent-name {
    font-weight: bold;
    color: #cb6ce6; /* Creative Purple */
     }

 /* FOUNDER SECTION */
        .about-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 50px;
            padding: 80px 20px;
            max-width: 1100px;
            margin: 0 auto;
            flex-wrap: wrap;
        }

        .founder-image-wrapper {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        /* Placeholder for your picture */
        .founder-photo {
            width: 300px;
            height: 400px;
            border-radius: 10%;
            background-color: #e0e0e0;
            border: 8px solid #cb6ce6; /* Your Brand Purple */
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            color: #999;
            font-weight: bold;
            object-fit: cover;
        }

        .about-text {
            flex: 1.5;
            min-width: 300px;
        }

        /* REVIEWS SECTION */


        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 40px auto 0;
        }

        .review-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: 0.3s;
        }

        .review-card:hover { transform: translateY(-5px); }
        .stars { color: #ffcc00; margin-bottom: 10px; }
/* =========================================
   MOBILE RESPONSIVE HEADER & HAMBURGER MENU 
   ========================================= */

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    position: relative;
}

.hamburger {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 4px;
    background-color: #cb6ce6; /* Brand Purple */
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Tablet & Mobile Screens */
@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }

    .hamburger {
        display: flex; /* Show hamburger on mobile */
    }

    .nav-links {
        display: none; /* Hide standard nav links on mobile */
        flex-direction: column;
        position: absolute;
        top: 100%; /* Drops exactly below the header */
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 9999;
        text-align: center;
    }

    /* When the Javascript toggles the 'active' class */
/* When the Javascript toggles the 'active' class */
    .nav-links.active {
        display: flex !important; 
    }
    .nav-links a {
        padding: 15px;
        border-bottom: 1px solid #f0f8ff;
        display: block;
        font-weight: bold;
    }

    .nav-links a:hover {
        background-color: #f0f8ff;
    }
}

/* Tablet & Mobile Screens */
@media (max-width: 768px) {
    
    /* HIDES THE TEXT NAME ON MOBILE (Keeps Logo) */
    .brand-title {
        display: none !important;
    }

    .main-header {
        padding: 15px 20px;
    }

    .hamburger {
        display: flex; /* Show hamburger on mobile */
    }

    /* ... the rest of your mobile navigation css ... */





