.slider-container {
        width: 100%;
        max-width: 1680px;   /* FULL WIDTH slider supported */
        margin: 0 auto;
        overflow: hidden;
        position: relative;
    }

    .slider {
        display: flex;
        transition: transform 0.6s ease-in-out;
    }

    .slider img {
        width: 100%;
        flex-shrink: 0;
        object-fit: cover;
    }

    /* Desktop height */
    @media (min-width: 1024px) {
        .slider img {
            height: 520px;
        }
    }

    /* Tablet height */
    @media (min-width: 768px) and (max-width: 1023px) {
        .slider img {
            height: 380px;
        }
    }

    /* Mobile height */
    @media (max-width: 767px) {
        .slider img {
            height: 140px;
        }
    }
    
  

/* Heading */
.main-center-title {
    font-size: 30px;
    font-weight: 800;
    position: relative;
    display: inline-block;
    color:#ff6a00;
}

/* underline */
.main-center-title::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #007bff;
    display: block;
    margin: 8px auto 0;
    border-radius: 5px;
}

/* ★★ WORD WAVE ANIMATION ★★ */
.wave-words span {
    display: inline-block;
    margin-right: 8px; /* SPACE BETWEEN WORDS */
    animation: waveWord 1.5s ease-in-out infinite;
}

@keyframes waveWord {
    0% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    80% { transform: translateY(0); }
}

/* Video */
.video-wrapper {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    position: relative;
    padding-top: 55%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Content */
.content-wrapper {
    padding: 5px 10px;
}

.sub-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color:#ff6a00;
}

.description {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}
.vision-mission-col {
    flex: 1 !important;
    background: #fff !important;
    padding: 0 !important;
    border-radius: 10px !important;
}

/* Responsive */
@media(max-width: 768px) {
    .main-center-title {
        font-size: 24px;
    }
    .sub-title {
        font-size: 18px;
    }
    .video-wrapper {
        margin-bottom: 15px;
    }
}


/* ---- Global Clean Styling ---- */
.custom-section {
    background: #ffffff;
    padding: 0px !important;
    border-radius: 25px;
    margin: 30px 10px;
    font-family: "Poppins", sans-serif;
}

/* Left Section */
.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #0a2a3e;
    margin-bottom: 12px;
}
.section-title1 {
    border-left: 5px solid #bf161d;
    padding-left: 12px;
}

.category-title {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.category-title b {
    color: #bf161d;
}

/* Button */
.view-more-btn {
    background: #bf161d;
    padding: 9px 20px;
    border-radius: 25px;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: 0.2s ease-in-out;
}
.view-more-btn:hover {
    background: #900f15;
}

/* ---- Image Cards Simple Look ---- */
.image-card {
    position: relative;
    height: 210px;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    border: 3px solid #0098de;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

/* Caption */
.card-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 6px 0;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
    .image-card { height: 170px; }
    .section-title { font-size: 22px; }
    .custom-section { padding: 30px 15px; }
}


    .offer-heading {
        font-size: 2.5rem;
        font-weight: 700;
        position: relative;
        z-index: 2;
        display: inline-block;
        padding: 0 30px;
    }

    .svg-left,
    .svg-right {
        width: 241px; /* Bigger SVG */
        position: absolute;
        top: 70%;
        transform: translateY(-50%);
        margin-left: -80px;
    }
    
    .svg-right {
        width: 241px; /* Bigger SVG */
        position: absolute;
        top: 70%;
        transform: translateY(-50%);
        margin-left: -80px;
    }

    /* Animation for left SVG */
    .svg-left {
        left: -100px;
        animation: slideLeftToRight 3s ease-in-out infinite;
    }

    /* Animation for right SVG */
    .svg-right {
        right: -100px;
        animation: slideRightToLeft 3s ease-in-out infinite;
    }

    @keyframes slideLeftToRight {
        0% {
            left: -100px;
            opacity: 0;
        }
        40% {
            left: 10px;
            opacity: 1;
        }
        60% {
            left: 10px;
            opacity: 1;
        }
        100% {
            left: -100px;
            opacity: 0;
        }
    }

    @keyframes slideRightToLeft {
        0% {
            right: -100px;
            opacity: 0;
        }
        40% {
            right: 10px;
            opacity: 1;
        }
        60% {
            right: 10px;
            opacity: 1;
        }
        100% {
            right: -100px;
            opacity: 0;
        }
    }


.pricing {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ff6c00;

}

.price-label {
    color: black;
}

.price-value {
    font-weight: 600;
    color: black;
}

.rating {
    color: #ffc107;
    margin: 0.5rem 0;
}

.car-specs {
    display: flex;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.spec-item {
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
}

.spec-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    color: red;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ff6c00;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background: #ff7b00;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}

/* ==== Route Card ==== */
.route-card {
    background: #fff;
    border-radius: 18px;
    border: 2px solid #ff7b00;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.route-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 30px rgba(255, 123, 0, 0.25);
}

.route-img {
    overflow: hidden;
    height: 190px;
    border-bottom: 2px solid #ff7b00;
}

.route-img img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.5s ease;
}

.route-card:hover .route-img img {
    transform: scale(1.1);
}

.route-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    padding: 15px 10px 18px;
    margin: 0;
    transition: color 0.3s ease;
}

.route-card:hover h4 {
    color: #ff7b00;
}

/* ===== Responsive Swiper Cards ===== */
.home1-offer-slider .swiper-slide {
    width: 50%;
    /* Default: 2 per row for mobile */
}

/* Tablet - 3 cards */
@media (min-width: 768px) {
    .home1-offer-slider .swiper-slide {
        width: 33.33%;
    }
}

/* Large screen - 4 cards */
@media (min-width: 1200px) {
    .home1-offer-slider .swiper-slide {
        width: 25%;
    }
}
.icon-img{
height:75px;
}

:root {
    --primary-green: #62ab45;
    --secondary-orange: #fbb03b;
    --accent-yellow: #d2d234;
    --dark-text: #100c08;
    --gray-text: #4c4c4c;
    --light-gray: #eeeeee;
}



.section-vector {
    position: absolute;
    top: -636.148px;
    right: 0;
    z-index: -1;
    max-width: 100%;
    height: auto;
}

.section-heading {
    font-size: 36px;
    color: #ff6c00;
    font-weight: 600;
    line-height: 39.6px;
    margin-bottom: 25px;
}

.benefit-card {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 10px;
    border: 1px solid var(--light-gray);
    transition: 0.5s;
    flex-direction: column;
    min-height: 415px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    margin-bottom: 24px;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    min-width: 100px;
    max-width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.benefit-title {
    font-size: 16px;
    
    
    color: var(--dark-text);
    transition: 0.5s;
    
}

.benefit-description {
    color: #ff6c00;
    font-size: 14px;
    font-weight: 600;
    line-height: 26px;
    text-align: end;
}

.occasion-card {
    min-height: 445px;
    border: 1px solid #dee2e6;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    margin-bottom: 24px;
}

.occasion-card img {
    width: 100%;
    height: auto;
}

.occasion-content {
    padding: 8px 16px 0;
}

.occasion-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 23.8px;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.occasion-description {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 28.8px;
    text-align: justify;
}

.intro-text {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 28.8px;
    text-align: justify;
    margin: 24px 0;
}



/* Icon background colors */
/*.icon-green {
    background-color: #ffdac0;
}*/

.icon-orange {
    background-color: var(--secondary-orange);
}

.icon-yellow {
    background-color: var(--accent-yellow);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .benefit-card {
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 14px;
    }

    .benefit-card {
        min-height: auto;
    }

    .benefit-icon {
        min-width: 80px;
        max-width: 80px;
        height: 80px;
    }

    .benefit-icon svg {
        width: 50px;
        height: 50px;
    }
}


    .move-up-down {
        position: absolute;
        bottom: 110px;
        left: 55px;
        width: 25%;
        animation: MoveUpDown 3s infinite alternate;
    }

    @keyframes MoveUpDown {
        0% {
            transform: translateY(0);
        }

        100% {
            transform: translateY(-20px);
        }
    }

    /*.section-padding {*/
    /*    padding: 50px 0;*/
    /*}*/

    .features-list li {
        display: flex;
        align-items: center;
        margin-bottom: 22px;
        gap: 15px;
    }

    .features-list i {
        font-size: 35px;
        color: #ff8700;
    }

    .section-title {
        font-size: 22px;
        font-weight: 700;
        color: #ff6c00;
    }

    .section-subtitle {
        font-size: 18px;
        color: #ff8700;
        font-weight: 600;
    }

    .text-justify {
        text-align: justify;
    }

    .primary-link {
        font-weight: 600;
        color: #ff8700;
        text-decoration: none;
    }

    .primary-link:hover {
        color: #d76e00;
    }
    