@font-face {
    font-family: jvkfont;
    src: url('../fonts/Jura-VariableFont_wght.ttf');
}

body {
    overflow-x: hidden;
    margin: 0;
    font-family: jvkfont;
}

section {
    margin-bottom: 50px;
    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: 50px;
    margin: 0;
    padding: 0;
}

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 {
    background: #d0d0d0;
    border-collapse: separate;
    border-spacing: 0 1px;
}

.specs-table td {
    vertical-align: middle;
    border: none !important;
    padding: 12px 15px;
}

.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;
    }

    #navbar ul li a {
        font-size: 14px;
        padding: 5px 10px;
        white-space: nowrap;
    }

    #navbar ul {
        gap: 10px;
    }

    #navbar ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        background: #fff;
        border: 1px solid #ddd;
        padding: 15px;
        gap: 15px;
        width: 200px;
    }

    #navbar ul.active {
        display: flex;
    }

    nav ul li a {
        padding: 5px 10px;
        white-space: nowrap;
        color: black !important;
    }

    .logo_wrpr img {
        position: relative;
        height: 45px;
        top: 0;
        left: 0;
    }

    .menu-toggle {
        color: #fff;
        display: block;
    }

    .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;
	}
}