:root {
    --primary-color: #d24625;
    --secondary-color: #2c569d;
    --addtional-color: #c72027;
    --white-color: #fff;
    --black-color: #000000a2;
    --button-background-color: #d24625;
}

body,
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* HEADER & TRANSLATE */
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

h2 {
    margin: 0;
    color: var(--secondary-color);
}

/* GOOGLE TRANSLATE FIXED RIGHT CENTER */
#google_translate_element {
    position: fixed;
    /* Scroll pannalum move aagathu */
    top: 50%;
    /* Vertically Center */
    right: 0;
    /* Right side otti irukkum */
    transform: translateY(-50%);
    /* Correct Center alignment */
    z-index: 10000;
    /* Ellathukum mela theriyum */

    background: rgba(255, 255, 255, 0.95);
    /* Light transparency */
    padding: 10px;
    border-radius: 10px 0 0 10px;
    /* Left side curve azhaga irukum */
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
    /* Shadow for 3D look */
    border: 1px solid #ddd;
    border-right: none;
    transition: 0.3s ease;
}

#google_translate_element:hover {
    padding-right: 15px;
    /* Hover pannumpothu konjam veliya varum */
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
}

/* Hide Google Top Bar */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

/* MOBILE RESPONSIVE TWEAK */
/* Mobile la center la iruntha type panna disturb aagum, so mobile la bottom right */
@media (max-width: 600px) {
    #google_translate_element {
        top: auto;
        bottom: 200px;
        right: 10px;
        transform: none;
        border-radius: 8px;
        border: 1px solid #ddd;
    }
}


/* Banner Section Styles */
.banner-section {
    position: relative;
    width: 100%;
    height: 100%;
    background: url('https://motori.quotidiano.net/wp-content/uploads/2025/03/Changan-Deepal-S07-1-2-e1742807836226-1920x998.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.664);
}

.banner-section .container {
    position: relative;
    z-index: 2;
}

.banner-content h1 {
    color: var(--white-color);
}

@media(max-width:425px) {
    .banner-content h1 {
        font-size: 25px;
        margin-top: 50px;
    }
}

/* .banner-content {
    margin-bottom: 10rem;
} */

/* .booking-form-container {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1140px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
} */

/* .booking-now-section {
  background: #f9f9f9;
} */


.booking-now h2 {
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MAIN CONTAINER */
/* .container {
    width: 92%;
    max-width: 1000px;
    margin: 30px auto;
    background: var(--white-color);
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-top: 6px solid var(--primary-color);
} */

/* TITLE */
/* h2 {
    text-align: center;
    color: var(--secondary-color);
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
} */

/* ROW & COLUMNS */
/* .row {
    display: flex;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 15px;
} */

.col {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

/* LABELS */
label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
    font-size: 14px;
}

/* INPUTS */
input,
select {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fafafa;
    font-size: 15px;
    width: 100%;
    transition: 0.3s ease;
    color: var(--black-color);
}

input:focus,
select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 8px rgba(44, 86, 157, 0.2);
    outline: none;
    background: var(--white-color);
}

/* --- PRICE CARD DESIGN --- */
.price-card {
    background: var(--light-bg);
    border: 1px dashed var(--secondary-color);
    border-radius: 12px;
    padding: 25px;
    margin-top: 10px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.price-card:hover {
    background: #eef4ff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Main Price Highlight */
.price-highlight {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 5px 0 15px 0;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1);
}

/* Extra Details Container */
.extra-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

/* Individual Extra Items */
.extra-item {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    background: var(--white-color);
    padding: 8px 30px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    gap: 6px;
}

.extra-item i {
    font-size: 16px;
}

/* Parking Note */
.note-text {
    font-size: 20px;
    color: var(--addtional-color);
    margin-top: 5px;
    font-weight: 500;
}

/* BOOK BUTTON */
.book-now-button {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: var(--button-background-color);
    color: var(--white-color);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: 0.3s;
    margin-top: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.book-now-button:hover {
    background: var(--addtional-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(210, 70, 37, 0.3);
}

/* POPUP OVERLAY */
#popup {
    display: none;
    position: fixed;
    inset: 0;
    background: #00000070;
    backdrop-filter: blur(3px);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

/* MAIN CARD */
.popup-box {
    background: linear-gradient(145deg, #ffffff, #ffe9e9);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    width: 320px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 18px rgba(210, 70, 37, 0.35);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    animation: popupBounce 0.35s ease;
}

.popup-box::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 28px;
    background: linear-gradient(135deg, #d24625, #ff6f61);
    z-index: -1;
    filter: blur(6px);
}

.big-x {
    font-size: 70px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(210, 70, 37, 0.45);
}

.popup-box p {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-top: 10px;
}

@keyframes popupBounce {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    60% {
        transform: scale(1.08);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media(max-width: 600px) {
    .container {
        padding: 20px;
    }

    h2 {
        font-size: 22px;
    }
}


/* =================================== */
/* == KJT Cabs Advantages Section == */
/* =================================== */

.section-subtitle {
    color: var(--black-color);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.section-title {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 2.5rem;
}

.advantage-card {
    background-color: var(--white-color);
    /* border-radius: 10px; */
    /* border: 1px solid #f0f0f0; */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.425);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;

}

/* Hover Animation */
.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.advantage-card .icon-box i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.advantage-card:hover .icon-box i {
    transform: scale(1.1);
}

.advantage-card h4 {
    color: var(--secondary-color);
    font-weight: 600;
}

.advantage-card p {
    color: var(--black-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Highlighted Middle Card */
.highlight-card {
    background-color: var(--primary-color);
    color: var(--white-color);
    /* transform: translateY(-20px); */
    /* Makes it pop out a bit by default */
}

.highlight-card h4,
.highlight-card .icon-box i {
    color: var(--white-color);
}

.highlight-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* On hover, the highlight card lifts even more */
.highlight-card:hover {
    transform: translateY(-10px);
}

/* Responsive adjustment for the highlighted card on smaller screens */
@media (max-width: 767px) {
    .highlight-card {
        transform: translateY(0);
        /* Remove the pop-out effect on mobile */
    }

    .section-title {
        font-size: 2rem;
    }
}

/* ======================================= */
/* == Popular Destinations Section with BG == */
/* ======================================= */

.popular-destinations-section {
    position: relative;
    /* Replace with your desired background image */
    background: url('https://images.cdn.autocar.co.uk/sites/autocar.co.uk/files/styles/gallery_slide/public/images/car-reviews/first-drives/legacy/changan-deepal-s07-static-front-quarter.jpg?itok=Ml2Nsc0q') no-repeat center center/cover;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* This creates the dark overlay */
.popular-destinations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 25, 48, 0.651);
    /* Dark blue overlay */
    z-index: 1;
}

/* This makes sure the content (title, cards) is on top of the overlay */
.popular-destinations-section .container {
    position: relative;
    z-index: 2;
}


/* Changing title colors to white to be visible on the dark background */
.popular-destinations-section .section-title {
    color: var(--white-color);
}

.popular-destinations-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.destination-card {
    background-color: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.destination-card .card-image-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.destination-card .card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.destination-card .card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.destination-card .card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.destination-card .card-text {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 15px;
}

.destination-card .card-footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.destination-card .price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
}

.destination-card .book-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 10px;
    padding: 8px 18px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.destination-card .book-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    transform: translateX(3px);
}

.destination-card .book-btn i {
    margin-left: 5px;
}

/* hover style for destination */

/* .destination-card .card-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.destination-card .card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.destination-card:hover .card-image-wrapper img {
    transform: scale(1.05);
    filter: blur(3px) brightness(0.7);
}

.destination-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 25, 48, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 15px;
}

.destination-card:hover .overlay {
    opacity: 1;
}

.destination-card .overlay-text {
    font-size: 0.9rem;
    line-height: 1.4;
} */


/* =================================== */
/* == Call to Action Section ==      */
/* =================================== */

.cta-section {
    /* background-color: var(--secondary-color); */
    /* Blue background from your theme */
    padding: 60px 0;
    color: var(--primary-color);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--secondary-color);
    line-height: 1.7;
}

.cta-button {
    background-color: var(--secondary-color) !important;
    /* Orange button from your theme */
    color: var(--white-color) !important;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 45px !important;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .cta-title {
        font-size: 2rem;
    }
}

/* =================================== */
/* == Our Fleet Section ==           */
/* =================================== */

.our-fleet-section {
    background-color: #f8f9fa;
}

.our-fleet-section .section-title {
    color: var(--secondary-color);
}

.our-fleet-section .section-subtitle {
    color: var(--black-color);
}

.fleet-card {
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-align: left;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(44, 86, 157, 0.1);
}

.fleet-card .card-image-wrapper {
    position: relative;
    background-color: #f1f1f1;
    /* padding: 20px 0; */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-card .card-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.3s ease;
}

.fleet-card:hover .card-image-wrapper img {
    transform: scale(1.08);
}

.fleet-card .category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 3px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
}

.fleet-card .card-body {
    padding: 20px;
}

.fleet-card .card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.fleet-card .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    justify-content: space-around;
    text-align: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.fleet-card .features-list li {
    font-size: 0.9rem;
    color: #6c757d;
}

.fleet-card .features-list li i {
    color: var(--primary-color);
    margin-right: 5px;
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.fleet-card .book-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.fleet-card .book-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.slick-prev .slick-arrow {
    display: none !important;
}



/* =================================== */
/* == Contact Us Section ==          */
/* =================================== */

.contact-section {
    background-color: var(--white-color);
}

.contact-section .section-title {
    color: var(--secondary-color);
}

.contact-section .section-subtitle {
    color: var(--black-color);
}

/* Left Column Styling */
.contact-image-container {
    background-color: #f8f9fa;
    /* Light grey background */
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.contact-image-container .contact-logo {
    max-height: 200px;
    /* margin-bottom: 30px; */
}

@media (max-width:425px) {
    .contact-image-container .contact-logo {
        max-height: 100px;
        /* margin-bottom: 30px; */
    }
}

.gradient-divider {
    height: 4px;
    /* Line-oda thickness */
    width: 100%;
    /* Full width vendamna, adjust pannikonga */
    margin: 10px auto;
    /* Image-ku naduvula space create pannum */
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
    /* Line-oda corner-a round aakum */
}

.contact-image-container .contact-car-image {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 20px;
}


/* Right Column Styling */
.contact-form-container {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    height: 100%;
}

@media(max-width:425px) {
    .contact-form-container {
        padding: 10px;
    }
}

.contact-form-container .form-control,
.contact-form-container .form-select {
    height: 50px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.contact-form-container .form-control:focus,
.contact-form-container .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(210, 70, 37, 0.25);
}

.contact-form-container textarea.form-control {
    height: auto;
}

.submit-button-contact {
    background-color: var(--primary-color) !important;
    color: var(--white-color) !important;
    font-weight: 600;
    padding: 12px 60px !important;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.submit-button-contact:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

/* =================================== */
/* == Featured Destinations (Swiper JS) == */
/* =================================== */

.featured-destinations-section {
    background-color: var(--white-color);
    padding-bottom: 80px;
    /* Add space below the slider */
}

.featured-destinations-section .section-title {
    color: var(--secondary-color);
}

.featured-destinations-section .section-subtitle {
    color: var(--black-color);
}

/* Swiper container adjustments */
.destination-swiper {
    padding: 20px 0 50px 0;
    /* Add padding bottom for pagination */
    /* position: relative; */
    overflow: hidden;
    /* Hide overflow */
}

/* Ensure slides have height */
.swiper-slide {
    height: auto;
    /* Allow slide height to adjust based on content */
    display: flex;
    /* Helps align content */
    justify-content: center;
    /* Center card if needed */
    padding: 5px;
    /* Optional: adds a little space around the card */
}

.destination-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    /* Make card take full height of the slide */
    display: flex;
    flex-direction: column;
    width: 100%;
    /* Make card take full width of the slide */
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card-img-container {
    /* height: 180px; */
    overflow: hidden;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover .card-img-container img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
    min-height: 40px;
}

.card-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.btn-primary-theme {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary-theme:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* Swiper Navigation Arrows */
.swiper-button-prev,
.swiper-button-next {
    color: var(--secondary-color) !important;
    /* Blue color for arrows */
    top: 50% !important;
    /* Adjust vertical position */
    transform: translateY(-50%) scale(0.7);
    /* Scale down arrows */
    background-color: rgba(255, 255, 255, 0.7);
    /* Optional: semi-transparent background */
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 30px !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px !important;
    /* Adjust arrow icon size */
    font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* ================================================== */
/* == Swiper Scrollbar Styling == */
/* ================================================== */

/* Remove old pagination styles if they exist */
/* .swiper-pagination { ... } */
/* .swiper-pagination-progressbar { ... } */
/* .swiper-pagination-progressbar-fill { ... } */


/* Scrollbar Track */
.swiper-scrollbar {
    background: #e0e0e0 !important;
    /* Light grey track */
    height: 3px !important;
    /* Thickness of the scrollbar track */
    position: relative !important;
    /* Change from absolute if needed */
    bottom: 0 !important;
    /* Position at the bottom */
    left: 50% !important;
    /* Center */
    transform: translateX(-50%) !important;
    /* Center */
    width: 100% !important;
    /* Make it shorter */
    border-radius: 3px;
    /* Slightly rounded ends for the track */
    margin-top: 30px !important;
    /* Space above the scrollbar */
}

/* Scrollbar Drag Handle */
.swiper-scrollbar-drag {
    background: var(--secondary-color) !important;
    /* Orange color for the handle */
    height: 100%;
    /* Match track height */
    border-radius: 3px;
    /* Rounded ends for the handle */
    cursor: pointer;
}

.swiper-scrollbar-drag:active {
    cursor: grabbing;
}

/* Optional: Make scrollbar full width on small screens */
@media (max-width: 576px) {
    .swiper-scrollbar {
        width: 90% !important;
        /* Slightly wider on mobile */
    }
}

/* =================================== */
/* == Hide Swiper Arrows on Desktop == */
/* =================================== */

@media (max-width: 1024px) {

    .swiper-button-prev,
    .swiper-button-next {
        display: none !important;
        /* Hide the arrows */
    }
}

/* 1. CONTAINER DESIGN (Background Black) */
.scroll-container {
    width: 100%;
    background-color: var(--secondary-color);
    overflow: hidden;
    white-space: nowrap;
    padding: 15px 0;
    /* border-bottom: 2px solid #333; */
}

/* 2. TEXT ANIMATION SETTINGS */
.scroll-text {
    display: inline-block;
    font-family: 'Segoe UI', sans-serif;
    font-size: 50px;
    font-weight: bold;
    color: var(--white-color);
    animation: scrollLeft 30s linear infinite;
    padding-left: 100%;
    font-family: "Libre Baskerville", serif;
}

/* 3. DASH STYLE (Nadu la vara kodu) */
.dash {
    color: var(--white-color);
    margin: 0 15px;
    /* Text kum Dash kum gap */
    opacity: 0.7;
}

/* 4. ANIMATION LOGIC (Right to Left) */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
        /* Full ah left pakkam poidum */
    }
}

/* OPTIONAL: Mouse Mela Vacha Stop Aaganum na Itha Podu */
.scroll-container:hover .scroll-text {
    animation-play-state: paused;
}