/* Custom Styles for Quality Appliance Service */

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

/* Base Typography Overrides */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #1C1C1E;
}
::-webkit-scrollbar-thumb {
    background: #FF6B4F;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ff8a75;
}

/* Service Card Hover Effect */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Mobile Menu Animation */
#mobile-menu {
    animation: fadeIn 0.3s ease-out forwards;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Navbar Background Transition */
.nav-scrolled {
    background-color: rgba(28, 28, 30, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
