        /* Global Styles */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #1a1a1a;
        }

        header {
            width: 100%;
            height: 80px;
            background-color: #1a1a1a;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cursor {
            width: 20px;
            height: 20px;
            position: fixed;
            background-color: gray;
            border-radius: 50%;
            z-index: 2;
        }

        .logo img {
            width: 60px;
            height: 60px;
            filter: brightness(0) invert(1);
            margin-left: 15px;
        }

        nav {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 20px;
        }
        
        ul {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        ul li {
            list-style-type: none;
        }
        
        ul a {
            text-decoration: none;
            margin-right: 30px;
            color: white;
            text-transform: uppercase;
            position: relative;
        }
        
        ul a::after {
            position: absolute;
            content: " ";
            bottom: -5px;
            height: 2px;
            left: 0;
            width: 0;
            background-color: white;
            transition: 0.3s;
        }
        
        ul a:hover::after {
            width: 100%;
        }

        .btn {
            background-color: rgb(8, 8, 31);
            padding: 10px;
            border-radius: 100px;
            color: white;
            text-wrap: nowrap;
            border-color: transparent;
            cursor: pointer;
            margin-right: 30px;
        }

        .btn a {
            text-decoration: none;
            color: white;
        }

        .bar {
            display: none;
        }

        .close-icon {
            display: none;
        }

        .sign-up a {
            color: white;
            border-radius: 50%;
            border: 1px solid white;
            padding: 12px;
            margin: 15px;
        }

        @media screen and (max-width: 1024px) {
            .cursor {
                display: none;
            }
            .navlinks {
                display: block;
                position: absolute;
                top: 80px;
                right: 0;
                width: 100%;
                height: 90vh;
                background-color: rgba(0, 0, 0);
                display: none;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
                z-index: 999;
            }
            ul li {
                padding: 20px 0;
            }
            .bar {
                display: block;
                color: white;
                font-size: 30px;
                cursor: pointer;
                position: absolute;
                right: 20px;
                top: 20px;
            }
            .close-icon {
                font-size: 30px;
                position: absolute;
                right: 20px;
                top: 20px;
                cursor: pointer;
                color: white;
            }
            .navlinks.active {
                display: flex;
            }
            ul li {
                margin-bottom: 20px;
            }
            .sign-up {
                margin-right: 30px;
            }
        } 

        /* heading */
        .bike-page-heading {
            display: flex;
            justify-content: center;
            color: #ffffff;
        }
        .bike-page-heading h1 {
            font-size: 30px;
        }

        @media screen and (max-width:768px) {
            .bike-page-heading h1 {
                font-size: 20px;
            }
        }

        /* main */
        .bike-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
            background-color: #1a1a1a;
        }

        .bike-card {
            background-color: rgb(255, 255, 255);
            border: 1px solid #ddd;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            text-align: center;
            padding: 15px;
        }

        .bike-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .bike-card h2 {
            margin: 15px 0 10px;
        }
        .bike-card h2 a{
            color: #000000;
            text-decoration: none;
        }

        .bike-card p {
            margin: 5px 0;
        }

        .price {
            font-size: 1.2em;
            color: #4CAF50;
            margin: 10px 0;
        }

        .add-to-cart {
            display: inline-block; /* Make the anchor behave like a button */
            background-color: #28a745;
            color: white;
            border: none;
            border-radius: 5px;
            padding: 10px 15px;
            cursor: pointer;
            font-size: 1em;
            text-decoration: none; /* Remove underline from link */
            text-align: center; /* Center the text */
            transition: background-color 0.3s;
        }

        .add-to-cart:hover {
            background-color: #218838;
        }

        /* Footer Styling */
        footer {
            background-color: #393a3a; 
            padding: 40px 20px;
            position: relative;
            margin-top: 50px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap; /* Allow wrapping for responsiveness */
            gap: 20px; /* Adds space between sections */
        }

        .footer-section {
            flex-basis: 30%; 
        }

        .about {
            max-width: 100%; 
        }
        .contact p {
            text-align: center;
            margin: 5px;
        }
        .footer-section h2 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #ffffff;
            text-align: center;
        }

        .footer-section p, .footer-section ul {
            font-size: 14px;
            color: #ffffff;
        }

        .footer-section ul {
            display: flex;
            flex-direction: column;
            list-style-type: none;
            padding: 0;
        }

        .footer-section ul li {
            padding: 5px 0;
            margin-bottom: 5px; /* Adds spacing between links */
        }

        .footer-section ul li a {
            text-decoration: none;
            color: #ffffff;
            margin: 0;
            padding: 0;
        }

        .footer-bottom {
            text-align: center;
            font-size: 14px;
            color: #ffffff;
            padding-top: 30px; /* Margin from the top */
            border-top: 1px solid #000000; /* 1px border */
            position: relative;
        }

        /* Media Queries for smaller screens */
        @media screen and (max-width: 768px) {
            .about p {
                max-width: 70%;
                margin: auto;
                text-align: center;
            }
            .footer-section ul {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .footer-section ul li {
                margin: 0;
                padding: 0px;
                text-align: center; 
                padding-right: 0;
            }

            .footer-section ul li a {
                display: block; 
                text-align: center;
                margin: 2px;
            }

            .footer-content {
                display: block;
                justify-content: none;
                flex-wrap: nowrap;
                gap: 20px;
            }

            .contact,
            .links {
                margin-top: 15px;
            }

            .contact p {
                text-align: center;
                margin: 5px;
            }
        }