/* Adding new styles for the image gallery */
.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    transition: all 0.3s ease-in-out;
}

.gallery-image:hover {
    transform: translateY(-5px);
}

.gallery-image img {
    transition: transform 0.3s ease-in-out;
}

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

/* Header styles */
.header-gradient {
    background: linear-gradient(135deg, #2a2d2e 0%, #3B3E3F 100%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-link {
    position: relative;
    padding: 0.5rem 0;
}

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

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

/* Mobile menu animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-name="mobile-navigation"] {
    animation: slideDown 0.3s ease-out;
}

/* Hero section styles */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1487958449943-2429e8be8625?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
}

/* Rest of the existing styles */
.mobile-nav-link {
    background-color: white;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.mobile-nav-link:hover {
    border-color: #3B3E3F;
    transform: translateX(5px);
}

.about-section {
    background: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&q=80') no-repeat right center;
    background-size: contain;
}

.form-container {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.95);
}

.service-card {
    transition: all 0.3s ease-in-out;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #3B3E3F;
}

.service-card img {
    border-radius: 50%;
    background-color: #f3f4f6;
}

.stat-card {
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #f3f4f6 0%, #ffffff 100%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease-in-out;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.project-image {
    transition: transform 0.3s ease;
}

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

.registration-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.input-field {
    transition: border-color 0.2s ease;
}

.input-field:focus {
    border-color: #3B3E3F;
    box-shadow: 0 0 0 3px rgba(59, 62, 63, 0.1);
}

/* WhatsApp Button Styles */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-button i {
    font-size: 35px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    background-color: #22c35e;
}

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

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.font-tenor-sans {
    font-family: 'Tenor Sans', sans-serif;
}

@media (max-width: 768px) {
    .service-icons {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-button i {
        font-size: 30px;
    }
}
