:root {
    --primary-color: #203263;
    --secondary-color: #6c757d;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-light: #f8f9fa;
    --color-dark: #343a40;
}

/* Topbar */
.topbar {
    /* background: #0f172a;
    color: #e6eef6; */
    font-size: 14px;
    padding: 5px 0;
}

.topbar a {
    color: #000000;
    text-decoration: none;
}

/* Header */
.site-header {
    background: #fff;
    /* border-bottom: 1px solid #e0e0e0; */
    padding: 2rem 0rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .main-nav {
    margin-left: auto;
}

.site-header .main-nav ul {
    justify-content: flex-end;
    flex-wrap: wrap;
}

.site-header .main-nav ul li a {
    /* padding: 0.5rem 0; */
}


.logo img {
    max-height: 40px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Desktop nav */
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: #626262;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Dropdown */
.dropdown-menu {
    transition: all 0.3s ease;
}

/* Actions */
.actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.search input {
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 4px 8px;
    transition: all 0.3s ease;
}

.search input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 5px rgba(13, 110, 253, 0.3);
}

.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile nav */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1050;
    overflow-y: auto;
    padding: 1rem;
    transition: left 0.35s ease-in-out;
}

.mobile-nav.open {
    left: 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    /* margin-top: 2rem; */
    /* display: flex;
    flex-direction: column;
    gap: 1rem; */
}

.mobile-nav a {
    text-decoration: none;
    color: #0f172a;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 10px;
}

.mobile-dropdown {
    display: none;
    flex-direction: column;
    padding-left: 15px;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-dropdown.show {
    display: flex;
    padding-left: 15px;
    gap: 0;
    margin-bottom: 10px;
}

.mobile-dropdown li a {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

.main-nav .dropdown-toggle::after {
    display: none;
    /* removes the small triangle */
}

/* Desktop hover dropdown */
.main-nav .dropdown:hover>.dropdown-menu {
    display: block;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Optional: adjust position */
.main-nav .dropdown-menu {
    margin-top: 0.5rem;
    display: none;
}

@media (max-width: 991px) {
    .main-nav {
        display: none;
    }
}

.city-info {
    display: flex;
    align-items: center;
    /* gap: 10px; */
}

.city-info span.phone-icon {
    margin-right: 5px;
    background: var(--primary-color);
    color: var(--color-white);
    border-radius: 50px;
    padding: 5px;
    font-size: 16px;
}

.city-info span.city-text {
    color: var(--color-white);
    font-weight: 500;
    font-size: 21px;
    /* text-transform: uppercase; */
    background: var(--primary-color);
    padding: 10px 10px 13px;
    line-height: 0;
    border-radius: 5px;
}

.social-icons li a {
    font-size: 18px;
    /* color: #444; */
    transition: all 0.3s ease;
}

.social-icons li a:hover {
    transform: translateY(-3px);
}

.social-icons li a.facebook {
    color: #1877f2;
}

.social-icons li a.instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.social-icons li a.youtube {
    color: #ff0000;
}

.social-icons li a.linkedin {
    color: #0a66c2;
}

.main-menu-nav ul li {
    position: relative;
}

.main-menu-nav ul li::after {
    content: '';
    position: absolute;
    top: 7px;
    width: 1.8px;
    right: -18px;
    height: 12px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-menu-nav ul li:last-child::after {
    display: none;
}

.main-menu-nav ul li.nav-item.dropdown::after {
    /* width: 1.5px;
    top: 15px; */
}

.dropdown-menu li::after {
    display: none;
}

@media screen and (min-width: 991px) {
    .dropdown {
        line-height: 8px;
    }

    .nav-item.dropdown .nav-link span {
        font-size: 18px;
        position: relative;
        top: 4px;
    }

    .main-nav .dropdown-menu {
        padding: 10px 0px 0;
    }

    .dropdown-item {
        line-height: 15px;
        margin-bottom: 10px;
        padding-left: 15px !important;
    }

    .nav-link.dropdown-toggle {
        line-height: 25px;
    }
}

.banner-border-radius-custom {
    border-top-left-radius: 150px;
}

.banner-radius img {
    object-fit: cover;
    width: 40%;
}

.carousel-caption {
    position: absolute;
    top: 40%;
    left: 10%;
    text-align: left;
}

.car-title {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.car-title span {
    color: #ff6600;
    font-weight: 800;
}

.subtitle {
    color: #ddd;
    font-size: 1rem;
    margin-top: 10px;
    letter-spacing: 1px;
}

.bookings {
    margin-top: 40px;
    font-size: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: flex-start;
}

.bookings .arrow {
    font-size: 1.5rem;
    color: #ffffff;
}

/* === Custom numeric indicators === */
.carousel-number-indicators {
    position: absolute;
    bottom: 50px;
    left: 60%;
    display: flex;
    gap: 20px;
    z-index: 10;
}

.carousel-number-indicators button {
    background: transparent;
    border: none;
    color: #bbb;
    font-size: 1.6rem;
    font-weight: 400;
    cursor: pointer;
    width: 100px;
    text-align: left;
    transition: 0.3s ease;
    border-bottom: 2px solid #c4c1ca;
}

.carousel-number-indicators button.active,
.carousel-number-indicators button:hover {
    color: #fff;
    border-bottom: 2px solid #ffffff;
}

/* Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* Responsive */
@media (max-width: 768px) {
    .car-title {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .carousel-caption {
        top: 12%;
        left: 6%;
    }

    .carousel-number-indicators {
        left: 40%;
        gap: 10px;
        font-size: 0.9rem;
    }
}

.topbar .dropdown-menu {
    min-width: 200px;
    z-index: 9999;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 0;
}

.section-title::before,
.section-title::after {
    content: "";
    flex: 1;
    height: 2px;
    background-color: #15367c;
}

.section-title span {
    background-color: #15367c;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    padding: 8px 25px;
    border-radius: 25px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
}


.city-section {
    /* display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px; */
    display: inline-flex;
    width: 100%;
}

.city-card {
    position: relative;
    /* overflow: hidden; */
    /* border-radius: 5px; */
    width: 50%;
    margin-right: 5px;
}

.city-images-sec {
    overflow: hidden;
}

.city-card:last-child {
    margin-right: 0;
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.city-card:hover img {
    transform: scale(1.05);
}

.city-footer {
    /* position: absolute; */
    bottom: 0;
    width: 100%;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #002b6d 50%, #000 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    color: white;
    font-size: 25px;
    font-weight: 600;
    transition: background-position 0.5s ease-out;
}

.city-card:hover .city-footer {
    background-position: left bottom;
    color: #fff;
}

.arrow {
    font-size: 20px;
}


.vehicle-slider-section {
    padding: 40px 0;
}

.vehicle-slider-section h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.vehicle-slider-section .slider-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.vehicle-slider-section .slider {
    display: flex;
    align-items: center;
    transition: transform 0.5s ease-in-out;
}

.vehicle-slider-section .slide {
    flex: 0 0 100%;
    text-align: center;
    /* opacity: 0.4; */
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s ease;
}

.vehicle-slider-section .slide img {
    width: 100%;
    max-width: 450px;
    height: auto;
}

.vehicle-slider-section .price {
    font-size: 18px;
    margin-top: 10px;
    color: #000;
}

.vehicle-slider-section .name {
    font-size: 22px;
    font-weight: 700;
    margin-top: 5px;
}

/* Drag Buttons (left & right) */
.vehicle-slider-section .drag-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #e3ebff;
    color: #1f3faa;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-weight: 700;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: 0.3s ease;
}

.vehicle-slider-section .drag-btn:hover {
    background: #1f3faa;
    color: #fff;
}

.vehicle-slider-section .drag-btn.left {
    left: 20px;
}

.vehicle-slider-section .drag-btn.right {
    right: 20px;
}

.vehicle-slider-section .buttons {
    margin-top: 40px;
}

.vehicle-slider-section .buttons button {
    border: 2px solid #1f3faa;
    border-radius: 25px;
    background: #fff;
    padding: 10px 25px;
    margin: 0 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.vehicle-slider-section .buttons .active-btn,
.vehicle-slider-section .buttons button:hover {
    background: #1f3faa;
    color: #fff;
}

.slick-slide img {
    width: 100%;
}

.center .slick-center img {
    transform: scale(1.2);
    transition: transform 0.3s;
}

@media (max-width: 768px) {
    .vehicle-slider-section h1 {
        font-size: 32px;
    }

    .vehicle-slider-section .slide img {
        width: 80%;
    }

    .vehicle-slider-section .drag-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

.vehicle-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 45px 0;
}

.vehicle-tabs button {
    background: #e0e0e0;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.vehicle-tabs button.active {
    background: #002b6d;
    color: #fff;
}

.slider-center {
    width: 100%;
    margin: 0 auto;
}

.slider-center img {
    width: 100%;
    border-radius: 15px;
}

.slide-caption {
    margin-top: 15px;
    text-align: center;
}

.slide-caption p {
    color: #666;
    font-size: 20px;
    margin: 0;
}

.slide-caption h3 {
    margin-top: 5px;
    color: #002b6d;
    font-weight: bold;
}

.slide-caption {
    text-align: center;
}

.slide-caption p {
    margin: 0;
}

.slick-next {
    right: 25px;
}

.slider-prev {
    left: 25px;
}

.slider-center,
.slick-slide {
    text-align: center;
}


.car-partner-section {
    background-color: #2c4288;
    padding: 60px 0px;
    text-align: center;
}

.content {
    flex: 1 1 350px;
    /* max-width: 400px; */
    color: #fff;
    margin-bottom: 20px;
}

.content h4 {
    font-size: 28px;
    /* color: #b5c9ff; */
    margin-bottom: 10px;
    font-weight: 300;
}

.content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
}

.content .icon {
    margin-bottom: 20px;
}

.content .icon img {
    width: 140px;
    height: auto;
    margin: 10px 0;
}

.content p {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 0;
    font-weight: 500;
    color: #fff;
}

.enquire-btn {
    background-color: #bcd3ff;
    color: #002a7a;
    border: none;
    padding: 5px 40px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 25px;
}

.enquire-btn:hover {
    background-color: #fff;
}

.features {
    flex: 1 1 600px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}


.feature-card .feature-image {
    position: relative;
    background: #aebbfc;
    color: #333;
    border-radius: 30px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease;
}

.feature-card .feature-image:hover {
    transform: translateY(-5px);
    background-color: #fff;
}

.feature-card .feature-image img {
    padding: 5px;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
    border-radius: 30px;
}

.feature-overlay {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(0 0 0 / 70%);
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: hidden;
}

.feature-overlay h3 {
    background: rgba(0, 27, 94, 0.85);
    padding: 6px 14px;
    color: #fff;
    margin: 0 auto;
    font-size: 18px;
    border-radius: 20px;
}

.feature-card:hover .feature-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card p {
    font-size: 18px;
    color: #fff;
    padding: 15px 30px;
    /* background: rgba(255, 255, 255, 0.08); */
    line-height: 1.5;
    text-align: left;
}

.feature-card {
	cursor: pointer;
}

.about-section {
    padding: 60px 0px;
    display: flex;
    justify-content: center;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    background-color: #fff;
    align-items: center;
    gap: 0;
}

.about-image {
    flex: 1 1 50%;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content {
    flex: 1 1 50%;
    background-color: #000;
    color: white;
    padding: 50px 25px;
    box-sizing: border-box;
    position: relative;
    right: 60%;
    top: 15%;
    width: 670px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
}

.about-content h1 {
    color: #bcbcbc;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.about-content h4 {
    font-size: 22px;
    font-weight: 400;
    color: #ccc;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #e4e4e4;
    margin-bottom: 25px;
}

.read-more {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: #002b6d;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .about-content {
        padding: 40px 20px;
        position: unset;
        width: 100%;
        height: 100%;
    }

    .about-content h2 {
        font-size: 22px;
    }
}

.quick-look-section {
    padding-bottom: 40px;
}

.quick-look-section .quick-look-header {
    background-color: #d0def9;
    padding: 20px 0;
}

.discover-link {
    color: #626262;
    text-decoration: none;
}

.margin-div-banner {
    margin-top: 110px;
}

.quick-look-header h1 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 0;
}

.slick-dots li button:before {
    background-color: #ebebeb;
    color: transparent;
    border-radius: 50px;
}

.slick-dots li.slick-active button:before {
    background-color: #707070;
    color: transparent;
}

.highlights-section {
    background: url(../images/bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    overflow: hidden;
    padding: 60px 0;
    position: relative;
}

.highlights-section .highlights-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 75%);
    z-index: 0;
    width: 100%;
    height: 100%;
}

.highlight-item {
    position: relative;
    z-index: 1;
    padding: 0 15px;
}

.highlight-item p {
    font-size: 0.95rem;
    color: #ddd;
}

.border-left-right {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.icon img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}

.icon img:hover {
    transform: scale(1.2);
}

.highlight-item h5 {
    margin-bottom: 50px;
}

/* 
.footer-section {
    background: #e6ecfa;
    color: #1e1e1e;
}

.footer-section h5 {
    color: #31488b;
    font-size: 24px;
    font-weight: 500;
}

.footer-section .footer-links li {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.footer-section .footer-links a {
    color: #212326;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section .footer-links a:hover {
    color: #2b4b91;
}

.footer-section .useful-links {
    background-color: #2b4b91;
    color: #fff;
}

.footer-section .useful-links a {
    color: #fff;
    opacity: 0.5;
}

.footer-section .useful-links a:hover {
    opacity: 1;
} */

.branch {
    color: #003476;
}

.footer-section {
    background: linear-gradient(to right, #e6ecfa 72%, #2b4b91 72%);
    color: #1e1e1e;
    font-family: "Poppins", sans-serif;
}

.footer-section h5 {
    color: #31488b;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
}

.footer-section .footer-links li {
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: #212326;
}

.footer-section .useful-links {
    background-color: #2b4b91;
    color: #fff;
}

.footer-section .useful-links h5 {
    color: #fff;
    font-size: 1.1rem;
}

.footer-section .useful-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.75;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.footer-section .useful-links a:hover {
    opacity: 1;
    color: #fff;
}

.branch p {
    font-size: 0.9rem;
    color: #1e2a64;
}

.footer-bottom {
    background-color: #2b4b91;
    color: #fff;
    margin-top: 2rem;
    padding-top: 10px;
    padding-bottom: 10px;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-bottom a:hover {
    opacity: 1;
}

@media (max-width: 991px) {
    .footer-section {
        background: #e6ecfa;
    }

    .useful-links {
        background-color: #2b4b91;
        /* margin-top: 1rem; */
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.footer-links a {
    color: #212326;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #2b4b91;
    /* matches your brand blue */
    text-decoration: underline;
}

.w-18px {
    width: 18px;
}


.floating-btn {
    position: fixed;
    right: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 8px;
    border-radius: 50px 0 0 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
    white-space: nowrap;
    overflow: hidden;
    width: 38px;
	z-index: 9;
}

.floating-btn i {
    font-size: 25px;
}

.whatsapp {
    background: #25D366;
    bottom: 120px;
}

.call {
    background: #ffffff;
    color: #000;
    bottom: 80px;
}

.call span {
    color: #000;
}

.floating-btn:hover {
    width: 150px;
}

.floating-btn.whatsapp:hover {
    color: #fff;
}


/* FIRST DESIGN CSS */
.breadcrumb-row {
    background-color: rgba(255, 255, 255, .2);
    margin-top: -88px;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.breadcrumb-row ul {
    margin: 0;
    display: flex;
}

.breadcrumb-row ul li {
    padding: 0;
    margin-right: 3px;
    color: #fff;
}

.breadcrumb-row ul.list-inline li a {
    color: #fff;
}

.breadcrumb-row ul li:after {
    content: "/";
    margin-left: 7px;
}

.breadcrumb-row ul li:last-child {
    color: #fff;
}

.car-details-info {
    position: sticky;
    top: 104px;
    z-index: 9;
    background-color: #191f23;
}

.car-details-info .nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.car-details-info .nav ul li {
    display: inline-block;
    float: left;
}

.car-details-info .nav ul li a {
    border-left: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    display: block;
    font-weight: 600;
    padding: 15px 20px;
}

.car-details-info .nav ul li.active a {
    background-color: #3A558B;
}

a {
	text-decoration: none;
}

.cbi-ph {
	border: 1px solid;
	padding: 4px 8px;
	border-radius: 5px;
	display: flex;
	gap: 5px;
	align-items: center;
	transition: all 0.3s ease
}

.cbi-ph:hover {
	transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	color: #fff;
    background-color: #212529;
    border-color: #212529;
}

.cbi-ph:hover span, .cbi-ph:hover a {
	color: #fff;
}

@media screen and (max-width: 767px) {
	.car-details-info {
		top: 64px;
	}
}
.main-nav .dropdown-menu {
	position: absolute; 
	inset: 0px auto auto 0px; 
	margin: 0px; 
	transform: translate3d(0px, 66.4px, 0px);
	top: 20px
}