/* Custom Animations and Utilities */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 0.1s;
}

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

/* Service Card Hover Effect */
.service-card {
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
}

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

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

::-webkit-scrollbar-thumb {
    background: #C05838;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #A0452A;
}

/* Form Input Transitions */
input:focus, textarea:focus {
    border-bottom-color: #C05838;
}

/* Navbar Active State */
.nav-link.active {
    color: #C05838;
}
