
        :root {
            --primary-blue: #4A90E2;
            --secondary-blue: #357ABD;
            --accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --light-gray: #F8F9FA;
            --dark-gray: #6C757D;
            --text-dark: #2D3748;
            --shadow-light: 0 10px 25px rgba(0,0,0,0.08);
            --shadow-medium: 0 15px 35px rgba(0,0,0,0.12);
            --shadow-heavy: 0 25px 50px rgba(0,0,0,0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Modern Navbar */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 32px rgba(0,0,0,0.08);
            padding: 1.2rem 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

        .navbar.scrolled {
            padding: 0.8rem 0;
            background: rgba(255, 255, 255, 0.98);
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(135deg, #4A90E2, #357ABD);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover {
            transform: scale(1.05);
        }

        .navbar-nav .nav-link {
            color: var(--text-dark) !important;
            font-weight: 600;
            margin: 0 1rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(135deg, #4A90E2, #357ABD);
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }

        .btn-phone {
            background: linear-gradient(135deg, #4A90E2, #357ABD);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-light);
        }

        .btn-phone:hover {
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
            padding: 8rem 0 6rem;
            margin-top: 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
            line-height: 1.2;
        }

        .hero-subtitle {
            color: rgba(255,255,255,0.9);
            font-size: 1.3rem;
            margin-bottom: 4rem;
            font-weight: 500;
        }

        .hero-content {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 3rem;
            box-shadow: var(--shadow-heavy);
            /* margin-bottom: 2rem; */
            border: 1px solid rgba(255,255,255,0.2);
            transition: transform 0.3s ease;
        }

        .hero-content:hover {
            transform: translateY(-10px);
        }

        .hero-image {
            width: 100%;
            height: 400px;
            background: url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
            border-radius: 24px;
            box-shadow: var(--shadow-heavy);
            position: relative;
            overflow: hidden;
        }

        .hero-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
        }

        /* Modern Buttons */
        .btn-primary-custom {
            background: linear-gradient(135deg, #4A90E2, #357ABD);
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            margin-right: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-light);
            position: relative;
            overflow: hidden;
        }

        .btn-primary-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .btn-primary-custom:hover::before {
            left: 100%;
        }

        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

        .btn-outline-custom {
            border: 2px solid white;
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            background: transparent;
        }

        .btn-outline-custom:hover {
            background: white;
            color: var(--primary-blue);
            transform: translateY(-3px);
        }

        /* Feature Cards with Glassmorphism */
        .auto-features {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 3rem;
            box-shadow: var(--shadow-heavy);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .feature-item {
            display: flex;
            align-items: center;
            padding: 1.5rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateX(10px);
            background: rgba(102, 126, 234, 0.05);
            border-radius: 12px;
            margin: 0 -1rem;
            padding: 1.5rem 1rem;
        }

        .feature-item:last-child {
            border-bottom: none;
        }

        .feature-icon {
            color: var(--primary-blue);
            font-size: 1.8rem;
            margin-right: 1.5rem;
            width: 40px;
            transition: all 0.3s ease;
        }

        .feature-item:hover .feature-icon {
            transform: scale(1.2) rotate(5deg);
        }

        /* Featured Logos with Animation */
        .featured-logos {
            padding: 4rem 0;
            background: white;
            position: relative;
        }

        .logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 3rem;
        }

        .logo-item {
            opacity: 0.6;
            transition: all 0.3s ease;
            filter: grayscale(100%);
            height: 50px;
            display: flex;
            align-items: center;
        }

        .logo-item:hover {
            opacity: 1;
            filter: grayscale(0%);
            transform: scale(1.1);
        }

        .logo-item img {
            max-height: 50px;
            max-width: 150px;
            object-fit: contain;
        }

        /* Enhanced Feature Cards */
        .features-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            position: relative;
        }

        .feature-card {
            background: white;
            border-radius: 24px;
            padding: 3rem;
            text-align: center;
            box-shadow: var(--shadow-light);
            height: 100%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255,255,255,0.8);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #4A90E2, #357ABD);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: var(--shadow-heavy);
        }

        .feature-card-icon {
            font-size: 4rem;
            background: linear-gradient(135deg, #4A90E2, #357ABD);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-card-icon {
            transform: scale(1.1) rotate(5deg);
        }

        /* Modern Quote Form */
        .quote-form-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, #4A90E2, #357ABD);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .quote-form {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 3rem;
            box-shadow: var(--shadow-heavy);
            border: 1px solid rgba(255,255,255,0.2);
            position: relative;
            z-index: 2;
        }

        .quote-form .form-control {
            padding: 1rem;
            border-radius: 12px;
            border: 2px solid #e2e8f0;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .quote-form .form-control:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
            transform: scale(1.02);
        }

        /* Coverage Cards */
        .coverage-types {
            padding: 6rem 0;
            background: white;
        }

        .coverage-card {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            margin-bottom: 2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .coverage-card:hover {
            background: linear-gradient(135deg, #4A90E2, #357ABD);
            color: white;
            transform: translateY(-10px) scale(1.05);
            border-color: rgba(255,255,255,0.3);
            box-shadow: var(--shadow-heavy);
        }

        .coverage-icon {
            font-size: 3.5rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .coverage-card:hover .coverage-icon {
            color: white;
            transform: scale(1.2) rotate(10deg);
        }

        .coverage-card h5 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        /* What We Do Section */
        .what-we-do-section {
            padding: 6rem 0;
            /* background: linear-gradient(135deg, #4A90E2, #357ABD); */
            /* color: white; */
        }

        .illustration-modern {
            width: 100%;
            height: 400px;
            background: url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
            border-radius: 24px;
            box-shadow: var(--shadow-heavy);
            position: relative;
            overflow: hidden;
        }

        .illustration-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
        }

        /* Modern Footer */
        .footer {
            background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
            color: white;
            padding: 4rem 0 2rem 0;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        }

        .footer h5 {
            color: white;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .footer a {
            color: #a0aec0;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            color: #a0aec0;
            font-size: 0.9rem;
        }

        /* Scroll Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .btn-primary-custom, .btn-outline-custom {
                display: block;
                margin: 0.5rem 0;
                width: 100%;
            }

            .hero-image {
                height: 250px;
                margin-top: 2rem;
            }

            .navbar-brand {
                font-size: 1.4rem;
            }

            .coverage-card {
                height: auto;
                min-height: 250px;
            }
        }

        /* Loading Animation */
        .loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--accent-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loading.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 4px solid rgba(255,255,255,0.3);
            border-top: 4px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
   