:root {
    --primary-color: #1ec18c;
    --dark-overlay: rgba(0, 0, 0, 0);
    --font-heading: "Montserrat", sans-serif;
    --font-body: "Inter", sans-serif;
    color-scheme: dark;
}

/* body.modal-open{
overflow:hidden !important;
}

.modal-dialog-scrollable .modal-body{
max-height:80vh;
overflow-y:auto;
} */

@font-face {
    font-family: 'Inter 18pt';
    src: url('../font/Inter18pt-Regular.woff2') format('woff2'),
        url('../font/Inter18pt-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-Bold.woff2') format('woff2'),
        url('../font/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-Regular.woff2') format('woff2'),
        url('../font/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}




body {
    background-color: #000000 !important;
    /*opacity : .2;*/
    font-family: "Inter", sans-serif;
    color : white ;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

html {
    scroll-behavior: auto;
    /* Let Lenis handle it */
}

body {
    font-family: var(--font-body);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.btn,
.nav-link {
    font-family: var(--font-heading) !important;
}

/* Luxury Hero Typography */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(60px, 8vw, 120px) !important;
    /* Responsive 90-120px range */
    letter-spacing: 4px !important;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.section-title,
.footer-title {
    font-family: var(--font-heading) !important;
    text-transform: uppercase;
    font-weight: 300 !important;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    letter-spacing: 2px;
}

.section-title strong,
.section-title span.bold,
.footer-title strong {
    font-weight: 700 !important;
}

.script-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: -10px;
    opacity: 0.9;
}

p,
li,
a,
span {
    /*font-family: var(--font-body);*/
    font-family: "Inter", sans-serif;
}



li,
a {
    margin-top: 0;
    font-size: 0.8rem !important;

}

.text-secondary {
    color: #c7c7c7 !important;
}


@media only screen and (max-width: 1420px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 96%;
    }
}


a.navbar-brand img {
    width: 240px;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
    width: 20px !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    padding: 4px 12px !important;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: white !important;
    width: 40px !important;
    padding: 4px 12px !important;
}

/*.heading-text h2{*/
/*    background: linear-gradient(90deg, #eec928, #5daa34);*/
/*    -webkit-background-clip: text;*/
/*    background-clip: text;*/
/*    -webkit-text-fill-color: transparent;*/
/*    color: transparent;*/
/*}*/

/* Navbar Customization */
.navbar {
    background: transparent !important;
    backdrop-filter: blur(0px);
    /* Remove blur if fully transparent is desired, or keep for effect */
    transition: all 0.3s ease;
}

a.btn.btn-outline-light,
a.btn.btn-light {
    font-size: 20px !important;
}

/*a.navbar-brand img,*/
/*.footer-img img {*/
/*    filter: saturate(0.5);*/
/*}*/

/* Navbar Scrolled State */
.navbar.scrolled {
    background: rgb(0, 0, 0) !important;
    /* Black background */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-size: 1.1rem !important;
    transition: color 0.3s;
    color: white;
    letter-spacing: 1px;
    padding: 4px 16px !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Video Background */
/* YouTube Background Video */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
    /* Allows clicking on text overlay */
}

.video-background iframe,
.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    object-fit: cover;
    /* Ensures video fills the area while maintaining aspect ratio */
}

/* Overlay to darken video */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 40%);
    z-index: -1;
}

.video-background {
    filter: grayscale(10%);
}

/* Hero Search Form */
.hero-search-form {
    border: 1px solid rgb(255 255 255 / 17%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.hero-search-form .form-control,
.hero-search-form .form-select {
    background-color: #000000 !important;
    border-color: #636363 !important;
    color: #fff !important;
    padding: 10px 15px;
}

.hero-search-form .form-control:focus,
.hero-search-form .form-select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: none;
}

/* Glassmorphism Container */
/* Glassmorphism Container (Dark) */
.glass-container {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

/* Text Enhancements */
.text-primary {
    color: #ffffff !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #000000;
    border-color: #48b95f;
}

/* Custom Animation classes (optional overrides) */
.animate__zoomIn {
    --animate-duration: 1.2s;
}

/* Categories Section */
#categories {
    background-color: #000000 !important;
    /* Very dark grey background */
}

.category-card {
    background-color: #000000 !important;
    border: 1px solid #535353;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 260px;
}


.category-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    margin-bottom: 24px;
}

.category-title img,
.category-card h5 {
    transition: color 0.3s ease;
}

/* Hover Effects */
.category-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.category-card:hover h5,
.category-card:hover i {
    color: var(--primary-color) !important;
}

/* Features Section */
#features {
    position: relative;
    /* Background moved to HTML for parallax */
    /*background-attachment: fixed;*/
    min-height: 80vh;
    padding: 80px 0;
}

.feature-card {
    background: rgb(255 255 255 / 0%);
    border: 1px solid rgb(255 255 255 / 51%);
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.5);
}

.feature-card:hover h5,
.feature-card:hover i {
    color: var(--primary-color) !important;
}

/* Explore Vehicles Section */
.vehicle-card {
    background-color: #050505;
    border: 1px solid #7d7d7d;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.vehicle-img-container {
    overflow: hidden;
    border-radius: 8px;
}

.vehicle-img-container img {
    width: 100%;
    height: 200px;
    /* Fixed height for consistency */
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vehicle-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

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

.vehicle-title {
    font-family: var(--font-primary);
    transition: color 0.3s ease;
    font-weight: 600 !important;
    text-transform: uppercase;
}

.vehicle-card:hover .vehicle-title {
    color: #1bab7c !important;
    /* Or primary if preferred */
}

/* Border separation color fix */
.border-secondary {
    border-color: #818181 !important;
}

/* CTA Section */
.cta-box {
    background: linear-gradient(rgba(0, 0, 0, 0.938), rgb(0 0 0 / 83%)), url(../imgs/Untitled-1232.jpg);
    /* Sports Car Background */
    background-size: cover;
    background-position: center;
    border: 1px solid rgb(255 255 255 / 51%);
    border-radius: 20px;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    font-family: var(--font-primary);
    letter-spacing: 2px;
}

.cta-box .btn-light {
    font-family: var(--font-primary);
    text-transform: uppercase;
    font-weight: 400;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-box .btn-light:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Blog Section */
.blog-card {
    background-color: transparent;
    border: 1px solid #919191;
    border-radius: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.blog-img-container img {
    transition: transform 0.5s ease;
    height: 250px;
    object-fit: cover;
}

.blog-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

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

.blog-title {
    font-family: var(--font-primary);
    line-height: 1.4;
    transition: color 0.3s ease;
    font-size: 24px !important;
}

.blog-card:hover .blog-title {
    color: var(--primary-color) !important;
}

/* FAQ Section */
.accordion-button::after {
    background-image: none !important;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f067";
    /* Plus icon */
    color: #fff;
}

.accordion-button:not(.collapsed)::after {
    background-image: none !important;
    content: "\f068";
    /* Minus icon */
    transform: rotate(0deg);
    /* Prevent default rotation */
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color) !important;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #fff;
    border-color: var(--primary-color) !important;
}

.accordion-item {
    border: none;
}

/* Footer Section */
#footer {
    background-color: #000;
    color: #fff;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.footer-title {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 1px;
    background-color: var(--primary-color, #1bab7c);
}

.contact-info li,
.footer-links li {
    margin-bottom: 8px;
    font-size: 1rem !important;
}

.contact-info a,
.footer-links a {
    color: #b1b1b1;
    text-decoration: none;
    font-size: 1rem !important;
    transition: all 0.3s ease;
}

.contact-info a:hover,
.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.contact-info i {
    width: 20px;
    color: var(--primary-color, #1bab7c);
}

.award-badges img {
    transition: transform 0.3s ease;
    filter: brightness(0.9);
}

.award-badges img:hover {
    transform: translateY(-5px) scale(1.05);
    filter: brightness(1);
}

.award-card {
    transition: transform 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
}

.footer-bottom {
    background-color: #050505;
}

.footer-social a {
    color: #fff;
    font-size: 1.2rem !important;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-social a:hover {
    color: var(--primary-color, #1bab7c);
    transform: translateY(-3px);
}

.footer-copyright {
    letter-spacing: 0.5px;
}



.testimonial-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 20px;
}

.blog-content span {
    font-size: 12px;
}

/* Partners Section */
.partner-box {
    background-color: #1a1a1a;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.partner-box img:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color) !important;
}

.features-text {
    margin-left: 60px;
}

.partner-logo {
    max-width: 100%;
    height: auto;
    /* filter: grayscale(100%); */
    transition: filter 0.3s ease, transform 0.3s ease;
    opacity: 0.7;
}

section#partners .swiper-slide {
    background-color: white;
    height: 100px;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.partnerSwiper {
    padding: 20px 0;
}

/* =========================================
   ADVANCED ANIMATIONS & EFFECTS
   ========================================= */

/* 1. Glassmorphism Hover Effect */
.glass-hover {
    transition: all 0.4s ease;
    backdrop-filter: blur(0px);
}

.glass-hover:hover {
    background: rgb(0 0 0 / 10%) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* 2. Box Animations */
.box-glow {
    transition: all 0.3s ease;
}

.box-glow:hover {
    box-shadow: 0 0 20px #1c1c1c, 0 0 40px rgb(44 67 59 / 40%);
    transform: translateY(-5px);
    border-color: var(--primary-color) !important;
}

.box-lift {
    transition: transform 0.3s ease;
}

.box-lift:hover {
    transform: translateY(-10px);
}

.box-float {
    animation: float 6s ease-in-out infinite;
}

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

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* 3. Image Hover Effects */
.img-hover-effect {
    position: relative;
    overflow: hidden;
    display: block;
}

/* Zoom Effect */
.img-hover-zoom img {
    transition: transform 0.5s ease;
}

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

/* Shine Effect */
.img-hover-shine {
    position: relative;
    overflow: hidden;
}

.img-hover-shine::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
    transition: left 0.75s;
}

.img-hover-shine:hover::before {
    left: 125%;
}

/* 4. Glassmorphism Image Wrapper */
.glass-image-wrapper {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5) !important;
}

.glass-image-wrapper:hover {
    border-color: rgba(255, 255, 255, 0.4) !important;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7) !important;
    transform: translateY(-5px);
}

/* Shine effect for glass-image-wrapper */
.glass-image-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    transition: none;
    pointer-events: none;
    z-index: 3;
}

.glass-image-wrapper:hover::after {
    left: 140%;
    transition: all 0.8s ease-in-out;
}

/* 5. Advanced Button Effects */

/* Holographic Effect */
.btn-holographic {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: transparent;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-holographic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 150, 0.5), rgba(0, 204, 255, 0.5));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-holographic:hover::before {
    opacity: 1;
}

.btn-holographic:hover {
    border-color: transparent;
    box-shadow: 0 0 15px rgba(0, 204, 255, 0.5);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Button Animated Border (Before/After) */
.btn-animated {
    position: relative;
    overflow: hidden;
    transition: color 0.4s;
    z-index: 1;
}

.btn-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-animated:hover::before {
    left: 0;
}

.btn-animated:hover {
    color: white !important;
    border-color: var(--primary-color) !important;
}

.accordion-button {
    font-size: 1.2rem !important;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600 !important;
}


/*=====================*/

.offer-section {
    background: #0a0a0a;
    padding: 72px 20px 80px;
}

.offer-section .section-title {
    /* Removed redundant Barlow Condensed. Now follows global section-title styles. */
    text-align: center;
    margin-bottom: 48px;
}

.section-title strong {
    font-weight: 800;
}

.offer-card {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    border-radius: 20px;
}

.offer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(0.75);
}

.offer-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.55);
}

.offer-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 30%, transparent 100%);
    transition: background 0.4s ease;
}

.offer-card:hover .offer-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.15) 100%);
}

/* Navbar Enhancements */
.custom-navbar {
    background: transparent !important;
    /* Starts transparent */
    backdrop-filter: blur(0px);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    padding: 25px 0;
    transition: all 0.4s ease-in-out;
}

.custom-navbar.navbar-scrolled {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
}

.navbar-toggler {
    display: block !important;
    /* Always show hamburger */
}

.menu-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-left: 5px;
    text-transform: uppercase;
}

.brand-logo {
    height: 48px;
    transition: height 0.4s ease;
}

.navbar-scrolled .brand-logo {
    height: auto !important;
}

.brand-text {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.brand-text .regular {
    font-weight: 400;
}

.brand-text .bold {
    font-weight: 800;
}

.nav-icon {
    font-size: 1.2rem !important;
    opacity: 1;
    transition: all 0.3s ease;
}

.nav-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Offcanvas Custom Styling */
.custom-offcanvas {
    width: 350px !important;
}

.custom-offcanvas .offcanvas-header {
    background: #000;
}

.custom-offcanvas .offcanvas-body {
    background: #050505;
}

.custom-offcanvas .vertical-nav .nav-link {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.2rem 0 !important;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.custom-offcanvas .vertical-nav .nav-link:hover {
    color: var(--primary-color) !important;
    padding-left: 10px !important;
    background: rgba(255, 255, 255, 0.02);
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

.offer-card-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.offer-card:hover .offer-card-label {
    gap: 12px;
    color: var(--primary-color);
}

.offer-card-label .arrow {
    font-size: 1.2rem;
    font-weight: 400;
}

@media (max-width: 767px) {
    .offer-card {
        aspect-ratio: 4 / 3;
    }
}

/* Car Category Grid */
.cat-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 20px;
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 20px;
}

.cat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
}

.cat-title {
    color: white;
    font-family: var(--font-heading);
    font-weight: 500;
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.cat-title span.arrow {
    font-size: 1.1rem;
    margin-left: 10px;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.cat-card:hover .cat-title span.arrow {
    transform: translateX(5px);
}

/* Hover Effects */
.cat-card:hover img {
    transform: scale(1.05);
}

.cat-card:hover .cat-title {
    color: #fff;
}

.cat-card:hover .cat-title span.arrow {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .cat-card {
        height: 220px;
    }

    .cat-title {
        font-size: 1.25rem;
    }
}

/* Featured Vehicles Section */
.v-section {
    padding: 60px 0;
    background-color: #000;
}

/* Vehicle Card Arrow */
.v-about-estimate .arrow {
    font-size: 1rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.v-about-estimate:hover .arrow {
    transform: translateX(3px);
    color: var(--primary-color);
}

.v-card {
    background: transparent;
    color: #fff;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.v-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    margin-bottom: 12px;
    border-radius: 12px;
}

.v-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 12px;
}

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

.v-garage-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    z-index: 2;
}

.v-badge-just-landed {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #198754;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
}

.v-year-model {
    font-size: 1.15rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.v-year-model .year {
    font-weight: 400;
    margin-right: 4px;
}

.v-year-model .model {
    font-weight: 600;
}

.v-specs {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.v-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff !important;
}

.v-price .v-badge-sale {
    font-size: 0.75rem;
    background: #ff4757;
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    margin-left: 10px;
    vertical-align: middle;
    font-weight: 500;
    text-transform: uppercase;
}

.v-price .v-price-was {
    font-size: 0.9rem;
    color: #ff4757;
    text-decoration: line-through;
    margin-left: 10px;
    font-weight: 400;
}

.v-finance-estimate {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.v-about-estimate {
    color: #888;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.v-about-estimate:hover {
    color: #fff;
}

.v-about-estimate i {
    font-size: 0.75rem;
    margin-left: 3px;
}

/* Contact Section Styling */
.contact-section {
    padding: 100px 0;
    background-color: #000;
    color: #fff;
}

.contact-section .section-header {
    margin-bottom: 50px;
}

.contact-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
}

.contact-section h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 30px;
    background-color: var(--primary-color, #1ec18c);
}

/* Info List */
.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    margin-bottom: 20px;
    font-size: 1.1rem !important;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-list i {
    color: var(--primary-color, #1ec18c);
    margin-top: 5px;
}

.opening-hours {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    color: #b1b1b1;
}

/* Side Icon Info Style */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(30, 193, 140, 0.1);
    border: 1px solid rgba(30, 193, 140, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color, #1ec18c);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    background: var(--primary-color, #1ec18c);
    color: #000;
    box-shadow: 0 0 15px rgba(30, 193, 140, 0.4);
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-text label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b1b1b1;
    margin-bottom: 2px;
}

.info-text span,
.info-text a {
    font-size: 1.05rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.info-text a:hover {
    color: var(--primary-color, #1ec18c);
}

/* Staff Cards */
.staff-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    width: 100%;
}

.staff-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color, #1ec18c);
    transform: translateX(10px);
}

.staff-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color, #1ec18c);
}

.staff-info h5 {
    margin: 0;
    font-size: 1.2rem;
    color: #fff;
}

.staff-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #b1b1b1;
}

.staff-contact {
    font-size: 0.85rem;
    margin-top: 5px;
}

.staff-contact a {
    color: var(--primary-color, #1ec18c);
    text-decoration: none;
}

/* Contact Form */
.contact-form-premium {
    margin-bottom: 20px;
    position: relative;
    padding: 60px 50px;
    background: rgb(0 0 0);
    border-radius: 15px;
    border: 1px solid #1ec18c;
}

.contact-form-premium .form-group {
    margin-bottom: 20px;
}

.contact-form-premium .form-label {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.contact-form-premium .form-control {
    background: rgb(0 0 0) !important;
    border: 1px solid rgb(143 143 143) !important;
    color: #fff !important;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.contact-form-premium .form-control:focus {
    border-color: var(--primary-color, #1ec18c) !important;
    box-shadow: 0 0 15px rgba(30, 193, 140, 0.2);
    background: rgba(255, 255, 255, 0.08) !important;
}

.contact-form-premium textarea {
    resize: none;
}

.contact-form-premium .form-control::placeholder {
    color: #afafaf;
}

.btn-submit-premium {
    background: var(--primary-color, #1ec18c);
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 40px;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit-premium:hover {
    background: #fff;
    transform: scale(1.02);
}

.contact-info span {
    color: #b1b1b1 !important;
}


.nav-margin{
   margin-top: 120px; 
}


.lead-text {
    font-size: 1.5rem;
    color: var(--primary-color, #1ec18c);
    font-weight: 600;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-color, #1ec18c);
    padding-left: 20px;
}

.story-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 30px;
}

.workshop-highlight {
    background: rgba(30, 193, 140, 0.05);
    border: 1px solid rgba(30, 193, 140, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}

.workshop-highlight::after {
    content: 'UltimateEV';
    position: absolute;
    right: -20px;
    bottom: -10px;
    font-size: 5rem;
    font-weight: 800;
    opacity: 0.03;
    pointer-events: none;
}

.cta-tagline {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-tagline h2 {
    font-family: 'Dancing Script', cursive;
    color: var(--primary-color, #1ec18c);
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .lead-text {
        font-size: 1.2rem;
    }

    /* Who Choose Us */
    .who-choose-us {
        background-color: #000;
        overflow: hidden;
    }

    .icon-box-small {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(30, 193, 140, 0.1);
        border-radius: 10px;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .who-choose-us .row.g-4 .col-sm-6:hover .icon-box-small {
        background: var(--primary-color, #1ec18c);
        color: #000 !important;
    }

    /* Counter Section */
    .counter-section {
        background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../imgs/Untitled-1232.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    .counter-box {
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
    }

    .counter-value {
        font-family: var(--font-heading) !important;
        letter-spacing: -1px;
    }

    .letter-spacing-1 {
        letter-spacing: 1px;
    }

    .italic {
        font-style: italic;
    }

    .object-fit-cover {
        object-fit: cover;
    }

}

/* Vehicles Page Styling */
.vehicles-hero {
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../imgs/showroom-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.filter-section {
    padding: 40px 0;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /*position: sticky;*/
    /*top: 80px;*/
    z-index: 99;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 150px;
}

.filter-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.filter-select,
.filter-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.filter-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.filter-select option,
.form-select option {
    background-color: #1a1a1a;
    color: #fff;
}

.filter-select:focus,
.filter-input:focus {
    border-color: var(--primary-color, #1ec18c);
    background: rgba(255, 255, 255, 0.1);
}

.btn-filter-apply {
    background: var(--primary-color, #1ec18c);
    color: #000;
    border: none;
    padding: 11px 25px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-filter-apply:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* Vehicle Listing Card */
.vehicle-grid {
    padding: 60px 0;
}

.vehicle-card-p {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.vehicle-card-p:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color, #1ec18c);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.v-img-container {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.v-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vehicle-card-p:hover .v-img-container img {
    transform: scale(1.1);
}

.v-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color, #1ec18c);
    color: #000;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 500 !important;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 2;
}

.v-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.v-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    text-decoration: none;
}

.v-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color, #1ec18c);
    margin-bottom: 15px;
}

.v-specs {
    /* display: grid; */
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    margin-bottom: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100% !important;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #999;
}

.spec-item i {
    color: var(--primary-color, #1ec18c);
    font-size: 0.9rem;
}

.v-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-v-details {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-v-details:hover {
    background: #fff;
    color: #000;
}

/* Pagination */
.pagination-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pagination-item:hover,
.pagination-item.active {
    background: var(--primary-color, #1ec18c);
    color: #000;
    border-color: var(--primary-color, #1ec18c);
}

/* Map */
.map-container {
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 400px;
}

@media (max-width: 991px) {
    .contact-section {
        padding: 60px 0;
    }
}

/* Premium Search Modal Styles */
.search-modal .modal-content {
    background-color: #000 !important;
    border: none;
    max-width: 950px;
    margin: 0 auto;
}

.search-header {
    margin-bottom: 0;
}

.search-header h2 {
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}

.accent-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin-top: 5px;
}

.filter-group-modal {
    margin-bottom: 6px !important;
}

.filter-group-modal label {
    display: block;
    color: #fff;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.modal-input,
.modal-select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.5rem 0;
    font-size: 16px !important;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s ease;
}

.modal-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.modal-input:focus,
.modal-select:focus {
    border-color: var(--primary-color);
}

.modal-select option {
    background-color: #1a1a1a;
    color: #fff;
}

/* Custom Range Slider */
.modal-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    outline: none;
    margin: 1rem 0;
}

.modal-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(30, 193, 140, 0.5);
    transition: transform 0.2s ease;
}

.modal-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider-display {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Buttons */
.btn-modal-find {
    background-color: var(--primary-color);
    color: #000;
    border: none;
    padding: 1rem 4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-modal-find:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.btn-modal-reset {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.btn-modal-reset:hover {
    color: #fff !important;
}

@media (max-width: 992px) {
    .search-header h2 {
        font-size: 2rem;
    }
}

/* Vehicle Details Page */
.vehicle-details-section .bg-white {
    background-color: #1a1a1a !important;
    height: 156px;
}

.vehicle-details-section .text-black {
    color: #000000 !important;
}

.v-main-image img {
    max-height: 500px;
    object-fit: cover;
}

.gallery-thumbnails img {
    height: 80px;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-thumbnails img:hover {
    opacity: 1 !important;
    border: 1px solid var(--primary-color);
}

.v-specs-card {
    position: sticky;
    top: 100px;
}

.v-specs-card .list-unstyled li {
    font-size: 0.9rem !important;
}

.eco-stars i {
    font-size: 0.8rem;
}

.italic {
    font-style: italic;
}

/* Modal Enhancements */
.modal-content.bg-white {
    border-radius: 0;
    border: none;
}

.modal-header .btn-close {
    background-color: #f8f9fa;
    opacity: 1;
}

.modal-body .form-control {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 0.75rem;
}

.modal-body .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

@media (max-width: 991px) {
    .v-specs-card {
        position: static;
        margin-top: 3rem;
    }
}

/* Sidetabs Styles (OEM Look - Dark Theme) */
.v-tab-square {
    border: 1px solid #333 !important;
    background-color: #1a1a1a !important;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    padding: 1.5rem !important;
    color: #fff !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.v-tab-square:hover {
    border-color: var(--primary-color) !important;
    background-color: #222 !important;
    transform: translateY(-3px);
}

.v-tab-square .v-tab-icon i {
    color: #ffffff !important;
    font-size: 2.5rem;
}

.v-tab-label {
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin-top: 10px;
    color: #ffffff !important;
}

.v-tab-bar {
    border: 1px solid #333 !important;
    background-color: #1a1a1a !important;
    transition: background-color 0.2s;
    color: #fff !important;
    min-height: 60px;
}

.v-tab-bar:hover {
    background-color: #222 !important;
}

.v-tab-bar .v-tab-bar-label {
    color: #dfdfdf !important;
}

.v-tab-bar-icon {
    width: 55px;
    background-color: #111;
    border-right: 1px solid #333 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.v-tab-bar-icon i {
    color: #888 !important;
}

.v-tab-bar-label {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    padding-left: 1.5rem !important;
}

@media (max-width: 991px) {
    .v-side-tabs {
        margin-top: 2rem;
    }
}

/* Carousel & Thumbnail Styles */
.v-main-slider .carousel-item img {
    height: 500px;
    object-fit: cover;
}

.gallery-thumbnails img {
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumbnails img:hover,
.gallery-thumbnails img.active {
    opacity: 1;
    border-color: var(--primary-color);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    background: rgba(0, 0, 0, 0.2);
}

/* Services Page Form Styles */
.v-service-form .form-control,
.v-service-form .form-select {
    background-color: #111 !important;
    border: 1px solid #333 !important;
    color: #fff !important;
    padding: 8px 12px  !important;
    transition: all 0.3s ease;
    border-radius: 10px !important;
    font-size: 16px !important;
}

.v-service-form .form-control:focus,
.v-service-form .form-select:focus {
    border-color: var(--primary-color) !important;
    background-color: #1a1a1a !important;
    box-shadow: none !important;
}

.v-service-form label {
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.v-service-form .btn-primary {
    transition: all 0.3s ease;
}

.v-service-form .btn-primary:hover {
    background-color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.form-check-input:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
}

/* Modal UI & Strict Background Scroll Locking */
body.modal-open {
    overflow: hidden !important;
    padding-right: 0 !important;
}

.modal-dialog-scrollable .modal-content {
    max-height: 90vh;
    overflow: hidden !important;
    /* Keep outer content contained */
}

.modal-content {
    border-radius: 12px !important;
    background-color: #000 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8) !important;
}

.modal-header {
    background-color: #050505;
    padding: 1rem 1.5rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.modal-body {
    padding: 1.5rem !important;
}

/* Compact Form Styling */
.v-modal-form .form-control,
.v-modal-form .form-select {
    background-color: #111 !important;
    border: 1px solid #333 !important;
    color: #fff !important;
    padding: 0.65rem 0.85rem !important;
    font-size: 0.82rem !important;
    border-radius: 6px !important;
}

.v-modal-form label {
    margin-bottom: 0.25rem !important;
    font-size: 0.72rem !important;
    color: #888 !important;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.section-title{
    color: white;
}

.v-modal-form .btn-primary {
    padding: 0.85rem !important;
    font-size: 0.9rem !important;
    letter-spacing: 1px;
    background-color: var(--primary-color) !important;
    border: none !important;
    border-radius: 6px !important;
}

section.blog-details-content {
    margin-top: 100px;
}
 .blog-content p {
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: #d1d1d1;
        }

        .blog-meta i {
            color: #1ec18c;
        }

        .related-post-card {
            border: 1px solid #333;
            transition: all 0.3s ease;
        }

        .related-post-card:hover {
            border-color: #1ec18c;
        }
        
        
      .vehicle-grid .v-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    margin-bottom: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100% !important;
}
