* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2E86AB;
    --secondary-color: #F24236;
    --accent-color: #F6AE2D;
    --text-dark: #2F2D2E;
    --text-light: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-section: #FFFFFF;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

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

header {
    background-color: var(--bg-section);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    text-decoration: none;
}

.logo h1 {
    background: linear-gradient(135deg, #B19CD9, #87CEEB);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    font-family: 'Shrikhand', cursive;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.logo a:hover h1 {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-star {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: var(--primary-color);
}

main {
    margin-top: 80px;
}

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1E5F8E 100%);
    color: var(--text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    border: 6px outset #ddd;
    box-shadow: 
        inset 2px 2px 8px rgba(0, 0, 0, 0.2),
        0 10px 40px rgba(0, 0, 0, 0.4);
    animation: floatImage 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.hero-image-wrapper:nth-child(1) {
    animation-delay: 0s;
}

.hero-image-wrapper:nth-child(2) {
    animation-delay: 2s;
}

.hero-image-wrapper:nth-child(3) {
    animation-delay: 4s;
}

.hero-image-wrapper:hover {
    transform: scale(1.05) translateY(-5px);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.cta-button:hover {
    background-color: #E09B1C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.about {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.about h2, .mission h2, .request-section h2, .contact h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--bg-section);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.mission {
    padding: 80px 0;
    background-color: var(--bg-section);
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.request-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.request-section p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-section);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.contact {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.contact h2 {
    color: var(--text-light);
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    text-align: center;
    padding: 2rem 0;
}

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

/* Floating Music Icons - Only in Blue Sections */
.floating-music-left,
.floating-music-right,
.floating-music-left-contact,
.floating-music-right-contact,
.floating-music-left-music,
.floating-music-right-music {
    position: absolute;
    top: 50%;
    z-index: 100;
    opacity: 0;
    transform: translateY(-50%);
    pointer-events: none;
}

.floating-music-left,
.floating-music-left-contact,
.floating-music-left-music {
    left: 20px;
    transform: translateY(-50%) rotate(-15deg);
    animation: floatInLeft 2s ease-in-out infinite;
    animation-delay: 0s;
}

.floating-music-right,
.floating-music-right-contact,
.floating-music-right-music {
    right: 20px;
    transform: translateY(-50%) rotate(15deg);
    animation: floatInRight 2s ease-in-out infinite;
    animation-delay: 3.5s;
}

@keyframes floatInLeft {
    0%, 85%, 100% {
        opacity: 0;
        transform: translateY(-50%) translateX(-30px) rotate(-15deg) scale(0.8);
    }
    15%, 70% {
        opacity: 1;
        transform: translateY(-50%) translateX(0) rotate(-15deg) scale(1);
    }
}

@keyframes floatInRight {
    0%, 85%, 100% {
        opacity: 0;
        transform: translateY(-50%) translateX(30px) rotate(15deg) scale(0.8);
    }
    15%, 70% {
        opacity: 1;
        transform: translateY(-50%) translateX(0) rotate(15deg) scale(1);
    }
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-images {
        gap: 1rem;
    }
    
    .hero-image-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .stat {
        padding: 1rem;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
    
    /* Responsive floating music icons */
    .floating-music-left,
    .floating-music-left-contact,
    .floating-music-left-music {
        left: 10px;
        font-size: 1rem;
    }
    
    .floating-music-right,
    .floating-music-right-contact,
    .floating-music-right-music {
        right: 10px;
        font-size: 1rem;
    }
    
    @keyframes floatInLeft {
        0%, 85%, 100% {
            opacity: 0;
            transform: translateY(-50%) translateX(-20px) rotate(-15deg) scale(0.7);
        }
        15%, 70% {
            opacity: 1;
            transform: translateY(-50%) translateX(0) rotate(-15deg) scale(0.9);
        }
    }
    
    @keyframes floatInRight {
        0%, 85%, 100% {
            opacity: 0;
            transform: translateY(-50%) translateX(20px) rotate(15deg) scale(0.7);
        }
        15%, 70% {
            opacity: 1;
            transform: translateY(-50%) translateX(0) rotate(15deg) scale(0.9);
        }
    }
}