* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: "Nunito", sans-serif;
}

.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hidden.in-view {
    opacity: 1;
    transform: translateY(0);
}
/* Container adjustment for overflow issues */
.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 40px;
    margin-right: 0.5rem;
}

.navbar-nav li {
    margin: 0 1rem;
}

.navbar-nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* Active class for navbar items */
.navbar-nav .active a {
    color: #FB7C00;
    /* Orange color */
}

.navbar-nav a:hover {
    color: #FB7C00;
    /* Hover color */
}

.toggle-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100vh;
    background-color: white;
    box-shadow: 4px 0 6px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    transition: left 0.3s ease-in-out;
    z-index: 1100;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu ul li {
    margin-bottom: 1rem;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.mobile-menu ul li a:hover {
    color: #FB7C00;
}

.close-btn {
    display: block;
    text-align: right;
    font-size: 1.5rem;
    cursor: pointer;
    margin-bottom: -1rem;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.social-icons a {
    font-size: 18px;
    color: #333;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #FB7C00;
}

/* Full-width Dropdown Styling */
.dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    background: white;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 0;
}

.nav-item:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Dropdown Content Grid */
.dropdown-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    text-align: left;
}

.dropdown-heading {
    font-size: 40px;
    font-weight: bold;
    color: #eaeaf3;
    ;
    align-self: right;
    margin-left: 30%;
    padding-top: 10px;
}

.dropdown-item {
    font-size: 14px;
    color: #333;
    transition: color 0.3s;
}

.dropdown-item:hover {
    color: #ff6600;
}

/* Social Icons */
.social-icons a {
    color: #555;
    margin-right: 10px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ff6600;
}




/* Mobile view adjustments */
@media (max-width: 991px) {

    /* Full-width Dropdown Styling */
    .dropdown-menu {
        background: transparent;
        padding: 20px;
        box-shadow: none;
        border: none;
        border-radius: 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        transform: none;
        padding: 10px;
    }

    .dropdown-content {
        grid-template-columns: 1fr;
    }

    .dropdown-heading {
        text-align: center;
        font-size: 20px;


        margin-left: 0;
        padding-top: 0px;
    }

    .navbar-brand img {
        height: 55px;
    }

    .toggle-btn {
        display: block;
    }

    .social-icons {
        display: flex;
        justify-content: flex-start;
        gap: 1rem;
    }

    .navbar-nav {
        display: none;
        flex-direction: column;
        text-align: center;
    }

    .navbar-nav li {
        margin: 1rem 0;
    }

    .navbar-nav.active {
        display: flex;
    }
}

/* Responsive styles for larger screens */
@media screen and (min-width: 992px) {
    .navbar {
        padding: 9px;
        padding-bottom: 0px;
        padding-top: 0px;
    }

    .navbar-brand img {
        height: 60px;
    }

    .nav-item a {
        font-size: 12px;
    }

    .social-icons a {
        font-size: 12px;
    }
}

@media screen and (min-width: 1280px) {
    .navbar {
        padding: 120px;
        padding-bottom: 0px;
        padding-top: 0px;
    }

    .sg {
        gap: 30px;
    }

    .nasit {
        width: 572px;
        gap: 39.67px;
    }

    .shruti {
        width: 96px;
        gap: 10.67px;
    }

    .navbar-brand img {
        height: auto;
        width: 200px;
    }

    .nav-item a {
        font-size: 12px;
    }

    .social-icons a {
        font-size: 16px;
    }
}

@media screen and (min-width: 1366px) {
    .navbar {
        padding: 120px;
        padding-bottom: 0px;
        padding-top: 0px;
    }

    .sg {
        gap: 30px;
    }

    .nasit {
        width: 611.2px;
        gap: 40.46px;
    }

    .shruti {
        width: 102.45px;
        gap: 11.38px;
    }

    .navbar-brand img {
        height: auto;
        width: 213.44px;
    }

    .nav-item a {
        font-size: 12.81px;
    }

    .social-icons a {
        font-size: 17.08px;
    }
}

@media screen and (min-width: 1440px) {
    .navbar {
        padding: 120px;
        padding-bottom: 0px;
        padding-top: 0px;
    }

    .sg {
        gap: 30px;
    }

    .nasit {
        width: 642px;
        gap: 50px;
    }

    .shruti {
        width: 108px;
        gap: 12px;
    }

    .navbar-brand img {
        height: auto;
        width: 225px;
    }

    .nav-item a {
        font-size: 13.5px;
    }

    .social-icons a {
        font-size: 18px;
    }
}

@media screen and (min-width: 1600px) {
    .navbar {
        padding: 120px;
        padding-bottom: 0px;
        padding-top: 0px;
    }

    .navbar-brand img {
        height: auto;
        width: 250px;
    }

    .sg {
        gap: 365px;
    }

    .nasit {
        width: 715px;
        gap: 33.33px;
    }

    .shruti {
        width: 120px;
        gap: 13.33px;
    }

    .nav-item a {
        font-size: 15px;
    }

    .social-icons a {
        font-size: 20px;
    }
}

@media screen and (min-width: 1920px) {
    .navbar {
        padding: 120px;
        padding-bottom: 0px;
        padding-top: 0px;
    }

    .sg {
        gap: 521px;
    }

    .navbar-brand img {
        height: auto;
        width: 300px;
    }


    .nav-item a {
        font-size: 18px;
    }

    .social-icons a {
        font-size: 24px;
    }

    .nasit {
        width: 860px;
        gap: 40px;
    }

    .shruti {
        width: 144px;
        gap: 16px;
    }
}
.g-lite-section {
    padding: 40px 20px;
}

.g-lite-section .title {
    font-size: 3.5rem;
    font-weight: bold;
    letter-spacing: 5px;
    font-weight: 700;
}

.g-lite-section .subtitle {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
}

/* Specs Box Styles */
.specs {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    width: 500px;
}

.specs div {
    font-size: 10px;
    margin: 10px 0;
}

strong {
    font-size: 40px;
    color: #1E1E1E;
}

/* Images Container */
.images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    /* Added space between images */
}

.images img {
    max-width: 48%;
    height: auto;
    border-radius: 10px;
}

/* Color Options */
.color-options {
    justify-content: space-between;
    margin-top: 15px;
    gap: 10px;
    border: 1px solid #F5F5F5;
    padding: 10px;
    border-radius: 30px;
    background-color: #F5F5F5;
    width: 66px;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column-reverse;
}

/* Color Buttons */
.color-options span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 5px;
    display: inline-block;
    cursor: pointer;
}

.color-options span.selected {
    border: 2px solid red;
}

/* Specific Colors */
.color-peach {
    background-color: #8AD0DD;
}

.color-black {
    background-color: black;
}

.color-white {
    background-color: white;
    border: 1px solid #ccc;
}

.color-blue {
    background-color: #0133AA;
}

.color-white {
    background-color: white;

}

.color-gray {
    background-color: #62899C;
}



@media (max-width: 991px) {
    .specs {
        width: 354px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .g-lite-section .title {
        font-size: 2rem;
    }


    .g-lite-section .subtitle {
        font-size: 1rem;
        text-align: right;
    }

    .specs {
        width: 370px;
    }

    .specs div {
        font-size: 0.9rem;
    }


    .g-lie1 {
        flex-direction: column;
        align-items: center;
    }

    .images img {
        max-width: 90%;
    }

    .color-options {
        flex-direction: row;
        justify-content: center;
        padding: 14px;
        margin-top: 10%;
        top: 21%;
        left: 71%;
        position: absolute;
    }
}

@media (max-width: 570px) {
    .g-lite-section .title {
        font-size: 1.8rem;
    }

    .g-lite-section .subtitle {
        font-size: 1rem;
        text-align: right;
    }

    .specs div {
        font-size: 0.85rem;
    }

    .specs {
        width: 216px;
    }

    .color-options {
        flex-direction: row;
        justify-content: center;
        padding: 14px;
        margin-top: 10%;
        top: 21%;
        left: 71%;
        position: absolute;
    }

    .color-options span {
        width: 25px;
        height: 25px;
    }
}

.bike-content {
    position: relative;
    overflow: hidden;
    /* Keeps background blur clean */
    z-index: 1;
}

.bike-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right,
            rgba(255, 165, 0, 0.2),
            /* Orange at Top-Left */
            rgba(255, 255, 255, 0.2),
            /* White at Center */
            rgba(0, 128, 0, 0.2));
    /* Green at Bottom-Right */
    filter: blur(150px);
    /* Blur effect */
    z-index: -1;
}

/* Center the animation container */
.animation-container {
    position: relative;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #f8f9fa; */
}

/* Position the bike vector (will stay still) */
.bike-vector {
    position: absolute;
    top: 47%;
    z-index: 1;
    left: 35%;
}

/* Position the bike frame (will animate up and down) */
.bike-frame {
    position: absolute;
    top: 2%;
    animation: moveUpDown 2s infinite ease-in-out;
}

/* Keyframes for up and down animation */
@keyframes moveUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.feature-box {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 10px;
    margin: 10px auto;
    width: 170px;
    /* Fixed width */
    height: 170px;
    /* Fixed height */
}

.feature-box img {
    width: 50px;
    /* Fixed size for images */
    margin-bottom: 5px;
}

.feature-box h5 {
    font-size: 17px;
    font-weight: 700;
    /* Fixed font size */
    margin: 5px 0;
    color: #1E1E1E;
}

.feature-box p {
    font-size: 13px;
    font-weight: 400;
}

.scooter-image {
    text-align: center;
    margin: 134px 0;
}

.scooter-image img {
    width: 250px;
    height: auto;
}

/* Media query for 1200px and smaller devices */
@media (max-width: 1200px) {
    .feature-box {
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
        padding: 10px;
        margin: 10px auto;
        width: 170px;
        /* Fixed width */
        height: 170px;
        /* Fixed height */
    }

    .feature-box img {
        width: 50px;
        /* Fixed size for images */
        margin-bottom: 5px;
    }

    .feature-box h5 {
        font-size: 1rem;
        /* Fixed font size */
        margin: 5px 0;
        color: #333;
    }

    .scooter-image {
        text-align: center;
        margin: 134px 0;
    }

    .scooter-image img {
        width: 250px;
        height: auto;
    }

}

/* Media query for screens between 500px and 1200px */
@media (min-width: 601px) and (max-width: 1200px) {
    .feature-box {
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
        padding: 10px;
        margin: 10px auto;
        width: 124px;
        height: 181px;
        /* Fixed height */
    }

    .feature-box img {
        width: 50px;
        /* Fixed size for images */
        margin-bottom: 5px;
    }

    .feature-box h5 {
        font-size: 1rem;
        /* Fixed font size */
        margin: 5px 0;
        color: #333;
    }

    .scooter-image {
        text-align: center;
        margin: 134px 0;
    }

    .scooter-image img {
        width: 222px;
        height: auto;
        margin-left: 29px;
    }

}

/* Media query for small devices like mobile phones */
@media (max-width: 700px) {

    /* For small devices like mobile phones */
    .col-4 {
        flex: 0 0 100%;
        /* Columns take full width */
        max-width: 270px;
    }

    .feature-box {
        height: 171px;
        width: 129px;
        margin: 5px 5px 5px 5px;
    }

    .feature-box p {
        font-size: 11px;

    }

    .scooter-image>img {
        width: 283px;
        /* Scooter image will also take full width */
    }

    .scooter-image {
        margin-left: 15px;
    }
}


.ride-section {
    padding: 40px 20px;
    text-align: center;
}

.ride-section .title {
    font-size: 40px;
    /* font-weight: bold; */
    font-weight: 700;
    margin-bottom: 20px;
}

.ride-section .subtitle {
    font-size: 40px;
    color: orange;
    font-weight: 700;
    margin-bottom: 30px;
}

.ride-section {
    padding: 40px 20px;
    text-align: center;
}

.ride-section .title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Cardo', serif;
}

.ride-section .subtitle {
    font-size: 40px;
    color: orange;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Bike Images Container */
.bike-images {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 20px;
}

.bike-images .bike-container {
    width: 150px;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    transition: width 0.5s ease, height 0.5s ease;
    /* Smooth container transition */
}

.bike-images img {
    width: 340px;
    /* Larger than container width to create the "crop" effect */
    height: 100%;
    object-fit: cover;
    transform: translateX(6%);
    /* Crop from the right initially */
    transition: transform 0.5s ease all;
    /* Smooth transform animation */
}

/* Hover Effect */
.bike-container:hover {
    width: 300px;
    /* Expand container to full image width */
    height: 500px;
}

.bike-container:hover img {
    transform: translateX(0);
    /* Show the full image by resetting the transform */
}

/* Responsive Styling */
/* Responsive Styling */
@media (max-width: 768px) {

    .ride-section .title,
    .ride-section .subtitle {
        font-size: 28px;
    }

    .bike-images .bike-container {
        width: 260px;
        height: 100%;
    }

    .bike-images img {
        width: 258px;
    }
}

@media (max-width: 480px) {

    .ride-section .title,
    .ride-section .subtitle {
        font-size: 24px;
    }

    .bike-images .bike-container {
        height: 100%;
        width: 280px;
    }
}









.features-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.19);
    padding: 10px;
    margin: 20px 0;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.features-bar div {
    display: flex;
    align-items: center;
    margin: 10px 68px;
    /* Adjusted for responsiveness */
    font-size: 1rem;
    text-align: center;
}

.features-bar img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-bar {
        flex-direction: column;
        padding: 15px;
    }

    .features-bar div {
        margin: 10px 0;
    }
}

/* FAQ Section */
.faq-section {
    /* padding: 50px 20px; */
    text-align: center;
    background-color: #fff;
}

.faq-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.faq-section .accordion-item {
    border: none;
}

@media (max-width: 768px) {
    .faq-section h1 {
        font-size: 1.5rem;

    }

}

.faq-section .accordion-item {
    border: none;
}

/* Custom Styles for Accordion */
.accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    background-color: #f8f9fa;
    color: #000;
    border: none;
    padding: 15px;
}

/* Target the active accordion button text color */
.accordion-button:not(.collapsed) {
    color: #FB7C00;
    /* Set text color to orange when open */
    font-weight: bold;
    background-color: #f8f9fa;
    /* Optional: Makes it bold for better visibility */
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    /* content: '+'; */
    font-size: 1.2rem;
    color: #000;
    margin-left: auto;
    transition: transform 0.3s ease;
}

/* Table Styles */
.custom-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    border: 1px solid black;
    border-top: 0px;
}

.custom-table tr:nth-child(even) {
    background-color: #f8f9fa;
    /* Light gray */
}

.custom-table tr:nth-child(odd) {
    background-color: #ffffff;
    /* White */
}

.custom-table th,
.custom-table td {
    padding: 6px 15px;
    text-align: left;
    border: none;
}

.faq1 {
    margin-left: 10px;
}

.custom-table th {
    font-weight: bold;
    color: #000;

}

.custom-table th i {
    margin-right: 10px;
    /* Space between icon and text */
    color: #007bff;
    /* Icon color */
}

.accordion-header {
    margin-bottom: 5px;
}

.accordion-body {
    font-size: 0.9rem;
    color: #555;
}



.test-drive-section {
    padding: 40px 20px;
}

.test-drive-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.test-p {
    font-size: 17px;
    font-weight: 500;
    color: #1E1E1E;
}

.test-drive-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.test-drive-form {
    width: 100%;
    max-width: 500px;
}

.form-control {
    background-color: rgba(245, 245, 245, 1);
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn-contact {
    background-color: transparent;
    border: 1px solid black;
    border-radius: 10px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-contact:hover {
    background-color: black;
    color: white;
}

.road-map {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .test-drive-section .row {
        flex-direction: column;
    }

    .test-drive-section .col-md-6 {
        margin-bottom: 20px;
    }
}

@media (max-width: 570px) {
    .test-drive-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .test-p {
        font-size: 11px;

    }
}

/* Container for road and bike */
.road-container {
    position: relative;
    width: 100%;
    height: 91px;
    background-image: url('img/Rectangle 147.png');
    /* Use uploaded road image */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

/* Bike image styling */
.bike {
    position: absolute;
    bottom: 22px;
    /* Adjust bike position */
    left: 0;
    width: 70px;
    /* Adjust size of the bike */
    animation: moveBike 5s linear infinite;
    /* Bike animation */
}

/* Keyframes for bike movement */
@keyframes moveBike {
    0% {
        left: -200px;
        /* Start off-screen */
    }

    100% {
        left: 100%;
        /* Move to the other end */
    }
}




/* Footer Section */
.footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-h5 {
    font-size: 24px;
    font-weight: 700;
}

.footer-ul {
    font-size: 16px;
    font-weight: 400;
}

.footer .subscribe-btn {
    background-color: #ff8200;
    border: none;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
}

.footer .subscribe-btn:hover {
    background-color: #e56e00;
}

.footer .social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 18px;
}

.footer .social-icons a:hover {
    color: #ff8200;
}

.footer .copyright {
    border-top: 1px solid #333;
    margin-top: 20px;
    padding-top: 20px;
    font-size: 14px;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo-container img {
    max-width: 150px;
}

@media (max-width: 570px) {
    .footer-h5 {
        font-size: 20px;

    }

    .footer-ul {
        font-size: 14px;
    }

}

.owl-carousel .item img {
    display: block;
    width: 100%;
    height: auto;
}

.owl-carousel {
    margin: 10px auto;
}

@media (max-width: 800px) {
    .owl-carousel {
        display: none;
        /* Hide the carousel on screens smaller than 800px */
    }
}

.owl-carousel {
    text-align: center;
    /* Centers the carousel items */
}

.owl-carousel img {
    display: block;
    margin: 0 auto;
    /* Centers the images */
    max-width: 90%;
    /* Ensures the images don't exceed their container */
    height: auto;
    /* Maintains aspect ratio */
}

.owl-carousel .item {
    display: flex;
    justify-content: center;
    /* Align items horizontally */
    align-items: center;
    /* Align items vertically */
    height: 20px;
    /* Set a height to ensure consistent size */
}

.image-container {
    width: 50px;
    height: 50px;
    margin-left: 20px;
    position: relative;
}

.image-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: swap 2s infinite;
}

@keyframes swap {

    0%,
    50% {
        opacity: 1;
    }

    50.01%,
    100% {
        opacity: 0;
    }
}

.image-container img:nth-child(2) {
    animation-delay: 1s;
}

.image-container1 {
    width: 50px;
    height: 50px;
    margin-left: 20px;
    position: relative;
}

.image-container1 img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: abcd 4s infinite;
}


@keyframes abcd {

    0%,
    25% {
        opacity: 1;
    }

    25.01%,
    100% {
        opacity: 0;
    }
}

.image-container1 img:nth-child(2) {
    animation-delay: 1s;
}

.image-container1 img:nth-child(3) {
    animation-delay: 2s;
}

.image-container1 img:nth-child(4) {
    animation-delay: 3s;
}

.image-container2 {
    width: 50px;
    height: 50px;
    margin-left: 20px;
    position: relative;
}

.image-container2 img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: abcdef 2s infinite;
}


@keyframes abcdef {

    0%,
    50% {
        opacity: 1;
    }

    50.01%,
    100% {
        opacity: 0;
    }
}

.image-container2 img:nth-child(2) {
    animation-delay: 1s;
}

.image-container3 {
    width: 50px;
    height: 50px;
    margin-left: 20px;
    position: relative;
}

.image-container3 img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: abcdef 2s infinite;
}


@keyframes abcdef {

    0%,
    50% {
        opacity: 1;
    }

    50.01%,
    100% {
        opacity: 0;
    }
}

.image-container3 img:nth-child(2) {
    animation-delay: 1s;
}


.bike-content {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.bike-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(255, 165, 0, 0.2), rgba(255, 255, 255, 0.2), rgba(0, 128, 0, 0.2));
    filter: blur(150px);
    z-index: -1;
}

.feature-box {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 10px;
    margin: 10px auto;
    width: 170px;
    height: 170px;
}

.feature-box img {
    width: 50px;
    margin-bottom: 5px;
}

.feature-box h5 {
    font-size: 17px;
    font-weight: 700;
    margin: 5px 0;
    color: #1E1E1E;
}

.feature-box p {
    font-size: 13px;
    font-weight: 400;
}

.scooter-image {
    text-align: center;
    margin: 134px 0;
}

.scooter-image img {
    width: 250px;
    height: auto;
}

@media(max-width: 1440px) {
    .bike-container:hover {
        width: 400px;
        /* Expand container to full image width */
        height: 500px;
    }
}

@media (max-width: 1200px) {
    .feature-box {
        width: 150px;
        height: 150px;
    }

    .feature-box img {
        width: 40px;
    }

    .feature-box h5 {
        font-size: 15px;
    }

    .feature-box p {
        font-size: 11px;
    }

    .scooter-image img {
        width: 200px;
    }

    .bike-container:hover {
        width: 300px;
        /* Expand container to full image width */
        height: 500px;
    }
}

@media (max-width: 992px) {
    .feature-box {
        width: 110px;
        height: 130px;
    }

    .feature-box img {
        width: 30px;
    }

    .feature-box h5 {
        font-size: 13px;
    }

    .feature-box p {
        font-size: 10px;
    }

    .scooter-image img {
        width: 180px;
    }
}

@media (max-width: 768px) and (min-width: 580px) {
    .feature-box {
        width: 105px;
        height: auto;
    }

    .feature-box img {
        width: 40px;
        /* margin-left: 0%; */
        /* margin-right: 100px; */
    }

    .feature-box h5 {
        font-size: 14px;
    }

    .feature-box p {
        font-size: 11px;
    }

    .scooter-image img {
        width: 150px;
    }

    .scooter-image {
        margin: 50px 0;
    }

    .im {
        margin: 0%;
        margin-right: 0px;
    }

    .cm {
        margin-left: 100px;
        margin-top: 300px;
    }

    .mi {
        margin: 0%;
        margin-top: 190px;
    }
}

@media (max-width: 576px) {
    .feature-box {
        width: 185px;
        height: 180px;
    }

    .feature-box img {
        width: 30px;
    }

    .feature-box h5 {
        font-size: 13px;
    }

    .feature-box p {
        font-size: 13px;
    }

    .scooter-image img {
        width: 100%;
    }

    .scooter-image {
        margin: 0px 0;
        padding: 0px;
    }

    .mi {
        margin-left: 100px;
    }

    .im {
        margin-left: 45px;
    }

    .cm {
        /* margin: 0px; */
        margin-left: 10px;
        /* padding: 0%; */
        /* margin-bottom: 100px; */
    }

    .im1 {
        margin-left: 15px;
    }
}

@media (min-width: 300px) and (max-width: 400px) {

    .feature-box {
        width: 155px;
        height: auto;
        /* margin: 0%; */
    }

    .im {
        margin-left: 30px;
    }

    .mi {
        margin: 70px;
    }

    .mm {
        margin-left: 0%;

    }

}

