    /* Global Styles */
    :root {
        --primary: black;
        --secondary: #FF5D00;
        --dark: #212529;
        --light: #f8f9fa;
        --accent: #e0aaff;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: "Poppins", sans-serif;
        background-color: var(--light);
        color: var(--dark);
        overflow-x: hidden !important;
        scroll-behavior: smooth;
    }

    section {
        padding: 70px 0;
    }

    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
    }

    h1,
    h2,
    h3,
    h4 {
        font-weight: 700;
        line-height: 1.2;
    }

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
    }

    h2:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 4px;
        background: var(--secondary);
    }

    p {
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .btn {
        display: inline-block;
        padding: 12px 30px;
        background: var(--primary);
        color: white;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 2px solid var(--primary);
    }

    .btn:hover {
        background: transparent;
        color: var(--primary);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .btn-secondary {
        background: var(--secondary);
        color: var(--dark);
        border-color: var(--secondary);
    }

    .btn-secondary:hover {
        background: transparent;
        color: var(--dark);
    }

    .section-title {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-title h2 {
        font-size: 2.5rem;
        color: var(--primary);
    }

    .section-title h2:after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Header & Navigation */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        transition: all 0.3s ease;
        padding: 20px 0;
        background-color: black;
    }

    header.scrolled {
        background-color: black;
        padding: 15px 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: white;
        text-decoration: none;
    }

    .logo span {
        color: var(--secondary);
    }

    .nav-links {
        display: flex;
        list-style: none;
    }

    .nav-links li {
        margin-left: 30px;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-links a:after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--secondary);
        transition: width 0.3s ease;
    }

    .nav-links a:hover:after {
        width: 100%;
    }

    .nav-links a.active {
        color: var(--secondary);
    }

    .hamburger {
        display: none;
        cursor: pointer;
    }

    .hamburger div {
        width: 25px;
        height: 3px;
        background: white;
        margin: 5px;
        transition: all 0.3s ease;
    }

    /* Previous CSS remains the same until the Hero section */

    /* Hero Section - Modified Layout */
    .hero {
        height: 100vh;
        background: linear-gradient(rgba(33, 37, 41, 0.7),
                rgba(33, 37, 41, 0.7)),
            url("https://images.unsplash.com/photo-1502877338535-766e1452684a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80") no-repeat center center/cover;
        display: flex;
        align-items: center;
        color: white;
    }

    .hero-container {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .hero-content {
        flex: 1;
        padding-right: 50px;
        animation: fadeInLeft 1s ease;
    }

    .hero-booking {
        flex: 1;
        animation: fadeInRight 1s ease;
    }

    .hero h1 {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .hero h1 span {
        color: var(--secondary);
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    /* Booking Form in Hero */
    .hero-booking .booking-form {
        background: rgba(255, 255, 255, 0.9);
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    /* Responsive Layout Changes */
    @media (max-width: 992px) {
        .hero-container {
            flex-direction: column;
        }

        .hero-content {
            padding-right: 0;
            text-align: center;
            margin-bottom: 40px;
            order: 2;
            /* Moves below form on mobile */
        }

        .hero-booking {
            width: 100%;
            order: 1;
            /* Moves form to top on mobile */
            margin-bottom: 30px;
        }

        .hero {
            height: auto;
            padding: 100px 0;
        }
    }

    @media (max-width: 768px) {
        .hero h1 {
            font-size: 2.2rem;
        }

        .hero p {
            font-size: 1rem;
        }
    }

    /* Booking Form */
    .booking-form {
        background: white;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 80px;
        animation: fadeIn 1s ease 0.5s both;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--primary);
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-family: "Poppins", sans-serif;
        transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus {
        border-color: var(--primary);
        outline: none;
        box-shadow: 0 0 0 3px rgba(123, 44, 191, 0.2);
    }

    .form-tabs {
        display: flex;
        margin-bottom: 20px;
        border-bottom: 1px solid #eee;
    }

    .form-tab {
        padding: 10px 20px;
        cursor: pointer;
        font-weight: 500;
        color: #777;
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
    }

    .form-tab.active {
        color: var(--primary);
        border-bottom-color: var(--primary);
    }

    .tab-content {
        display: none;
    }

    .tab-content.active {
        display: block;
        animation: fadeIn 0.5s ease;
    }

    /* About Section */
    .about {
        background-color: white;
    }

    .about-text ul {
        padding: 0 20px !important;
    }

    .about-content {
        display: flex;
        align-items: center;
        gap: 50px;
    }

    .about-img {
        flex: 1;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        animation: fadeInLeft 1s ease;
    }

    .about-img img {
        width: 100%;
        height: auto;
        display: block;
    }

    .about-text {
        flex: 1;
        animation: fadeInRight 1s ease;
    }

    .about-text h2 {
        color: var(--primary);
    }

    .features {
        margin-top: 30px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .feature-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        background: #FF5D00;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    /* Services Section */
    .services {
        background: linear-gradient(rgba(123, 44, 191, 0.05),
                rgba(123, 44, 191, 0.05));
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .service-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        animation: fadeInUp 1s ease;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .service-img {
        height: 200px;
        overflow: hidden;
    }

    .service-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .service-card:hover .service-img img {
        transform: scale(1.1);
    }

    .service-content {
        padding: 25px;
    }

    .service-content h3 {
        color: var(--primary);
        margin-bottom: 15px;
    }

    /* Fleet Section */
    .fleet {
        background: white;
    }

    .fleet-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .vehicle-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        max-width: 350px;
    }

    .vehicle-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .vehicle-img {
        height: 200px;
        overflow: hidden;
    }

    .vehicle-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .vehicle-card:hover .vehicle-img img {
        transform: scale(1.1);
    }

    .vehicle-info {
        padding: 20px;
    }

    .vehicle-info h3 {
        color: var(--primary);
        margin-bottom: 10px;
    }

    .vehicle-specs {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 15px;
    }

    .spec-item {
        display: flex;
        align-items: center;
        gap: 5px;
        color: #666;
        font-size: 0.9rem;
    }

    .spec-item i {
        color: var(--secondary);
    }

    /* Testimonials */
    .testimonials {
        background: linear-gradient(rgba(123, 44, 191, 0.05),
                rgba(123, 44, 191, 0.05));
    }

    .testimonials-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .testimonial-slide {
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin: 0 15px;
        text-align: center;
    }

    .testimonial-text {
        font-style: italic;
        margin-bottom: 20px;
        position: relative;
    }

    .testimonial-text:before,
    .testimonial-text:after {
        content: '"';
        font-size: 3rem;
        color: var(--accent);
        opacity: 0.3;
        position: absolute;
    }

    .testimonial-text:before {
        top: -20px;
        left: -10px;
    }

    .testimonial-text:after {
        bottom: -40px;
        right: -10px;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .author-img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
    }

    .author-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .author-info h4 {
        color: var(--primary);
        margin-bottom: 5px;
    }

    .author-info p {
        color: #777;
        font-size: 0.9rem;
    }

    /* Contact Section */
    .contact {
        background: white;
    }

    .contact-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 50px;
    }

    .contact-info h3 {
        color: var(--primary);
        margin-bottom: 20px;
    }

    .contact-details {
        margin-bottom: 30px;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 15px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        background: #FF5D00;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 1rem;
        flex-shrink: 0;
    }

    .contact-text h4 {
        color: var(--primary);
        margin-bottom: 5px;
    }

    .contact-text a {
        color: var(--dark);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .contact-text a:hover {
        color: var(--primary);
    }

    .social-links {
        display: flex;
        gap: 15px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        background: #FF5D00;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

    .social-link:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-5px);
    }

    .contact-form {
        background: white;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .contact-form h3 {
        color: var(--primary);
        margin-bottom: 20px;
    }

    .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-family: "Poppins", sans-serif;
        min-height: 150px;
        resize: vertical;
        transition: all 0.3s ease;
    }

    .form-group textarea:focus {
        border-color: var(--primary);
        outline: none;
        box-shadow: 0 0 0 3px rgba(123, 44, 191, 0.2);
    }

    /* Footer */
    footer {
        background: var(--dark);
        color: white;
        padding: 50px 0 20px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
    }

    .footer-col h3 {
        color: var(--secondary);
        margin-bottom: 20px;
        font-size: 1.3rem;
    }

    .footer-col p {
        margin-bottom: 15px;
    }

    .footer-links li {
        list-style: none;
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #ddd;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .footer-links a:hover {
        color: var(--secondary);
        padding-left: 5px;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* WhatsApp Float */
    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        background: #25d366;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 100;
        transition: all 0.3s ease;
        animation: pulse 2s infinite;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        }

        70% {
            box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
        h1 {
            font-size: 2.8rem;
        }

        h2 {
            font-size: 2rem;
        }

        .about-content {
            flex-direction: column;
        }

        .about-img,
        .about-text {
            flex: none;
            width: 100%;
        }
    }

    @media (max-width: 768px) {

        .features {
            display: flex !important;
            flex-direction: column !important;
        }

        .nav-links {
            position: fixed;
            top: 120px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 80px);
            background: black;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.5s ease;
        }

        .nav-links.active {
            left: 0;
        }

        .nav-links li {
            margin: 15px 0;
        }

        .hamburger {
            display: block;
        }

        .hamburger.active div:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active div:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active div:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .hero h1 {
            font-size: 2.5rem;
        }

        .section-title h2 {
            font-size: 2rem;
        }
    }

    @media (max-width: 576px) {
        .features {
            display: flex !important;
            flex-direction: column !important;
        }

        .hero h1 {
            font-size: 2rem;
        }

        .hero p {
            font-size: 1rem;
        }

        .btn {
            padding: 10px 20px;
        }

        section {
            padding: 60px 0;
        }
    }

    /* Hide forms initially */
    .hidden {
        display: none;
    }

    .booking-form {
        background: white;
        padding: 20px;
        border-radius: 8px;
        ma-width: 410px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .tabs {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
    }

    .tab-btn {
        flex: 1;
        padding: 10px 5px;
        border: none;
        background: #e6e6e6;
        color: #333;
        font-weight: bold;
        cursor: pointer;
    }

    .tab-btn.active {
        background: #FF5D00;
        color: white;
    }

    .form-title {
        text-align: center;
        margin: 15px 0;
        color: #333;
        font-size: 16px;
    }

    .trip-type {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
    }

    .trip-btn {
        flex: 1;
        padding: 10px 0;
        border: none;
        background: #e6e6e6;
        color: #333;
        font-weight: bold;
        cursor: pointer;
        margin-right: 5px;
    }

    .trip-btn.active {
        background: #FF5D00;
        color: white;
    }

    .trip-btn:last-child {
        margin-right: 0;
    }

    .form-group {
        margin-bottom: 15px;
    }

    label {
        display: block;
        font-weight: bold;
        margin-bottom: 5px;
    }

    input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .search-btn {
        width: 100%;
        padding: 10px;
        background: #FF5D00;
        color: white;
        border: none;
        font-weight: bold;
        cursor: pointer;
        border-radius: 4px;
    }

    .search-btn:hover {
        background: #a83d00;
    }