 body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }
        
        /* Top Bar Section */
        .top-section{
             background: #3a4a5c;
        }
        .top-area {
            position: relative;
            height: 60px;
            overflow: hidden;
           
        }
        
        .top-bar {
            position: absolute;
            top: 0;
            left: 0;
            right: 200px;
            height: 60px;
            background: #3a4a5c;
            color: white;
            display: flex;
            align-items: center;
            padding: 0 20px;
            z-index: 1;
        }
        
        .top-bar::after {
            content: '';
            position: absolute;
            top: 0;
            right: -30px;
            width: 0;
            height: 0;
            border-left: 30px solid #3a4a5c;
            border-bottom: 60px solid transparent;
        }
        
        .top-bar-content {
            display: flex;
            align-items: center;
            font-size: 13px;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .top-bar-content1 {
            display: flex;
            align-items: center;
            font-size: 13px;
            color: white;
            padding: 5px 20px;
        }
        
        .top-bar-separator {
            color: #999;
        }
        
        .add-listings {
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 60px;
            background: #dc3545;
            color: white;
            border: none;
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background-color 0.3s;
        }
        
        .add-listings:hover {
            background: #c82333;
        }
        
        /* Main Header */
        .main-header {
            background: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .logo-section {
            display: flex;
            align-items: center;
        }
        
        .car-logo {
            width: 65px;
            height: 50px;
            background: #dc3545;
            border-radius: 8px;
            margin-right: 15px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .car-logo svg {
            width: 40px;
            height: 25px;
            fill: white;
        }
        
        .brand-text h1 {
            font-size: 45px;
            font-weight: 900;
            color: #2c3e50;
            margin: 0;
            line-height: 0.9;
            letter-spacing: -2px;
        }
        
        .brand-text .tagline {
            font-size: 10px;
            color: #666;
            font-weight: 700;
            letter-spacing: 4px;
            margin-top: 2px;
        }
        
        .contact-section {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 15px;
        }
        
        .phone-icon {
            width: 50px;
            height: 50px;
            background: #f8f9fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #dc3545;
            font-size: 20px;
            transform: rotate(-30deg);
            flex-shrink: 0;
        }
        
        .contact-info .call-text {
            font-size: 14px;
            color: #666;
            margin: 0;
            font-weight: 500;
        }
        
        .contact-info .phone-number {
            font-size: 24px;
            color: #2c3e50;
            font-weight: 700;
            margin: 0;
            line-height: 1;
        }
        
        /* Navigation */
        .main-navigation {
            background: none;
            border: none;
            padding: 0;
        }
        
        .nav-menu {
            display: flex;
            justify-content: flex-end;
            list-style: none;
            margin: 0;
            padding: 0;
            flex-wrap: wrap;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            display: block;
            padding: 10px 15px;
            color: #2c3e50;
            text-decoration: none;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 0.5px;
            transition: color 0.3s;
            white-space: nowrap;
        }
        
        .nav-link:hover {
            color: #dc3545;
        }
        
        .dropdown-arrow::after {
            content: '▼';
            font-size: 10px;
            margin-left: 8px;
            color: #666;
        }
        
        /* Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 200px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: 1px solid #eee;
            border-radius: 4px;
            z-index: 1000;
            display: none;
            list-style: none;
            padding: 8px 0;
            margin: 0;
        }
        
        .nav-item:hover .dropdown-menu {
            display: block;
        }
        
        .dropdown-item {
            display: block;
            padding: 10px 20px;
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
            font-size: 13px;
            transition: all 0.3s;
        }
        
        .dropdown-item:hover {
            background-color: #f8f9fa;
            color: #dc3545;
        }
        
        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
/*            background: #2c3e50;*/
            color: #000;
            border: none;
            font-size: 18px;
           /* padding: 12px 15px;
            border-radius: 5px;*/
            cursor: pointer;
            transition: background-color 0.3s;
            background: transparent;
        }
        
        /*.mobile-toggle:hover {
            background: #34495e;
        }*/
        
        /* Sidebar Menu for Mobile */
        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .sidebar-overlay.show {
            opacity: 1;
            visibility: visible;
        }
        
        .sidebar-menu {
            position: fixed;
            top: 0;
            left: -350px;
            width: 350px;
            height: 100%;
            background: white;
            z-index: 1001;
            transition: left 0.3s ease;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
            overflow-y: auto;
        }
        
        .sidebar-menu.show {
            left: 0;
        }
        
        .sidebar-header {
            background: #2c3e50;
            color: white;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .sidebar-title {
            font-size: 18px;
            font-weight: 700;
            margin: 0;
        }
        
        .close-sidebar {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            padding: 5px;
        }
        
        .close-sidebar:hover {
            color: #dc3545;
        }
        
        .sidebar-nav {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .sidebar-nav-item {
            border-bottom: 1px solid #eee;
        }
        
        .sidebar-nav-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 20px;
            color: #2c3e50;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s;
        }
        
        .sidebar-nav-link:hover {
            background: #f8f9fa;
            color: #dc3545;
        }
        
        .sidebar-nav-link i {
            font-size: 16px;
            margin-right: 10px;
        }
        
        .sidebar-dropdown-toggle::after {
            content: '+';
            font-size: 16px;
            font-weight: bold;
            transition: transform 0.3s;
        }
        
        .sidebar-dropdown-toggle.expanded::after {
            content: '−';
            transform: rotate(0deg);
        }
        
        .sidebar-submenu {
            list-style: none;
            margin: 0;
            padding: 0;
            background: #f8f9fa;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .sidebar-submenu.show {
            max-height: 300px;
        }
        
        .sidebar-submenu-item {
            border-bottom: 1px solid #e9ecef;
        }
        
        .sidebar-submenu-link {
            display: block;
            padding: 12px 20px 12px 50px;
            color: #495057;
            text-decoration: none;
            font-size: 13px;
            transition: all 0.3s;
        }
        
        .sidebar-submenu-link:hover {
            background: #e9ecef;
            color: #dc3545;
        }
        
        /* Contact Section in Sidebar */
        .sidebar-contact {
            padding: 20px;
            background: #f8f9fa;
            margin-top: auto;
        }
        
        .sidebar-contact h6 {
            color: #2c3e50;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            font-size: 13px;
            color: #666;
        }
        
        .contact-item i {
            margin-right: 8px;
            color: #dc3545;
            width: 16px;
        }
        
        /* Extra Large Screens (1400px and up) */
        @media (min-width: 1400px) {
            .container {
                max-width: 1320px;
            }
        }
        
        /* Large Screens (1200px to 1399px) */
        @media (max-width: 1399.98px) {
            .brand-text h1 {
                font-size: 30px;
            }
            
            .top-bar-content {
                font-size: 12px;
            }
        }
        
        /* Medium Large Screens (992px to 1199px) */
        @media (max-width: 1199.98px) {
            .top-bar {
                right: 180px;
                padding: 0 15px;
            }
            
            .add-listings {
                width: 180px;
                font-size: 13px;
            }
            
            .brand-text h1 {
                font-size: 38px;
            }
            
            .contact-info .phone-number {
                font-size: 22px;
            }
            
            .nav-link {
                padding: 10px 12px;
                font-size: 12px;
            }
        }
        
        /* Medium Screens (768px to 991px) - Tablets */
        @media (max-width: 991.98px) {
            /* Hide desktop top bar layout */
            .desktop-top-bar {
                display: none !important;
            }
            
            /* Show mobile top bar layout */
            .mobile-top-bar {
                display: block !important;
            }
            
            .top-area {
                height: auto;
                padding: 10px 0;
            }
            
            .top-bar {
                position: static;
                background: none;
                right: auto;
                height: auto;
                padding: 0;
            }
            
            .top-bar::after {
                display: none;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .nav-menu {
                display: none !important;
            }
            
            .brand-text h1 {
                font-size: 35px;
            }
            
            .contact-section {
                justify-content: center;
                margin-top: 15px;
            }
        }
        
        /* Small Screens (576px to 767px) - Large Mobile */
        @media (max-width: 767.98px) {
            .sidebar-menu {
                width: 300px;
                left: -300px;
            }
            
            .top-bar-content span:last-child {
                display: none;
            }
            
            .brand-text h1 {
                font-size: 32px;
            }
            
            .brand-text .tagline {
                font-size: 9px;
                letter-spacing: 3px;
            }
            
            .contact-info .phone-number {
                font-size: 20px;
            }
            
            .contact-info .call-text {
                font-size: 13px;
            }
            
            .main-header {
                padding: 15px 0;
            }
            
            .car-logo {
                width: 55px;
                height: 45px;
            }
            
            .car-logo svg {
                width: 35px;
                height: 22px;
            }
            
            .phone-icon {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }
        
        /* Extra Small Screens (up to 575px) - Mobile */
        @media (max-width: 575.98px) {
            .sidebar-menu {
                width: 280px;
                left: -280px;
            }
            
            .brand-text h1 {
                font-size: 28px;
            }
            
            .brand-text .tagline {
                font-size: 8px;
                letter-spacing: 2px;
            }
            
            .car-logo {
                width: 50px;
                height: 40px;
                margin-right: 12px;
            }
            
            .car-logo svg {
                width: 30px;
                height: 20px;
            }
            
            .contact-section {
                display: none;
            }
            
            .contact-info .phone-number {
                font-size: 18px;
            }
            
            .contact-info .call-text {
                font-size: 12px;
            }
            
            .phone-icon {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .main-header {
                padding: 10px 0;
            }
            
            .top-bar-content1 {
                font-size: 12px;
                padding: 5px 15px;
            }
        }
        
        /* Ultra Small Screens (up to 360px) */
        @media (max-width: 360px) {
            .sidebar-menu {
                width: 260px;
                left: -260px;
            }
            
            .brand-text h1 {
                font-size: 24px;
            }
            
            .car-logo {
                width: 45px;
                height: 35px;
                margin-right: 10px;
            }
            
            .top-bar-content1 {
                font-size: 11px;
                padding: 5px 12px;
            }
        }

         /* Clean Professional Footer Styles */
        .footer-main {
            background-color: #2c3e50;
            color: #ffffff;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .footer-top {
            padding: 60px 0 40px;
            border-bottom: 1px solid #34495e;
        }
        
        .footer-bottom {
            padding: 25px 0;
            background-color: #1a252f;
        }
        
        /* Company Section */
        .company-info h3 {
            color: #ffffff;
            font-weight: 600;
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .company-description {
            color: #bdc3c7;
            line-height: 1.6;
            margin-bottom: 25px;
            font-size: 15px;
        }
        
        /* Footer Headings */
        .footer-heading {
            color: #ffffff;
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 25px;
            border-bottom: 2px solid #dc3545;
            padding-bottom: 10px;
            display: inline-block;
        }
        
        /* Links Styling */
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #dc3545;
        }
        
        /* Contact Information */
        .contact-info {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .contact-info li {
            color: #bdc3c7;
            margin-bottom: 15px;
            font-size: 14px;
            display: flex;
            align-items: center;
        }
        
        .contact-info i {
            color: #dc3545;
            width: 20px;
            margin-right: 12px;
            font-size: 16px;
        }
        
        /* Social Media */
        .social-media {
            margin-top: 25px;
        }
        
        .social-media a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: #34495e;
            color: #ffffff;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            border-radius: 4px;
            transition: background-color 0.3s ease;
            text-decoration: none;
        }
        
        .social-media a:hover {
            background-color: #dc3545;
        }
        
        /* Newsletter */
        .newsletter-form {
            margin-top: 20px;
        }
        
        .newsletter-form .input-group {
            margin-bottom: 15px;
        }
        
        .newsletter-form .form-control {
            border: 1px solid #34495e;
            background-color: #34495e;
            color: #ffffff;
            border-radius: 4px;
            padding: 12px 15px;
        }
        
        .newsletter-form .form-control:focus {
            border-color: #dc3545;
            background-color: #3a4a5c;
            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
            color: #ffffff;
        }
        
        .newsletter-form .form-control::placeholder {
            color: #95a5a6;
        }
        
        .btn-subscribe {
            background-color: #dc3545;
            border: none;
            color: #ffffff;
            padding: 12px 20px;
            border-radius: 4px;
            font-weight: 500;
            transition: background-color 0.3s ease;
        }
        
        .btn-subscribe:hover {
            background-color: #c82333;
        }
        
        /* Footer Bottom */
        .footer-bottom .row {
            align-items: center;
        }
        
        .copyright {
            color: #95a5a6;
            margin: 0;
            font-size: 14px;
        }
        
        .footer-policies {
            text-align: right;
        }
        
        .footer-policies a {
            color: #95a5a6;
            text-decoration: none;
            margin-left: 20px;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .footer-policies a:hover {
            color: #ffffff;
        }
        
        /* Trust Badges */
        .trust-badges {
            background-color: #34495e;
            padding: 20px 0;
            margin-top: 20px;
            border-radius: 4px;
        }
        
        .trust-item {
            text-align: center;
            color: #bdc3c7;
            font-size: 13px;
        }
        
        .trust-item i {
            font-size: 24px;
            color: #dc3545;
            margin-bottom: 8px;
            display: block;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-top {
                padding: 40px 0 30px;
            }
            
            .footer-policies {
                text-align: center;
                margin-top: 15px;
            }
            
            .footer-policies a {
                margin: 0 10px;
                display: inline-block;
            }
            
            .company-info h3 {
                font-size: 20px;
            }
            
            .footer-heading {
                font-size: 16px;
            }
            
            .trust-item {
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .footer-top {
                padding: 30px 0 20px;
            }
            
            .social-media a {
                width: 35px;
                height: 35px;
                line-height: 35px;
                margin-right: 8px;
            }
        }

        /* Banner Section */
        .banner-section {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), 
                        url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            color: white;
        }
        
        .banner-content {
            padding: 80px 0;
        }
        
        .banner-text h1 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
            line-height: 1.2;
        }
        
        .banner-text p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
            line-height: 1.6;
        }
        
        .btn-explore {
            background: linear-gradient(135deg, #dc3545, #e74c3c);
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            color: white;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
        }
        
        .btn-explore:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
            color: white;
        }
        
        /* Booking Form */
        .booking-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 20px 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
}
        
        .booking-title {
            color: #fff;
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }
        
        .booking-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    /* background: linear-gradient(135deg, #dc3545, #e74c3c); */
    border-radius: 2px;
    background: #fff;
}
        
        .form-label {
            color: #fff;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }
        
       .form-control {
    /* border: 2px solid #e9ecef; */
    border-radius: 0px;
    padding: 7px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.9);
}
        
        .form-control:focus {
            border-color: #dc3545;
            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
            background: white;
        }
        
       /* .form-select {
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.9);
        }*/

        .form-select {
    /* border: 2px solid #e9ecef; */
    border-radius: 0px;
    padding: 7px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    /* background: rgba(255,255,255,0.9); */
}
        
        .form-select:focus {
            border-color: #dc3545;
            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
            background: white;
        }
        
        .btn-search {
            background: linear-gradient(135deg, #dc3545, #e74c3c);
            border: none;
            padding: 15px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            color: white;
            width: 100%;
            margin-top: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
        }
        
        .btn-search:hover {
            background: linear-gradient(135deg, #c82333, #dc3545);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
        }
        
        .input-group-text {
            background: #dc3545;
            border: 2px solid #dc3545;
            color: white;
            border-radius: 8px 0 0 8px;
        }
        
        .input-group .form-control {
            border-left: none;
            border-radius: 0 8px 8px 0;
        }
        
        .input-group .form-control:focus {
            border-left: 2px solid #dc3545;
        }
        
        /* Feature Cards */
        .feature-cards {
            margin-top: 40px;
        }
        
        .feature-card {
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.2);
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }
        
        .feature-card i {
            font-size: 2.5rem;
            color: #dc3545;
            margin-bottom: 15px;
        }
        
        .feature-card h5 {
            color: white;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .feature-card p {
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
            margin: 0;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .banner-text h1 {
                font-size: 2.5rem;
            }
            
            .banner-text p {
                font-size: 1rem;
            }
            
            .booking-form {
                padding: 25px;
                margin-top: 30px;
            }
            
            .booking-title {
                font-size: 1.5rem;
            }
            
            /*.banner-section {
                min-height: auto;
                padding: 60px 0;
            }*/

            .banner-section {
                min-height: 2000px;
                /* padding: 60px 0; */
                background: #000;
                text-align: center;
            }

        }
        
        @media (max-width: 576px) {
            .banner-text h1 {
                font-size: 2rem;
            }
            
            .booking-form {
                padding: 20px;
            }
            
            .btn-explore {
                padding: 12px 30px;
                font-size: 1rem;
            }
        }

        /*car listing*/
       .section-title {
            text-align: center;
            margin-bottom: 50px;
            padding-top: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: #6c757d;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Car Card Styles */
        .car-card {
            background: white;
            border-radius: 0px;
/*            box-shadow: 0 5px 20px rgba(0,0,0,0.08);*/
            overflow: hidden;
            transition: all 0.3s ease;
            border: none;
            height: 100%;
            position: relative;
            border:1px solid rgba(0,0,0,.1);
        }
        
        .car-card:hover {
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            transform: translateY(-5px);
        }
        
        .car-image-container {
            position: relative;
            overflow: hidden;
            height: 220px;
        }
        
        .car-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .car-card:hover .car-image {
            transform: scale(1.05);
        }
        
        .car-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(135deg, #dc3545, #e74c3c);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .favorite-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255,255,255,0.9);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .favorite-btn:hover {
            background: white;
            color: #dc3545;
            transform: scale(1.1);
        }
        
        .favorite-btn.active {
            background: #dc3545;
            color: white;
        }
        
        .car-details {
            padding: 25px;
        }
        
        .car-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 8px;
            line-height: 1.3;
        }
        
        .car-subtitle {
            color: #6c757d;
            font-size: 0.9rem;
            margin-bottom: 20px;
            font-weight: 500;
        }
        
        .car-features {
            margin-bottom: 20px;
        }
        
        .feature-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            color: #495057;
            font-size: 0.9rem;
        }
        
        .feature-item i {
            color: #dc3545;
            margin-right: 8px;
            width: 16px;
            font-size: 0.9rem;
        }
        
        .car-rating {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .stars {
            color: #ffc107;
            margin-right: 8px;
        }
        
        .rating-text {
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        .car-pricing {
            border-top: 1px solid #e9ecef;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .price-container {
            display: flex;
            flex-direction: column;
        }
        
        .original-price {
            color: #6c757d;
            text-decoration: line-through;
            font-size: 0.9rem;
            margin-bottom: 2px;
        }
        
        .current-price {
            color: #dc3545;
            font-size: 1.4rem;
            font-weight: 700;
            line-height: 1;
        }
        
        .price-period {
            color: #6c757d;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .btn-rent {
            background: linear-gradient(135deg, #dc3545, #e74c3c);
            border: none;
            color: white;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-rent:hover {
            background: linear-gradient(135deg, #c82333, #dc3545);
            transform: translateY(-2px);
            color: white;
            box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
        }
        
        .availability-status {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 8px;
            text-align: center;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .available {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
        }
        
        .limited {
            background: linear-gradient(135deg, #ffc107, #fd7e14);
            color: white;
        }
        
        .unavailable {
            background: linear-gradient(135deg, #6c757d, #495057);
            color: white;
        }
        
        /* Filter Section */
        .filter-section {
           /* background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);*/
            margin-bottom: 30px;
            margin-top:50px!important;
            text-align: center;
        }
        
        .filter-title {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .filter-btn {
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            color: #495057;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-right: 10px;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }
        
        .filter-btn:hover,
        .filter-btn.active {
            background: #dc3545;
            border-color: #dc3545;
            color: white;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2rem;
            }
            
            .car-details {
                padding: 20px;
            }
            
            .car-title {
                font-size: 1.2rem;
            }
            
            .car-pricing {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .btn-rent {
                width: 100%;
                text-align: center;
            }
        }
        /*car listing*/


/*        blog section*/
        .blog-section {
            background-color: #fff;
            padding: 20px 0px 80px 0px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-subtitle {
            color: #6c757d;
            font-size: 0.95rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }
        
        .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: #2c3e50;
            margin: 0;
        }
        
        .section-title .highlight {
            color: #dc3545;
        }
        
        .blog-card {
            background: white;
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: none;
            height: 100%;
        }
        
        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
        }
        
        .blog-image {
            position: relative;
            overflow: hidden;
            height: 280px;
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }
        
        .blog-content {
            padding: 30px;
        }
        
        .blog-meta {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            font-size: 0.85rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .blog-date {
            margin-right: 15px;
        }
        
        .blog-author {
            margin-left: 15px;
        }
        
        .meta-separator {
            color: #dee2e6;
            margin: 0 8px;
        }
        
        .blog-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }
        
        .blog-card:hover .blog-title {
            color: #dc3545;
        }
        
        .blog-excerpt {
            color: #6c757d;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 25px;
        }
        
        .blog-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #e9ecef;
        }
        
        .read-more {
            color: #dc3545;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .read-more:hover {
            color: #c82333;
            transform: translateX(5px);
        }
        
        .comments-count {
            color: #6c757d;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
        }
        
        .comments-count i {
            margin-right: 5px;
            font-size: 0.8rem;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .blog-content {
                padding: 25px;
            }
            
            .blog-title {
                font-size: 1.25rem;
            }
            
            .blog-section {
                padding: 60px 0;
            }
        }
        
        @media (max-width: 576px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .blog-content {
                padding: 20px;
            }
            
            .blog-image {
                height: 240px;
            }
            
            .blog-footer {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
        }
/*        blog section*/


/*about*/
.about-section {
    background-color: #f5f5f5;
    color: #000;
    padding: 40px 0px 0px 0px;
    min-height: 500px;
    position: relative;
}

        .about-section .section-subtitle1 {
            color: #a0a0a0;
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .about-section .section-title1 {
            color: #000;
            font-size: 38px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .about-section .section-description {
            color: #000;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
            max-width: 500px;
        }

        .about-section .feature-list {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        .about-section .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #b8b8b8;
            font-size: 16px;
        }

        .about-section .feature-item i {
            color: #28a745;
            margin-right: 15px;
            font-size: 18px;
            width: 20px;
        }

        .about-section .btn-red {
            background-color: #dc3545;
            color: #ffffff;
            border: none;
            padding: 15px 30px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            margin-right: 20px;
            text-decoration: none;
            display: inline-block;
        }

        .about-section .btn-red:hover {
            background-color: #c82333;
            color: #ffffff;
            transform: translateY(-2px);
        }

        .about-section .btn-outline {
            background-color: transparent;
            color: #000;
            border: 2px solid #dc3545;
            padding: 13px 28px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .about-section .btn-outline:hover {
            background-color: #ffffff;
            color: #2c2c2c;
        }

        /* Custom Carousel */
        .about-section .custom-carousel {
            position: relative;
            height: 100%;
            border-radius: 0;
            overflow: hidden;
        }

        .about-section .carousel-inner {
            height: 100%;
            border-radius: 0;
        }

        .about-section .carousel-item {
            height: 100%;
            min-height: 500px;
        }

    .about-section .carousel-item img {
        width: 100%;
        height: 460px;
        object-fit: cover;
        border-radius: 10px;
    }

        /* Custom Navigation Arrows */
        .about-section .carousel-control-prev,
        .about-section .carousel-control-next {
            width: 30px;
            height: 30px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .about-section .carousel-control-prev {
            left: 30px;
        }

        .about-section .carousel-control-next {
            right: 30px;
        }

        .about-section .carousel-control-prev:hover,
        .about-section .carousel-control-next:hover {
            opacity: 1;
            background-color: rgba(255, 255, 255, 1);
        }

        .about-section .carousel-control-prev-icon,
        .about-section .carousel-control-next-icon {
            width: 24px;
            height: 24px;
/*            background-color: #2c2c2c;*/
            border-radius: 0;
        }

        .about-section .carousel-control-prev-icon {
            background-image: none;
        }

        .about-section .carousel-control-next-icon {
            background-image: none;
        }

        .about-section .carousel-control-prev-icon::before {
            content: '<';
            color: #2c2c2c;
            font-size: 24px;
            font-weight: bold;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .about-section .carousel-control-next-icon::before {
            content: '>';
            color: #2c2c2c;
            font-size: 24px;
            font-weight: bold;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        /* Custom Indicators */
        .about-section .carousel-indicators {
            bottom: 30px;
            margin-bottom: 0;
        }

        .about-section .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            border: none;
            margin: 0 5px;
            transition: all 0.3s ease;
        }

        .about-section .carousel-indicators .active {
            background-color: #ffffff;
            transform: scale(1.2);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .about-section {
                padding: 40px 0px 0px 0px;
                height:100%;
            }

            .about-section .section-title1 {
                font-size: 30px;
                margin-bottom: 20px;
            }

            .about-section .section-description {
                font-size: 14px;
                margin-bottom: 30px;
            }

            .about-section .btn-red,
            .about-section .btn-outline {
                display: block;
                margin: 10px 0;
                text-align: center;
            }

            .about-section .carousel-item {
                min-height: 300px;
            }

            .about-section .carousel-control-prev,
            .about-section .carousel-control-next {
                width: 50px;
                height: 50px;
            }

            .about-section .carousel-control-prev {
                left: 15px;
            }

            .about-section .carousel-control-next {
                right: 15px;
            }

        .about-section .carousel-item img {
            height: 100%;
        }

        .about-section .carousel-control-prev,
            .about-section .carousel-control-next {
                width: 50px;
                height: 50px;
                top:45%;
            }

        }

        .about-section .content-wrapper {
            padding-right: 40px;
        }

        @media (max-width: 768px) {
            .about-section .content-wrapper {
                padding-right: 0;
                margin-bottom: 40px;
            }
        }
/*about*/

/*why choose us*/
 .whychoose{
          background: url('./images/whychoose.jpg');
          background-size: cover;
          width:100%;
          height:100%;
          background-repeat: no-repeat;
        }
         .whychoose .card{
          box-shadow: 0px 3px 36px 0px rgba(0,0,0,.11);
          border-radius: 0;
        }

        .whychoose .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .whychoose .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .whychoose .icon-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
/*            background: linear-gradient(135deg, #007bff, #0056b3);*/
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            border: 2px solid var(--accent-color);
        }
        .whychoose-section-title {
            color: #2c3e50;
            font-weight: 700;
            line-height: 1.2;
        }
        .whychoose-section-subtitle {
            color: #e67e22;
            font-weight: 600;
            letter-spacing: 2px;
            font-size: 0.9rem;
        }
/*why choose us*/


/*clients*/
.clients-section {
            overflow: hidden;
            background: #f8f9fa;
        }
        
        .clients-section .marquee-row {
            display: flex;
            width: 200%;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
        }
        
        .clients-section .marquee-left {
            animation: marqueeLeft 30s linear infinite;
        }
        
        .clients-section .marquee-right {
            animation: marqueeRight 30s linear infinite;
        }
        
        .clients-section .marquee-row:hover {
            animation-play-state: paused;
        }
        
        @keyframes marqueeLeft {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        @keyframes marqueeRight {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }
        
        .clients-section .client-logo {
            width: 100%;
            height: 80px;
            object-fit: contain;
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            opacity: 0.7;
            filter: grayscale(100%);
             border: 1px solid var(--accent-color)!important;
        }
        
        .clients-section .client-logo:hover {
            opacity: 1;
            filter: grayscale(0%);
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        .clients-section .client-item {
            flex: 0 0 auto;
            width: 200px;
            padding: 0 15px;
        }
        
        .clients-section .section-title {
            color: #212529;
            font-weight: 700;
        }
        
        .clients-section .section-subtitle {
            color: #ffc107;
            font-weight: 600;
            letter-spacing: 2px;
        }
/*clients*/