@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&amp;display=swap');
@import url('../../../../cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/* Container for the entire section */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.main-carousel {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #8a8a8a60;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/*.carousel-inner {*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*}*/

.carousel-inner img {
    position: absolute;
    width: 100%;
    /* Ensures the image takes up 100% of the width */
    height: 100%;
    /* Adjusts the height proportionally */
    object-fit: contain;
    /* Ensures the image fills the circular area without distortion */
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-inner img.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.parts-container {
    position: absolute;
    width: 140%;
    height: 140%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.part-item {
    position: absolute;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.part-item:hover {
    transform: scale(1.05);
}

.part-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffffff;
}

.part-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.part-description {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 10px;
    color: black;
    margin-left: 10px;
    max-width: 200px;
}

.part-description h5 {
    margin: 0;
    font-size: 1rem;
}

.part-description p {
    margin: 5px 0 0;
    font-size: 0.8rem;
}

/* Position part items in a curve */
.part-item:nth-child(1) {
    top: 5%;
    right: 40%;
}

.part-item:nth-child(2) {
    top: 20%;
    right: 80%;
}

.part-item:nth-child(3) {
    top: 70%;
    right: 80%;
}

.part-item:nth-child(4) {
    top: 80%;
    right: 40%;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .carousel-inner img {
        width: 80%;
        height: auto;
    }
}

@media (max-width: 992px) {
    .carousel-container {
        max-width: 400px;
        margin: 2rem auto;
    }

    .part-image {
        width: 60px;
        height: 60px;
    }

    .part-description {
        max-width: 120px;
    }

    .part-description h5 {
        font-size: 0.9rem;
    }

    .part-description p {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .parts-container {
        position: static;
        width: 100%;
        height: auto;
        transform: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 2rem;
    }

    .part-item {
        position: static;
        margin: 1rem;
    }
}

.features-list {
    list-style: none;
    padding-left: 0;
}

.features-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 40px;
    height: 40px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.funfact-section {
    margin-top: -80px;
    position: relative;
    z-index: -1;
}

.funfact-wrapper {
    margin-top: 80px;
    margin-bottom: -9px;
}

.funfact-wrapper .funfact-counter-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 1399px) {
    .funfact-wrapper .funfact-counter-area {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .funfact-wrapper .funfact-counter-area {
        justify-content: center;
    }
}

.funfact-wrapper .funfact-counter-area .funfact-items {
    height: 190px;
    width: 190px;
    border-radius: 50%;
    background-color: var(--bs-primary);
    text-align: center;
    padding-top: 45px;
    position: relative;
}

@media (max-width: 575px) {
    .funfact-wrapper .funfact-counter-area .funfact-items {
        width: 180px;
        height: 180px;
    }
}

.funfact-wrapper .funfact-counter-area .funfact-items h2 {
    color: var(--bs-white);
    font-size: 40px;
    margin-bottom: 5px;
}

@media (max-width: 575px) {
    .funfact-wrapper .funfact-counter-area .funfact-items h2 {
        font-size: 30px;
    }
}

.funfact-wrapper .funfact-counter-area .funfact-items p {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.3;
}

@media (max-width: 575px) {
    .funfact-wrapper .funfact-counter-area .funfact-items p {
        font-size: 12px;
    }
}

.funfact-wrapper .funfact-counter-area .funfact-items .icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--bs-white);
    border-radius: 50%;
}

.btn-xl-square {
    width: 56px;
    height: 56px;
}

/* Styling for active tabs */
.scooter_tabs {
    cursor: pointer;
    padding: 10px;
    margin: 10px 0;
    text-align: center;


}

.table-specifications {
    width: 100%;
    overflow-x: auto;
    /* Allows horizontal scrolling on smaller screens */
}

.table {
    width: 100%;
    border-collapse: collapse;
    /* Removes extra spacing between table cells */
    margin: 20px 0;
    font-size: 16px;
}

.table thead tr {
    background-color: var(--bs-primary);
    /* Header background color */
    color: white !important;
    /* Header text color */
}

.table th,
.table td {
    padding: 25px;
    text-align: center;
    vertical-align: middle;
    background-color: #02093570;
    border: 1px solid #8a8a8a;
    /* Border for each cell */
}

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
    max-width: 500px;
}

/* Close Button */
.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 10px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Form styling */
form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
}

input,
textarea {
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #ccc;
}

button[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #45a049;
}

.table td span,
.table td {
    color: white !important;

}

table td:nth-child(3),
table th:nth-child(3) {
    width: 350px;
    /* Adjust width as needed */
}

.table th {
    font-weight: bold;
}

.table img {
    width: 50px;
    /* Fixed size for the icons */
    height: auto;
    /* Maintain aspect ratio */
    display: block;
    /* Ensures the icon stays inside the cell */
    margin: 0 auto;
    /* Centers the image inside the cell */
}

.table tbody td span {
    font-weight: bold;
    /* Highlight the key details */
}

@media (max-width: 768px) {

    .table th,
    .table td {
        font-size: 14px;
        /* Smaller font for smaller screens */
        padding: 10px;
    }
}

.tabs {
    display: flex;
    gap: 10px;
    /* Spacing between tabs */
    justify-content: center;
    /* Center align tabs */
    padding: 20px;
    background-color: #ff0303ab;
    /* Light background for the tab container */

    /* Slightly rounded edges */
}

.tab {
    display: flex;
    align-items: center;
    padding: 10px 25px;
    width: 200px;


    /* Default border for tabs */
    border-radius: 6px;

    /* White background for tabs */
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    gap: 8px;
    /* Space between image and text */
}

.tab img {
    width: 74px;
    /* Fixed width for images */
    height: 84px;
    /* Fixed height for images */
    object-fit: contain;
    /* Ensure the image fits properly */

    /* Circular images */
}





.tabs::-webkit-scrollbar {
    height: 8px;
    /* Thin horizontal scrollbar */
}

.tabs::-webkit-scrollbar-thumb {
    background: #0011ff;
    /* Scrollbar thumb color */
    border-radius: 4px;
    /* Rounded scrollbar thumb */
}

.tabs::-webkit-scrollbar-track {
    background: #e7e7e7;
    /* Scrollbar track color */
}

.scooter_tabs.active span {
    color: #000000 !important;
}

.scooter_tabs span {
    color: #000000 !important;
}

.scooter_tabs.active {
    background-color: #ffffff;

    border-radius: 5px;
}

.tab_content {
    text-align: center;
}

.tab_content img {
    margin-bottom: 15px;
    width: 400px;
    height: 400px;
    background-color: #fafafa6e;
    border-radius: 100%;
    padding: 10px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

/*** Navbar Start ***/
.header-top .topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.header-top .topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 12px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

.header-top {
    height: 125px;
    position: relative;
}

.header-top::after {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 20%;
    height: 100%;
    top: 0;
    left: 0;
    background: #c90303;
    z-index: -1;
}

@media (min-width: 992px) {
    .header-top::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 45px;
        top: 0;
        right: 0;
        background: #313131;
        z-index: -1;
    }

    .navbar-brand-2 {
        display: none;
    }
}

@media (max-width: 991px) {
    .header-top {
        max-height: 125px;
    }

    .navbar {
        justify-content: flex-end;
    }

    .header-top .container {
        max-height: 80px;
    }

    /* .navbar-brand {
        display: none;
    } */

    .navbar-brand-2 {
        position: relative;
        overflow: hidden;
        width: 200px;
        height: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        z-index: 99;
    }

    .navbar-brand-2::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--bs-dark);
        transform: rotate(-18deg);
        z-index: -1;
    }

    .navbar-brand-2::after {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 5px;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--bs-primary);
        transform: rotate(-18deg);
        z-index: -1;
    }

    .navbar.navbar-light {
        height: 100%;
        padding: 0;
    }

}

.nav-bar .navbar {
    z-index: 9;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar-nav {
    width: 100% !important;
    background-color: none !important;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 0px 30px !important;
}

.navbar-nav .nav-item.active {
    border-bottom: 2px solid var(--bs-primary);
    border-top: 2px solid var(--bs-primary);
    /* Underline the active link */

    /* Change the text color of the active link */
}

.navbar-nav .nav-link.active {
    color: #ff0808 !important;
    /* Optional: light blue background */
    border-radius: 5px;
    /* Optional: rounded corners */
}

.navbar-light .navbar-nav .nav-item:hover,

.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

.colors_palate_section {
    background: radial-gradient(circle, rgba(0, 0, 0, 0.8), rgba(30, 30, 30, 1)) !important;
    padding: 50px 0;
    color: white;

}

.color-options h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.color-options-div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;


}

.color-swatch,
.color-swatch1 {
    width: 40px;
    height: 40px;
    border: 1px solid #000000;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.color-swatch:hover {
    transform: scale(1.2);
}



.bike-image img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    margin-top: 20px;
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 12px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        margin-left: 50px;
        background: var(--bs-light);
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        flex-direction: column;
    }

    .navbar .navbar-nav .nav-btn a.btn {
        margin-right: 15px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
        margin-top: 20px;
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: space-between !important;
        margin-left: auto;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 19px;
        background: var(--bs-white);
        transition: .5s;
        opacity: 1;
    }

    .header-top .navbar-brand {
        position: relative;
        overflow: hidden;
        padding: 11px 44px 4px 0px;
        z-index: 99;

    }

    .navbar-brand::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 300px;
        height: 600px;
        top: -200px;
        right: 18px;

        background: #c90303;
        transform: rotate(-18deg);
        z-index: -1;
    }

    .navbar-brand::after {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 12px;
        height: 600px;
        top: -200px;
        right: 8px;
        background: var(--bs-primary);
        transform: rotate(-18deg);
        z-index: -1;
    }
}

/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.hero-section {
    background-image: url(../img/slider1.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section1 {
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    /* Ensures the video stays in the background */
}

.heading {
    color: rgb(80, 80, 80);
    margin-bottom: 0px !important;
}

.about-content p {
    color: rgb(90, 90, 90);
}

.hero-section2 {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7)), url(../img/slider3.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    position: relative;
}

.offer-container {
    background-color: rgba(0, 73, 141, 0.829);
}

#offerTab {
    text-align: center;
    width: 100%;
    display: block;
    border: medium none;
    padding: 30px 0;

}

#offerTab li {
    display: inline-block;
    margin: 0 5px;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    border: medium none
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
    border: medium none
}

.nav-tabs .nav-link {
    border: medium none
}

#offerTab li.nav-item a.nav-link,
#offerTab li.nav-item a.nav-link.active {
    display: inline-block;
    text-transform: uppercase;
    padding: 7px 25px;
    font-weight: 500;
    color: #fff;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

#offerTab li.nav-item a.nav-link:after {
    position: absolute;
    content: "";
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    background: #020202 none repeat scroll 0 0;
    z-index: -1;
    -webkit-transform: skew(40deg);
    transform: skew(40deg);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s
}

#offerTab li.nav-item a.nav-link:hover:after {
    background: #ec3323 none repeat scroll 0 0;
    -webkit-transform: skew(-40deg);
    transform: skew(-40deg);
}

#offerTab li.nav-item a.nav-link.active:after {
    position: absolute;
    content: "";
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: -1;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background: #ec3323 none repeat scroll 0 0;
    -webkit-transform: skew(-40deg);
    transform: skew(-40deg);
}

.tab.active {
    border-top: 1px solid rgb(255, 255, 255);
    border-bottom: 1px solid rgb(255, 255, 255);
    /* Change to red */

    /* Smooth transition for the change */
}

/* Reset non-active tabs */
.tab {
    background: transparent;
    transform: skew(0deg);
    /* Reset skew */
    transition: all 0.3s ease;
}

.logo {
    width: 130px;
    height: 120px;
}

.navbar-brand-2 {
    position: relative;
    top: -20% !important;

}

.navbar-brand-2 h1 {

    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.9);
    /* Adjust values as needed */
}

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 500px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;

    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    top: 40%;
    left: 0;
}

.header-carousel .owl-nav .owl-next {
    top: 40%;
    right: 0;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 65px 0 var(--bs-primary);
    color: var(--bs-dark);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    z-index: 9;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel.owl-carousel,
    .header-carousel .header-carousel-item {
        height: 500px;
    }
}

/*** Carousel Hero Header End ***/

.carousel-item img {
    width: 100%;
    height: 400px;

    object-fit: contain;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}


.vision-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    flex: 1 1 calc(100% - 40px);
    /* For small screens */
    min-height: 250px;

    /* Limit card size on larger screens */

    transition: transform 0.3s, box-shadow 0.3s;
}

/* Feature Card Styling */
.feature-card {
    background-color: #f9f9f9;
    /* Light background */
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Box shadow */
    padding: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    /* Hover shadow */
    transform: translateY(-5px);
    /* Hover effect */
}

.feature-card-body {
    text-align: center;
}

/* Card Icon Styling */
.card-heading-icon img {
    width: 30px;
    /* Icon size */
    height: 30px;
    margin-bottom: 10px;
    /* Spacing between icon and heading */
}

.feature-card-body img {
    width: 30px;
    /* Icon size */
    height: 30px;


}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bs-primary);
    margin-bottom: 10px;
}

.feature-card-text {
    font-size: 1rem;
    color: #666;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .feature-card {
        padding: 15px;
    }

    .card-heading-icon {
        width: 40px;
        height: 40px;
    }

    .feature-card-title {
        font-size: 1.1rem;
    }

    .feature-card-text {
        font-size: 0.9rem;
    }
}

.png-image {
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1 !important;
}

/* Circles inside the card */
.vision-card::before,
.vision-card::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: #007bff !important;
    /* Circle color */
    border-radius: 50%;
    z-index: -1;
}

.vision-card::before {
    top: -30px;
    left: -30px;
}

.vision-card::after {
    bottom: -30px;
    right: -30px;
}

/* Hover effect */
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.vision-card h2 {
    font-size: 24px;
    color: #007bff;
    margin-bottom: 15px;
    text-align: center;
}

.vision-card p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.5;
    text-align: left;
}

/* Responsive layout for Mission content */
.vision-card ul {
    padding-left: 0;
    list-style: none;
}

.vision-card ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #6c757d;
    display: flex;
    align-items: center;
}

.vision-card ul li i {
    color: #007bff;
    margin-right: 10px;
}

/* Media Query for larger screens */
@media (min-width: 768px) {
    .vision-card {
        flex: 1 1 calc(48% - 20px);
        /* Two cards per row */
    }
}

@media (min-width: 1200px) {
    .vision-card {
        flex: 1 1 calc(30% - 20px);
        /* Three cards per row */
    }
}

.experience_content p {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: -0.005em;
    text-align: left;

}

.pure_products_section_slider .carousel-inner .carousel-item {
    background-repeat: no-repeat;
    background-size: 100%;
    height: 366px;
}

.pure_products_section_slider .etrance_slider .product_slider_section_content,
.ecodryft_slider .product_slider_section_content {
    padding-top: 60px !important;

}

.pure_products_section_slider .etrance_slider .product_slider_section_content {
    padding-top: 130px;
}

.product_slider_section_content h3 span {
    font-family: 'Poppins';
    font-size: 30px;
    font-weight: 600;
    line-height: 33px;
    letter-spacing: -0.005em;
    text-align: left;
    color: #ffffff;
}

.product_slider_section_content h3 {
    font-family: 'Poppins';
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.005em;
    text-align: left;
    color: #ffffff;
    padding-left: 7px;
    border-left: 3px solid #fff;
}

.product_slider_section_content p {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0em;
    text-align: left;
    color: #ffffff;

}

.product_slider_section_content p a {
    background: linear-gradient(0deg, rgba(3, 3, 3, 0.7), rgba(0, 0, 0, 0.7));
    float: right;
    margin-right: 25px;
    border: 1px solid linear-gradient(262.22deg, #FFFFFF 15.39%, rgba(255, 255, 255, 0.54) 90.97%);
    border-radius: 60px;
    padding: 4px 5px;
    text-decoration: none;
    margin-top: 50px;
}

@media only screen and (min-width: 400px) and (max-width: 600px) {

    .epluto_slider .product_slider_section_content,
    .etryst_slider .product_slider_section_content,
    .pure_products_section_slider .etrance_slider .product_slider_section_content,
    .ecodryft_slider .product_slider_section_content {
        padding-top: 60px !important;
        padding-left: 32px;
    }

    .product_slider_section_content h3 {
        font-size: 14px !important;
    }

    .product_slider_section_content h3 span {
        font-size: 20px !important;
    }

    .product_slider_section_content p {
        font-size: 12px !important;
        float: right !important;
    }

    .product_slider_section_content p a {
        /*margin-top: 100px !important;*/
        margin-right: -15px !important;
    }
    .pure_products_section_slider .product_slider_section_content{
       padding-top: 160px !important;
    }
}

.pure_products_section_slider .carousel-indicators [data-bs-target] {
    background: rgba(51, 51, 51, 0.3);
    height: 1px !important;
    border-top: 1px solid rgba(51, 51, 51, 0.3);
    border-bottom: 1px solid rgba(51, 51, 51, 0.3);
}

 
.pure_products_section_slider .carousel-indicators .active {
    background: rgba(51, 51, 51, 1);
}

.carousel-caption h3 {
    font-size: 2.5rem;
    font-weight: bold;
}

.etrance_slider {
    background-image: url('../img/etrance-neo.png');
}

@media only screen and (max-width: 399px) {
    
    
 .etryst_slider {
    background-image: url('../img/yellow-bg.png');
}

.epluto_slider {
    background-image: url('../img/violet-bg.png');
}

.dealership_slider {
    background-image: url('../img/green-bg.png');
}

.ecodryft_slider {
    background-image: url('../img/blue-bg.png');
}
    .epluto_slider .product_slider_section_content,
    .etryst_slider .product_slider_section_content,
    .pure_products_section_slider .etrance_slider .product_slider_section_content,
    .ecodryft_slider .product_slider_section_content {
        padding-top: 60px !important;
        padding-left: 32px;
    }

    .product_slider_section_content h3 {
        font-size: 14px !important;
    }

    .product_slider_section_content h3 span {
        font-size: 20px !important;
    }

    .product_slider_section_content p {
        font-size: 12px !important;
        float: right !important;
    }

    .product_slider_section_content p a {
        /*margin-top: 100px !important;*/
        margin-right: -15px !important;
    }

    .dealership_slider .product_slider_section_content p {
        float: left !important;
    }

    .dealership_slider .product_slider_section_content p a {
        margin-top: 40px !important;
    }

    .product_slider_section_content p a img {
        width: 23px !important;
    }
}

.pure_products_section_slider .etrance_slider.product_slider_section_content {
    padding-top: 190px !important;
}



.pure_products_section_slider .carousel-inner .carousel-item {
    background-repeat: no-repeat;
    background-size: 100%;
    height: 366px !important;
}

.carousel-caption p {
    font-size: 1.2rem;
}

.carousel-indicators [data-bs-target] {
    background-color: #000;
}

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/carousel-1.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/


/*** Banner Start ***/
.banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), url(../img/cute+.jpeg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 9;
}

.banner .container {
    position: relative;
    z-index: 99;
}

.banner::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 500px;
    top: -200px;
    left: 0;
    background: var(--bs-primary);
    transform: rotate(45deg);
    z-index: 1;
}

.banner::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 500px;
    bottom: -200px;
    right: 0;
    background: var(--bs-primary);
    transform: rotate(45deg);
    z-index: 1;
}

.banner .banner-design-1 {
    position: absolute;
    width: 30px;
    height: 500px;
    top: -165px;
    left: 0;
    background: var(--bs-dark);
    transform: rotate(45deg);
    z-index: 2;
}

.banner .banner-design-2 {
    position: absolute;
    width: 30px;
    height: 500px;
    bottom: -165px;
    right: 0;
    background: var(--bs-dark);
    transform: rotate(45deg);
    z-index: 2;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    /* Prevent scrolling */
    padding: 10px 0;
    position: relative;
}

.marquee {
    display: flex;
    gap: 0;
    /* No gaps to prevent empty spaces */
    animation: scroll-left 10s linear infinite;
}

.marquee-item {
    position: relative;
    min-width: 00px;
    height: 350px;
    flex-shrink: 0;
    margin: 0px 10px;
    background-color: rgb(146, 146, 146);
    /* Prevent items from shrinking */
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* Optional overlay text */
.overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 0, 0.897);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

.marquee-item:hover .overlay-text {
    opacity: 1;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .marquee-item {
        min-width: 150px;
        height: 120px;
    }

    .overlay-text {
        font-size: 14px;
    }
}

/*** Banner End ***/

/*** Service Start ***/
.service .nav .nav-item {
    width: 75%;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
}

.service .nav .nav-item a {
    display: flex;
    justify-content: center;
}


.owl-stage-outer {
    margin-right: -1px;
}

.service .nav-item a.active {
    background: var(--bs-primary);
}

.service .nav-item a span {
    color: var(--bs-dark);
}

.service .nav-item a.active span {
    color: var(--bs-white);
}

.service-carousel .owl-nav .owl-prev,
.service-carousel .owl-nav .owl-next {
    position: absolute;
    padding: 10px 35px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-dark);
    background: var(--bs-light);
    transition: 0.5s;
}

.service-carousel .owl-nav .owl-prev:hover,
.service-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .service-carousel .owl-nav .owl-prev {
        top: 0;
        left: -115px;
    }

    .service-carousel .owl-nav .owl-next {
        bottom: 0;
        left: -115px;
    }
}

@media (max-width: 991px) {
    .owl-stage-outer {
        margin-bottom: 70px;
    }

    .service-carousel .owl-nav .owl-prev {
        bottom: -70px;
        left: 0;
    }

    .service-carousel .owl-nav .owl-next {
        bottom: -70px;
        right: 0;
    }

    .service .nav {
        display: flex;
        justify-content: center;
    }
}

/*** Service End ***/

/*** Projects Start ***/
.projects .nav-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .09);
}

.projects-item .projects-content {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.projects .nav-item a.active {
    background: var(--bs-primary);
}

.projects .nav-item a span {
    color: var(--bs-dark);
}

.projects .nav-item a.active span {
    color: var(--bs-white);
}

.projects .nav-item a.active .projects-icon {
    background: var(--bs-dark) !important;
}

.projects .nav-item a.active .projects-icon span {
    color: var(--bs-primary);
}

/*** Projects End ***/


/*** Blog Start ***/
.blog .blog-item {
    height: 100%;
    background: var(--bs-light);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    background: rgba(246, 138, 10, .3);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
    width: 100%;
    height: 100%;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-heading {
    position: relative;
    background: var(--bs-white);
}

.blog .blog-item .blog-heading a.h4 {
    position: relative;
    width: 100%;
    display: inline-flex;
    transition: 0.5s;
    z-index: 2;
}

.blog .blog-item .blog-heading::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    right: 0;
    bottom: 0;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-heading::after {
    width: 100%;
    background: var(--bs-primary);
}

.blog .blog-item:hover .blog-heading a.h4 {
    color: var(--bs-white);
}

.blog .blog-item:hover .blog-heading a.h4:hover {
    color: var(--bs-dark);
}

/*** Blog End ***/

/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: -100%;
    z-index: 9;
    transition: 0.5s;
}

.team .team-item:hover .team-img .team-icon {
    right: 25px;
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: rgba(246, 138, 10, .2);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}

.team .team-item .team-content {
    transition: 0.5s;
}

.team .team-item:hover .team-content {
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}

/*** Team End ***/

/*** FAQs Start ***/
.faq-section .accordion .accordion-item {
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    border: none;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(246, 138, 10, .9);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-dark);
    background: var(--bs-light);
}

/*** FAQs End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-right: -1px;
}

.testimonial .testimonial-item {
    position: relative;
    margin-top: 35px;
}

.testimonial .testimonial-item .customer-text {
    border: 1px solid var(--bs-primary);
    border-top: none;
}

.testimonial .testimonial-item .testimonial-quote {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    color: var(--bs-dark);
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    align-items: center;
    background: var(--bs-white);
}

.testimonial .testimonial-item .testimonial-inner img {
    width: 100px;
    height: 100px;
    border: 2px solid var(--bs-primary);
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    margin: 30px 10px 0 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

@media (max-width: 991px) {
    .testimonial-carousel .owl-dots .owl-dot {
        margin: 0 10px 0 10px;
    }
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    margin-right: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-white);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

/*** Testimonial End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover {
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}

/*** copyright end ***/


@media (max-width: 1200px) and (min-width: 1025px) {
    .navbar {
        padding: 10px 0;
    }
    .pure_products_section_slider{
        padding: 0 !important;
      }
}
@media (max-width: 1024px) and (min-width: 992px){
    .navbar .navbar-nav .nav-item{
        margin: 0px 10px !important;
    }
    .navbar {
        padding: 10px 0;
    }
    small,
   .small {
    font-size: 0.8em
  }
  .pure_products_section_slider{
    padding: 0 !important;
  }
}
@media (max-width: 991px) and (min-width: 768px){
    .header-top .navbar-brand {
        position: relative;
        overflow: hidden;
        padding: 5px 44px 4px 0px;
        z-index: 99;
    }
    .navbar-brand::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 300px;
        height: 600px;
        top: -200px;
        right: 18px;
        background: #c90303;
        transform: rotate(-18deg);
        z-index: -1;
    }
    .header-top::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 45px;
        top: 0;
        right: 0;
        background: #313131;
        z-index: -1;
    }
    .navbar-brand::after {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 12px;
        height: 600px;
        top: -200px;
        right: 8px;
        background: var(--bs-primary);
        transform: rotate(-18deg);
        z-index: -1;
    }
}
@media (max-width: 768px) {
    .border-end .text-light.small, 
    .ps-3 .text-light.small {
        display: inline-flex;
        align-items: center;
    }

    .border-end .text-light.small span, 
    .ps-3 .text-light.small span {
        display: none; 
    }

    .border-end .text-light.small i, 
    .ps-3 .text-light.small i {
        font-size: 16px; 
    }
    .header-top .navbar-brand {
        position: relative;
        overflow: hidden;
        padding: 5px 44px 4px 0px;
        z-index: 99;
    }
    .navbar-brand::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 300px;
        height: 600px;
        top: -200px;
        right: 18px;
        background: #c90303;
        transform: rotate(-18deg);
        z-index: -1;
    }
    .header-top::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 45px;
        top: 0;
        right: 0;
        background: #313131;
        z-index: -1;
    }
    .navbar-brand::after {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 12px;
        height: 600px;
        top: -200px;
        right: 8px;
        background: var(--bs-primary);
        transform: rotate(-18deg);
        z-index: -1;
    }
    .pure_products_section_slider {
        padding: 0 !important;
    }
    .impact_block {
        height: 188px !important;
        margin: 20px; 
    }
    .vision-card {
        margin-bottom: 15px;
    }
}
@media (max-width: 600px){
    .header-top .navbar-brand{
          width:300px;
          margin: 0 !important;
    }
    .logo {
        width: 100px;
        height: 100px;
    }
    .header-top .navbar-brand h1{
        font-size: 20px;
    }
    .topbar .row {
        flex-wrap: nowrap; /* Prevent wrapping of columns */
    }
    .pure_products_section_slider{
        padding: 0 !important;
    }
     .etryst_slider {
    background-image: url('../img/yellow-bg.png');
}

.epluto_slider {
    background-image: url('../img/violet-bg.png');
}

.dealership_slider {
    background-image: url('../img/green-bg.png');
}

.ecodryft_slider {
    background-image: url('../img/blue-bg.png');
}
}
@media (max-width: 425px){
    .header-top .navbar-brand {
        width: 180px;
        margin: 0 !important;
    }
    .header-top .navbar-brand h1 {
        display: flex;
        flex-direction: column;
        text-align: left !important;
    }
    .logo {
        width: 100px;
        height: 90px;
    }
    .header-social-icons{
        padding: 0 !important;
    }
    .pure_products_section_slider {
        padding: 0 !important;
     }
     .carousel-title{
         margin-left: 2rem !important;
     }

}
@media (max-width: 375px) {
    .border-end .text-light.small i, 
    .ps-3 .text-light.small i {
        font-size: 12px; 
    }
    .header-social-icons a i{
        font-size: 12px;
    }
    .header-top .container-fluid{
        padding: 0;
    }
     .contact .row .col-lg-6{
        padding: 0;
     }
     
}