
        :root {
            --primary-color: #6366f1;
            --secondary-color: #f59e0b;
            --accent-color: #ec4899;
            --dark-color: #1f2937;
            --light-color: #f8fafc;
            --success-color: #10b981;
            --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }

        .text-gradient {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease forwards;
            opacity: 0;
        }

        .fade-in-up:nth-child(1) { animation-delay: 0.1s; }
        .fade-in-up:nth-child(2) { animation-delay: 0.2s; }
        .fade-in-up:nth-child(3) { animation-delay: 0.3s; }
        .fade-in-up:nth-child(4) { animation-delay: 0.4s; }
        .fade-in-up:nth-child(5) { animation-delay: 0.5s; }

        .fade-in-right {
            animation: fadeInRight 1s ease forwards;
            animation-delay: 0.3s;
            opacity: 0;
        }

        /* Button Styles */
        .btn-primary {
            background: var(--gradient-primary);
            border: 2px solid white;
            padding: 15px 35px;
            font-weight: 600;
            border-radius: 12px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .btn-primary:hover {
        border: 2px solid rgba(255, 255, 255, 0.7); 
        }

        .btn-primary::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:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
        }

        .btn-outline-light {
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 15px 35px;
            font-weight: 600;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
            transform: translateY(-3px);
        }

        /* Header Styles */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            padding: 1rem 0;
        }

        .navbar-brand {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-link {
            font-weight: 500;
            color: var(--dark-color) !important;
            margin: 0 15px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--gradient-primary);
            transition: all 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        .navbar-nav .nav-link {
           display: flex;
           align-items: center; /* vertical center alignment */
           height: 100%;
           padding-top: 0.75rem;
           padding-bottom: 0.75rem;
        }


        /* Hero Section */
        .hero-section {
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="100" fill="rgba(255,255,255,0.05)"/><circle cx="800" cy="300" r="150" fill="rgba(255,255,255,0.03)"/><circle cx="400" cy="700" r="120" fill="rgba(255,255,255,0.04)"/></svg>');
        }

        .hero-section {
           width: 100%;
           max-width: 1920px;
           height: 900px;
           margin: 0 auto; 
           display: flex;
           align-items: center;
           position: relative;
           overflow: hidden;
        }


        .hero-content {
            position: relative;
            z-index: 2;
            padding: 19rem 0;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-bottom: 2.5rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 0.5rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .hero-image {
            position: relative;
            height: 500px;
        }

        .hero-image img {
            height: 600px;
            width: auto;          
            display: block;       
            margin: 0 auto;       
            object-fit: cover;    /
        }

        .hero-image img {
           max-width: 100%;
           height: auto;
           object-fit: contain;
           display: block;
           margin: 0 auto;
        }

        /* Reduce height to 1096px or below */
        @media (max-width: 1096px) {
        .hero-image img {
            height: 400px; 
           }
        }


        @media (max-width: 991.98px) {
        .hero-image {
            display: none !important;
           }
        }


        .hero-car-image {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
        }

        .hero-car-image img {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
        }

        .floating-card {
            position: absolute;
            background: white;
            padding: 15px 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            color: var(--dark-color);
            animation: float 3s ease-in-out infinite;
            z-index: 2;
        }

        .floating-card i {
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        .card-1 {
            top: 20%;
            right: 10%;
            animation-delay: 0s;
        }

        .card-2 {
            top: 60%;
            left: 5%;
            animation-delay: 1s;
        }

        .card-3 {
            bottom: 20%;
            right: 20%;
            animation-delay: 2s;
        }

        .hero-scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
        }

        .scroll-arrow {
            width: 30px;
            height: 30px;
            border: 2px solid white;
            border-top: none;
            border-right: none;
            transform: rotate(-45deg);
            animation: float 2s ease-in-out infinite;
        }

        section,
        .hero-section,
        .booking-section,
        .features-section,
        .fleet-section,
        .how-it-works,
        .testimonials-section,
        .footer {
            position: relative;
            z-index: 1;
            padding-top: 80px;
            padding-bottom: 80px;
            margin: 0;
            overflow: hidden;
            transform: none !important;
        }

        .hero-section {
            position: relative;
            z-index: 2;
        }

        /* Booking Section */
        .booking-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
        }

        .booking-wrapper {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .booking-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
        }

        .booking-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 0.5rem;
        }

        .booking-subtitle {
            color: #6b7280;
            font-size: 1.1rem;
        }

        .booking-form {
            margin-top: 2rem;
        }

        .form-group {
            height: 100%;
        }

        .form-label {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 0.5rem;
            display: block;
        }

        .booking-form .form-group {
            display: flex;
            flex-direction: column;
            height: 100%;
            justify-content: space-between;
        }


        .search-btn {
            margin-top: 30px;
            margin-bottom: 0px;
        }


        .form-control {
            border-radius: 12px;
            border: 2px solid #e5e7eb;
            padding: 26px 20px;
            font-size: 1rem;
            transition: all 0.3s ease;
            height: 100%;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
        }

        .search-btn {
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.1rem;
            min-height: 60px;
        }

        /* Features Section */
        .features-section {
            padding: 100px 0;
            background: white;
        }

        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 3rem 2rem;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 0;
        }

        .feature-card:hover::before {
            left: 0;
            opacity: 0.05;
        }

        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 70px rgba(99, 102, 241, 0.2);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }

        .feature-card:hover h4,
        .feature-card:hover p {
            color: var(--dark-color);
        }

        .feature-icon {
            width: 90px;
            height: 90px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2.2rem;
            color: white;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        /* Fleet Section */
        .fleet-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .car-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            height: 100%;
        }

        .car-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-primary);
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 0;
        }

        .car-card:hover::before {
            opacity: 0.03;
        }

        .car-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 80px rgba(99, 102, 241, 0.2);
        }

        .car-image {
            height: 280px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .car-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(99, 102, 241, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .car-card:hover .car-image::after {
            opacity: 1;
        }

        .car-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--gradient-secondary);
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
        }

        .car-details {
            padding: 2rem;
            position: relative;
            z-index: 1;
        }

        .car-details h4 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--dark-color);
        }

        .car-specs {
            display: flex;
            justify-content: space-between;
            margin: 1.5rem 0;
            padding: 1rem;
            background: #f8fafc;
            border-radius: 12px;
            font-size: 0.9rem;
            color: #6b7280;
        }

        .car-specs span {
            display: flex;
            align-items: center;
            font-weight: 500;
        }

        .car-specs i {
            color: var(--primary-color);
            margin-right: 5px;
        }

        .price {
            font-size: 2rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .price small {
            color: #6b7280;
            font-size: 1rem;
        }

        /* How It Works Section */
        .how-it-works {
            padding: 100px 0;
            background: white;
            position: relative;
        }

        .how-it-works::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path d="M0,100 Q250,50 500,100 T1000,100 L1000,0 L0,0 Z" fill="rgba(99,102,241,0.05)"/></svg>');
            background-size: cover;
        }
    
        .step-card {
            text-align: center;
            padding: 2rem 1rem;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            margin: 0 auto 2rem;
            position: relative;
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
        }

        .step-number::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 2px solid var(--primary-color);
            border-radius: 50%;
            opacity: 0.3;
            animation: pulse 2s infinite;
        }

        .step-card h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        .step-card p {
            color: #6b7280;
            line-height: 1.6;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            text-align: center;
            margin: 1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 30px;
            font-size: 8rem;
            color: var(--primary-color);
            opacity: 0.1;
            font-family: serif;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 70px rgba(99, 102, 241, 0.15);
        }

        .testimonial-avatar {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            background-size: cover;
            background-position: center;
            border: 4px solid var(--primary-color);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
        }

        .stars {
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        /* Footer */
        .footer {
            background: var(--dark-color);
            color: white;
            padding: 80px 0 40px;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
        }

        .footer h5 {
            color: white;
            margin-bottom: 2rem;
            font-size: 1.3rem;
        }

        .footer a {
            color: #d1d5db;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .social-links a {
            display: inline-block;
            width: 45px;
            height: 45px;
            background: var(--gradient-primary);
            color: white;
            text-align: center;
            line-height: 45px;
            border-radius: 50%;
            margin-right: 15px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .social-links a {
            color: #f8fafc; 
            font-size: 20px;
            margin-right: 15px;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: #9B8AFA; 
            transform: scale(1.1); 
        }


        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-stats {
                gap: 1rem;
            }
            
            .stat-number {
                font-size: 1.5rem;
            }
            
            .booking-wrapper {
                padding: 2rem 1.5rem;
            }
            
            .booking-title {
                font-size: 2rem;
            }
            
            .floating-card {
                display: none;
            }
            
            .hero-buttons {
                justify-content: center;
            }
        }

       @media (max-width: 576px) {
       .booking-form .row {
            flex-direction: column;
          }

        .search-btn {
            margin-top: 1rem;
          }
        }


        
@media (max-width: 768px) {
  .hero-content {
    text-align: left !important;
    align-items: flex-start !important;
  }

  .hero-buttons {
    justify-content: flex-start !important;
  }

  .hero-stats {
    justify-content: flex-start !important;
  }

  .stat-item {
    text-align: left;
  }
}
