 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Fredoka', sans-serif;
            overflow-x: hidden;
            color: #333;
        }

        /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            z-index: -1;
        }

        .cloud {
            position: absolute;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 100px;
            animation: float 20s infinite ease-in-out;
        }

        .cloud:before, .cloud:after {
            content: '';
            position: absolute;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 100px;
        }

        .cloud1 { width: 100px; height: 40px; top: 10%; left: 10%; animation-delay: 0s; }
        .cloud1:before { width: 50px; height: 50px; top: -25px; left: 10px; }
        .cloud1:after { width: 60px; height: 40px; top: -15px; right: 10px; }

        .cloud2 { width: 120px; height: 50px; top: 30%; right: 15%; animation-delay: 5s; }
        .cloud2:before { width: 60px; height: 60px; top: -30px; left: 15px; }
        .cloud2:after { width: 70px; height: 50px; top: -20px; right: 15px; }

        .cloud3 { width: 90px; height: 35px; top: 60%; left: 20%; animation-delay: 10s; }
        .cloud3:before { width: 45px; height: 45px; top: -20px; left: 10px; }
        .cloud3:after { width: 55px; height: 35px; top: -15px; right: 10px; }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-30px); }
        }

        /* Navigation Bar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            animation: slideDown 0.8s ease-out;
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .navbar-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }

.logo-img {
    width:160px;              /* ~30% bigger than before */
    height: 78px;
    border-radius: 18px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.logo-img img {
    width: 85%;
    height: auto;
    object-fit: contain;
}


        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: #667eea;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover:after {
            width: 100%;
        }

        .nav-menu a:hover {
            color: #667eea;
        }

        .nav-register {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white !important;
            padding: 12px 25px;
            border-radius: 25px;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

        .nav-register:after {
            display: none;
        }

        .nav-register:hover {
            color: white !important;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }

        .menu-toggle span {
            width: 30px;
            height: 3px;
            background: #667eea;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 150px 20px 80px;
            position: relative;
        }

        .hero-content {
            background: rgba(255, 255, 255, 0.95);
            padding: 60px 40px;
            border-radius: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            max-width: 800px;
            animation: slideUp 1s ease-out;
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero h1 {
            font-size: 3.5rem;
            color: #667eea;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
            animation: bounceIn 1s ease-out 0.3s both;
        }

        @keyframes bounceIn {
            0% { opacity: 0; transform: scale(0.3); }
            50% { transform: scale(1.05); }
            100% { opacity: 1; transform: scale(1); }
        }

        .hero p {
            font-size: 1.5rem;
            color: #666;
            margin-bottom: 40px;
            animation: fadeIn 1s ease-out 0.6s both;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeIn 1s ease-out 0.9s both;
        }

        .btn {
            padding: 18px 40px;
            font-size: 1.2rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-family: 'Fredoka', sans-serif;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
        }

        .btn-secondary {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            box-shadow: 0 10px 30px rgba(240, 147, 251, 0.4);
        }

        .btn-secondary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(240, 147, 251, 0.6);
        }

        .floating-icon {
            position: absolute;
            font-size: 3rem;
            animation: bounce 3s infinite;
        }

        .icon1 { top: 15%; left: 5%; animation-delay: 0s; }
        .icon2 { top: 25%; right: 8%; animation-delay: 1s; }
        .icon3 { bottom: 20%; left: 10%; animation-delay: 2s; }
        .icon4 { bottom: 30%; right: 5%; animation-delay: 1.5s; }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        section {
            padding: 80px 20px;
            background: rgba(255, 255, 255, 0.95);
            margin: 40px 0;
            border-radius: 40px;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            color: #667eea;
			margin-bottom: 50px;
            font-weight: 700;
        }

        /* CAROUSEL */
.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);

    padding-bottom: 20px;          /* ✅ key fix */
    background: transparent;       /* keeps theme */
}



        .carousel-wrapper {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .carousel-slide {
            min-width: 100%;
            height: 550px;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: flex-end;
            justify-content: center;
        }

        .carousel-caption {
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 30px;
            font-size: 2.5rem;
            font-weight: 700;
            width: 100%;
            text-align: center;
            backdrop-filter: blur(10px);
        }

        .carousel-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            pointer-events: none;
        }

        .carousel-arrow {
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            font-size: 2rem;
            cursor: pointer;
            pointer-events: all;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-arrow:hover {
            background: white;
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
        }

        .carousel-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
		
        }

        .carousel-dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid white;
        }

        .carousel-dot.active {
            background: white;
            transform: scale(1.4);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
        }

        .about-content {
            display: flex;
            gap: 40px;
            align-items: center;
            flex-wrap: wrap;
    padding-bottom: 20px;          /* ✅ key fix */
    background: transparent;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
        }

        .about-highlights {
            list-style: none;
        }

        .about-highlights li {
            padding: 15px 0;
            font-size: 1.2rem;
            color: #667eea;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .about-highlights li:before {
            content: '✨';
            font-size: 1.5rem;
        }

        .about-illustration {
            flex: 1;
            min-width: 300px;
            height: 400px;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .activities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
            margin-top: 40px;
    padding-bottom: 20px;          /* ✅ key fix */
    background: transparent;
        }

        .activity-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            cursor: pointer;
            animation: fadeInUp 0.6s ease-out both;
        }

        .activity-card:nth-child(1) { animation-delay: 0.1s; }
        .activity-card:nth-child(2) { animation-delay: 0.2s; }
        .activity-card:nth-child(3) { animation-delay: 0.3s; }
        .activity-card:nth-child(4) { animation-delay: 0.4s; }
        .activity-card:nth-child(5) { animation-delay: 0.5s; }
        .activity-card:nth-child(6) { animation-delay: 0.6s; }
        .activity-card:nth-child(7) { animation-delay: 0.7s; }
        .activity-card:nth-child(8) { animation-delay: 0.8s; }
        .activity-card:nth-child(9) { animation-delay: 0.9s; }
        .activity-card:nth-child(10) { animation-delay: 1s; }
        .activity-card:nth-child(11) { animation-delay: 1.1s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .activity-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 25px 60px rgba(102, 126, 234, 0.4);
        }

        .activity-image {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            background-size: cover;
            background-position: center;
        }

        .activity-content {
            padding: 25px;

        }

        .activity-card h3 {
            font-size: 1.5rem;
            color: #667eea;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .activity-card p {
            color: #666;
            line-height: 1.6;
            font-size: 1rem;
        }

        .age-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
    padding-bottom: 20px;          /* ✅ key fix */
    background: transparent;
        }

        .age-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 40px 30px;
            border-radius: 25px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
            transition: transform 0.3s ease;
        }

        .age-card:hover {
            transform: translateY(-10px) rotate(2deg);
        }

        .age-card-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            display: block;
        }

        .age-card h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .age-card p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .contact-box {
            background: white;
            padding: 40px;
            border-radius: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .contact-box h3 {
            font-size: 1.8rem;
            color: #667eea;
            margin-bottom: 25px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .contact-item {
            margin: 20px 0;
            font-size: 1.2rem;
            color: #555;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-item a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .contact-item a:hover {
            color: #764ba2;
        }

        .whatsapp-btn {
            display: inline-block;
            background: #25D366;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 20px;
            transition: all 0.3s;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
        }

        .map-container {
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 400px;
            margin-top: 40px;
    padding-bottom: 20px;          /* ✅ key fix */
    background: transparent;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .cta-section {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            text-align: center;
            padding: 80px 40px;
            color: white;
        }

        .cta-section h2 {
            font-size: 3rem;
            margin-bottom: 30px;
            animation: wiggle 1s infinite;
        }

        @keyframes wiggle {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(-3deg); }
            75% { transform: rotate(3deg); }
        }

        .cta-btn {
            padding: 20px 50px;
            font-size: 1.5rem;
            background: white;
            color: #f5576c;
            animation: pulse-btn 2s infinite;
        }

        @keyframes pulse-btn {
            0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
            50% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
        }

        footer {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 40px 20px;
            text-align: center;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 20px 0;
            font-size: 2rem;
        }

        .social-icons a {
            color: white;
            transition: transform 0.3s;
        }

        .social-icons a:hover {
            transform: scale(1.3) rotate(10deg);
        }

        @media (max-width: 968px) {
            .nav-menu {
                position: fixed;
                top: 90px;
                right: -100%;
                width: 100%;
                background: rgba(255, 255, 255, 0.98);
                flex-direction: column;
                padding: 40px 0;
                gap: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                transition: right 0.4s ease;
                backdrop-filter: blur(10px);
            }

            .nav-menu.active {
                right: 0;
            }

            .menu-toggle {
                display: flex;
            }

            .carousel-slide {
                height: 400px;
            }

            .carousel-caption {
                font-size: 1.8rem;
                padding: 20px;
            }

            .carousel-arrow {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding-top: 120px;
            }

            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.2rem; }
            .section-title { font-size: 2.2rem; }
            .carousel-slide { height: 350px; }
            .about-content { flex-direction: column; }
            .hero-content { padding: 40px 30px; }
            .floating-icon { font-size: 2rem; }
            .activity-image { height: 180px; font-size: 4rem; }
            .logo-text { font-size: 1.2rem; }
            .logo-img { width: 50px; height: 50px; }
        }

        @media (max-width: 480px) {
            .hero h1 { font-size: 2rem; }
            .hero p { font-size: 1rem; }
            .btn { padding: 15px 30px; font-size: 1rem; }
            .section-title { font-size: 1.8rem; }
            section { padding: 60px 15px; }
            .carousel-caption { font-size: 1.3rem; }
            .activities-grid { grid-template-columns: 1fr; }
        }

        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease-out;
        }

        .scroll-reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
		
		/* HERO SLIDER */
.hero-slider {
    position: relative;
    overflow: hidden;
}

/* Background sliding images */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.hero-bg-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Dark overlay for readability */
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

/* Bring content above images */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Floating icon images */
.floating-icon {
    position: absolute;
    width: 90px;
    z-index: 2;
    animation: floatIcon 4s infinite ease-in-out;
}

.icon1 { top: 15%; left: 6%; animation-delay: 0s; }
.icon2 { top: 20%; right: 7%; animation-delay: 1s; }
.icon3 { bottom: 20%; left: 10%; animation-delay: 2s; }
.icon4 { bottom: 25%; right: 6%; animation-delay: 1.5s; }

@keyframes floatIcon {
    0%,100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(4deg); }
}
.section-gap {
    margin-top: 50px;
}
.registration-form {
    max-width: 650px;
    margin: 0 auto;
    background: rgba(255,255,255,0.95);
    padding: 45px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.25);
    padding-bottom: 20px;          /* ✅ key fix */
    background: transparent;
}

.form-group {
    margin-bottom: 22px;
}

.registration-form input,
.registration-form select,
.registration-form textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    font-size: 1.1rem;
    font-family: 'Fredoka', sans-serif;
    transition: all 0.3s ease;
}

.registration-form textarea {
    resize: none;
    height: 110px;
}

.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 4px rgba(102,126,234,0.15);
}

.form-btn {
    width: 100%;
    font-size: 1.3rem;
    padding: 18px;
    border-radius: 50px;
}

