/* Custom styles and overrides */

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

/* Custom selection color */
::selection {
    background-color: #b03d3c;
    color: white;
}

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

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

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

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

/* Animation for mobile menu */
#mobile-menu {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar scroll effect */
.navbar-scrolled #nav-bg {
    opacity: 1;
}

/* Service card hover effect */
.group:hover .group-hover\:bg-plum-700 {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.group:hover .group-hover\:bg-plum-700 svg {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
