        :root {
            --primary-color: #2563eb;
            --secondary-color: #1e40af;
            --accent-color: #3b82f6;
            --dark-color: #1e293b;
            --light-color: #f8fafc;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        /* Gradient backgrounds */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
        }

        .why-us-section {
            background: linear-gradient(to right, #f8fafc 0%, #e2e8f0 100%);
        }

        /* Navbar styles */
        .navbar {
            background-color: rgba(30, 41, 59, 0.95) !important;
            transition: all 0.3s ease;
            padding: 15px 0;
        }

        .navbar.scrolled {
            padding: 10px 0;
            background-color: rgba(30, 41, 59, 0.95) !important;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand img {
            height: 50px;
            transition: all 0.3s ease;
        }

        .navbar.scrolled .navbar-brand img {
            height: 40px;
        }

        .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
        }

        .navbar.scrolled .nav-link {
            color: var(--light-color) !important;
        }

        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: white;
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }

        .navbar.scrolled .nav-link:after {
            background: var(--accent-color);
        }

        .nav-link:hover:after {
            width: 100%;
        }

        /* Hero section */
        .hero-section {
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 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') no-repeat center center/cover;
            opacity: 0.2;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            font-weight: 300;
        }

        /* Booking form */
        .booking-form {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .form-control,
        .form-select {
            height: 50px;
            border-radius: 5px;
            border: 1px solid #ddd;
            padding-left: 15px;
        }

        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Section headings */
        .section-heading {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
        }

        .section-heading h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-color);
            display: inline-block;
            position: relative;
            padding-bottom: 15px;
        }

        .section-heading h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--primary-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Services section */
        .service-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid #eee;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--accent-color);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        /* Why us section */
        .feature-box {
            background: white;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
        }

        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        /* Testimonials */
        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            margin: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .testimonial-card:before {
            content: '\201C';
            font-size: 5rem;
            color: rgba(59, 130, 246, 0.1);
            position: absolute;
            top: 10px;
            left: 10px;
            line-height: 1;
        }

        .testimonial-text {
            position: relative;
            z-index: 1;
            font-style: italic;
            margin-bottom: 20px;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--primary-color);
        }

        /* Gallery */
        .gallery-item {
            margin-bottom: 30px;
            overflow: hidden;
            border-radius: 10px;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .gallery-item img {
            transition: all 0.5s ease;
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(37, 99, 235, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            color: white;
            font-size: 2rem;
        }

        /* Contact form */
        .contact-form {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .contact-info {
            background: var(--primary-color);
            color: white;
            border-radius: 10px;
            padding: 30px;
            height: 100%;
        }

        .contact-info i {
            font-size: 1.5rem;
            margin-right: 15px;
            color: white;
        }

        /* Footer */
        .footer {
            background: var(--dark-color);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-logo img {
            height: 60px;
            margin-bottom: 20px;
        }

        .footer-links h5 {
            color: var(--accent-color);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: #94a3b8;
        }

        /* Animations */
        .animate-up {
            animation: fadeInUp 1s ease;
        }

        .animate-down {
            animation: fadeInDown 1s ease;
        }

        .animate-left {
            animation: fadeInLeft 1s ease;
        }

        .animate-right {
            animation: fadeInRight 1s ease;
        }

        .animate-delay-1 {
            animation-delay: 0.2s;
        }

        .animate-delay-2 {
            animation-delay: 0.4s;
        }

        .animate-delay-3 {
            animation-delay: 0.6s;
        }

        /* Modal styles */
        .modal-confirm {
            color: #636363;
        }

        .modal-confirm .modal-content {
            padding: 20px;
            border-radius: 10px;
            border: none;
        }

        .modal-confirm .modal-header {
            border-bottom: none;
            position: relative;
        }

        .modal-confirm h4 {
            text-align: center;
            font-size: 1.8rem;
            margin: 20px 0;
            color: var(--primary-color);
        }

        .modal-confirm .close {
            position: absolute;
            top: -5px;
            right: -5px;
        }

        .modal-confirm .modal-body {
            color: #999;
            font-size: 1.1rem;
        }

        .modal-confirm .btn {
            color: #fff;
            border-radius: 5px;
            background: var(--primary-color);
            text-decoration: none;
            transition: all 0.4s;
            line-height: normal;
            border: none;
            padding: 10px 20px;
            margin: 10px 5px;
        }

        .modal-confirm .btn:hover {
            background: var(--secondary-color);
        }

        .whatsapp-btn {
            background-color: #25D366 !important;
        }

        .whatsapp-btn:hover {
            background-color: #128C7E !important;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }

            .section-heading h2 {
                font-size: 2rem;
            }

            .navbar-brand img {
                height: 40px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.8rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .booking-form,
            .contact-form {
                padding: 20px;
            }
        }













        /* Booking Section Styles */
        .booking-section {
            margin-top: 40px;
            padding: 60px 0;
            background-color: #f8f9fa;
        }

        .booking-tabs .nav-link {
            padding: 12px 24px;
            font-weight: 600;
            color: #495057;
            border: none;
            border-radius: 8px 8px 0 0;
            margin-right: 5px;
            background-color: #0d6dfd69;
        }

        .booking-tabs .nav-link.active {
            color: #fff;
            background-color: #0d6efd;
        }

        .booking-tabs .nav-link i {
            margin-right: 8px;
        }

        /* Vehicle Selection Styles */
        .vehicle-selection {
            padding: 15px 0;
        }

        .vehicle-option {
            width: 100%;
            height: 100%;
            padding: 15px;
            text-align: center;
            border-radius: 8px !important;
            transition: all 0.3s ease;
        }

        .vehicle-option img {
            border-radius: 6px;
            height: 80px;
            object-fit: cover;
        }

        .vehicle-option h6 {
            margin: 8px 0 4px;
            font-weight: 600;
        }

        .price-display {
            font-weight: 700;
            color: #198754;
        }

        .btn-check:checked+.vehicle-option {
            border-color: #0d6efd;
            background-color: rgba(13, 110, 253, 0.1);
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
            font-weight: 700;
        }

        /* Price Summary Styles */
        .price-summary {
            border: 2px solid #198754;
        }

        .price-summary .card-header {
            border-radius: 0 !important;
        }

        .price-summary .card-body {
            background-color: #f8f9fa;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .vehicle-option {
                padding: 10px;
            }

            .vehicle-option img {
                height: 60px;
            }
        }
    