    /* travelweb-partner-fleet.css */

    /* ================= GLOBAL RESETS & VARIABLES ================= */
    :root {
        --primary-red: #E63946;
        --primary-dark: #212529;
        --primary-light: #f8f9fa;
        --text-dark: #333333;
        --text-light: #555555;
        --border-color: #dee2e6;
        --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.05);
        --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.1);
        --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: 'Archivo', sans-serif;
        color: var(--text-dark);
        background-color: var(--primary-light);
        line-height: 1.6;
        overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: 'Rasa', serif;
        font-weight: 700;
    }

    .section-heading {
        color: var(--primary-red);
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    .section-text {
        font-size: 1.5rem;
        color: var(--text-light);
        line-height: 1.8;
        margin-bottom: 0;
        font-family: 'Archivo', sans-serif;
    }

    /* WhatsApp Floating Button */
    .home-sec-1-whatsapp-btn {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        background-color: white;
        color: #25D366;
        padding: 0.5rem 1.5rem;
        border-radius: 30px;
        font-family: 'Archivo', sans-serif;
        font-weight: 600;
        font-size: 0.9rem;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        box-shadow: var(--shadow-medium);
        transition: all 0.3s ease;
        z-index: 9999;
        border: 1px solid;
    }

    .home-sec-1-whatsapp-btn i {
        font-size: 1.3rem;
    }

    .home-sec-1-whatsapp-btn:hover {
        background-color: #25D366;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }

    /* ================= SECTION 1: HERO ================= */
    .fleet-hero-section {
        position: relative;
        background-image: url('images/travelweb-partner-img1.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 350px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
    }

    /* .fleet-hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    } */

    .hero-content {
        position: relative;
        z-index: 2;
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        color: white;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        margin: 0;
    }

    /* ================= SECTION 2: INTRODUCTION ================= */
    .fleet-intro-section {
        padding: 4rem 0;
        background-color: white;
    }

    /* ================= SECTION 3: BENEFITS ================= */
    .fleet-benefits-section {
        padding: 4rem 0;
        background: linear-gradient(135deg, #fff5f6 0%, #fff0f2 100%);
    }

    .benefits-heading {
        font-family: 'Rasa', serif;
        font-weight: 700;
        font-size: 2.2rem;
        color: var(--primary-red);
        margin-bottom: 2rem;
        line-height: 1.3;
    }

    .benefits-list {
        margin-bottom: 0;
    }

    .benefit-item {
        font-family: 'Archivo', sans-serif;
        font-weight: 500;
        font-size: 1.1rem;
        color: var(--text-dark);
        margin-bottom: 1.2rem;
        padding-left: 2.5rem;
        position: relative;
        line-height: 1.6;
    }

    .benefit-item i {
        color: var(--primary-red);
        position: absolute;
        left: 0;
        font-size: 1.3rem;
        top: 2px;
    }

    .benefits-image-container {
        position: relative;
        padding: 1rem;
    }

    .benefits-image {
        width: 100%;
        height: auto;
        border-radius: 15px;
        box-shadow: var(--shadow-medium);
        transition: transform 0.3s ease;
    }

    .benefits-image:hover {
        transform: scale(1.02);
    }

    /* ================= SECTION 4: HOW IT WORKS ================= */
    .travelweb-partner-sec-4 {
        padding: 4rem 1rem;
        background-color: #ffffff;
    }

    .travelweb-partner-sec-4-p {
        font-family: 'Rasa', serif;
        font-weight: 700;
        font-size: 2.4rem;
        color: #E63946;
        text-align: center;
        margin-bottom: 3rem;
    }

    .travelweb-partner-sec-4-images {
        /* max-width: 1140px; */
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        overflow-x: auto;               /* keeps it horizontal on small screens */
        padding-bottom: 0.5rem;
    }

    .travelweb-partner-sec-4-images .how-step,
    .travelweb-partner-sec-4-images .how-arrow {
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Blue circular icons */
    .main-div-images-of-partner-fleet-sec-4 {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 140px;
        height: 140px;
        border-radius: 50%;
        background-color: #1F2A6B; /* dark navy like in the design */
    }

    .main-div-images-of-partner-fleet-sec-4 img {
        max-width: 65%;
        height: auto;
    }

    /* Arrow between steps */
    .travelweb-partner-img11 {
        width: 80px;
        height: auto;
        margin: 0;
    }

    /* Step captions */
    .travelweb-partner-sec-4-text-p1 {
        font-family: 'Archivo', sans-serif;
        font-weight: 700;
        font-size: 1.3rem;
        color: #E63946;
        text-align: center;
        margin-top: 1.5rem;
        max-width: 150px;
    }

    /* ================= SECTION 5: CTA BANNER ================= */
    .fleet-cta-section {
        padding: 4rem 0;
        background-color: #f8f9fa;
    }

    .cta-banner {
        background: linear-gradient(135deg, var(--primary-red) 0%, #c5303a 100%);
        border-radius: 15px;
        padding: 3rem;
        color: white;
        box-shadow: var(--shadow-medium);
    }

    .cta-title {
        font-family: 'Rasa', serif;
        font-weight: 700;
        font-size: 2rem;
        margin-bottom: 1rem;
        color: white;
    }

    .cta-text {
        font-family: 'Archivo', sans-serif;
        font-size: 1.1rem;
        opacity: 0.9;
        line-height: 1.6;
        color: white;
    }

    .cta-button {
        display: inline-block;
        background-color: white;
        color: var(--primary-red);
        font-family: 'Archivo', sans-serif;
        font-weight: 600;
        font-size: 1.1rem;
        padding: 0.8rem 2rem;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 2px solid white;
    }

    .cta-button:hover {
        background-color: transparent;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    /* ================= SECTION 6: CONTACT INFO ================= */
    .contact-info-section {
        padding: 4rem 0;
        background-color: white;
    }

    .info-card {
        background: white;
        border: 1px solid var(--border-color);
        border-radius: 15px;
        padding: 2rem;
        transition: all 0.3s ease;
        height: 100%;
        text-align: center;
        box-shadow: var(--shadow-light);
    }

    .info-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-heavy);
        border-color: var(--primary-red);
    }

    .info-icon-wrapper {
        width: 60px;
        height: 60px;
        background-color: rgba(230, 57, 70, 0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
    }

    .info-icon {
        width: 100%;
        /* height: 30px; */
        object-fit: contain;
    }

    .info-title {
        font-family: 'Archivo', sans-serif;
        font-weight: 700;
        font-size: 1.3rem;
        color: var(--primary-dark);
        margin-bottom: 1rem;
    }

    .info-text {
        font-family: 'Archivo', sans-serif;
        font-size: 1rem;
        color: var(--text-light);
        line-height: 1.6;
        margin-bottom: 0.5rem;
    }

    .process-note {
        background-color: rgba(230, 57, 70, 0.05);
        border-left: 4px solid var(--primary-red);
        border-radius: 8px;
        padding: 1.5rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .note-text {
        font-family: 'Archivo', sans-serif;
        font-size: 1.1rem;
        color: var(--text-dark);
        line-height: 1.6;
        margin: 0;
        text-align: center;
    }

    /* ================= SECTION 7: WHY CHOOSE US ================= */
    .why-choose-section {
        padding: 4rem 0;
        background: linear-gradient(135deg, #fff5f6 0%, #fff0f2 100%);
    }

    /* ================= MEDIA QUERIES ================= */

    /* Large Desktop (min-width: 1200px) */
    @media (min-width: 1200px) {
        .hero-title {
            font-size: 4rem;
        }
        
        .section-heading {
            font-size: 3rem;
        }
        
        .cta-title {
            font-size: 2.5rem;
        }
    }

    /* Tablet devices (max-width: 991.98px) */
    @media (max-width: 991.98px) {
        .fleet-hero-section {
            height: 300px;
        }
        
        .hero-title {
            font-size: 3rem;
        }
        
        .fleet-intro-section,
        .fleet-benefits-section,
        .fleet-cta-section,
        .contact-info-section,
        .why-choose-section {
            padding: 3rem 0;
        }
        
        .section-heading {
            font-size: 2.2rem;
        }
        
        .section-text {
            font-size: 1rem;
        }
        
        .benefits-heading {
            font-size: 1.8rem;
        }
        
        .benefit-item {
            font-size: 1rem;
        }

        /* Section 4 */
        .travelweb-partner-sec-4 {
            padding: 3.5rem 1rem;
        }

        .main-div-images-of-partner-fleet-sec-4 {
            width: 120px;
            height: 120px;
        }

        .travelweb-partner-img11 {
            width: 70px;
        }
        
        .cta-banner {
            padding: 2rem;
        }
        
        .cta-title {
            font-size: 1.8rem;
        }
        
        .cta-text {
            font-size: 1rem;
        }
    }

    /* Mobile devices (max-width: 767.98px) */
    @media (max-width: 767.98px) {
        .fleet-hero-section {
            height: 250px;
        }
        
        .hero-title {
            font-size: 2.5rem;
        }
        
        .fleet-intro-section,
        .fleet-benefits-section,
        .fleet-cta-section,
        .contact-info-section,
        .why-choose-section {
            padding: 2.5rem 0;
        }
        
        .section-heading {
            font-size: 1.8rem;
        }
        
        .section-text {
            font-size: 0.95rem;
        }
        
        .benefits-heading {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .benefit-item {
            font-size: 0.95rem;
            margin-bottom: 1rem;
            padding-left: 2rem;
        }
        
        .benefit-item i {
            font-size: 1.1rem;
            top: 1px;
        }

        /* Section 4 */
        .travelweb-partner-sec-4 {
            padding: 3rem 0.5rem;
        }

        .travelweb-partner-sec-4-p {
            font-size: 2rem;
            margin-bottom: 2rem;
        }

        .travelweb-partner-sec-4-images {
          justify-content: center;
        display: block; /* scrollable row */
        }

        .how-arrow{
            transform: rotate(90deg);
    margin-bottom: 11%;
    margin-top: 8%;
        }

        .main-div-images-of-partner-fleet-sec-4 {
            width: 110px;
            height: 110px;
        }

        .travelweb-partner-img11 {
            width: 60px;
        }

        .cta-banner {
            padding: 1.5rem;
        }
        
        .cta-title {
            font-size: 1.6rem;
        }
        
        .cta-text {
            font-size: 0.95rem;
        }
        
        .cta-button {
            font-size: 1rem;
            padding: 0.7rem 1.5rem;
        }
        
        .info-card {
            padding: 1.5rem;
        }
        
        .info-title {
            font-size: 1.1rem;
        }
        
        .info-text {
            font-size: 0.95rem;
        }
        
        .process-note {
            padding: 1.2rem;
        }
        
        .note-text {
            font-size: 1rem;
        }
        
        .home-sec-1-whatsapp-btn .whatsapp-text {
            display: none;
        }
        
        .home-sec-1-whatsapp-btn {
            padding: 0.8rem;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            justify-content: center;
        }
        
        .home-sec-1-whatsapp-btn i {
            font-size: 1.3rem;
            margin: 0;
        }
    }

    /* Small mobile devices (max-width: 575.98px) */
    @media (max-width: 575.98px) {
        .fleet-hero-section {
            height: 200px;
        }
        
        .hero-title {
            font-size: 2rem;
        }
        
        .fleet-intro-section,
        .fleet-benefits-section,
        .fleet-cta-section,
        .contact-info-section,
        .why-choose-section {
            padding: 2rem 0;
        }
        
        .section-heading {
            font-size: 1.6rem;
        }
        
        .section-text {
            font-size: 0.9rem;
        }
        
        .benefits-heading {
            font-size: 1.3rem;
        }
        
        .benefit-item {
            font-size: 0.9rem;
            padding-left: 1.8rem;
        }
        
        .benefit-item i {
            font-size: 1rem;
        }

        /* Section 4 */
        .main-div-images-of-partner-fleet-sec-4 {
            width: 95px;
            height: 95px;
        }

        .travelweb-partner-img11 {
            width: 50px;
        }

        .travelweb-partner-sec-4-text-p1 {
            font-size: 0.9rem;
            max-width: 130px;
        }
        
        .cta-title {
            font-size: 1.4rem;
        }
        
        .cta-button {
            font-size: 0.95rem;
            padding: 0.6rem 1.2rem;
        }
        
        .info-card {
            padding: 1.25rem;
        }
        
        .info-title {
            font-size: 1rem;
        }
        
        .info-text {
            font-size: 0.9rem;
        }
    }

    /* Extra Small Screens (max-width: 480px) */
    @media (max-width: 480px) {
        .hero-title {
            font-size: 1.8rem;
        }
        
        .section-heading {
            font-size: 1.4rem;
        }
        
        .cta-banner {
            padding: 1.25rem;
        }
        
        .cta-title {
            font-size: 1.3rem;
        }
        
        .cta-text {
            font-size: 0.9rem;
        }

        /* Section 4 */
        .travelweb-partner-sec-4-p {
            font-size: 1.6rem;
        }

        .travelweb-partner-sec-4-text-p1 {
            font-size: 0.9rem;
        }
    }