
        :root {
            --primary-color: #0c3649;
            --secondary-color: #77a36b;
            --accent-color: #f8a31b;
            --light-bg: #f8f9fa;
            --dark-text: #2d3a3a;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark-text);
            overflow-x: hidden;
        }
        
        /* Top Bar Styles */
        .top-bar {
            background-color: var(--primary-color);
            color: white;
            padding: 8px 0;
            font-size: 0.9rem;
        }
        
        .top-contact a {
            color: white;
            text-decoration: none;
            margin-right: 15px;
            transition: color 0.3s;
        }
        
        .top-contact a:hover {
            color: var(--secondary-color);
        }
        
        .top-social a {
            color: white;
            margin-left: 12px;
            font-size: 1rem;
            transition: color 0.3s;
        }
        
        .top-social a:hover {
            color: var(--secondary-color);
        }
        
        /* Hero Section with Navigation */
        .hero {
            background: linear-gradient(rgba(12, 54, 73, 0.85), rgba(12, 54, 73, 0.9)), url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1500&q=80');
            background-size: cover;
            background-position: center;
            padding: 20px 0 100px 0;
            color: white;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        /* Navigation Styles */
        .hero-nav {
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            padding: 15px 25px;
            margin-bottom: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand span {
            color: var(--secondary-color);
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        
        .logo-subtitle {
            font-size: 0.7rem;
            font-weight: 400;
            letter-spacing: 1.5px;
            color: var(--secondary-color);
        }
        
        .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 8px;
            position: relative;
            padding: 8px 5px !important;
            transition: all 0.3s;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--secondary-color);
            transition: width 0.3s;
        }
        
        .nav-link:hover:after, .nav-link.active:after {
            width: 100%;
        }
        
        .nav-link:hover {
            transform: translateY(-2px);
        }
        
        .btn-cta {
            background-color: var(--secondary-color);
            color: white;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid var(--secondary-color);
        }
        
        .btn-cta:hover {
            background-color: transparent;
            color: var(--secondary-color);
            transform: translateY(-2px);
        }
        
        /* Hero Content Styles */
        .hero-content {
            padding-right: 30px;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 35px;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        .hero-btn {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 14px 35px;
            border-radius: 30px;
            font-weight: 600;
            margin-right: 15px;
            margin-bottom: 15px;
            transition: all 0.3s;
        }
        
        .hero-btn.outline {
            background-color: transparent;
            border: 2px solid white;
        }
        
        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        /* Car Slider Styles */
        .car-slider {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            height: 450px;
        }
        
        .car-slide {
            height: 100%;
            background-size: cover;
            background-position: center;
            border-radius: 15px;
            position: relative;
            transition: transform 0.5s ease;
        }
        
        .car-slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 20px;
            color: white;
        }
        
        .car-slide-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .car-slide-desc {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .slider-controls {
            position: absolute;
            bottom: 20px;
            right: 20px;
            z-index: 10;
        }
        
        .slider-btn {
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-left: 10px;
            transition: all 0.3s;
        }
        
        .slider-btn:hover {
            background-color: var(--secondary-color);
        }
        
        /* Logo placeholder styling */
        .logo-placeholder {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            border: 3px solid var(--secondary-color);
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .hero-nav {
                border-radius: 20px;
                padding: 15px;
            }
            
            .navbar-collapse {
                background: rgba(12, 54, 73, 0.95);
                padding: 20px;
                border-radius: 10px;
                margin-top: 15px;
            }
            
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-content {
                padding-right: 0;
                margin-bottom: 40px;
            }
            
            .car-slider {
                height: 400px;
            }
        }
        
        @media (max-width: 768px) {
            .top-bar {
                text-align: center;
            }
            
            .top-contact, .top-social {
                justify-content: center !important;
                margin: 5px 0;
            }
            
            .hero {
                padding: 20px 0 60px 0;
                text-align: center;
            }
            
            .hero-title {
                font-size: 2.3rem;
            }
            
            .hero-btns {
                display: flex;
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }
            
            .hero-btn {
                margin-right: 0;
                width: 80%;
            }
            
            .navbar-brand {
                font-size: 1.5rem;
            }
            
            .logo-placeholder {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .car-slider {
                height: 350px;
            }
        }
        
        @media (max-width: 576px) {
            .logo-subtitle {
                display: none;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .car-slider {
                height: 300px;
            }
        }
  