@font-face {
    font-family: jvkfont;
    src: url('/storage/assets/fonts/Jura-VariableFont_wght.ttf') format('truetype');
}

body {
    overflow-x: hidden;
    margin: 0;
    font-family: jvkfont;
}

section {
    margin-bottom: 20px;
    font-family: jvkfont;
}

h1 {
    font-size: 50px !important;
    font-weight: bold !important;
}

h2 {
    font-weight: bold !important;
}

h3 {
    font-size: 34px !important;
    font-weight: bold !important;
}

a {
    text-decoration: none !important;
}

.text-center {
    text-align: center;
}

header {
    position: sticky !important;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    width: 100%;
    background: #000;
    height: 80px;
    margin-bottom: 60px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0px;
    position: relative;
    width: 100%;
    z-index: 2;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

.logo_wrpr {
    position: relative;
    height: 100%;
}

.logo_wrpr img {
    height: 100px;
    position: absolute;
    z-index: 1;
    transition: all 0.3s;
    top: -10px;
}

header.scrolled .logo_wrpr img {
    height: 50px;
    top: -20px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 0;
}

/* ── Mobile sidebar overlay ──────────────────────── */
#navOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.62);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
#navOverlay.active { opacity: 1; visibility: visible; }

/* Desktop: nav-sidebar is just an inline flex row */
.nav-sidebar { display: flex; align-items: center; }
.sidebar-hd  { display: none; }
.sidebar-footer { display: none; }
.sidebar-close  { display: none; }

nav ul li a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #e63946;
}

nav ul li {
    position: relative;
}

nav ul li ul.dropdown-menu {
    display: none;
    position: absolute;
    top: 150%;
    left: 0;
    background: #222;
    min-width: 150px;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

nav ul li ul.dropdown-menu li {
    display: block;
}

nav ul li ul.dropdown-menu li a {
    display: block;
    padding: 8px 10px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
}

nav ul li ul.dropdown-menu li a:hover {
    color: #e63946;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    position: relative;

}

.hero img {
    position: relative;
    width: calc(100% + 1px);
    margin-left: -1px;
}

.heading-fade {
    display: none;
}

.owl-item.active:first-child~.heading-fade {
    display: flex !important;
}

.heading {
    justify-content: flex-start !important;
}

.hero .sec_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.shell-heading {
    justify-content: center !important;
}

.comming-soon-heading {
    justify-content: center !important;
}

.heading-home {
    position: relative;
    font-size: 65px;
    font-weight: 500;
    margin: 0;
    color: #fff;
    line-height: 1;
    color: #FFFF;
    letter-spacing: 0 !important;
}

.hero .hero-content p {
    color: #fff;
    letter-spacing: 5px;
}

.hero .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.hero .sec_content p {
    color: #fff;
    letter-spacing: 5px;
}

.intro-container {
    width: 100%;
}

.intro-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: justify;
    justify-content: space-between;
    width: 100%;
}

.intro-slim {
    color: #000;
    font-size: 50px;
    letter-spacing: 1px;
    font-weight: bold;
}

.intro-slim-left,
.intro-slim-right {
    font-size: 16px;
    font-weight: normal;
    color: #000;
    vertical-align: middle;
}

.intro-slim-left,
.intro-slim-right,
.slim-image {
    flex: 0 1 auto;
    max-width: 25%;
    text-align: center;
}

.intro-slim-left {
    text-align: left;
}

.intro-slim-right {
    text-align: right;
}

.slim-image {
    flex: 0 1 auto;
    max-width: 80%;
    height: auto;
}

.hero .sec_content .heading-section-three {
    font-size: 80px;
    margin: 0;
    color: #fff;
    font-family: jvkfont;
    font-weight: bold;
}

.hero .sec_content button {
    color: #fff;
    background: transparent;
    padding: 10px 75px;
    font-size: 22px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
}

.card-container {
    position: relative;
    padding: 10px 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 75px;
}

.card-cont {
    background: #000 !important;
    color: #fff !important;
    border-radius: 25px !important;
    overflow: hidden;
    margin-bottom: 15px;
}

.gutter-20 {
    padding: 20px;
}

.card-cont img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px 10px 0px 0px !important;
}

.card-heading {
    font-size: 18px !important;
    font-weight: bold;
}



.card-price {
    margin-top: 5px;
    font-size: 16px !important;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.card-price::after {
    content: ">";
    display: inline-block;
    padding: 0px 10px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
}

.open-modal:hover .card-price::after {
    background: rgba(255, 255, 255, 0.15);
}

.card-container .card-cont .card-content {
    padding-top: 20px;
    padding-bottom: 20px;
}

.card-container .card-cont .card-content p {
    text-align: justify;
    padding: 0 25px;
    margin-bottom: 0;
}

.card-container .card-cont .card-content {
    font-size: 38px;
    font-weight: 500;
    letter-spacing: 2.5px;
    white-space: nowrap;
}

.card-container .card-cont .card-content .card-sec-heading {
    font-size: 14px;
    font-weight: normal;
    color: #b8b4b4 !important;
    margin-bottom: 15px;
    white-space: nowrap;
}

.card-text {
    font-size: 18px;
}

.card-cont button {
    position: relative;
    background: #fff;
    color: #000;
    margin-top: 25px;
    padding: 8px 30px;
    border-radius: 10px;
    width: 100%;
    font-size: 20px;
}

.card-cont button:hover {
    position: relative;
    background: #000;
    color: #fff;
    margin-top: 25px;
    padding: 8px 30px;
    border-radius: 10px;
    width: 100%;
    font-size: 22px;
    border: #FFF 1px solid;
}

.card-container .card-cont .card-content button p {
    font-size: 26px;
    font-weight: 30px;
}

.test-drive {
    white-space: nowrap;
    font-size: clamp(20px, 3vw, 50px)
}

.container-five {
    margin-top: 75px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.container-five .row {
    display: flex;
    flex: wrap;
    align-items: stretch;
    width: 100%;
}

.img-wrapper {
    width: 100%;
    position: relative;
    height: auto;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.overlay-content {
    padding: 20px;
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #000;
    width: 80%;
}

.row.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.row.no-gutters>[class*='col-'] {
    padding-right: 0;
    padding-left: 0;
}


.scooty-wrapper {
    position: relative;
    height: 500px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

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

.container-five .ash-container .image-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container-five .ash-container .image-container img {
    width: auto;
    height: auto;
    transform: scale(1.3);
    margin: 0 15px;
}

.next-gen-container {
    width: 100%;
}

.next-gen-heading {
    letter-spacing: 1px;
    margin-bottom: 30px;
    padding: 10px 0px;
}

.next-gen-container .card {
    padding: 0;
    border: none;
    border-radius: 15px;
    background-color: #cddada63;
    display: flex;
    flex-direction: column;
}

.card-one {
    position: absolute;
}

.card-two {
    position: absolute;
}

.card-three {
    position: absolute;
}

.card-four {
    position: absolute;
    bottom: 0 !important;

}

.card-texts {
    padding: 20px;
}

.card-img {
    text-align: center;
}

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

.card-one .scooty-1 {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 0;
}

.card-two .scooty-2 {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-right: 0;
    padding-top: 0;
}

.card-three .scooty-3 {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;

}

.card-four .scooty-4 {
    position: relative;
}

.scooty-4 {
    padding-bottom: 0 !important;
}

.card-texts {
    padding: 30px 30px 10px 44px !important;
    position: relative;
}

.foot-img {
    width: 100%;
    text-align: center;
}

.foot-img img {
    width: 100%;
    height: auto;
    display: block;
}

footer {
    margin-top: 50px;
    width: 100%;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
}

.footer-container {
    width: 100%;
    height: auto;
    background-color: #0F0E0E;
    padding: 50px 0px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-container .address {
    margin-left: 25px;
    text-indent: -15px;
    line-height: 1.6;
    margin-bottom: 3px;
}

.footer-container .footer-col i {
    margin-right: 8px;
}

.footer-container h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.footer-container p {
    font-size: 14px;
    line-height: 1.5;
}

.footer-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-container ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-container ul li a:hover {
    color: #e63946 !important;
    text-decoration: none;
}

.social i {
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
    color: #fff !important;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding: 10px 0px 10px 0px;
    background: #000;
    font-size: 13px;
}

.footer-bottom p {
    margin: 0px !important;
}

.contact {
    width: 100%;
    height: auto;
}

[data-aos="zoom-in"] {
    transform: scale(0.1);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
    opacity: 1;
}

[data-aos="zoom-in"].aos-out {
    transform: scale(0.1);
    opacity: 0;
}

.telephone {
    white-space: nowrap;
}

.coming-soon p {
    font-size: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px;
}

.map-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 85%;
}

.card-cont {
    cursor: pointer;
    transition: 0.3s;
}

.card-cont:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-body img {
    border-radius: 10px;
}

.spec-sub-heading {
    font-size: 18px !important;
    white-space: nowrap;
    margin-bottom: 1px !important;
}

.spec-content {
    font-size: 16px !important;
    white-space: nowrap;
}

.spect-list {
    margin-bottom: 0px !important;
}

.spec-details-container {
    padding: 10px 0px;
}

.spec-details {
    padding: 2px;
}

.about-content {
    padding: 6px 250px;
}

.team-lead img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #eee;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.team-lead img:hover {
    transform: scale(1.05);
}

.team-lead p {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.team-members .member {
    text-align: center;
}

.team-members .member img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ddd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-members .member img:hover {
    transform: scale(1.05);

}

.team-members .member p {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.btn-close {
    padding: 2px !important;
}

.banner-footer {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    color: #fff;
    text-align: center;
    gap: 130px;
    white-space: nowrap !important;

}

.epresto-right-head {
    text-align: center !important;
    width: 100%;
    height: auto;
}

.epresto-right-head h1 {
    font-size: 85px !important;
    font-weight: bold !important;
    margin: 0;
    /* color: #e63946; */
}

.epresto-spec-list p {
    margin-bottom: 8px !important;
}

.epresto-right-img img {
    width: 100%;
    z-index: 1;
}

.epresto-right-head {
    z-index: 5;
}

.specs-table {
    border-collapse: collapse;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.specs-table thead th {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 18px;
    text-align: left;
}

.specs-table tbody tr {
    transition: background .15s;
}
.specs-table tbody tr:nth-child(even) {
    background: #f9fafb;
}
.specs-table tbody tr:hover {
    background: #f0fdf4;
}

.specs-table td {
    vertical-align: middle;
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 18px;
    font-size: 15px;
    color: #374151;
}

.specs-table td:first-child {
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
}

.spec-icon {
    font-size: 28px;
    color: #333;
}

.spec-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.spec-title {
    font-size: 18px;
    font-weight: 500;
    color: #222;
}

.spec-value {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-align: right;
}

.epresto-black-container {
    background: #000;
}

.epresto-black-container h1,
p {
    /* color: #fff !important; */
}

.dimension-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* prevent blocking clicks */
}

.vehicle-illustration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.epresto-black-container {
    width: 100%;
    height: auto;
}

.epresto-front-img {
    /* width: 75%!important;; */
    margin: 0;

}

.epresto-front-img img {
    margin-right: 0px !important;
}

.epresto-black-head {
    color: #FFF !important;
}

.epres-nowrap {
    white-space: nowrap;
    color: #fff !important;
    font-size: 20px !important;
}

.custom-espresto-body {
    overflow-x: hidden;
    max-width: 100vw;
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    /* background: rgba(255, 255, 255, 0.5); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    color: #000;
    padding-left: 0px !important;
}

.reach-us p {
    margin-bottom: 6px !important;
}

.card-spec {
    border: 1px solid white;
    border-radius: 15px;
}

.card-spec p {
    margin: 7px 0px;
}
.tank-stick{
    position: sticky !important;
    top:100px;
    z-index: 2;
}
@media screen and (max-width:990px) {
    header {
        margin-bottom: 1px;
    }

    header.scrolled .logo_wrpr img {
        top: 0px !important;
    }


    .feature-box {
        margin-bottom: 30px;
    }

    /* ── Sidebar drawer ───────────────────────────── */
    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.09);
        border: 1px solid rgba(255,255,255,0.14);
        color: #fff;
        width: 44px;
        height: 44px;
        border-radius: 10px;
        font-size: 24px;
        cursor: pointer;
        transition: background 0.2s;
        flex-shrink: 0;
    }
    .menu-toggle:hover { background: rgba(229,57,53,0.35); }

    .nav-sidebar {
        position: fixed;
        top: 0;
        right: 0;
        height: 100dvh;
        width: 285px;
        max-width: 86vw;
        background: linear-gradient(168deg, #111 0%, #1a1a1a 100%);
        border-left: 1px solid rgba(255,255,255,0.07);
        z-index: 999;
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        transform: translateX(110%);
        transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -12px 0 48px rgba(0,0,0,0.55);
    }
    .nav-sidebar.active { transform: translateX(0); }

    .sidebar-hd {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 18px;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        flex-shrink: 0;
    }
    .sidebar-hd img { height: 50px; width: auto; object-fit: contain; }

    .sidebar-close {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.07);
        border: none;
        color: #fff;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 20px;
        cursor: pointer;
        transition: background 0.2s;
        flex-shrink: 0;
    }
    .sidebar-close:hover { background: rgba(229,57,53,0.8); }

    #navbar ul {
        display: flex !important;
        flex-direction: column;
        gap: 2px;
        list-style: none;
        padding: 12px 10px;
        margin: 0;
        flex: 1;
        overflow-y: auto;
        position: static !important;
        width: auto !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        transform: none !important;
    }

    #navbar ul li a {
        display: flex !important;
        align-items: center;
        gap: 12px;
        color: #e5e7eb !important;
        font-size: 15px !important;
        font-weight: 600;
        padding: 13px 16px;
        border-radius: 12px;
        transition: background 0.2s, color 0.2s;
        white-space: normal;
    }
    #navbar ul li a:hover { background: rgba(229,57,53,0.13); color: #f87171 !important; }
    #navbar ul li a i   { color: #e53935; font-size: 17px; flex-shrink: 0; }

    /* Inline dropdown for mobile */
    #navbar ul li ul.dropdown-menu {
        position: static !important;
        display: none;
        background: rgba(255,255,255,0.04);
        border-radius: 10px;
        padding: 4px 0;
        margin: 4px 0 0 18px;
        box-shadow: none !important;
        border: none !important;
        min-width: unset;
        top: unset; left: unset;
    }
    #navbar ul li ul.dropdown-menu li a {
        font-size: 14px !important;
        padding: 9px 14px;
        color: #d1d5db !important;
    }

    .logo_wrpr img {
        position: relative;
        height: 45px;
        top: 0;
        left: 0;
    }

    /* Made in India sidebar footer */
    .sidebar-footer {
        display: flex;
        flex-direction: column;
        padding: 14px 20px 22px;
        border-top: 1px solid rgba(255,255,255,0.07);
        flex-shrink: 0;
        gap: 6px;
    }
    .made-in-india {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .india-flag { font-size: 26px; line-height: 1; }
    .mii-title  { font-size: 13px; font-weight: 800; color: #fff; letter-spacing: 0.06em; }
    .mii-sub    { font-size: 11px; color: #6b7280; margin-top: 1px; }

    .next-gen-heading h1 {
        font-size: 32px;
    }

    .hero .sec_content .heading-home {
        font-size: 40px;
    }

    .intro-container h1 {
        font-size: 40px !important;
    }

    .next-gen-heading h1 {
        font-size: 40px !important;
    }

    .hero .sec_content .heading-section-three {
        font-size: 60px;
    }

    .slim-image {
        max-width: 75%;
    }

    .hero .sec_content button {
        padding: 6px 45px;
        font-size: 20px;
    }

    .contact {
        padding: 20px 15px;
    }

    .about-content {
        padding: 6px 80px;
    }

    .overlay-content h3 {
        font-size: 24px !important;
    }

    .overlay-content p {
        font-size: 16px !important;
    }

    .img-wrapper {
        height: auto !important;
    }

    .btn-close {
        padding: 2px 0px !important;
    }

    .hero .sec_content {
        padding-top: 30px;
    }

    .hero .hero-content .heading-home {
        font-size: 50px;
        white-space: nowrap;

    }

    .hero .sec_content .heading-home {
        font-size: 50px !important;
    }

    .banner-footer {
        gap: 10px;
    }

    .epresto-front-img img {
        margin-right: -100px !important;
    }

    .epresto-black-container h1 {
        font-size: 40px !important;
    }

    .feature-overlay h4 {
        font-size: 12px !important;
        padding: 8px 0px !important;
    }

    .epresto-right-head h1 {
        font-size: 40px !important;
    }

}

@media (max-width: 768px) {

    .intro-slim-right,
    .intro-slim-left {
        text-align: center !important;

    }

    .intro-container h1 {
        text-align: center !important;
    }

    .hero .hero-content .heading-home {
        font-size: 35px;
        white-space: nowrap;
    }

    .hero .sec_content .heading-home {
        font-size: 35px !important;
    }

    .banner-footer {

        gap: 75px;
        bottom: 15px;
        /* closer to bottom */
    }

    .banner-footer-content h2 {
        font-size: 20px;
    }

    .banner-footer-content p {
        font-size: 14px;
    }

    .epresto-front-img img {
        margin-right: -75px !important;
    }

    .epresto-black-container p {
        font-size: 14px !important;
    }

    .vehicle-specs h1 {
        font-size: 35px !important;
    }

    .vehicle-specs p {
        font-size: 14px !important;
    }

    .epresto-right-head h1 {
        font-size: 35px !important;
    }

    .epresto-front-img {
        position: relative;
    }

    .mobile-bg-img {
        width: 100%;
        height: auto;
        opacity: 0.2;
        /* Dim image so cards are readable */
    }

    .cards-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 15px;
        z-index: 2;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    #modelModal .modal-dialog {
        max-width: 550px;
    }

    #modalTitle {
        font-size: 26px !important;
        margin-bottom: 2px !important;
    }

    .spec-sub-heading {
        font-size: 18px !important;
    }

    .epresto-front-img img {
        margin-right: -12px !important;
    }

}

@media (max-width: 576px) {


    .next-gen-heading {
        margin-bottom: 20px;
    }

    .next-gen-heading h1 {
        font-size: 24px;
    }

    .hero .sec_content .heading-home {
        font-size: 18px;
    }

    .intro-container h1 {
        font-size: 18px !important;
    }

    .next-gen-heading h1 {
        font-size: 30px !important;
    }

    .hero .sec_content .heading-section-three {
        font-size: 30px;
    }

    .hero .sec_content button {
        padding: 5px 16px !important;
        font-size: 12px !important;
        border-radius: 10px !important;
    }

    .slim-image {
        max-width: 60%;
    }

    .about-content {
        padding: 6px 20px;
    }

    #modalTitle {
        font-size: 22px !important;
        margin-bottom: 2px !important;
    }

    .spec-sub-heading {
        font-size: 18px !important;
        margin-bottom: 0px !important;
    }

    .spec-content {
        font-size: 14px !important;
        margin-bottom: 2px !important;
    }

    .spec-details {
        font-size: 12px !important;
        margin-bottom: 2px !important;
    }

    #modalPrice {
        font-size: 16px !important;
    }

    .overlay-content h3 {
        font-size: 16px !important;
    }

    .overlay-content p {
        font-size: 12px !important;
    }

    .img-wrapper {
        height: auto !important;
    }

    .sub-title-banner {
        font-size: 7px !important;
    }

    .banner-footer-content h2 {
        font-size: 14px;
    }

    .banner-footer-content P {
        font-size: 12px;
    }

    .banner-footer {
        gap: 15px;
        bottom: 15px;
    }

    .epresto-right-head h1 {
        font-size: 30px !important;
    }

    .epresto-right-head h4 {
        font-size: 12px !important;
    }

    .vehicle-specs h1 {
        font-size: 30px !important;
    }

    .epresto-front-img img {
        margin-right: 4px !important;
    }

    .epresto-black-container h1 {
        font-size: 24px !important;
    }

    .epresto-black-container p {
        font-size: 12px !important;
    }

    .epresto-black-container p {
        font-size: 12px !important;
    }

    .spec-value,
    .spec-title {
        font-size: 12px !important;
    }

    .spec-label {
        font-size: 10px !important;
    }

    .spec-icon {
        font-size: 20px !important;
    }

    .feature-overlay h4 {
        font-size: 12px !important;
        padding: 4px 0px !important;
    }

    .epresto-right-head h1 {
        font-size: 30px !important;
    }
	.feature-overlay {
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		flex-direction: column;
		justify-content: center;
		text-align: left;
		color: #000;
		padding-left: 0px !important;
	}
}
