:root {
    --pink: #e91e63;
    --blue: #2196f3;
    --yellow: #ffeb3b;
    --green: #4caf50;
    --bg-light: #fffdf0;
    --text-dark: #333333;
    --text-muted: #666666;
    --white: #ffffff;
    --header-bg: #e91e63;
    --radius-lg: 30px;
    --radius-md: 15px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --purple: #9c27b0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex {
    display: flex;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-align-center {
    display: flex;
    align-items: center;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* Top Bar */
.top-bar {
    background-color: var(--header-bg);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-info span {
    margin-right: 20px;
}

.top-info i {
    margin-right: 5px;
    color: var(--yellow);
}

/* Header */
header {
    background-color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 70px;
    width: auto;
}

.logo-main {
    display: block;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--pink);
    line-height: 1;
}

.logo-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
}

nav ul {
    gap: 20px;
}

nav ul li a {
    font-weight: 600;
    color: var(--text-dark);
}

nav ul li a.active,
nav ul li a:hover {
    color: var(--pink);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-text {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.green-btn {
    color: var(--green);
}

.btn-primary {
    background-color: var(--pink);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.btn-secondary {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--pink);
    cursor: pointer;
    margin-left: 15px;
}

/* Hero Section */
.hero {
    background-color: var(--bg-light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.badge {
    background-color: #ffdae2;
    color: var(--pink);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #2c3e50;
}

.text-pink {
    color: var(--pink);
}

.text-blue {
    color: var(--blue);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.pink-btn {
    background-color: var(--pink);
}

.blue-btn {
    background-color: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.blue-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
    background-color: #1a8ad9;
}

.hero-image-container {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
    max-width: 550px;
}

.hero-img {
    width: 100%;
    border-radius: calc(var(--radius-lg) - 10px);
    display: block;
}

/* Fix for mobile overflow from floating elements */
section {
    overflow: hidden;
}

/* Floating Elements */
.floating-item {
    position: absolute;
    font-size: 2.5rem;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.star {
    font-size: 2rem;
}

.balloon {
    animation-delay: 1s;
}

.rainbow {
    animation-delay: 2s;
    font-size: 4rem;
    z-index: 5;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Features */
.features {
    padding: 80px 0;
    background-color: var(--white);
    transform: translateY(-50px);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 40px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: 0.3s;
}

.feature-card i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-muted);
}

.feature-card.pink {
    background-color: #fce4ec;
    color: #880e4f;
}

.feature-card.blue {
    background-color: #e3f2fd;
    color: #0d47a1;
}

.feature-card.yellow {
    background-color: #fff9c4;
    color: #f57f17;
}

.feature-card:hover {
    transform: translateY(-10px);
}

/* About Section */
.about-section {
    background-color: var(--white);
    overflow: hidden;
}

.about-image {
    flex: 1;
    margin-right: 50px;
}

.about-content {
    flex: 1.2;
}

.rounded-img {
    width: 100%;
    border-radius: var(--radius-lg);
    display: block;
}

.shadow {
    box-shadow: var(--shadow);
}

.fw-bold {
    font-weight: 700;
}

.section-title {
    font-size: 2.8rem;
    margin: 10px 0 20px;
    color: #2c3e50;
    line-height: 1.2;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.pink-bg {
    background-color: #fce4ec;
    color: var(--pink);
}

.blue-bg {
    background-color: #e3f2fd;
    color: var(--blue);
}

.green-bg {
    background-color: #e8f5e9;
    color: var(--green);
}

.yellow-bg {
    background-color: #fff9c4;
    color: #fbc02d;
}

.benefit-item span {
    font-weight: 600;
    color: #2c3e50;
}

/* Common Section Styling */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Programs */
.programs {
    background-color: #f8fbff;
}

.program-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: 0.3s;
    position: relative;
    margin-top: 40px;
}

.program-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: -80px auto 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.program-card.pink .program-icon-circle {
    background-color: var(--pink);
}

.program-card.yellow .program-icon-circle {
    background-color: #fbc02d;
}

.program-card.blue .program-icon-circle {
    background-color: var(--blue);
}

.program-card.green .program-icon-circle {
    background-color: var(--green);
}

.program-card.purple .program-icon-circle {
    background-color: var(--purple);
}

.program-card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #2c3e50;
}

.age-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.program-card.pink .age-badge {
    background-color: var(--pink);
}

.program-card.yellow .age-badge {
    background-color: #fbc02d;
}

.program-card.blue .age-badge {
    background-color: var(--blue);
}

.program-card.green .age-badge {
    background-color: var(--green);
}

.program-card.purple .age-badge {
    background-color: var(--purple);
}

.program-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.program-card.pink:hover {
    background-color: #fff1f5;
}

.program-card.yellow:hover {
    background-color: #fffde7;
}

.program-card.blue:hover {
    background-color: #e3f2fd;
}

.program-card.green:hover {
    background-color: #e8f5e9;
}

.program-card.purple:hover {
    background-color: #f3e5f5;
}

/* Facilities */
.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.facility-card {
    padding: 30px 15px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.facility-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.facility-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.facility-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.yellow-light {
    background-color: #fff9e6;
}

.blue-light {
    background-color: #e6f7ff;
}

.green-light {
    background-color: #f0fff0;
}

.pink-light {
    background-color: #fff0f5;
}

.grey-light {
    background-color: #f5f7fa;
}

.text-yellow {
    color: #fbc02d;
}

.text-purple {
    color: #9c27b0;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-item p,
.contact-item a {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--pink);
}

.contact-map {
    box-shadow: var(--shadow);
    border-radius: 20px;
    overflow: hidden;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    cursor: pointer;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

footer h3 {
    margin-bottom: 25px;
    color: var(--yellow);
}

footer p {
    color: #bdc3c7;
    line-height: 1.8;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a:hover {
    color: var(--yellow);
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--yellow);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Responsive Extensions */
@media (max-width: 992px) {
    .flex-align-center {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        margin-right: 0;
        margin-bottom: 40px;
    }

    .about-benefits {
        justify-content: center;
    }

    .hero-content {
        order: 2;
        margin-top: 50px;
    }

    .hero-image-wrapper {
        order: 1;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        margin: 0 auto 40px;
    }

    .hero-btns {
        justify-content: center;
    }

    .top-bar {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        z-index: 999;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        gap: 30px !important;
    }

    nav ul li a {
        font-size: 1.5rem;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-5 {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .header-actions {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .logo-main {
        font-size: 1.5rem;
    }
}