    body {
        margin: 0;
        font-family: "Poppins", sans-serif;
        color: #333;
    }
    /* Navbar Styles */
    
    h2,
    h1,
    h3 {
        text-transform: uppercase;
        font-weight: 700;
    }
    
    .navbar {
        background: #111;
        color: white;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        position: relative;
        /* parent for absolute positioning */
    }
    
    .nav-container {
        max-width: 1100px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }
    
    .logo {
        font-size: 1.4em;
        font-weight: bold;
        color: #e60000;
    }
    
    .nav-links {
        list-style: none;
        display: flex;
        margin: 0;
        padding: 0;
    }
    
    .nav-links li {
        margin-left: 25px;
    }
    
    .nav-links a {
        text-decoration: none;
        color: white;
        font-weight: bold;
        padding: 6px 10px;
        border-radius: 4px;
        transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
        display: inline-block;
        /* important for transform */
    }
    
    .nav-links a:hover {
        color: #fff;
        animation: flyUp 0.5s forwards;
        background: #c40000;
    }
    /* Keyframes for "fly up + fade out" */
    
    @keyframes flyUp {
        0% {
            transform: translateX(0);
            opacity: 1;
            -webkit-transform: translateX(0);
            -moz-transform: translateX(0);
            -ms-transform: translateX(0);
            -o-transform: translateX(0);
        }
        50% {
            transform: translateX(-10px);
            opacity: 0;
            -webkit-transform: translateX(-10px);
            -moz-transform: translateX(-10px);
            -ms-transform: translateX(-10px);
            -o-transform: translateX(-10px);
        }
        100% {
            transform: translateX(0px);
            opacity: 1;
            -webkit-transform: translateX(0px);
            -moz-transform: translateX(0px);
            -ms-transform: translateX(0px);
            -o-transform: translateX(0px);
        }
    }
    /* Dropdown container */
    
    .dropdown {
        position: relative;
        z-index: 8000;
    }
    
    .dropdown-menu {
        position: absolute;
        top: 100%;
        /* directly below navbar */
        right: 0;
        height: 800px;
        width: 1000px;
        background: #fff;
        /* or whatever color you want */
        display: none;
        /* hidden by default */
        z-index: 1000;
        padding: 20px;
        color: #333;
        transition: all 0.5s ease-in-out;
        border-radius: 10px;
        transform: translateX(40%);
    }
    
    .dropdown:hover .dropdown-menu {
        display: flex;
    }
    /* Left side categories */
    
    .menu-left {
        background: #f8f8f8;
        padding: 15px;
        width: 150px;
    }
    
    .menu-left ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .menu-left li {
        padding: 8px;
        cursor: pointer;
        font-weight: 600;
    }
    
    .menu-left li.active,
    .menu-left li:hover {
        color: #e60000;
    }
    /* Right side products */
    
    .menu-right {
        padding: 15px;
        display: flex;
        flex: 1;
    }
    
    .menu-items {
        display: flex;
        gap: 1px;
        flex-wrap: wrap;
    }
    
    .item {
        text-align: center;
    }
    
    .item img {
        width: 350px;
        border-radius: 5px;
        transition: transform 0.3s ease;
    }
    
    .item img:hover {
        transform: scale(1.05);
    }
    /* Mobile Responsive */
    
    @media (max-width: 768px) {
        .nav-links {
            flex-direction: column;
            background: #111;
            position: absolute;
            top: 60px;
            right: 0px;
            width: 100%;
            border-radius: 6px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
        }
        .nav-links li {
            margin: 15px 0;
            text-align: center;
        }
        .nav-links.show {
            max-height: 500px;
            /* enough to fit your menu */
            opacity: 1;
        }
        .menu-toggle {
            display: block;
            font-size: 1.6em;
            cursor: pointer;
        }
        .dropdown-menu {
            overflow-y: scroll;
            width: auto;
            position: relative;
            transform: translateX(00%);
            height: 200px;
        }
        .dropdown a {
            color: #e60000;
            background-color: transparent;
        }
        .item img {
            width: 100px;
        }
    }
    
    @media (min-width: 769px) {
        .menu-toggle {
            display: none;
        }
    }
    /* Hero Slider */
    /* Header Slider */
    
    .hero.owl-carousel {
        position: relative;
    }
    
    .owl-carousel .item {
        position: relative;
        height: 100vh;
        color: white;
        background-size: cover;
        background-position: center;
    }
    /* Keyframes for zoom effect */
    
    .owl-carousel .item .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.556);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .owl-carousel .item h1 {
        font-size: 3em;
        margin: 0;
    }
    
    .owl-carousel .item p {
        font-size: 1.2em;
        margin: 10px 0;
    }
    
    .owl-carousel .item a {
        background: #e60000;
        color: white;
        padding: 20px 40px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: all 0.5s ease-in-out;
    }
    
    .owl-carousel .item a:hover {
        background: transparent;
        border: #e60000 solid 1px;
    }
    /* Position dots inside slider at bottom center */
    
    .owl-carousel .owl-dots {
        position: absolute!important;
        bottom: 14%;
        /*distancefrombottomofslider*/
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
    }
    
    .owl-carousel .owl-dot {
        width: 20px;
        height: 20px;
        margin: 0 5px;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 50%;
        display: inline-block;
        cursor: pointer;
        transition: background 0.3s;
    }
    
    .owl-carousel .owl-dot.active {
        background: #e60000;
        /* active dot color */
    }
    
    .hero .owl-nav {
        visibility: hidden;
    }
    
    @media (max-width: 568px) {
        .owl-carousel .item {
            height: 50vh;
        }
    }
    /* Bike Show Section */
    
    section {
        padding: 60px 20px;
        max-width: 1100px;
        margin: auto;
    }
    
    section h2 {
        text-align: center;
        margin-bottom: 30px;
        font-size: 2.4rem!important;
    }
    /* Bikes grid */
    
    .bikes {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .bike-card {
        background: white;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }
    
    .bike-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .bike-card div {
        padding: 15px;
    }
    
    .bike-card h3 {
        margin: 0;
        font-size: 1.2em;
        color: #c40000;
    }
    
    .bike-card p {
        margin: 5px 0;
        color: #555;
    }
    
    .price {
        color: #e60000;
        font-weight: bold;
        margin-top: 10px;
    }
    /* Gallery */
    
    #gallery {
        padding: 0px 20px!important;
    }
    
    .gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
    }
    
    .gallery img:hover {
        transform: scale(1.6);
        border: 5px solid #e60000;
    }
    
    @media (max-width: 560px) {
        .gallery img:hover {
            transform: scale(0.9);
        }
    }
    /* all bikes  */
    /* Custom 7-column grid */
    
    .slider-wrapper {
        overflow: hidden;
        width: 100%;
        position: relative;
    }
    
    .slider-track {
        display: flex;
        gap: 0px;
        animation: scroll 20s linear infinite;
    }
    
    .slider-track:hover {
        animation-play-state: paused;
        /* pause on hover */
    }
    
    .bike img {
        width: 300px;
        /* adjust size */
        border-radius: 5px;
        transition: transform 0.3s;
    }
    
    .bike img:hover {
        transform: scale(1.1);
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
        /* scroll half the duplicated track */
    }
    /* Responsive */
    
    @media(max-width: 1200px) {
        .bike img {
            width: 80px;
        }
    }
    
    @media(max-width: 768px) {
        .bike img {
            width: 200px;
        }
    }
    
    @media(max-width: 480px) {
        .bike img {
            width: 200px;
        }
    }
    /* all bikes ends */
    /* bike show */
    
    #bike-show h1 {
        text-align: center;
        font-size: 2.4rem;
        color: #111;
    }
    
    .slider-container {
        max-width: 100%!important;
        margin: 50px auto;
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
    }
    
    .slide {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 40px;
        opacity: 0;
        transition: opacity 0.6s ease;
        position: absolute;
        /* make slides overlap */
        width: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
        /* disable clicks for hidden slides */
    }
    
    .slide.active {
        opacity: 1;
        position: relative;
        pointer-events: all;
        /* enable clicks for active slide */
    }
    
    .specs {
        flex: 1;
        padding-right: 30px;
    }
    
    .specs h2 {
        color: #e60000;
    }
    
    .bike-img {
        flex: 1;
        text-align: right;
        padding: 10px;
    }
    
    .bike-img img {
        max-width: 100%;
    }
    
    .controls {
        text-align: center;
        margin-top: 20px;
    }
    
    .controls button {
        background: #e60000;
        color: white;
        border: none;
        padding: 10px 20px;
        margin: 5px;
        border-radius: 5px;
        cursor: pointer;
    }
    
    .controls button:hover {
        background: #c40000;
    }
    /* Controls */
    
    .controls {
        text-align: center;
        margin-top: 20px;
    }
    
    .controls button {
        background: #e60000;
        color: white;
        border: none;
        padding: 10px 20px;
        margin: 5px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1em;
        font-weight: bold;
    }
    
    .controls button:hover {
        background: #c40000;
    }
    
    @media (max-width: 560px) {
        .slide {
            width: 100%;
            display: flex;
            flex-direction: column;
        }
        .bike-img {
            padding: 20px;
        }
        .specs {
            flex: 0;
            padding-right: 0px;
            margin-right: 100px;
        }
        .bike-img {
            flex: 0;
            margin-right: 100px;
            padding: 0px;
        }
    }
    /* bike show ends */
    /* location */
    
    #location {
        max-width: 100%!important;
    }
    
    #location h2 {
        color: #e60000;
    }
    
    #map {
        width: 100%;
        height: 400px;
    }
    /* location ends */
    /* highlits */
    
    .highlights {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem;
    }
    
    .section-title {
        text-align: center;
        font-size: 2rem;
        color: #c40000;
        margin-bottom: 2rem;
    }
    
    .highlight-card {
        display: flex;
        gap: 2rem;
        margin-bottom: 2rem;
        background: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.3s;
    }
    
    .highlight-card:hover {
        transform: translateY(-5px);
    }
    
    .highlight-text {
        flex: 1;
        padding: 1.5rem;
    }
    
    .highlight-text .category {
        font-size: 0.75rem;
        color: #888;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
    
    .highlight-text h3 {
        font-size: 1.5rem;
        margin: 0.5rem 0 1rem;
    }
    
    .highlight-text p {
        font-size: 1rem;
        color: #555;
        line-height: 1.5;
    }
    
    .highlight-link {
        display: inline-block;
        margin-top: 1rem;
        text-decoration: none;
        color: #e60000;
        font-weight: bold;
        font-size: 0.9rem;
    }
    
    .highlight-img {
        flex: 1;
        overflow: hidden;
    }
    
    .highlight-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }
    
    .highlight-card:hover .highlight-img img {
        transform: scale(1.05);
    }
    /* Responsive */
    
    @media (max-width: 768px) {
        .highlight-card {
            flex-direction: column;
        }
    }
    /* highlits */
    /* Footer */
    /* Footer Styles */
    
    .footer {
        background: #111;
        color: #ddd;
        padding: 50px 20px 20px;
    }
    
    .footer-container {
        max-width: 1600px;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .footer-col h3 {
        color: #e60000;
        margin-bottom: 15px;
    }
    
    .footer-col p {
        font-size: 0.95em;
        line-height: 1.6;
    }
    
    .footer-col ul {
        list-style: none;
        padding: 0;
    }
    
    .footer-col ul li {
        margin: 8px 0;
    }
    
    .footer-col ul li a {
        color: #ddd;
        text-decoration: none;
        transition: 0.3s;
    }
    
    .footer-col ul li a:hover {
        color: #e60000;
    }
    /* Social Icons */
    
    .social-links {
        display: flex;
        gap: 15px;
    }
    
    .social-links i {
        color: #ddd;
        transition: all 0.3s;
    }
    
    .social-links i:hover {
        color: #e60000;
    }
    /* Bottom Bar */
    
    .footer-bottom {
        margin-top: 30px;
        padding-top: 15px;
        border-top: 1px solid #333;
        font-size: 0.9em;
        color: #aaa;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        /* so it won't break on small screens */
        text-align: center;
    }
    
    .footer-bottom .footer-left,
    .footer-bottom .footer-center,
    .footer-bottom .footer-right {
        flex: 1;
        margin: 0 120px;
    }
    
    .footer-bottom .footer-center {
        text-align: center;
    }
    
    .footer-bottom .footer-center a {
        text-decoration: none;
        color: #c40000;
    }
    
    .footer-bottom .footer-left {
        text-align: left;
    }
    
    .footer-bottom .footer-right {
        text-align: right;
    }
    /* Hide default cursor */
    /* The dot cursor */
    
    @media (max-width: 768px) {
        .footer-bottom {
            display: block;
        }
        .footer-bottom .footer-left,
        .footer-bottom .footer-center,
        .footer-bottom .footer-right {
            flex: 1;
            margin: 0 0px;
            text-align: center;
            margin: 20px 0;
        }
    }
    
    .cursor-dot {
        position: fixed;
        top: 0;
        left: 0;
        width: 10px;
        height: 10px;
        background: #E43636;
        border-radius: 50%;
        pointer-events: none;
        transform: translate(-50%, -50%);
        transition: all 0.05s ease-in-out;
        z-index: 9999;
        opacity: 1;
    }
    /* Hover effect */
    
    .cursor-dot.hover {
        width: 70px;
        height: 70px;
        opacity: 0.4;
    }
    
    @media (max-width: 568px) {
        .cursor-dot {
            visibility: hidden;
        }
    }
    /* Floating Button Container */
    
    .floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        z-index: 999;
    }
    /* Go to Top Button */
    
    #goTopBtn {
        background-color: #e60000;
        color: #fff;
        border: none;
        padding: 12px 15px;
        border-radius: 50%;
        font-size: 18px;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        display: none;
        /* hidden by default */
    }
    
    #goTopBtn:hover {
        background-color: #c40000;
    }
    /* WhatsApp Button */
    
    #whatsappBtn {
        background-color: #25D366;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }
    
    #whatsappBtn img {
        width: 28px;
        height: 28px;
    }
    
    #whatsappBtn:hover {
        transform: scale(1.1);
    }
    
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
    /* loader */
    /* Loader container */
    /* Loader container */
    
    #loader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #111111;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        z-index: 9999;
    }
    /* Wrapper gets the coming animation */
    
    .wheel-wrapper {
        animation: coming 0.9s ease-out;
        -webkit-animation: coming 0.9s ease-out;
    }
    /* Wheel only spins */
    
    .loader-wheel {
        width: 80px;
        height: 80px;
        border: 8px solid #2a2a2a;
        border-top: 8px solid #e60000;
        border-radius: 50%;
        animation: spin 0.3s linear infinite;
        -webkit-animation: spin 0.3s linear infinite;
    }
    /* Text under wheel */
    
    .loader-text {
        margin-top: 30px;
        color: #e60000;
        font-family: "Poppins", sans-serif;
        font-size: 20px;
        letter-spacing: 2px;
        animation: coming 0.9s ease-out;
        font-weight: 900;
    }
    /* Spin = only rotation */
    
    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
    /* Coming = only movement + opacity */
    
    @keyframes coming {
        0% {
            transform: translateY(100px);
            opacity: 0;
            -webkit-transform: translateY(100px);
            -moz-transform: translateY(100px);
            -ms-transform: translateY(100px);
            -o-transform: translateY(100px);
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }
    /* Hide loader */
    
    #loader.hidden {
        opacity: 0;
        visibility: hidden;
    }