/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove margins between sections and divs */
section, div {
    padding: 0;
}


/* Force sections to be completely flush */
.hero, .age-groups, .contact, .modules-hero, .modules {
    margin: 0 !important;
    padding: 0;
    display: block;
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #a13696 0%, #8a2f7f 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(161, 54, 150, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #8dc541;
    border: 3px solid #8dc541;
}

.btn-secondary:hover {
    background: #8dc541;
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(141, 197, 65, 0.5);
}

.btn-large {
    padding: 25px 50px;
    font-size: 1.3rem;
    border-radius: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #8dc541 0%, #7ab83a 100%);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-large:hover::before {
    left: 100%;
}

.btn-large:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 20px 40px rgba(132, 204, 22, 0.6);
    background: linear-gradient(135deg, #65a30d 0%, #4d7c0a 100%);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.logo-image {
    height: 120px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.footer-logo {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}



.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-top: 0.5rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #a13696;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #a13696;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 140px 0 0;
    background: linear-gradient(135deg, #a13696 0%, #8a2f7f 50%, #8dc541 100%);
    min-height: 100vh;
    display: block;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23FF6B9D" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%234ECDC4" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23FFD93D" opacity="0.1"/><circle cx="90" cy="90" r="2.5" fill="%23FF6B9D" opacity="0.1"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
    justify-content: center;
}

.hero-title {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.6;
    max-width: 500px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease 0.4s both;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.hero-buttons .btn-large {
    margin-bottom: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease 0.6s both;
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(161, 54, 150, 0.3);
    transition: all 0.3s ease;
    border: 4px solid white;
    background: linear-gradient(135deg, #a13696 0%, #8dc541 100%);
}

.hero-img {
    width: 500px;
    height: 410px;
    object-fit: cover;
    transition: all 0.3s ease;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(132, 204, 22, 0.1) 100%);
    pointer-events: none;
}

.hero-image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(161, 54, 150, 0.4);
}

.hero-image-container:hover .hero-img {
    transform: scale(1.1);
}

/* Floating Images */
.floating-images {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-img {
    position: absolute;
    opacity: 0.7;
}

.floating-img-1 {
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.floating-img-2 {
    top: 60%;
    right: 8%;
    animation: float 8s ease-in-out infinite reverse;
}

.floating-img-3 {
    bottom: 20%;
    left: 15%;
    animation: float 7s ease-in-out infinite;
}

.floating-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.floating-img:hover .floating-circle {
    transform: scale(1.2);
    opacity: 1;
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.5);
}

/* Responsive floating images */
@media (max-width: 768px) {
    .floating-img {
        display: none;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #718096;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h4 {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #718096;
    margin: 0;
}

/* Modules Hero */
.modules-hero {
    padding: 180px 0 80px;
    background: #f8f5ff;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

/* Schedule Hero */
.schedule-hero {
    padding: 180px 0 80px;
    background: #f8f5ff;
    color: #2d3748;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.modules-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%238B5CF6" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%2384CC16" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23F59E0B" opacity="0.1"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.modules-hero .section-header h1 {
    font-size: 3.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.modules-hero .section-header p {
    font-size: 1.3rem;
    color: #718096;
    animation: fadeInUp 1s ease 0.2s both;
}

.schedule-hero h1 {
    font-size: 3.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.schedule-hero p {
    font-size: 1.3rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.2s both;
}

/* Modules Section */
.modules {
    padding: 100px 0;
    background: #faf8ff;
    position: relative;
}

.modules::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,20 60,40 80,40 65,55 70,75 50,65 30,75 35,55 20,40 40,40" fill="%23FFD93D" opacity="0.1"/></svg>');
    animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

/* Year Navigation */
.year-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.year-nav-item {
    padding: 1rem 2rem;
    background: white;
    border-radius: 25px;
    cursor: pointer !important;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    font-size: 1.1rem;
    min-width: 120px;
    text-align: center;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.year-nav-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #a13696;
}

.year-nav-item.active {
    background: #a13696;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(161, 54, 150, 0.4);
}

/* Module Navigation */
.module-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.module-nav-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 120px;
}

.module-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B5CF6, #84CC16);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.module-nav-item:hover::before {
    transform: scaleX(1);
}

.module-nav-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #a13696;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.module-nav-item.active {
    background: #a13696;
    color: white;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(161, 54, 150, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.module-nav-item.active::before {
    transform: scaleX(1);
}

.module-nav-item.active .module-nav-content span,
.module-nav-item.active .module-nav-content small {
    color: white;
}

.module-nav-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8B5CF6 0%, #84CC16 100%);
    border-radius: 50%;
    color: white;
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.3);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.module-nav-content {
    flex: 1;
}

.module-nav-content span {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
    line-height: 1.3;
    transition: color 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.module-nav-content small {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.4;
    color: #718096;
    transition: color 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}



/* Module Content */
.module-content {
    position: relative;
}



/* Desktop-specific enhancements */
@media (min-width: 769px) {
    .module-nav {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .module-nav-item {
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .module-nav-item:hover {
        transform: translateY(-8px) scale(1.02);
    }
    
    .module-nav-item.active {
        transform: translateY(-8px) scale(1.02);
        background: #a13696;
        color: white;
    }
    
    .module-nav-item.active .module-nav-content span,
    .module-nav-item.active .module-nav-content small {
        color: white;
    }
    
    .module-nav-icon {
        transition: all 0.3s ease;
    }
    
    .module-nav-item:hover .module-nav-icon {
        transform: scale(1.1);
        box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
    }
}

.year-content {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.year-content.active {
    display: block;
}

.module-panel {
    display: none;
    animation: fadeInUp 0.6s ease;
    margin-top: 1rem;
}

.module-panel.active {
    display: block;
}

/* Mobile-specific module panel styles */
@media (max-width: 768px) {
    .module-panel {
        margin-top: 0.5rem;
        animation: fadeInUp 0.4s ease;
    }
    
    .module-panel.active {
        margin-bottom: 2rem;
    }
    
    /* Mobile-only module navigation */
    .module-nav {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Mobile dropdown descriptions */
    .mobile-module-description {
        display: none;
        background: white;
        margin: 0.5rem 0;
        padding: 1rem;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-left: 4px solid #a13696;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .mobile-module-description.active {
        display: block;
    }
    
    .mobile-module-description h4 {
        color: #2d3748;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }
    
    .mobile-module-description p {
        color: #718096;
        line-height: 1.6;
        font-size: 0.9rem;
        margin: 0;
    }
    
}

/* Desktop: Hide mobile descriptions */
@media (min-width: 769px) {
    .mobile-module-description {
        display: none !important;
    }
}

/* Year Placeholder */
.year-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.year-placeholder h3 {
    color: #2d3748;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.year-placeholder p {
    color: #718096;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.placeholder-icon {
    font-size: 4rem;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #a13696 0%, #8dc541 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 15px 30px rgba(161, 54, 150, 0.3);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mobile-specific module header styles */
@media (max-width: 768px) {
    .module-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .module-icon {
        font-size: 3.5rem;
        width: 80px;
        height: 80px;
    }
    
    .module-title h3 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .module-subtitle {
        font-size: 1rem;
    }
}

.module-icon {
    font-size: 4rem;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8B5CF6 0%, #84CC16 100%);
    border-radius: 50%;
    color: white;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.module-title h3 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
}

.module-subtitle {
    color: #718096;
    font-size: 1.1rem;
    margin: 0;
}

/* Module Info Grid */
.module-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Responsive breakpoints for module grid */
@media (max-width: 1200px) {
    .module-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 600px) {
    .module-info-grid {
        grid-template-columns: 1fr;
    }
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #a13696;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.info-card h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: 718096;
    position: relative;
    padding-left: 1.5rem;
}

.info-card ul li:before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.info-card ul li:last-child {
    border-bottom: none;
}

.info-card p {
    margin: 0.5rem 0;
    color: #718096;
}

.highlight {
    color: #a13696 !important;
    font-weight: 600;
    font-size: 1.2rem;
}

/* Module Description */
.module-description {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Mobile-specific module description styles */
@media (max-width: 768px) {
    .module-description {
        padding: 1.5rem;
        margin-top: 1rem;
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
    }
    
    .module-description h4 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .module-description p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* Highlight active module description on mobile */
    .module-panel.active .module-description {
        border-left: 4px solid #a13696;
        background: linear-gradient(135deg, #ffffff 0%, #faf8ff 100%);
    }
    
    /* Mobile grid adjustments */
    .module-nav {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Mobile dropdown styles */
    .module-nav-item {
        position: relative;
        cursor: pointer;
        transition: all 0.3s ease;
        flex-direction: row;
        text-align: left;
    }
    
    .module-nav-content {
        flex: 1;
    }
    

    

    

    
    .dropdown-content {
        padding: 1.5rem;
    }
    
    .dropdown-content h4 {
        color: #2d3748;
        font-size: 1.2rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }
    
    .dropdown-content p {
        color: #718096;
        line-height: 1.7;
        font-size: 0.95rem;
        margin: 0;
    }
    
    /* Slide down animation */
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
            max-height: 0;
        }
        to {
            opacity: 1;
            transform: translateY(0);
            max-height: 500px;
        }
    }
}

.module-description h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.module-description p {
    color: #718096;
    line-height: 1.8;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B5CF6, #84CC16, #F59E0B);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: #8B5CF6;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.service-card p {
    color: #718096;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #faf8ff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #2d3748;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: #f7fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #718096;
    margin: 0;
}

.contact-form {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Background Images */
.contact-images {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.contact-img {
    position: absolute;
    opacity: 0.6;
}

.contact-img-1 {
    top: 15%;
    right: 10%;
    animation: float 9s ease-in-out infinite;
}

.contact-img-2 {
    bottom: 25%;
    left: 8%;
    animation: float 11s ease-in-out infinite reverse;
}

.contact-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.contact-img:hover .contact-circle {
    transform: scale(1.15);
    opacity: 0.9;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.5);
}

/* Responsive contact images */
@media (max-width: 768px) {
    .contact-img {
        display: none;
    }
}

/* Footer */
.footer {
    background: #f8f5ff;
    color: #2d3748;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #a13696;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #4a5568;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #a13696;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    color: #a13696;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #8dc541;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    color: #718096;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Contact Page Styles */
.contact-hero {
    background: #f8f5ff;
    color: #2d3748;
    padding: 180px 0 6rem 0;
    text-align: center;
    margin-top: 0;
}

.contact-hero .section-header h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 700;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #2d3748;
}

.contact-hero .section-header p {
    font-size: 1.2rem;
    opacity: 1;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

.contact-content {
    padding: 6rem 0 2rem;
    display: flex;
    justify-content: center;
    width: 100%;
    background: #faf8ff;
}

.contact-grid {
    display: grid !important;
    grid-template-columns: 1fr 1.5fr !important;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}



.contact-info-section h2,
.map-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
    border-bottom: 3px solid #a13696;
    padding-bottom: 0.5rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
    background: linear-gradient(135deg, #a13696 0%, #8dc541 100%);
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text h4 {
    margin: 0 0 0.5rem 0;
    color: #a13696;
    font-size: 1.1rem;
}

.contact-text p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.contact-text a {
    color: #8B5CF6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #84CC16;
}

.social-links {
    margin-top: 0.5rem;
}

.social-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #a13696;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #84CC16;
    transform: translateY(-2px);
}

.map-section {
    width: 100%;
}

.map-container {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 15px;
}

.registration-section {
    text-align: center;
    margin: 6rem 0;
    padding: 3rem 0;
    background: white;
}

.registration-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.registration-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-container {
    width: 100%;
    max-width: none;
    margin: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-container iframe {
    border-radius: 15px;
    width: 100%;
    min-height: 2200px;
}

.form-container-full {
    width: 100%;
    background: white;
    padding: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0;
}

.form-container-full iframe {
    width: 100%;
    min-height: 2200px;
    border: none;
    border-radius: 0;
}

.form-section {
    background: #faf8ff;
    padding: 0;
    margin: 0;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 955px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        min-height: 80vh;
    }

    .hero-image {
        order: -1;
        margin-bottom: 1rem;
    }

    .hero-img {
        width: 350px;
        height: 262px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .map-section {
        order: 2;
    }
    
    .contact-info-section {
        order: 1;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .map-container iframe {
        height: 300px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 120px 0 80px;
    }
    
    .contact-hero {
        padding: 120px 0 4rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .btn {
        padding: 18px 35px;
        font-size: 1rem;
    }

    .btn-large {
        padding: 22px 45px;
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .service-card {
        padding: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Age Groups Section */
.age-groups {
    padding: 100px 0;
    background: #faf8ff;
    position: relative;
    overflow: hidden;
}

.age-groups::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238B5CF6' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: float 20s ease-in-out infinite;
}

.age-groups-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.age-group-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid transparent;
}

.age-group-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(161, 54, 150, 0.25);
    border-color: #a13696;
}

.age-group-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #a13696 0%, #8dc541 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.age-group-card:hover::before {
    transform: scaleX(1);
}

.age-group-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.age-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.age-group-card:hover .age-img {
    transform: scale(1.1);
}

.age-overlay {
    display: none;
}

.age-number {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.age-group-info {
    padding: 2rem;
}

.age-group-info h3 {
    color: #2d3748;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.age-range {
    color: #a13696;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
    background: rgba(161, 54, 150, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.age-description {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.age-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: linear-gradient(135deg, #8dc541 0%, #a13696 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(141, 197, 65, 0.4);
}

/* Responsive adjustments for age groups */
@media (max-width: 768px) {
    .age-groups-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .age-group-card {
        margin: 0 1rem;
    }
    
    .age-group-info {
        padding: 1.5rem;
    }
}

/* Animations for age groups */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Staggered animation for cards */
.age-group-card:nth-child(1) { animation-delay: 0s; }
.age-group-card:nth-child(2) { animation-delay: 0.1s; }
.age-group-card:nth-child(3) { animation-delay: 0.2s; }
.age-group-card:nth-child(4) { animation-delay: 0.3s; }
.age-group-card:nth-child(5) { animation-delay: 0.4s; }
.age-group-card:nth-child(6) { animation-delay: 0.5s; }

/* Fade in animation for cards */
.age-group-card {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact page mobile responsive styles */
@media (max-width: 768px) {
    .contact-hero .section-header h1 {
        font-size: 2rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .contact-hero {
        margin-top: 100px;
        padding: 4rem 1rem 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
