    /* Custom styles for Prevail Automotive */

    html {
        scroll-behavior: smooth;
    }

    body {
        overflow-x: hidden;
    }

    /* Navbar scroll effect */
    #navbar {
        background: transparent;
    }

    #navbar.scrolled {
        background: rgba(12, 21, 34, 0.95);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(14, 165, 142, 0.1);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    /* Service card hover glow */
    .service-card:hover {
        box-shadow: 0 0 40px rgba(14, 165, 142, 0.08);
    }

    /* Subtle gradient text accent */
    .text-gradient {
        background: linear-gradient(135deg, #2dd4bf 0%, #0d9488 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Selection color */
    ::selection {
        background: rgba(14, 165, 142, 0.3);
        color: #f0fdfa;
    }

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

    ::-webkit-scrollbar-track {
        background: #0f172a;
    }

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

    ::-webkit-scrollbar-thumb:hover {
        background: #0d9488;
    }

    /* Animation classes */
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Mobile menu animation */
    #mobile-menu {
        animation: slideDown 0.3s ease;
    }

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

    /* Select dropdown styling */
    select option {
        background: #1e293b;
        color: #f1f5f9;
    }

    /* Responsive adjustments */
    @media (max-width: 640px) {
        .font-heading {
            font-size: clamp(1.75rem, 5vw, 2.5rem);
        }
    }
