body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width:100%;
}
/* header */
header {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 18px 18px rgba(0, 0, 0, 1);
    color: black;
    padding: 2px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container-fluid{ max-width: 90%; }

.logo {
    font-size: 24px;
    font-weight: bold;
}
/* navigation bar */
.nav-item {
    font-size: 15px;
    font-weight: 400;

    letter-spacing: 1px;
}
.nav-link {
    padding: 10px 15px;
    transition: 0.3s;
    border-radius: 5px;
    color:#002060;
    font-size: 16px;
}
.nav-link:hover {
    color:#FE2B09;

}
.nav-link.active-nav {
    color: #FE2B1B !important; /* Active color */
}
.navbar-nav {
    gap: 10px;
}
.form-select {
    appearance: none;
    background: transparent;
    border: 2px solid #002060;
    padding: 8px 12px;
    border-radius: 7px;
    font-size: 16px;
    cursor: pointer;
    width: 50%;
    outline: none;
    backdrop-filter: blur(10px); /* Glass effect */
}
/* Style dropdown arrow */
.form-select {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M7 10l5 5 5-5H7z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    padding-right: 30px; /* Space for the arrow */
}
/* Option styles */
.form-select option {
    background: rgba(0, 0, 0, 0.7);
    color: white;
}
/*Hero Section*/
.hero {
    background: #002060;
    padding: 30px 40px;
    text-align: center;
}
.hero-title {
    color: white;
    padding-bottom: 20px;
}
.headline-hero {
    position: absolute;
    top: 0px;
    bottom: 10px;
    left: 60px;
    width: 7960px;
    height: 55px;
    text-align: left;
    letter-spacing: 0px;
    color: #FFFFFF;
    text-transform: capitalize;
    font-family: 'Reyhan-BoldItalic', sans-serif;
    font-size: 35px;
    /*font-style: bold;*/
    /*font-weight: bold;*/
    margin-top: 20px;
    margin-bottom: 30px;
    /*transform: rotate(0deg);*/
}
.highlight-hero {
    color: rgb(200, 7, 0);
    /*font-style: bold;*/
    /*font-weight: bold;*/
    font-family: 'Reyhan-BoldItalic', sans-serif;
    font-size: 35px;
}
.search-box {
    /* display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
    justify-content: flex-start; */
}
/* Base style for each input group */
.search-box .input-group {
    position: relative;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    /*border: 0.5px solid #9B9A9A;*/
    border-radius: 6px;
    height: 50px;
    display: flex;
    align-items: center;
    /*padding: 0 6px;*/
    font-size: 14px;
    color: #0B2869;
    box-sizing: border-box;
}
/* Location input (first column) */
.search-box .input-group.location {

}
/* Pickup date */
.search-box .input-group.pickup-date {

}
/* Pickup time */
.search-box .input-group.pickup-time {

}
/* Drop-off date */
.search-box .input-group.dropoff-date {

}
/* Drop-off time */
.search-box .input-group.dropoff-time {

}

/* Input and select inside the boxes */
.search-box .input-group input,
.search-box .input-group select {
    border: none !important;
    outline: none;
    font-size: 13px;           /* slightly bigger so placeholders are readable */
    line-height: 1.5;          /* keeps text centered */
    flex: 1;
    height: 40px;              /* ensures enough height */
    background: transparent;
    padding: 0 10px;           /* extra spacing left/right */
    color: #0B2869;               /* text color */
}

/* Placeholder styling */
.search-box .input-group input::placeholder,
.search-box .input-group select::placeholder {
    color: #0B2869;            /* light gray for placeholder */
    font-size: 13px;           /* same as input text */
    opacity: 1;                /* make sure it's visible */
}

/* Search button (last column) */
.search-box .btn-search {
    width: 182px;
    height: 48px;
    background: #FA461C 0% 0% no-repeat padding-box;
    border-radius: 6px;
    border: none !important;
    font-size: 13px;
    /*font-weight: bold;*/
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: none;
    font-family: 'Inter', sans-serif;
}
.search-box .btn-search:hover {
    background-color: #FA461C;
    transform: scale(1.03);
    color: #fff;

}
/* Ensure dropdown takes full width of the parent input box */
#branch-dropdown {
    width: 100% !important;     /* match the input width */
    border-radius: 6px;         /* rounded corners */
    border: 1px solid #ccc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* subtle shadow */
    overflow: hidden;           /* so rounded corners apply to list */
}

/* List items inside dropdown */
#branch-dropdown ul li {
    padding: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

#branch-dropdown ul li:hover {
    background: #f5f5f5;        /* highlight on hover */
}
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden; /* hide horizontal scrollbar */
    }
}
@media (max-width: 768px) {
    .page-headline {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 5px;
        margin-top: -10px;
    }

    .highlight-text {
        font-size: 12px;
        line-height: 1.4;

    }
    .search-box {
        flex-direction: column;
        align-items: stretch !important;
    }

    .search-box .input-group,
    .search-box > div {
        flex: 1 1 100%;              /* all items same width */
        max-width: 100% !important;  /* override inline widths */
        width: 100% !important;
        margin: 5px 0;               /* spacing between items */
    }

    .search-box .btn-search {
        width: 100%;                 /* button full width */
        text-align: center;
    }
}


/*Experience baharain*/
/* Limit full-bleed image behavior ONLY to the hero/banner area */
.inner-banner-img img {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100vw;
    height: 100%;
    object-fit: cover;
}
.banner {
    position: relative;
    text-align: center;
    color: white;
    padding-top: 0;
}
.banner img {
    width: 100%;
    height: 330px;
    margin-top:-50px;
}

.carousel-control-prev{ width: auto; left: 25px; }
.carousel-control-next{ width: auto; right: 25px; }
.home-slider .carousel-caption{ top: 0; left: 0; right: unset; bottom: 0; width: 100%; background: transparent linear-gradient(90deg, #000A20 0%, #2D365700 100%) 0% 0% no-repeat padding-box; }
.text-overlays {
    position: absolute;
    top: 50%;
    left: 0%;
    text-align: left;
    margin-right: 60px;
    color: white;
    height: auto;
    width: 100%;
    box-sizing: border-box;
    padding-top: 0;
    padding-left: 100px;
    transform: translateY(-50%);
}

.offer-slider .text-overlays{ background: transparent; top: 50%; padding-top: 0;  }

.text-exp {
    color: white;
    text-transform: uppercase;
    font-size: 20px;
}
.text-exp::after{
    content: "";
    width: 35px;
    height: 6px;
    background: #FF4500;
    display: block;
    margin-top: 5px;
    margin-left: 4px;
}
.text-overlays h1 {
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-weight: 50; /* SemiBold */
    font-size: 27px;
    line-height: 33px;
    letter-spacing: 0px;
    color: #FFFFFF;
    text-transform: uppercase;
    opacity: 1;
    white-space: nowrap;  /* keep text in one line */
}
.discount-title {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 5px; /* Space below the title */
    color: #FFFFFF;
}
.description {
    font-size: 0.8em;
    font-weight: normal;
    margin-top: 3px;
    margin-bottom: 15px;
    color: #FFFFFF;
    line-height: 1.8em;
}

.discount + .description + .discount {
    margin-top: 20px;
}
/* Buttons container */
.buttons-container {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-start;
    margin-top: 45px;
    font-family: 'Inter', sans-serif;
}

/* Reserve Now button */
.reserve-btn {
    background-color: #FF4500;
    color: white;
    /*border: none;*/
    /*border-radius: 12px;*/
    padding: 19px 19px;
    font-size: 15px;
    /*font-weight: 600;*/
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.reserve-btn:hover {
    background-color: #FF4500;
    transform: scale(1.03);
}

/* See All Cars button */
.see-cars-btn {
    background-color: transparent;
    color: white;
    /*border-radius: 12px;*/
    border: 2px solid white;
    padding: 18px 19px;
    font-size: 15px;
    /*font-weight: 600;*/
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.see-cars-btn:hover {
    background: #002f6c;
    color: white;
    transform: scale(1.03);
}

/* arrow/ dot button*/
.container {
    width: 100%;
    position: relative;
    padding-bottom: 50px;

}

.dot-matrixs {
    position: absolute;
    top: 1px;
    left: -30px;
    display: inline-block;
    z-index: 10;
}
.dot-rows {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 5.4px;
}
.dots {
    width: 3.4px;
    height: 4px;
    background: #80808057;
    border-radius: 50%;
    display: inline-block;
}
.carousel-caption {
    text-align: left !important;
}


/* Mobile view adjustments */
@media (max-width: 768px) {
    .banner {
        padding-top: 0;   /* remove top spacing */
    }
    .banner img {
        height: 250px !important;
        object-fit: cover;
    }
    .text-overlays {
        width: 100%;
        min-height: auto;
        margin: 0;
        padding: 15px;
        background: rgba(0, 10, 32, 0.4);
        text-align: center;
        box-sizing: border-box;
    }

    .text-exp {
        font-size: 16px;
    }
    .text-exp::after {
        content: "";
        display: block;
        width: 40px;
        height: 4px;
        background-color: #FF4500;
        margin: 6px auto 0;
        border-radius: 2px;
    }
    .text-overlays h2 {
        position: relative;
        top: auto;
        left: auto;
        font-size: 20px;
        line-height: 22px;
        margin: 10px 0;
        text-align: center;
        white-space: normal;
    }

    .discount-title {
        margin: -4px 0;
        font-size: 16px;
        text-align: center;
    }

    .description {
        margin: 2px auto 8px; /* smaller top/bottom spacing */
        font-size: 13px;
        line-height: 1.6em;
        max-width: 95%;       /* more width on mobile */
        text-align: center;   /* center text */
    }


    .buttons-container {
        margin: 15px auto 0 auto;
        justify-content: center;  /* center buttons */
        gap: 20px;
    }

    .reserve-btn,
    .see-cars-btn {
        font-size: 13px;
        padding: 10px 15px;
    }
}


/*WHY US*/
.why-us-section {
    background-color: #EFF4FF;
    /* margin-top: 280px; */
    margin-bottom: 0;   /* ✅ remove extra gap */
    padding-bottom: 0;  /* ✅ tighten bottom padding */
    /*margin-right: 85px;*/
}


.why-us-content {
    display: flex;
    width: 100%;
    padding-bottom: 1px;
    justify-content: center;
    gap: 220px;
    align-items: center;
    flex-wrap: wrap;
    margin-left: -45px;

}

.why-us-text {
    margin-bottom: 10px;
}
.why-us-text h2 {
    font-size: 35px;
    font-weight: 600;
    color: #002f6c;
    position: relative;
    font-family: 'Inter', sans-serif;
    text-align: left;
    margin-top:30px;
    margin-bottom: 40px;
}
.main-heading,
.main-heading-center{ position: relative; }
.main-heading::after,
.main-heading-center::after {
    content: "";
    width: 36px;
    height: 6px;
    background: #FF4500;
    display: block;
    margin-top: 15px;
}
.main-heading-center::after{
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

/* Paragraph under WHY US */
.why-us-text .expertise-text {
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 400; /* Light */
    color: #363636;
    text-align: left;
    margin-top: 15px;
}

/* Your Journey, Our Drive Since 2001 */
.why-us-text .journey-text {
    font-size: 23px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #063498;
    text-align: left;
    margin-top: 40px;
    margin-bottom: 15px;
}

/* Strengths heading */
.why-us-text h5 {
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 500; /* Medium */
    color: #002f6c;
    text-align: left;
    white-space: nowrap;
    display: inline-block;
}

/* Strengths list */
.why-us-text .strengths-list {
    list-style-type: disc;
    margin-top: 1px;
    color: #002f6c;
    font-size: 14px;

    font-family: 'Inter', sans-serif;
    font-weight: 300;
    text-align: left;

}
.why-us-text .strengths-list li {
    margin-bottom: 3px; /* reduce space between items */
    line-height: 1.5;   /* tighter spacing */
    font-size: 16px;
    margin-bottom: 10px;
}

/* Features Section */
.why-us-features {
    display: grid;
    grid-template-columns: repeat(3, 150px);
    gap: 15px;
}

/* Adjust placement for aesthetic balance */
.why-us-features .feature-why:nth-child(5) {
    grid-column: span 1 ;
    justify-self: center;
}

/* Feature Boxes */
.feature-box {
    background: #002f6c;
    color: white;
    width: 100%;


    /*text-align: center;*/
    border-radius: 10px;
    font-family: Arial, sans-serif;
    font-size: 10px;
    /*margin-right: 15px;*/
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
.feature-box {
    margin-top: 50px; /* adjust value as needed */
}
.custom-feature-col2 {
    padding-top: 70px;
}
.custom-feature-col3 {
    padding-top: 120px;
}
.feature-box img {
    width: 50px;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 20px;
    font-weight: 200;
}
/* Hover Effect */
.feature-box:hover {
    transform: translateY(-5px);
}
.feature-container {
    display: flex;
    flex-direction: column; /* Stack arrow on top of dots */
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}
.features-section .row {
    justify-content: center;
    /* gap: 1px; */
}
.features-section .col-md-4 {

}
/*Mobile Responsive for Why Us Section */
@media (max-width: 768px) {
    .why-us-section {
        /*margin-top: 300px;*/
        padding: 20px 15px;
    }
    /* Content stacks vertically */
    .why-us-content {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    /* Text adjustments */
    .why-us-text {
        max-width: 100%;
         /* give safe margin from screen */
    }
    .why-us-text h4 {
        font-size: 18px;
        margin: 50px 0;
        text-align: left;
        /*margin-left: 0;*/
    }
    .why-us-text h4::after {
        margin: 5px auto 0 0; /* underline aligns left */
    }
    .why-us-text .expertise-text {
        font-size: 13px;
        margin: 10px 0;
        text-align: left;
        margin-left: 0;
    }

    .why-us-text .journey-text {
        font-size: 15px;
        text-align: left;
        margin-left: 0;
    }

    .why-us-text h5 {
        font-size: 16px;
        margin: 12px 0 10px 0;
        text-align: left;
        /*margin-left: -96px;*/
        white-space: normal;
    }

    .why-us-text .strengths-list {
        margin-left: -15px;  /* proper bullet indent */
        font-size: 13px;
        line-height: 1.4;
    }
    .why-us-text .strengths-list li {
        margin-bottom: 5px;
    }

    /* Features stack */
    .why-us-features {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 columns on tablet */
        gap: 15px;
        width: 100%;
        justify-items: center;
    }

    /* On very small screens → single column */
    @media (max-width: 768px) {
        .why-us-features {
            grid-template-columns: 1fr;
        }
    }

    .feature-box {
        /* width: 150% !important; ; */
        /*max-width: 1900px  ;   */
        /* height: 130px; */
        aspect-ratio: 2/1;
        padding: 20px 10px;
        box-sizing: border-box;
        /*margin: 0 auto;      */
        margin-top: 1px;
        margin-left: 1px;
    }

    .custom-feature-col2,
    .custom-feature-col3 {
        padding-top: 0;
    }

    .feature-box img {
        width: 40px;
        margin-bottom: 8px;
    }

    .feature-box p {
        font-size: 13px;
    }

    .features-section .row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .features-section .col-md-4 {
        max-width: 100%;
    }
}


/* picture special offer*/
.offer-section {
    background-color: #F0F5FF;
    background-size: cover;
    color: white;
    padding: 30px;
    position: relative;
    text-align: center;
    max-width: 100%;
    min-height: 350px;
    margin-top: 0px;
    margin-left: 75px;
    margin-right: 75px;
}

.offer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-box {
    max-width: 300px;
    padding: 50px;
    border-radius: 5px;
    margin-top: 60px; /* moves section downward */
    justify-content: center;
}



.offer-discount {
    color: #F3F7FF;
    text-align: left;
    font-size:35px;
    /*font-weight: bold;*/
    font-family: 'Inter', sans-serif;

}
.offer-title {
    color: white;
    text-align: left;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    white-space: normal;
    line-height: 1.8;
    /*max-width: 220px;*/
}
.offer-discount::after{
    content: "";
    display: block;
    width: 28px;
    height: 4px;
    background-color: #ff3d00;
    margin-top: 15px;
}
.reserve-button-offer {
    background-color: #FF4500;
    color: white;
    border: none;
    /*border-radius: 12px;*/
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Noto Sans', sans-serif;
    /*font-weight: 600;*/
    text-align: center;
    display: block;
    margin-top: 10px;
    margin-right: 0;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.reserve-button-offer:hover {
    background-color: #FF4500;
    transform: scale(1.03);
}
.btn-custom-bg {
    background-color: #FF6B00;
    color: white;
    border: 2px solid;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 8px;
    margin-top: 30px;
}

.btn-custom-bg:hover {
    background-color: #FF6B00;
    color: white;
}

/* ===== MOBILE VIEW (max-width: 768px) ===== */
@media (max-width: 768px) {
    .container-fluid{ max-width: 90%; }
    .footer{ padding-bottom: 120px; }
    .offer-section {
        max-width: 90% !important;
        margin: 0 auto;                  /* remove large margins */
        padding: 5px 5px;                /* minimal padding */
        min-height: 100px;               /* compact height */
        background-size: cover;           /* stretch image full width */
        background-position: center top;  /* show top part of image */
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .offer-section > div {
        flex-direction: column;  /* stack content vertically */
        align-items: center;
        padding: 2px;
        width: 100%;
    }

    .offer-box {
        max-width: 90%;       /* almost full width */
        padding: 5px 3px;
        margin-top: 0;
        text-align: center;
    }

    .offer-discount {
        font-size: 18px !important;       /* increased from 14px */
        margin: 0 0 8px 0;
        text-align: center;
    }

    .offer-discount::after {
        width: 22px;           /* slightly bigger line */
        height: 3px;
        margin: 4px auto 0 auto;
    }

    .offer-title {
        font-size: 14px !important;       /* increased from 11px */
        line-height: 1.4;
        margin: 0 auto 8px auto;
        text-align: center;
        max-width: 95%;
        white-space: normal;
    }

    .reserve-button-offer {
        font-size: 14px !important;         /* larger font */
        padding: 10px 20px !important;     /* increased height & width */
        margin: 25px auto 0 auto !important; /* gap above the button */
        display: block;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .reserve-button-offer:hover {
        transform: scale(1.05);
        background-color: #FF4500;
    }
    /* SVG/Image box */
    /* SVG/Image box */
    .offer-section svg {
        max-width: 90px;
        height: auto;
        margin: 0px 0 0 120px; /* remove auto centering */
        display: block;
        float: left;       /* move it to the left */
    }

}


/* Best Deal Section  */
.best-deals-section {
    background-color: #f484711f;
    padding: 0px 0;
    width: 100%;
}
.pt-26 {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: -40px;
    padding-bottom: -20px;
}

/* Flex container for multiple cards */
.pt-26 .cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
    justify-content: center;
    padding-left: 30px;
    padding-right: 20px;
}



/* Individual card styling */
.pt-26 .bg-white {
    padding: 20px;
    min-width: 250px;
    max-width: 300px;
    min-height: 300px;
    border-radius: 10px;
    box-sizing: border-box;
    text-align: left;
    background-color: #fff;
    margin: 0 auto;
}

/* Card image styling */
.pt-26 .bg-white img {
    height: 150px !important;
    max-width: 220px !important;
    width: auto !important;
    margin-bottom: 0.8rem !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Card text styling */
.pt-26 .bg-white .text-base {
    font-size: 16px;
}

.pt-26 .bg-white .text-sm {
    font-size: 14px;
}

/* Card button styling */
.pt-26 .bg-white button {
    font-size: 14px;
    /*padding: 8px 14px;*/
    color: #0f3069d9;
}
/*best deals*/

.btn-outlines {
    border: 2px solid #002169;
    background-color: transparent;
    color: #002169;
    transition: all 0.3s ease;
    border-radius: 0 !important;
}

.btn-outlines:hover {
    background-color: #FF4500;
    color: #fff;
    /*transform: translateY(-5px);*/
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);*/
}
.best-deals-section .card {

    /*display: flex;*/
    flex-direction: column;
    justify-content: space-between;
    border: none !important;
    /*border-radius: 10px;*/
    transition: transform 0.3s ease-in-out;
}
.best-deals-section .card img {
    height: 220px;
    max-height: 300px;
    object-fit: contain;
    padding: 10px;
}
.best-deals-section .card-body{
    padding: 10px 10px!important;
}

@media (max-width: 768px) {
    .best-deals-section {
        /*margin-top: 30px; !* Move heading a little up *!*/
        padding: 15px 0px; /* Reduce side padding */
    }

    /* Section heading adjustments */
    .best-deals-section h2 {
        font-size: 32px;
        margin-bottom: -10px; /* Reduce gap below heading */
    }

    .best-deals-section span {
        margin-bottom: 15px; /* Reduce underline gap */
    }

    /* Make cards take more width and center them */
    .best-deals-section .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px; /* Reduce gap between cards */
        margin: 0;
    }

    .best-deals-section .col-md-3 {
        flex: 0 0 100%; /* Increase card width */
        max-width: 95%;
        margin-bottom: 15px;
    }

    .best-deals-section .card {
        width: 100% !important;
        height: auto !important;
    }

 .fluid-text {
     font-size: clamp(1rem, 2vw, 2rem);
 }


    .best-deals-section .card img {
        max-width: 100% !important; /* Increase image width */
        height: auto !important;
        margin-left: auto;
        margin-right: auto;
        padding: 5px;
    }

    .card-body {
        justify-content: flex-start;
    }

    .card-body .btn-outlines {
        margin-top: 15px; /* Gap above button */
        width: 90%;
        text-align: center;
    }
}
/*customer revieew*/
.container h5.h4{
    text-align:  left;
    margin-left: 57px;
    margin-right: auto;
    /*border: 1.5px solid #C2D5FF;*/
    color: #002f6c !important;
}
/* Mobile Responsive - Customer Reviews */
@media (max-width: 768px) {

    .container h5.h4 {
        text-align: right;
        font-size: 18px;
        white-space: nowrap;   /* keep text in single line */
        display: inline-block; /* treat heading as one block */
        margin: 0 20px;             /* reset margins */
        padding-right: 191px;  /* push from right without shrinking width */
    }
    .container h5.h4 span {
        width: 25px;
        height: 3px;
        margin-top: 10px;
        margin-left: auto; /* align the underline with heading */
        margin-right: 157px;
    }

}
/*picture drive you way*/
.about-sections {
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    color: white;
    position: relative;
    margin-top: -50px;
}

.about-left,
.about-right {
    width: 45%;
    text-align: left;
}

.about-left {
    /* padding-left: 63px; */
    padding-bottom: 80px;
}

.about-left h1 {
    font-size: 25px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}
.about-left .underline {
    width: 40px;
    height: 4px;
    background-color: #ff5a3c;
    margin-bottom: 20px;
}
.about-left p {
    font-size: 18px;
    font-family: 'Reyhan', sans-serif;
    margin-bottom: 30px;
}

.about-left a,
.about-right a {
    display: inline-block;
    padding: 12px 20px;
    border: 1.8px solid white;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.about-left a:hover,
.about-right a:hover {
    background: darkblue;
    color: white;
}

.about-right {
    padding-left: 90px;
}

.about-right h2 {
    font-size: 25px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.about-right .underline {
    width: 40px;
    height: 4px;
    background-color: #ff5a3c;
    margin-bottom: 20px;
}

.about-right p {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Reyhan', sans-serif;
    margin-bottom: 30px;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

/* Mobile Responsive */
/* Mobile Responsive */
@media (max-width: 768px) {


    .about-left,
    .about-right {
        width: 48%; /* adjust widths to fit both in one line */
        padding-left: 10px !important;
        padding-right: 10px;
        padding-bottom: 20px;
        text-align: left; /* keep headings aligned left */
        box-sizing: border-box;
    }

    .about-left h1 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .about-left p,
    .about-right p {
        font-size: 12px;
        line-height: 1.4;
    }

    .about-left a,
    .about-right a {
        padding: 8px 14px;
        font-size: 12px;
    }

    .about-right h2 {
        font-size: 16px;

    }

    .about-right .underline {
        margin-left: 0; /* align with heading */
        margin-right: 0;
    }
}


/*client*/
.container h2.h4{
    text-align:  center;
    margin-left: 85px;
    margin-right: auto;
    color: #002f6c !important;
}
/* Mobile View */
@media (max-width: 768px) {
    .container h2.h4 {
        margin-left: 0;
        margin-right: 20px;
        text-align: center;  /* Keep title centered */
        font-size: 20px;     /* Slightly smaller on mobile */
    }

    .container h2.h4 span {
        display: block;
        margin: 10px auto 0 auto !important;
    }
}

/*OUR WIDE RANGE*/
/* Mobile Responsive - Services Section like Best Deals */
@media (max-width: 768px) {
    /* Section container */
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    /* Heading */
    .container h4.h4 {
        margin-left: 21px !important; /* heading near margin */
        font-size: 24px !important;
        padding-top: 10px !important;
    }


    /* Underline below heading */
    .container > div[style*="border-bottom"] {
        margin-left: 21px !important;
        width: 30px !important;
        margin-top: -5px !important;
    }

    /* Card row container */
    .container.row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; /* center all cards */
        gap: 10px; /* reduce gap */
        margin: 0;
        padding: 0;
    }

    /* Card styling */
    .service-card {
        width: 100% !important;
        height: auto !important;
        text-align: center;
    }

    /* Card image */
    .service-card .service-img {
        width: 100% !important;        /* make image full card width */
        height: 180px !important;      /* fixed height for uniformity */
        margin: 0;                      /* remove side gaps */
        padding: 0;                     /* remove padding */
        object-fit: cover;              /* cover the card without stretching */
        border-radius: 8px 8px 0 0;    /* optional: rounded top corners */
    }

    /* Card text */
    .service-card .card-body h5 {
        font-size: 14px;
        line-height: 1.4;
    }

    /* Card button */
    .service-card .card-body button.btn-outline {
        width: auto;          /* make button smaller */
        min-width: 100px;     /* optional: maintain minimum width */
        font-size: 13px;
        padding: 6px 12px;    /* smaller padding */
        margin-top: 10px;     /* gap above button */
    }
}
/*frequntly asked question*/
/* Mobile Responsive - FAQ Section */
@media (max-width: 768px) {

    /* Section padding */
    .faq-section {
        padding: 15px 10px;
    }

    /* Heading adjustments */
    .faq-section .faq-title {
        font-size: 18px;
        text-align: left;       /* align left near margin */
        margin-left: 5px;      /* move closer to left margin */
    }

    /* Underline below heading */
    .faq-section .faq-underline {
        margin-left: 1px;      /* align underline with heading */
        width: 40px;            /* smaller underline */
        height: 3px;
        margin-top: 5px;
    }

    /* Row adjustments */
    .faq-section .row.g-3 {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start; /* stack from left */
        gap: 10px;                  /* smaller gap between boxes */
        margin-left: 0 !important;  /* remove extra margin */
    }

    /* Column adjustments */
    .faq-section .col-lg-6.col-md-6 {
        flex: 0 0 100%;  /* stack one per row on very small screens */
        max-width: 100%;
    }
    /* FAQ box adjustments */
    .faq-section .faq-box {
        width: 90%;
        padding: 12px;
        font-size: 13px;     /* slightly smaller text */
        line-height: 1.4;
        margin-left: 20px;
    }

    .faq-section .faq-question {
        font-weight: 600;
        font-size: 14px;
        margin-bottom: 5px;
    }

    .faq-section .faq-answer {
        font-size: 13px;
        line-height: 1.5;
    }

    /* View More button */
    .faq-section .view-more-container {
        text-align: center;
        margin-top: 15px;
    }

    .faq-section .view-more-btn {
        font-size: 13px;
        padding: 8px 16px;
    }
}

#reviewsCarousel {
    padding: 0 40px;
    box-sizing: border-box;
}

#scrollLeft,
#scrollRight {
    background-color: #ffffff;
    border-color: #dee2e6;
}

#scrollLeft:hover,
#scrollRight:hover {
    background-color: #ffffff !important;
    border-color: #dee2e6 !important;
    color: inherit !important;
    box-shadow: none !important;
}

section.clients-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    height: 450px;
    padding: 0 20px;
}

.product-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    scroll-behavior: smooth;
    align-items: center;
    margin-top: -20px;
}


.product-card {
    flex: 0 0 auto;
    width: 240px;
    height: 120px;
    padding: 0;
    background: #fff;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 0;
}


.divider {
    flex: 0 0 auto;
    width: 1px;
    height: 40px;
    background-color: #b3b3b3;
}

.product-container::-webkit-scrollbar {
    display: none;
}
.product-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
hr {
    margin: 0;
    color: inherit;
    border: 0;
    border-top: 1px solid currentColor;
    opacity: 0.25;
}


.faq-section {
    padding: 50px 0px;
    background-color: #F0F5FF;
    text-align: center;
    width: 100%;
    box-sizing: border-box;

}
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}
.faq-category {
    display: none;
    transition: all 0.5s ease;
}

.faq-category.show {
    display: block;
}

.faq-box {
    width: 100%;
    max-width: 100%;
    text-align: left;
    padding: 20px;
    border: 2px solid #C2D5FF;
    background-color: #fff;
    transition: transform 0.3s ease;
}


.faq-box:hover {
    transform: translateY(-5px);
}

.faq-question {
    font-weight: bold;
    color: #002F6C;
}

.faq-answer {
    color: #555;
    font-family: ' Regular', sans-serif;
    font-size: 14px;
}

.faq-underline {
    display: block;
    width: 40px;
    height: 4px;
    background-color: #ff5a3c;
    margin-top: 5px;
    margin-left: 2px;
}

.faq-title {
    text-align: left;
    color: #002f6c !important;
    text-transform: uppercase;
    font-size: 25px;
    padding: 15px 7px;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 800;
}

.view-more-btn {
    margin-top: 30px;
    padding: 10px 20px;
    border: 1.5px solid #002F6C;
    color: #002F6C;
    /*border-radius: 5px;*/
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.view-more-btn:hover {
    background: #002169;
    color: white;
}


.cities-section {
    /*background-color: #acbfdf1f;*/
    padding: 30px 20px 50px 20px;
    margin: 0 auto;     /* center section horizontally */
    text-align: center;
}

.section-title {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 800;
    color: #002f6c;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 25px;
    display: inline-block;
    position: relative;
}

.section-underline {
    display: block;
    width: 50px;
    height: 4px;
    background-color: #ff5a3c;
    margin: 8px auto 0;
    border-radius: 2px;
}

.cities-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.country {
    width: 100%;
    text-align: left;
}

.img-cities-available {
    width: 100%;
    height: auto;
    /*border-radius: 10px;*/
}

.country-title {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: 25px;
    color: #002f6c;
    margin-top: 10px;
    text-align: center;
}

.city-text {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #002f6c;
    margin-top: 5px;
    text-align: center;
}




/* our wide range */
/* Section Title */
.section-titles {
    text-align: left;
    color: #1C274C;
    text-transform: uppercase;
    font-size: 22px;
    padding-left: 100px;
    padding-top: 15px;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 800;
}

/* Underline - Aligned with Title */
.section-underlines {
    display: block;
    width: 40px;
    height: 4px;
    background-color: #ff5a3c;
    margin-top: 5px;
    margin-left: 2px;
}


/* Services Section */
.services-section {
    background-color: white;
    padding: 50px 0;
    height: 600px;
    font-family: Arial, sans-serif;
    margin: 0 auto;
    text-align: center;
    width: fit-content;
    padding-right: 30px;
}


.services-container {
    display: flex;
    background-color: white;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.service-box {
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 30px;
    width: 300px;
    height: 120px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.service-title {
    font-size: 16px;
    color: #002F6C;
    font-weight: bold;

}

.service-link {
    padding: 8px 16px;
    border: 1px solid #002F6C;
    color: #002F6C;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
.service-link:hover {
    background: #002F6C;
    color: white;
}
.card-img-top {
    width: 100%;
    height: 150px;
    margin: 0px auto 0;
    display: block;
    object-fit: cover;
}

.service-card {

}

.service-card .service-img {
    /*height: 220px;*/
    object-fit: cover;
}
.card-body h5 {
    color: #002169 !important;
    font-size: 20px;

}
.card-body p {
    font-family: Inter, sans-serif;
    color: #000000 !important;
    font-size: 12px;
}

.btn-outline {
    border: 2px solid #002169;
    background-color: transparent;
    color: #002169;
    transition: all 0.3s ease;
    border-radius: 0 !important;
    font-size: 12px !important;
    margin-right: 65px;
    margin-left: 65px;
    line-height: 1.2 !important;
}

.btn-outline:hover {
    background-color: #FF4500;
    color: #fff;
    /*transform: translateY(-5px);*/
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);*/
}


#clientsCarousel {
    padding: 0 0px;
    box-sizing: border-box;
}


#clientsScrollLeft,
#clientsScrollRight {
    background-color: #ffffff;
    border-color: #dee2e6;
}

#clientsScrollLeft:hover,
#clientsScrollRight:hover {
    background-color: #ffffff !important;
    border-color: #dee2e6 !important;
    color: inherit !important;
    box-shadow: none !important;
}

#clientsScrollLeft {
    left: 0;
    transform: translate(-50%, -50%);
}

#clientsScrollRight {
    right: 0;
    transform: translate(50%, -50%);
}


.journey-text {
    font-size: 20px;
    color: #002F6C;
    font-family: Arial, sans-serif;
    line-height: 1.4;
    text-transform: uppercase;
    margin-top:50px; /* Adjust the value as needed */
}

.w-full {
    width: 550px;
}

.img, video {
    max-width: 110%;
}

.section-spacing,
.medium-spacing {
    margin-bottom: 20px;
}

.social-icons {
    margin-top: 10px;
}

.bring-closer {
    margin-top: -50px;
}


/* Custom Select Wrapper */
.custom-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 3px; /* Brings arrow closer */
    cursor: pointer;
}

/* Remove Default Select Styles */
.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: bold;
    color: #002F6C;
    cursor: pointer;
    padding: 8px 25px 8px 5px; /* Space for arrow, without box */
    width: auto;
}

/* Custom Arrow using CSS */
.custom-select-wrapper::after {
    content: "\25BC"; /* Unicode entity for ▼ */
    font-size: 14px;
    color: #001F4D; /* Darker color */
    position: absolute;
    right: 5px; /* Moves arrow closer */
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Prevents blocking select */
}

/* our wide range */
/* Section Title */
.section-titles {
    text-align: left;
    color: #1C274C; /* Dark navy color */
    text-transform: uppercase; /* Matches the image */
    font-size: 22px; /* Adjust for better readability */
    padding-left: 100px; /* Adjust for alignment */
    padding-top: 15px;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 800;/* Match the font style */
}

/* Underline - Aligned with Title */
.section-underlines {
    display: block;
    width: 40px; /* Adjust width to match image */
    height: 4px; /* Slightly thicker */
    background-color: #ff5a3c; /* Orange color */
    margin-top: 5px; /* Adjust spacing */
    margin-left: 2px; /* Align with text */
}


/* Services Section */
.services-section {
    background-color: #ffffff;
    padding: 50px 0;
    height: 600px; /* Added 'px' for proper height */
    font-family: Arial, sans-serif;
    margin: 0 auto; /* Centers the section horizontally */
    text-align: center;
    width: fit-content; /* Adjust width if needed */
    padding-right: 30px;
}


.services-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.service-box {
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 30px;
    width: 300px;
    height: 220px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.service-title {
    font-size: 16px;
    color: #002F6C;
    font-weight: bold;

}

.service-link {
    padding: 8px 16px;
    border: 1px solid #002F6C;
    color: #002F6C;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
.service-link:hover {
    background: #002F6C;
    color: white;
}

.section-container .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns per row */
    gap: 16px; /* spacing between cards */
    justify-items: center; /* center cards horizontally */
}

.section-container .grid .card {
    width: 100%;
    max-width: 180px; /* smaller card width */
    height: 150px; /* smaller card height */
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical alignment */
    align-items: center; /* horizontal alignment */
    box-sizing: border-box;
    padding: 8px;
    background-color: #fff; /* optional */
    border-radius: 5px; /* optional */
}

.section-container .grid .card img {
    width: 100%;
    height: 80px; /* smaller image height */
    object-fit: cover; /* uniform images */
    border-radius: 5px;
}

/*ABOUT US*/

.breadcrumb-heading {
    padding: 20px 5% 15px 8% !important;  /* top:15px, right:5%, bottom:0, left:5% */
    margin-bottom: 0 !important;
    font-size: 16px;
    color: #133f8a;
}

.about-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.about-section .banner {
    margin: 0 !important;
    padding: 0 !important;
}


/* Mobile view adjustments */
@media (max-width: 768px) {

}

.section-title-about {
    /*margin-top: -255px; !* move heading upwards *!*/
    /*font-size: 30px !important;   !* adjust as needed *!*/
    color: #002169;
    font-weight: 600;
    text-align: left;
    /*padding-left:76px;*/
    font-family: 'Inter', sans-serif;
}
.section-title-about::after {
    content: "";
    display: block;
    width: 35px;
    height: 5px;
    background-color: #f25c2a;
    margin-top: 10px;
    margin-left: 0px;
}
.about-text {
    color: #000000;
    /*font-size: 16px;*/
    /*line-height: 1.8;*/
    text-align: justify;
    /*max-width: 900px;*/
    margin: 20px auto;
    /*margin-left: 60px;*/
    /*padding: 14px;*/
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 25px;
    line-height: 2.0;"
}

.title {
    font-size: 35px;
    font-weight: 700;
    color: #0c2f7a;
    margin: 90px 0 15px 0;
    padding-right: 743px !important;
    text-align: left;
    position: relative;
}

.title::after {
    content: "";
    display: block;
    width: 35px;
    height: 5px;
    background-color: #f25c2a;
    margin-top: 10px;
    margin-left: 198px;
}
/* Mobile view adjustments */
@media (max-width: 768px) {
    .title {
        font-size: 24px !important;
        margin: 330px 10px 15px 10px !important;
        padding-left: 1px !important;
        text-align: left;
        white-space: nowrap;       /* prevent line break */
        overflow: hidden;          /* hide overflow if text is too long */
        text-overflow: ellipsis;   /* optional: show ... if text overflows */
    }

    .title::after {
        width: 25px;
        height: 4px;
        margin-top: 8px;
        margin-left: 0;
    }
    .about-text.text {
        margin: 15px 10px 20px 10px !important;
        padding-left: 19px !important;
        font-size: 14px !important;
        line-height: 1.9 !important;
    }
}



.container-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the flex items */
    align-items: flex-start;
    gap: 20px;
    margin-top: 80px;
}




/*@media (max-width: 768px) {*/
/*.teams-image img {*/
/*    margin-top: 150px;*/
/*}*/
/*}*/

.who-image-container h3 {
    font-family: 'Reyhan', sans-serif;
    color: #002366;
    font-size: 30px;
    font-weight: 700;
}

.who-text-container {
    /*row-gap: 10px;*/
    /*padding-top: 70px;*/

}


.text-box {
    background-color: #F0F5FE;
    /*padding: 18px;*/
    border-radius: 8px;
    box-sizing: border-box;
    /*width: 320px;*/
    /*min-height: 190px;*/
    /*margin-left: 40px;*/
}

.text-box h4 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #002169;
    /*padding-top: 20px;*/
    /*margin-bottom: 8px;*/
}

.text-box p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin: 0;
    color: #000000;
}
.container-wrappers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* center the content horizontally */
    gap: 20px;
    /*padding-top: 40px;*/
}

/* Text container on the left */
.who-text-single {
    flex: 1 1 350px;
    /*max-width: 500px;*/
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #333;
}

/* Image container on the right */
.who-image-containers {
    flex: 1 1 350px;
    /*max-width: 400px;*/
    text-align: center;
}

.who-image-containers h3 {
    font-family: 'Reyhan', sans-serif;
    color: #002366;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;

    /* Move heading to the right */
    text-align: left;
    /*margin-left: -620px;*/
    /*padding-top: 30px;*/
}

.who-image-containers h3::after {
    content: "";
    display: block;
    width: 35px;       /* underline width */
    height: 5px;       /* underline thickness */
    background-color: #f25c2a;
    margin-top: 10px;

    /* Align underline to the right */
    margin-right: auto;
}
.who-text-single p {
    font-family: 'Inter', sans-serif; /* Font for the paragraph */
    font-size: 14px;                  /* Adjust font size */
    color: #000000;                     /* Text color */
    line-height: 1.8;                 /* Space between lines */
    /*text-align: left;                 !* Align text to left *!*/
    /*margin-top: -70px;                 !* Space above paragraph *!*/

    /*margin-left: -100px;*/
}

.why-choose-us {
    background: transparent linear-gradient(180deg, #EFF4FF 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
    padding: 60px 20px;
    text-align: center;
}

.why-choose-us h3 {
    color: #003366;
    font-weight: bold;
    margin-bottom: 40px;
    font-size: 30px;
}

.why-choose-us h3::after {
    content: "";
    display: block;
    width: 35px;
    height: 5px;
    background-color: #f25c2a;
    margin: 10px auto 0 auto;
}


.why-choose-us .row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start;
}

.why-choose-us .col-item {
    flex: 1 1 calc(25% - 30px);
    max-width: calc(25% - 30px);
    text-align: center;
}

.why-choose-us .col-item h4 {
    color: #002169;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'Noto Sans', sans-serif;
}

.why-choose-us .col-item p {
    color: #000000;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}



/* Mobile responsiveness for About Us section */
@media screen and (max-width: 768px) {

    /* Container About */
    .container-about {
        display: flex;
        flex-direction: column;   /* Stack sections vertically */
        width: 95%;               /* Almost full screen width */
        max-width: 100%;          /* Never exceed screen width */
        margin: 0 auto;           /* Center container */
        padding: 0 10px;          /* Padding inside container */
        box-sizing: border-box;   /* Include padding in width */
    }

    /* Our Team Container */
    .our-team-container {
        flex: 1 1 100%;           /* Full width of parent */
        padding: 15px 10px;       /* Inner padding */
        margin-bottom: 20px;      /* Space below section */
        text-align: center;       /* Center text on mobile */
        box-sizing: border-box;   /* Include padding in width */
    }

    /* About Text */
    .about-text {
        width: 100% !important;           /* Full container width */
        max-width: 98%;                  /* Never exceed container */
        margin-top: 0 auto;
        padding: 0;
        font-size: 15px;                  /* Mobile-friendly font */
        line-height: 1.6;
        word-wrap: break-word;            /* Wrap long words */
        overflow-wrap: break-word;        /* Extra safety */
        white-space: normal !important;   /* Ignore <br> forcing overflow */
        hyphens: auto;                    /* Optional: break words naturally */
    }



    /* Team Section */
    .container-wrapper {
        flex-direction: column !important;
        gap:0;
        margin-top: 30px;
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

    .team-rect-box {
        /*width: 80% !important;*/
        /*height: 250px !important;*/
        /*margin-right: 0 !important;*/
        /*padding: 20px !important;*/
        margin-top: 360px;
    }


        .who-why h3 {
            font-size: 25px;
            margin-top: 50px;
            color: #002f6c;
            /*margin-left: -10px;*/
        }
    .who-why p br {
        display: none;
    }
        .who-why p {
            font-size: 14px;
            line-height: 1.6;
            word-wrap: break-word;
            overflow-wrap: break-word;
            white-space: normal !important;
            margin-top: -20px;
            margin-left: -10px;
        }


        .container-wrapper {
            display: flex;
            flex-direction: column;
            width: 95%;
            margin: 0 auto;
            gap: 20px;
            box-sizing: border-box;
        }

         /*Image container*/
        .who-image-container {
            width: 100%;
            /*text-align: center;*/
        }



        /* Text container */
        .who-text-container {
            /*width: 50%;*/
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-left: -50px;
            /*margin-top: -50px;*/
        }


    .container-wrappers {
        display: flex;
        flex-direction: column;   /* Stack text and image vertically */
        width: 95%;               /* Fit almost full mobile width */
        margin: 0 auto;           /* Center container */
        gap: 20px;                /* Space between text and image */
        box-sizing: border-box;
    }

    /* Single text block */
    .who-text-single {
        width: 100%;
        text-align: center;       /* Center text */
    }

    .who-text-single p {
        font-size: 14px;          /* Mobile-friendly font */
        line-height: 1.6;         /* Comfortable reading */
        word-wrap: break-word;    /* Wrap long words */
        overflow-wrap: break-word;
        margin: 0 auto;
        margin-top: 300px;
    }

    .who-image-containers {
        display: flex;
        flex-direction: column; /* Stack heading above image */
        align-items: center;    /* Center content */
        width: 95%;
        margin: 0 auto;
        gap: 15px;              /* Space between heading and image */
    }

    .who-image-containers h3 {
        font-size: 25px;        /* Adjust font size for mobile */
        margin: 0;              /* Remove negative margins */
        text-align: center;     /* Center heading */
        margin-top: -420px;
        margin-left: -170px;
    }

    .who-image-containers .team-image img {
        width: 100%;            /* Full width for mobile */
        height: auto;           /* Maintain aspect ratio */
        border-radius: 8px;
        margin: 0;

    }


    /* Why Choose Us */
    .why-choose-us {
        flex-direction: column !important;
        gap: 0;
        margin-top: -330px;
    }
    .why-choose-us .col-item {
        flex: 0 0 100%;
        max-width: 100%;
        display: block;
    }
    .col-item {
        width: 100% !important;
        margin-bottom: 15px;
        text-align: center;
        padding: 15px;
        margin-left: -5px;
    }

}


.profile {
    text-align: center;
    max-width: 195px;         /* optional: restrict profile width */
}

.profile img {
    width: 110px;             /* reduce image size */
    height: auto;
    /*border-radius: 50%;       !* optional: make it circular *!*/
    object-fit: cover;
}




/* contact us */
.background-section {
    height: 300px; /* total height of section */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* align items at top */
    align-items: center;         /* horizontally center */
    position: relative;
    padding-top: -10px;           /* move image down from top */
    background-color: #f0f0f0;   /* optional: section background */
}

/* Image styling */
.background-section img {
    width: 100%;       /* full width of container */
    max-width: 1300px; /* optional max width */
    height: auto;      /* maintain aspect ratio */
    display: block;
}

.overlay-contact {
    position: absolute;
    width: 100%;
    height: 100%;
    /*background: rgba(0, 0, 0, 0.6);*/
}

.contact-section {
    position: absolute;
    /*background: url("{{ asset('assets/frontend/img/trans/banner/Contact bg.jpg') }}") no-repeat center center/cover;*/
    min-height: 90vh; /* full screen height */
}

@media (max-width: 768px) {

    /* Make background section height auto to fit content */
    .background-section {
        height: auto !important;
        padding-top: 1px !important;
        padding-bottom: 20px !important;
        position: relative !important;
    }

    /* Image fills the section, taller for mobile */
    .background-section img {
        width: 100% !important;
        height: 550px !important;  /* Increase height for mobile */
        object-fit: cover !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .overlay-content {
        flex-direction: column;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        gap: 15px;
        width: 95%;
    }

    .section-title-contact {
        font-size: 24px; /* smaller on tablets/mobiles */
        margin-top: 10px;
    }
    .contents {
        flex-direction: column; /* stack left and right vertically */
        align-items: flex-start; /* align to the left */
        gap: 15px; /* spacing between sections */


    }

    .left {
        width: 100% !important; /* full width */
        margin: 0 !important;    /* remove any margins */
        text-align: left;        /* left align text */
        padding: 10px;           /* maintain padding */
        box-sizing: border-box;  /* include padding in width */
    }
    .right {
        width: 100% !important; /* full width */
        margin-top: 20px !important;    /* remove any margins */
        text-align: left;        /* left align text */
        padding: 0;           /* maintain padding */
        box-sizing: border-box;  /* include padding in width */
        margin-bottom: -10px !important;
    }

    /* Adjust headings and text */
    .left h4 {
        font-size: 1px;
        margin: 10px 0;
    }

    .left p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    /* Inputs & textarea responsive */
    .contact-box input,
    .contact-box textarea {
        width: 100%;
        margin-bottom: 10px;
        padding: 10px;
        font-size: 14px;
    }

    .contact-box textarea {
        min-height: 120px; /* slightly taller for mobile */
    }

    .contact-box .send-btn {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }

    /* Social icons */
    .social-icons a {
        font-size: 18px;  /* slightly bigger for touch */
        margin-right: 10px;
        margin-bottom: 5px;
        display: inline-block;
    }

}
@media (max-width: 768px) {
    .map-section {
        margin: 0 !important;        /* remove any margin */
        padding: 0 !important;       /* remove any padding */
    }

    .map-section iframe {
        display: block;              /* remove inline spacing */
        width: 100%;                 /* full width on mobile */
        height: 300px;               /* reduce height for mobile */
        border: 0;                   /* remove iframe border */
    }
}


/* Footer Styles */
.footer {
    background-color: #002F6C;
    color: white;
    padding: 40px 0px;
    font-family: Arial, sans-serif;
}

/* Footer Container */
.footer-container {
    display: flex;
    flex-wrap: nowrap; /* Ensures all sections stay in one row */
    justify-content: space-between; /* Evenly distributes sections */
    align-items: flex-start;
    margin: auto;
    gap:0px; /* Space between sections */
    padding-right: 30px;
}



/* Footer Sections */
.footer-section {
    flex: 1;
    min-width: 300px; /* Ensures each section has enough space */
    text-align: left;
    margin: 0 15px;
    font-family: 'Inter', sans-serif;

}

/* Footer Logo */
.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

/* Footer Section Styling */
.footer-section {
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.footer-section h4 {
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    /*font-weight: bold;*/
    color: white;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 5px;
}

.footer-section p {
    font-size: 18px;
    color: #FA461C;
    text-decoration: none;
    line-height: 1.5;
    display: block;
    margin-top: 5px;
    font-family: 'Inter', sans-serif;
}
.contact-column p a {
    font-size: 16px;
    color: white;
    text-decoration: none;
    line-height: 1.5;
    display: block;
    margin-top: 5px;
    font-family: 'Inter', sans-serif;
}
.contact-column p a:hover {
    text-decoration: underline;
    color:#FA461C;
}
.footer-section a {
    font-size: 13px;
    color: white;
    text-decoration: none;
    line-height: 0.8;
    display: block;
    margin-top: 5px;
    font-family: 'Inter', sans-serif;
}

.footer-section a:hover {
    text-decoration: underline;
    color:#FA461C;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    flex-direction: column; /* Stack icons vertically */
    align-items: flex-start; /* Align to the left */
    gap: 10px; /* Adjust vertical spacing */
    margin-bottom: 15px; /* Add space below the icons */
}

.social-icons a {
    color: white;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #FA461C; /* Highlight effect */
}

/* Contact Icons */
.footer-section i {
    /* Icon color */
}

/* Quick Links & Services */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: white;
    line-height: 1.6;
    font-size: 18px;
}
.footer-section ul li a:hover{ text-decoration: none; }

.footer-section ul li a:hover {
    color:#FA461C;
}
/* Footer Bottom Section */
.footer-bottom {
    background-color: white;
    color: #002F6C;
    padding:20px;
    padding-left: 80px;
    text-align: left;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}
.footer-link {
    color: #002169;
    text-decoration: none;
    transition: color 0.3s ease;
}
.social-icon{ color: #fff; font-size: 20px; width: 40px; height: 40px; border-radius: 50%; border: thin solid #ffffff; display: inline-block; text-align: center; }
.social-icon:hover{ color: #FE2B09!important; border-color: #FE2B09; }
.social-icon i{ line-height: 40px; }

.footer-link:hover {
    color: #1b60f5;
}
/* Right Aligned Text */

@media (max-width: 768px) {
    .footer-bottom {
        padding: 15px 10px;
    }

    .footer-bottom p {
        font-size: 11px;
        margin: 8px 0;
    }

    .footer-bottom a.footer-link,
    .footer-bottom .powered-by a {
        font-size: 10px;
    }
    .footer-bottom p.email {
        display: none;
    }
    .footer-bottom p .mobile-break {
        display: block;
    }

}


.banner img {
    width: 100%;
    height: 450px;
    max-height: 500px;
    padding-top: 50px;

}

.container-about {
    display: flex;
    flex-wrap: wrap;
    gap: 95px;
    /*align-items: flex-start; */
    justify-content: space-between;
    margin-right:175px;
}

.feature-box {



    /*padding: 15px;    !* reduce height by lowering padding *!*/
    /*height: 50px;*/
    max-height: 300px;
    padding-left: 10px;  /* optional: space from left edge */
    text-align: left;
}

.vision-box {
    background-color: #133888 ;

}
.mission-box {
    background-color: #133888 ;
    /*margin-top: -180px;*/
    /*height: 100px;*/
}



/* Our Team / About Text */
.our-team-container {
    flex: 1;
    text-align: right;
    font-family: 'Inter', sans-serif;
    margin-top: 35px;
}

.our-team-container h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 25px;
    color: #002f6c;
}

.our-team-container p {
    line-height: 1.6;
    font-size: 16px;
    color: #333;
}



.title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: #002366;
}

.container-profile {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

.profile {
    text-align: center;
    width: 350px;
}

.profile img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.profile h3 {
    margin: 10px 0 5px;
    font-size: 18px;
    font-family: 'Inter','bold', sans-serif;
}

.profile p {
    margin: 0;
    color: gray;
    font-size: 14px;
}
/* meida */
.blog-titles {
    color: #002F6C;
}
.blog-titles::after{
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff3d00;
    margin-top: 5px;
}
.blog-container {
    max-width: 900px;
    margin: auto;

}
.blog-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}
.blog-item img {
    width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}
.blog-content {
    flex: 1;
    padding-left: 15px;
}
.blog-title {
    font-weight: bold;

}
/* enquiry */
.booking-section {

    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-bottom: 250px;
    line-height: 2.3;
}



/* General Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Breadcrumb Styles */
.breadcrumb {
    background-color: #dfe8f1;
    padding: 10px 0;
    margin-bottom: 20px;
}

.breadcrumb p {
    color: #333;
    font-size: 14px;
    margin: 0;
}

/* Car Section Styles */
.car-section {
    padding: 20px 0;
    margin-bottom: 50px; /* Ensures gap between car section and footer */
}


.title-underline {
    width: 70px;
    height: 3px;
    background-color: #e74c3c;
    margin-bottom: 15px; /* Adjust the value as needed */
}


/* Filter Styles */
.filter-row {
    display: flex;
    justify-content: left;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-dropdown {
    width: 180px;
}

.filter-dropdown select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23333' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}

.blue-select {
    background-color: #0a3d62;
    color: white;
    border: 1px solid #0a3d62;
}

/* Car Grid Styles */
.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    justify-content: center;

}

/* Car Card Styles */
.car-card {
    width: 300px;
    border: 1px solid #eee;
    padding: 15px;
    text-align: left;
    border-radius: 10px;

}

.car-card:hover {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.car-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-details {
    padding: 15px;
}

.brand {
    font-size: 16px;
    color: #555;
    margin-bottom: 5px;
}

.model {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.price {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.reserve-now {
    display: inline-block;
    padding: 8px 20px;
    background-color: #ffffff;
    color: black;
    border: 1px solid #ddd;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
}

.reserve-now:hover,
.reserve-now.active {
    background-color: #f25c2a;
    color: white;
    border-color: #f25c2a;
}



/* Responsive Styles */
@media (max-width: 1024px) {
    .car-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .car-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-row {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .car-grid {
        grid-template-columns: 1fr;
    }
}




/*CONTACT US*/
.background-section {
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding-top: -10px;
    background-color: #f0f0f0;
}

/* Image styling */
.background-section img {
    width: 100%;
    max-width: 1300px;
    height: auto;
    display: block;
}

.map-section iframe {
    width: 100%;
    height: 500px;
    border: 0;
}

.map-section {
    width: 100%;
    height: 400px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.section-title-contact{
    color: #ffffff;
    font-family: 'Noto Sans', sans-serif;
}

.section-title-contact::after {
    content: "";
    display: block;
    width: 30px;
    height: 4px;
    background-color: #f25c2a;
    margin-top: 5px;
    margin-left: 4px;
    position: relative;
    z-index: 4;
}
.contacts-infos a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.contacts-infos a:hover {
    color: #FA461C !important;
}
.tall-textarea {
    height: 100px !important;
}
.contact-box .form-control::placeholder {
    color: #0B2869 !important;
    opacity: 1;
}
.btn-primary {
    background-color: #FA461C;
    color: #fff;
    border: none;
}
.btn-primary:hover {
    background-color: #FA461C;
    color: #fff;
    border: none;
}
@media (max-width: 767px) {
   .section-title-contact {
        margin-top: 5px !important;
        margin-bottom: 20px !important;
    }

    .section-title-contact::after {
        content: "";
        display: block;
        width: 30px;
        height: 4px;
        background-color: #f25c2a;
    }

    .hero-contact .row > .col-md-6 {
        width: 100% !important;
        max-width: 100% !important;
    }

    .contacts-infos {
        order: 1;
    }

    .contact-box {
        order: 2;
        margin-top: 450px;
    }
}


/*ENQUIRY/LIMO*/

.limo-form .form-control::placeholder {
    color: #0B2869 !important;
    font-size: 14px;
    opacity: 1;
}

.btn-primary {
    background-color: #FA461C;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #FA461C;
    color: #fff;
    border: none;
}


@media (max-width: 767px) {
    .hero-enquiry .row > .col-md-6 {
        width: 100% !important;
        max-width: 100% !important;
    }

    .content-enquiry {
        order: 1;
        margin-bottom: 20px;
    }

    .limo-form{
        order: 2;
        margin-top: 0;
    }

    .section-title-enquiry {
        text-align: center;
    }
}


/*CARBOOKING*/
.booking-container-car .car-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}
.vehicle-details {
    color: #002169;

}
.vehicle-detail {
    color: #002169;

}

.booking-form .form-control::placeholder {
    color: #0B2869 !important;
    font-size: 14px;
    opacity: 1;
}

.btn-primary {
    background-color: #FA461C;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #FA461C !important;
    color: #fff;
    border: none;
}

@media (max-width: 767px) {
    .car-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
        display: block;

    }
    .hero-enquiry .row > .col-md-6 {
        width: 100% !important;
        max-width: 100% !important;
    }

    .content-booking {
        order: 1;
        /*margin-bottom: -10px;*/
    }

    .booking-form {
        order: 2;
        margin-top: 0;
    }

    .section-title-enquiry {
        text-align: center;
    }
    .booking-form .btn {
        width: 100% !important;
    }
}








/* blog 1 */
.container-blog {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    max-width: 800px;
    margin: auto;
}

.image-container-blog {
    flex: 1;
}
.image-container-blog img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 5px;
    position: absolute;
    top: -1px; /* Moves the image upwards */
    padding-bottom: 40px;
}


.content-container {
    flex: 1;
    padding-left: 20px;
}

.date-blog {
    font-size: 14px;
    color: gray;
}

.answer-blog {
    font-size: 16px;
    color: #333;
}

.buttons {
    margin-top: 10px;
}

.btn-blog {
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 5px;
    border-color:black;
}

.btn-blog:hover {
    background: #002F6C;
    color: white;
}

/* 5% arrow*/
.arrow-box {
    width: 50px;
    height: 50px;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
    margin-top: 130px;
    margin-left: 40px;
}

.arrow {
    width: 15px;
    height: 15px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    top: 15px;
}

.filters {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.filter-dropdown {
    /*padding: 10px;*/
    /*border: 1px solid #ccc;*/
    background: white;
    cursor: pointer;
}

.car-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;

}


.car-card img {
    width: 100%;
    height: auto;
    margin:10px;
    position: relative;
}

.car-card h3 {
    font-size: 18px;
    font-weight: bold;
}

.car-card p {
    font-size: 16px;
    color: #002f6c;
}

.reserve-btn-carlist {
    margin-top: 10px;
    padding: 10px 15px;
    border: 1px solid #0056b3;
    background-color: white;
    color: #0056b3;
    cursor: pointer;
    border-radius: 5px;
}

.reserve-btn-carlist.active {
    background-color: #ff5722;
    color: white;
    border: none;
}

.reserve-btn-carlist:hover {
    background-color: #0056b3;
    color: white;
}



/* media responsive pages for home page */
/* Responsive Design */
@media (max-width: 768px) {
    .why-us-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .why-us-text, .why-us-features {
        max-width: 100%;
    }
}



@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* stack sections vertically */
        gap: 15px;
        margin-bottom: 100px !important;
    }
    .footer-container .contact-info{
       margin-left: 1px !important;
    }
    .footer-section {
        width: 100% !important;
        /*margin: 0 !important; !* override inline margins *!*/
        margin-right: -10px;
        /*margin-bottom: 0;*/
    }
    .footer-section.company-info svg {
        margin-left: 60px !important; /* override inline margin-left */
        display: block;
        margin-right: auto;
    }

    .social-media {
        margin-left: 60px !important;  /* override inline */
        margin-top: 30px !important;
        flex-wrap: wrap;            /* allow icons to wrap */
        justify-content: flex-start !important;
        white-space: normal !important; /* allow wrapping of text */
    }
    .social-media span,
    .social-media a {
        margin-right: 10px;
        margin-bottom: 5px;
    }
    .logo-divider {
        width: 100% !important;  /* smaller width for mobile */
        margin: 20px auto !important; /* center horizontally with spacing */
        border-top: 1px solid #ccc; /* optional color if not set inline */
    }
    .footer-section ul {
        padding: 0;
        margin-top: -15px;
    }

    .footer-section ul li {
        margin-bottom: 10px;
    }
}



@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }
    nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .hero-title {
        font-size: 1.5em;
    }
    .text-overlay {
        width: 80%;
        padding: 30px;
        text-align: center;
    }
    .buttons {
        flex-direction: column;
    }
    .why-us-section {
        height: auto;
        /*padding: 30px 0;*/
    }
    .services-container {
        flex-direction: column;
        align-items: center;
    }
    .faq-container {
        grid-template-columns: repeat(1, 1fr);
    }
    .cities-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}


@media (max-width: 480px) {
    .hero {
        padding: 20px 0;
    }
    .search-box {
        flex-direction: column;
        gap: 5px;
    }
    .input-group {
        width: 100%;
    }
    .text-overlay {
        width: 90%;
        padding: 20px;
    }
    .why-us-features {
        grid-template-columns: 1fr;
    }
    .faq-section, .cities-section {
        padding: 30px 20px;
    }

}

/* Default: Show desktop, hide mobile */
.navbar-desktop {
    display: block;
}
.navbar-mobile {
    display: none;

}

/* In Mobile View: Show mobile, hide desktop */
@media (max-width: 767.98px) {
    .navbar-desktop {
        display: none !important;
    }
    .navbar-mobile {
        display: block !important;

    }

}

.clients-section {
    background-color:  #acbfdf1f;
    padding: 30px 0 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.clients-title {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 800;
    color: #002f6c;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 24px;
    display: inline-block;
    position: relative;
}

.title-underline {
    display: block;
    width: 50px;
    height: 4px;
    background-color: #ff5a3c;
    margin: 8px auto 0;
    border-radius: 2px;
}

.product-container {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    overflow-x: auto;       /* enable horizontal scroll */
    scroll-behavior: smooth;
    padding-bottom: 10px;
    width: 100%;            /* full width of the section */
    justify-content: flex-start; /* prevent overlapping */
}

.product-container::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 auto;         /* don't shrink or wrap */
    width: 150px;           /* adjust width */
    height: 100px;          /* adjust height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}


.product-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    border-radius: 50%;
    border: 1px solid #ccc;
    background-color: #fff;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
}

.scroll-btn.left {
    left: 20px;
}

.scroll-btn.right {
    right: 20px;
}


/* Clients carousel (Bootstrap-based) */
#clientsCarousel {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* IE/Edge */
    scrollbar-width: none;     /* Firefox */
}

#clientsCarousel::-webkit-scrollbar {
    display: none;              /* Chrome/Safari */
}

#clientsCarousel > div {
    flex: 0 0 auto !important;
    min-width: 270px !important;
    max-width: 300px !important;
    height: 160px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    box-shadow: none !important;
    position: relative !important;
}


#clientsCarousel img {
    max-height: 160px !important;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    display: block;
    object-fit: contain;
}

/* vertical spacer between client logos */
#clientsCarousel > div:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -6px; /* center the line in the gap */
    top: 10%;
    width: 1px;
    height: 80%;
    background: #d9dde3;
}


/* Background section (replaces .hero) */
.section-bg {
    background: #002060;
    padding: 30px 0px;
}

/* Section Heading */
.page-headline {
    text-align: left;
    font-family: 'Reyhan-BoldItalic', sans-serif;
    font-size: 40px;
    color: #ffffff;
    margin: 20px 0 30px 0;
    letter-spacing: 0;
    text-transform: capitalize;
}

/* Highlighted part of heading */
.highlight-text {
    color: #FA461C;
    font-family: 'Reyhan-BoldItalic', sans-serif;
    font-size: 40px;
    /*font-weight: bold;*/
}

/* Search button style */
.btn-search {
    background-color: #ff5a3c;
    color: #fff;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}
.btn-search:hover {
    background-color: #e14e2f;
    color: #fff;
}
input,
textarea,
select {
    border: none !important;      /* Remove border */
    outline: none !important;     /* Remove focus outline */
    box-shadow: none !important;  /* Remove any Bootstrap shadow on focus */
    /* Optional: make background transparent */
}

.border_enable{
    border: 1px solid #ccc!important;
}




/* Card styling */
.card {
    border: 1px solid #ced4da !important;
    border-radius: 8px;
    background: #fff;
}
.card.shadow.m-2 h2 {
    color: #2D3657;
}
.card.shadow.m-2 h2::after {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    background-color: #f24c2e;
    margin: auto;
}
/* Labels */
.card.shadow.m-2 .form-label {
    color: #0B2869;
    font-weight: 600;
}

/* Inputs */
.card.shadow.m-2 .form-control {
    height: 50px;
    border: 1px solid #ced4da !important;
    padding-left: 10px;
    border-radius: 5px;
    color: #0B2869;
}

.card.shadow.w-50 .form-check-input {
    margin-right: 10px !important;
    margin-top: 2px !important;

}

.card.shadow.w-50 .form-check-label {
    margin-left: -30px !important;
    margin-top: 0 !important;
    font-size: 15px;
    color: #0B2869;
}

/* Button */
.btn-save {
    background-color: #FA4500;
    color: white;
    border: 1px solid #ced4da !important;
    padding: 10px 25px;
    /*border-radius: 5px;*/
    font-weight: 600;
    transition: 0.3s;
}

/* Button hover */
.btn-save:hover {
    background-color: #FA4500; /* darker shade on hover */
    color: #fff;
}
/* Input text color */
.form-control {
    color: #0B2869 !important;   /* dark blue text */
    font-weight: 500;            /* make it a bit bold */
}

/* Placeholder text color */
.form-control::placeholder {
    color: #6c757d !important;   /* grey placeholder */
    opacity: 1;                  /* keep it fully visible */
}

/* Label text color */
.form-label {
    color: #0B2869 !important;
    font-weight: 600;
}


.register-link a {
    color: #0B2869; /* Dark Blue */
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}

.register-link a:hover {
    color: #ff6600; /* Orange */
    text-decoration: underline;
    transform: translateY(-2px); /* slight lift on hover */
}

/*customer detail*/
.card h2 {
    color: #2D3657;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 22px;
}
.card h2::after {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    background-color: #f24c2e; /* orange underline */
    margin-top: 5px;
}

/* Labels */
.form-label {
    color: #0B2869;
    font-weight: 600;
    font-size: 14px;
}


.form-control {
    height: 50px;
    border: 1px solid #ced4da !important;
    border-radius: 5px;
    color: #0B2869 !important;
    font-weight: 500;
    padding-left: 10px;
}


.form-control::placeholder {
    color: #6c757d !important;
    opacity: 1;
}
.placeholder-blue::placeholder {
    color: #002169 !important;
    opacity: 1;
}

.input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #ced4da !important;
    font-weight: 600;
    color: #2D3657;
}

/* Submit button */
.btn-save{
    background-color: #FA4500;
    color: white;
    border: none;
    padding: 12px 30px;
    /*border-radius: 6px;*/
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
}

/* Button hover */
.btn-save:hover{
    background-color: #FA4500;
    color: #fff;
}
.powered-by a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.powered-by a:hover {
    color: #0073e6;
}





.long-section img {
    width: 50%;
    height: 300px;
    display: block;
    margin-top: 20px;
    margin-left: 10px;
    margin-bottom: 20px;
}
.long-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 50px;
}
.section-title-long {
    font-size: 28px;
    font-family: 'Inter', sans-serif;
    margin-top: -40px;
    color: #002169;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.5;
}
.section-title-long::after {
    content: "";
    display: block;
    width: 44px;
    height: 5px;
    background-color: #f25c2a;
    margin-top: 10px;
    margin-left: 0px;
}
.long-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color:  #000000;
    line-height: 2.0;
    text-align: justify;
    max-width: 600px;
}
@media (max-width: 768px) {
    .long-section {
        flex-direction: column; /* stack items vertically */
        padding: 20px;
    }

    .long-section img {
        width: 100%;
        height: 200px;
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .container-long {
        width: 100%;
    }

    .section-title-long {
        font-size: 24px;
        margin-top: 0;
    }

    .long-text {
        font-size: 14px;
        line-height: 2.0;
    }
}
.specialty-services {
    margin-left: 27px;
    margin-bottom: 30px;
}

.specialty-services h5 {
    font-family: 'Inter', sans-serif;
    color: #002169;
    margin-bottom: 15px;
    font-size: 26px;
}
.specialty-services h5::after {
    content: "";
    display: block;
    width: 44px;
    height: 5px;
    background-color: #f25c2a;
    margin-top: 10px;
    margin-left: 3px;
}
.specialty-services p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #363636;
    line-height: 1.6;
    margin-bottom: 15px;
}
.specialty-services ul {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #363636;
    line-height: 1.6;
    padding-left: 20px;
}
.specialty-services ul li {
    margin-bottom: 8px;
}
@media (max-width: 768px) {
    .specialty-services p {
        font-family: 'Inter', sans-serif;
        font-size: 15px;
        line-height: 1.6;

    }
    .specialty-services ul {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
    }
}
.logo-divider {
    border: none;
    border-top: 2px solid #fff;
    width: 100%;
    margin: 30px 0;
}
.location-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 10px 15px;
    width: 100%;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff;
    background-image: none;
}


.location-select:focus {
    outline: none;
    border-color: #133f8a;
    box-shadow: 0 0 5px rgba(19, 63, 138, 0.5);
}
.make-select {
    width: 180px;
    height: 50px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
@media (max-width: 768px) {
    body, html {
        overflow-x: hidden;
    }
    /*.container, .footer-container, .some-section {*/
    /*    max-width: 100vw;*/
    /*    overflow-x: hidden;*/
    /*}*/
}



/* Ensure grid columns don't expand with content */
.grid-container > * {
    min-width: 0; /* allow content to be clipped if too large */
}

/* Fix Select2 container behavior */
.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    height: 50px;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    overflow: hidden; /* clip overflowing content */
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
    color: #0B2869 !important;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #0B2869 !important;
    line-height: 40px;
    font-size: 14px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}

/*home page*/

.feature-why {



    padding: 30px;    /* reduce height by lowering padding */
    height: 200px;
    max-height: 300px;
    /*padding-left: 10px;  !* optional: space from left edge *!*/
    text-align: left;
}
.feature-why {
    margin-top: 50px; /* adjust value as needed */
}
.feature-why {
    background: #002f6c;
    color: white;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    font-size: 20px;
    /*margin-right: 15px;*/
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
/* Mobile Offcanvas Menu Left Alignment */
@media (max-width: 768px) {
    .offcanvas-body {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-end !important;
    }
    .offcanvas-body .navbar-nav {
        width: 100% !important;
        text-align: right !important;
    }
    .offcanvas-body .navbar-nav .nav-item {
        width: 100% !important;
    }
    .offcanvas-body .navbar-nav .nav-link {
        text-align: right !important;
    }
}
/* Mobile view: 2 columns per row for pickup/dropoff */
@media (max-width: 767.98px) {
    .search-box .pickup-date,
    .search-box .pickup-time,
    .search-box .dropoff-date,
    .search-box .dropoff-time {
        width: 50%;          /* Two fields per row */
        padding-right: 5px;  /* Small gap on right */
        float: left;         /* Align side by side */
        box-sizing: border-box;
    }

    .search-box .dropoff-date,
    .search-box .dropoff-time {
        padding-left: 5px;   /* Small gap on left */
    }

    /* Clear floats after each row */
    .search-box .pickup-time,
    .search-box .dropoff-time {
        margin-bottom: 10px;
    }
}
