/* Custom Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

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

.animate-float-delayed {
    animation: float-delayed 3.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #fdf4f6;
}

::-webkit-scrollbar-thumb {
    background: #be2047;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9c1a41;
}

/* Navigation Active State */
.nav-link.active {
    color: #be2047;
    font-weight: 600;
}

/* Hover Effects for Service Cards */
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Button Hover Glow */
button:hover, a:hover {
    box-shadow: 0 10px 40px rgba(190, 32, 71, 0.2);
}

/* Image Hover Zoom */
.group:hover .group-hover\:scale-110 {
    transition: transform 0.5s ease;
}

/* Focus Styles */
input:focus, select:focus, textarea:focus {
    border-color: #db4068;
    box-shadow: 0 0 0 3px rgba(219, 64, 104, 0.1);
}
