.tab-header {
    position: relative;
    /* background-color: var(--white-color);
    border: 2px solid var(--theme-color); */
    /* box-shadow: 0px 20px 20px rgba(204, 204, 204, 0.25); */
    border-radius: 16px;
    z-index: 3;
    margin-top: -90px;
    height: 85px;
}

@media (max-width: 1199px) {
    .tab-header {
        /* padding: 20px 20px; */
    }
}

.tab-header li button {
    border-radius: 10px !important;
    background-color: #ffff;
}

.tab-header li button.active {
    border: 1px solid white !important;
    color: #ffff !important;
    background-color: #0c1524 !important;
}

.tab-header li button.active i {
    color: #ffff !important;
}

.tab-header li button.active span {
    color: #ffff !important;
}


/* 1. Base transition for the column containers */
.transition-col {
    /* Apply transition to height, opacity, and transform for the smooth effect */
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, transform 0.5s ease-in-out, padding 0.5s ease-in-out;
}

/* 2. Style for the collapsed/inactive block */
.block-collapsed {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    /* Moves the element out of view smoothly to the left */
    transform: translateX(-100%);
    /* Crucial addition: Explicitly zero out padding/margin to prevent jumps */
    padding: 0 !important;
    margin: 0 !important;
}

/* 3. Style for the active/expanded block */
.block-active {
    opacity: 1;
    /* Set a large height to ensure the content fits */
    max-height: 2000px;
    transform: translateX(0);
}


/* =======================================================
   SCROLL CONTAINER & BUTTONS 
   ======================================================= */
.vehicle-scroller-container {
    position: relative;
    padding: 0 40px;
}

/* Scroll Wrapper (Where the content actually scrolls) */
.vehicle-selection-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    /* Enable horizontal scrolling */
    padding-bottom: 10px;
    padding-top: 10px;
    /* Hide the default scroll bar */
    -ms-overflow-style: none;
    /* scrollbar-width: none; */
    scroll-behavior: smooth;
    /* Add smooth scrolling for button clicks */
}


/* Scroll Button Styling */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* z-index: 40; */
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-btn:hover {
    background-color: #0056b3;
}

.scroll-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.scroll-left {
    left: 0;
}

.scroll-right {
    right: 0;
}

/* =======================================================
   CARD & RADIO STYLING 
   ======================================================= */
.vehicle-radio {
    display: none !important;
}

.vehicle-card-label {
    flex-shrink: 0;
    width: 160px;
    cursor: pointer;
    position: relative;
    user-select: none;
    padding: 0 !important;
    border: 3px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.vehicle-tour-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.vehicle-img-area {
    height: 100px;
    overflow: hidden;
    position: relative;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.vehicle-img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-content {
    padding: 10px;
    text-align: center;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.vehicle-title {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.vehicle-pax-info {
    font-size: 0.9em;
    color: #007bff;
    font-weight: 500;
    margin-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Selection Checkmark */
.selection-checkmark {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 1.5em;
    color: #007bff;
    background-color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #007bff;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

/* Selection State */
.vehicle-radio:checked+.vehicle-card-label {
    border-color: #007bff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.vehicle-radio:checked+.vehicle-card-label .selection-checkmark {
    opacity: 1;
}

/* Hiding the full overlay text as it is not needed with the checkmark */
.selection-indicator-overlay {
    display: none;
}

input[type="radio"]~label::before {
    display: none !important;
}

/* =======================================================
   PROFESSIONAL TYPOGRAPHY & LAYOUT
   ======================================================= */
.professional-label {
    /* Use a slightly bolder font and larger size for the main label */
    font-size: 1.35rem;
    font-weight: 600;
    /* Semi-bold */
    color: #343a40;
    /* Darker text color */
}

/* Update Card dimensions and look */
.vehicle-card-label {
    width: 180px;
    /* Slightly wider cards for better visual weight */
    border-radius: 12px;
    /* Softer rounded corners */
}

.vehicle-tour-card {
    border: none;
    /* Remove default border, rely on subtle shadow */
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    /* Lighter, more modern shadow */
    transition: transform 0.2s, box-shadow 0.2s;
}

.vehicle-card-label:hover .vehicle-tour-card {
    transform: translateY(-3px);
    /* Subtle lift on hover */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.vehicle-radio:checked+.vehicle-card-label {
    border-color: #007bff;
    box-shadow: 0 4px 18px rgba(0, 123, 255, 0.35);
    /* Stronger indicator */
    transform: none;
    /* Prevent double-lift effect */
}

/* Image Area */
.vehicle-img-area {
    height: 110px;
    /* Slightly taller image area */
    border-radius: 12px 12px 0 0;
}

/* Content & Typography */
.professional-content {
    padding: 12px 10px 15px;
    /* More vertical padding */
}

.vehicle-title {
    font-size: 1.25em;
    /* Bigger title */
    font-weight: 700;
    /* Bold title */
    color: #212529;
    /* Very dark title */
    margin-bottom: 3px;
}

.vehicle-subtitle {
    font-size: 0.85em;
    color: #6c757d;
    /* Muted subtitle */
    font-weight: 400;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

/* Pax Info */
.vehicle-pax-info {
    font-size: 1.0em;
    /* Slightly larger Pax info */
    color: #28a745;
    /* Changed color to a subtle green for capacity highlight */
    font-weight: 600;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #f8f9fa;
    /* Separator line */
}

.vehicle-pax-info i {
    font-size: 0.8em;
    margin-right: 6px;
}

/* Selection Checkmark - Smaller and cleaner */
.selection-checkmark {
    top: 10px;
    right: 10px;
    font-size: 1.1em;
    /* Smaller icon */
    color: white;
    /* White checkmark */
    background-color: #007bff;
    /* Primary color background */
    border: 2px solid #007bff;
    /* Match border color */
    width: 24px;
    /* Smaller size */
    height: 24px;
}




/* Message */
/* Custom CSS for the Success Animation */
.success-animation {
    margin: 0 auto;
    width: 65px;
}

.checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    /* Increased thickness for visibility */
    stroke: #ffffff;
    /* Green color */
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #4CAF50;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: #4CAF50;
    fill: none;
    animation: stroke .6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #4CAF50;
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}




/* ================================== */
/* Feature Card 3 Styles for Tourm Template */
/* ================================== */

/* Container styling for the whole card */
.feature-card-3 {
    text-align: center;
    /* Center all contents within the card */
    padding: 30px 15px;
    border-radius: 10px;
    /* Optional: Add a subtle hover effect for professionalism */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Optional Hover Effect */
.feature-card-3:hover {
    transform: translateY(-5px);
    /* Lift the card slightly */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    /* Add a light shadow */
}

/* Icon Wrapper Styling */
.feature-card-icon {
    display: inline-block;
    /* Make the icon container large and visually prominent */
    width: 80px;
    height: 80px;
    line-height: 80px;
    /* Vertically center the icon */
    margin-bottom: 20px;
    border-radius: 50%;
    /* Make it perfectly circular */

    /* BACKGROUND AND BORDER (Customize these colors to match your theme!) */
    background-color: #f0f8ff;
    /* Light, subtle background */
    border: 2px solid #54c1dc;
    /* Border color matching your button/theme blue */
    color: #0c333a;
    /* Dark text color for contrast */
}

/* Styling the actual Font Awesome icon */
.feature-card-icon i {
    /* Increase icon size significantly */
    font-size: 35px;
}

/* Styling the title for emphasis */
.feature-card-content .feature-card-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #0c333a;
    /* Use your primary heading color */
}

/* Styling the description text */
.feature-card-content .feature-card-text {
    font-size: 15px;
    line-height: 1.8;
    color: #6c757d;
    /* Use a softer text color for body text */
}


/* ----------------------- whatsapp floating ------------------------ */
/* Define a variable for the WhatsApp green color */
:root {
    --whatsapp-green: #25d366;
}

/* 1. Styling for the floating container */
.book-now-floting {
    /* Fixed position, typically on the bottom-right of the screen */
    position: fixed;
    bottom: 115px;
    /* Adjust as needed */
    right: 25px;
    /* Adjust as needed */
    z-index: 9999;
    /* High z-index to ensure visibility */
    /* Use 'fit-content' or a max-width to let the button define the size */
    /* width: 50px; */
    height: 50px;
    max-width: 90vw;
    /* Safety measure for small screens */
    /* Remove any default padding/margin that might interfere */
    padding: 0;
    margin: 0;
    margin-right: 5px;
}

/* 2. Styling to override the template structure and center the button */
/* Ensure the inner containers don't add extra space or margin */
.book-now-floting .col-12,
.book-now-floting .form-group {
    margin: 0 !important;
    /* Remove the mt-4 margin from the HTML */
    padding: 0;
}

/* 3. Styling for the main button element */
.book-now-floting .th-btn-whatsapp {
    /* Visual styling to match the image */
    background-color: var(--whatsapp-green);
    color: #ffffff;
    /* White text color */
    border: none;

    /* Make it wide and rounded, as in the image */
    /* Use 'border-radius: 50px' for a pill shape on a 50px tall button */
    border-radius: 50px;

    /* Padding to create the large, elongated shape */
    /* padding: 15px 30px;  */
    padding: 12px;

    /* Font style */
    font-size: 18px;
    /* Slightly larger text */
    font-weight: 600;
    /* Semi-bold */
    text-transform: none;
    /* Ensure no unwanted uppercase from other CSS */

    /* Center text and ensure content is displayed inline */
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /* Smooth transition for hover effect */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;

    /* Remove the w-100 class effect to allow padding to define width */
    width: 60px !important;
    height: 60px !important;
    max-width: 100%;

    /* Add a slight lift/shadow for better floating visual */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* 4. Styling for the WhatsApp icon */
.book-now-floting .th-btn-whatsapp .fab {
    /* Space between the text and the icon */
    /* margin-left: 8px; */
    margin-right: 0 !important;
    /* Override the me-2 from the HTML */
    font-size: 40px;
    /* Slightly larger icon */
    line-height: 1;
    /* Aligns the icon vertically */
}

/* Optional: Hover effect for a better user experience */
.book-now-floting .th-btn-whatsapp:hover {
    background-color: #1DA84E;
    /* Slightly darker green on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
    /* More prominent shadow on hover */
}




.tab-content {
    margin-top: 0px;
}

@media (max-width: 991px) {
    .category-area2 {
        margin-top: 180px;
    }
}