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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Logo Styles - Colorful Bubble Text */
.logo-text {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo-text .letter {
    display: inline-block;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    transform: rotate(var(--rotate, 0deg)) translateY(var(--translateY, 0px));
    transition: transform 0.3s ease;
    animation: bounce 2s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

.logo-text .letter:hover {
    transform: scale(1.2) rotate(var(--rotate, 0deg)) translateY(var(--translateY, 0px));
}

.logo-text .space {
    width: 10px;
}

/* Letter Colors and Animations */
.letter.blue { 
    color: #3B82F6; 
    --rotate: -5deg; 
    --translateY: -3px; 
    --delay: 0.1s; 
}
.letter.red { 
    color: #EF4444; 
    --rotate: 3deg; 
    --translateY: 2px; 
    --delay: 0.2s; 
}
.letter.purple { 
    color: #8B5CF6; 
    --rotate: -2deg; 
    --translateY: -1px; 
    --delay: 0.3s; 
}
.letter.dark-red { 
    color: #DC2626; 
    --rotate: 4deg; 
    --translateY: 3px; 
    --delay: 0.4s; 
}
.letter.light-red { 
    color: #F87171; 
    --rotate: -3deg; 
    --translateY: -2px; 
    --delay: 0.5s; 
}
.letter.light-blue { 
    color: #60A5FA; 
    --rotate: 2deg; 
    --translateY: 1px; 
    --delay: 0.6s; 
}
.letter.light-green { 
    color: #4ADE80; 
    --rotate: -4deg; 
    --translateY: -3px; 
    --delay: 0.7s; 
}
.letter.orange { 
    color: #FB923C; 
    --rotate: 3deg; 
    --translateY: 2px; 
    --delay: 0.8s; 
}
.letter.green { 
    color: #10B981; 
    --rotate: -2deg; 
    --translateY: -1px; 
    --delay: 0.9s; 
}
.letter.blue2 { 
    color: #1D4ED8; 
    --rotate: 4deg; 
    --translateY: 3px; 
    --delay: 1.0s; 
}
.letter.yellow { 
    color: #F59E0B; 
    --rotate: -3deg; 
    --translateY: -2px; 
    --delay: 1.1s; 
}

@keyframes bounce {
    0%, 100% { transform: rotate(var(--rotate)) translateY(var(--translateY)); }
    50% { transform: rotate(var(--rotate)) translateY(calc(var(--translateY) - 5px)); }
}

/* Navigation */
.navbar {
    background: #ffffff;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.nav-menu {
    display: flex;
    gap: 2rem;
}

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

.nav-link:hover {
    color: #3B82F6;
}

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

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

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

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

/* Hero Section */
.hero {
    background: url('landing.png') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text .highlight {
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #4B6BFB;
    color: white;
    box-shadow: 0 4px 15px rgba(75, 107, 251, 0.2);
}

.btn-primary:hover {
    background: #3451D1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75, 107, 251, 0.3);
}

.btn-secondary {
    background: #ffffff;
    color: #4B6BFB;
    border: 2px solid #4B6BFB;
}

.btn-secondary:hover {
    background: #4B6BFB;
    color: white;
    transform: translateY(-2px);
}

/* Floating shapes removed as requested */

/* Rating badge removed */

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

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #4B6BFB;
    border-radius: 2px;
}

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

/* About Section */
.about {
    padding: 8rem 0;
    background: #ffffff;
    position: relative;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-header h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.2;
}

.about-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #4B6BFB;
    border-radius: 2px;
}

.about-header p {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: #4B6BFB;
    font-weight: 500;
    line-height: 1.3;
}

.about-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #4B6BFB;
    box-shadow: 0 8px 30px rgba(75, 107, 251, 0.12);
}

.feature-card i {
    font-size: 2.5rem;
    color: #4B6BFB;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #4B6BFB;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(75, 107, 251, 0.12);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: #4B6BFB;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #666;
    font-size: 1.1rem;
}

.stat-card.highlight {
    background: #4B6BFB;
}

.stat-card.highlight h3,
.stat-card.highlight p {
    color: white;
}

/* Programs Section */
.programs {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    border-bottom: 1px solid #E5E7EB;
}

/* Scroll indicator container */
.programs .container {
    position: relative;
}

.programs .container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to right, transparent, #ffffff 80%);
    pointer-events: none;
    z-index: 2;
}

.programs .container::before {
    content: '→';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #4B6BFB;
    animation: bounceRight 1.5s infinite;
    z-index: 3;
}

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

.programs-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.programs-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.program-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 300px;
}

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #4B6BFB;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: #4B6BFB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.program-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.program-card .age {
    color: #FF6B6B;
    font-weight: 600;
    margin-bottom: 1rem;
}

.program-card > p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.program-card ul {
    list-style: none;
    text-align: left;
}

.program-card li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.program-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ECDC4;
    font-weight: bold;
}

/* Activities Section */
.activities {
    padding: 6rem 0;
    background: #F8FAFC;
    position: relative;
    border-bottom: 1px solid #E5E7EB;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.activity-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-card i {
    font-size: 3rem;
    color: #4ECDC4;
    margin-bottom: 1rem;
}

.activity-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.activity-card p {
    color: #666;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    border-bottom: 1px solid #E5E7EB;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    overflow: hidden;
    padding: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    aspect-ratio: 4/3;
    background: #f5f5f5;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Gallery styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #F8FAFC;
    position: relative;
    border-bottom: 1px solid #E5E7EB;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: #4B6BFB;
    box-shadow: 0 8px 30px rgba(75, 107, 251, 0.12);
}

.contact-item i {
    font-size: 2rem;
    color: #4B6BFB;
    background: rgba(75, 107, 251, 0.1);
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background: #4B6BFB;
    color: white;
}

.contact-item h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4B6BFB;
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.contact-link:hover {
    gap: 0.8rem;
}

.contact-link i {
    font-size: 0.9rem;
    padding: 0;
    background: none;
    color: inherit;
}

.status-open {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: #D1FAE5;
    color: #059669;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4ECDC4;
}

#formStatus {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

#formStatus .success-message {
    display: none;
    color: #059669;
    background-color: #D1FAE5;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

#formStatus .error-message {
    display: none;
    color: #DC2626;
    background-color: #FEE2E2;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.contact-form button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Footer */
.footer {
    background: #1F2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #4ECDC4;
}

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

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

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

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

.footer-section p {
    color: #D1D5DB;
    line-height: 1.6;
}

.footer-section p i {
    color: #4ECDC4;
    margin-right: 0.5rem;
}

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    /* Hide scroll indicators on mobile */
    .programs .container::after,
    .programs .container::before {
        display: none;
    }
    
    /* Navigation adjustments */
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: 0.3s ease-in-out;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
    }
    
    /* Header/Logo adjustments */
    .logo-text {
        font-size: 1.8rem;
    }
    
    /* Hero section adjustments */
    .hero {
        padding-top: 70px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-top: 2rem;
    }
    
    .hero-text h1 {
        font-size: calc(2rem + 2vw);
        margin-bottom: 1.5rem;
    }

    .hero-text p {
        font-size: calc(1rem + 0.5vw);
        margin-bottom: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    /* Layout adjustments */
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 1.5rem;
    }

    .stat {
        flex: 1 1 200px;
        min-width: 200px;
    }
    
    .rating-badge {
        position: static;
        margin: 2rem auto 0;
        width: fit-content;
        max-width: 300px;
    }

    /* Programs and Activities grid adjustments */
    .programs-grid {
        flex-direction: column;
        padding: 0 1rem;
    }
    
    .program-card {
        flex: 0 0 100%;
        min-width: 100%;
        margin-bottom: 1.5rem;
    }

    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        overflow-x: visible;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0.5rem;
    }

    /* Section padding adjustments */
    .about,
    .programs,
    .activities,
    .gallery,
    .contact {
        padding: 4rem 0;
    }

    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .contact-item i {
        font-size: 1.8rem;
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    /* Header/Logo adjustments */
    .logo-text {
        font-size: 1.5rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }

    /* Text size adjustments */
    .hero-text h1 {
        font-size: calc(1.8rem + 1vw);
    }
    
    .section-header h2 {
        font-size: calc(1.8rem + 1vw);
    }

    .hero-text p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    /* Grid adjustments */
    .programs-grid,
    .activities-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    /* Stats layout */
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat {
        min-width: 100%;
    }

    /* Form adjustments */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.8rem;
    }

    /* Container padding */
    .container {
        padding: 0 15px;
    }

    /* Button adjustments */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0.5rem;
    }
    
    .gallery-item {
        aspect-ratio: 3/2;
    }
}

/* Additional breakpoint for very small devices */
@media (max-width: 360px) {
    .logo-text {
        font-size: 1.2rem;
    }

    .hero-text h1 {
        font-size: calc(1.5rem + 1vw);
    }

    .nav-link {
        font-size: 1rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .rating-badge {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* Mobile title break control */
.mobile-break {
    display: none;
}

@media (max-width: 480px) {
    .mobile-break {
        display: block;
    }
    .about-header {
        padding: 0 15px;
    }
    .about-header h2 {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Gallery Toggle Styles */
.hidden-gallery {
    display: none;
}

.hidden-gallery.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.toggle-gallery {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 2rem auto;
    padding: 1rem 2rem;
    background: #4B6BFB;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(75, 107, 251, 0.2);
}

.toggle-gallery:hover {
    background: #3451D1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75, 107, 251, 0.3);
}

.toggle-gallery i {
    transition: transform 0.3s ease;
}

.toggle-gallery.expanded i {
    transform: rotate(180deg);
}
