body {
    margin: 0;
    font-family: Arial, sans-serif;
}
.top-bar {
    background: #999;
    color: white;
    text-align: center;
    padding: 5px;
    font-size: 14px;
}
.sub-header {
    display: flex;
    justify-content: flex-end;
    background: #ccc;
    padding: 5px 20px;
    font-size: 14px;
}
.sub-header a {
    color: black;
    text-decoration: none;
    margin-left: 15px;
}
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: white;
    border-bottom: 1px solid #ddd;
    position: relative;
}
.logo img {
    height: 50px;
}
.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    display: none;
}
.nav-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto; /* Moves content to the right */
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}
.cart-btn {
    background: #28a745;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-left: auto; /* Ensures it stays on the right */
}
.cart-btn:hover {
    background: #218838;
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 10px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    .nav-links.show {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .main-header {
        display: flex;
        justify-content: space-between;
    }
    .nav-container {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: flex-end;
    }
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .cart-btn {
        position: absolute;
        right: 20px;
    }
}
/* banner section */
.banner-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.banner-section img {
    width: 100%;
    height: auto;
    display: block;
}
/* two wheeler */
.container {
    padding: 50px 20px;
    text-align: center;
}
h1 {
    font-size: 42px; /* Increased size */
    font-weight: bold;
    margin-bottom: 30px;
}
h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
}
.box {
    background-color: #fcca64; /* Darker shade */
    padding: 60px;
    width: 70%; /* Increased width */
    margin: auto;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}
.box:hover {
    transform: scale(1.05);
}
.bike-icon {
    width: 70px;
    height: auto;
    margin-bottom: 20px;
}
.apply-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    border: 2px solid #d88d0c;
    background: transparent;
    color: #d88d0c;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
.apply-button:hover {
    background: #d88d0c;
    color: white;
}
/* all wheeler */
.container {
    padding: 50px 20px;
    text-align: center;
}
h1 {
    font-size: 48px; /* Bigger size */
    font-weight: bold;
    margin-bottom: 30px;
}
h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}
.box {
    padding: 60px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}
.box:hover {
    transform: scale(1.05);
}
.box:nth-child(1) { background-color: #49d3f2; }
.box:nth-child(2) { background-color: #eaf2fd; }
.box:nth-child(3) { background-color: #66a8ff; }
.box:nth-child(4), .box:nth-child(5), .box:nth-child(6) {
    background-color: #e6f7ff;
    padding: 40px; /* Reduced size for last three boxes */
}
.icon {
    width: 70px;
    height: auto;
    margin-bottom: 20px;
}
.apply-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    border: 2px solid #d88d0c;
    background: transparent;
    color: #d88d0c;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
.apply-button:hover {
    background: #d88d0c;
    color: white;
}
/* footer ki upper wala section hai  */
.custom-footer {
    background-color: white;
    padding: 50px 0;
}
.custom-category-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.custom-category-box {
    background: #fff;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    max-width: 200px;
    transition: transform 0.3s ease-in-out;
}
.custom-category-box:hover {
    transform: scale(1.1);
}
.custom-category-box a {
    text-decoration: none;
    color: green;
    font-weight: bold;
}
.custom-category-box a:hover {
    text-decoration: underline;
}
.custom-info-section {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    padding: 40px 0;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    position: relative;
}
.custom-info-section::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background-color: gray;
}
.custom-info-section div {
    padding: 20px;
    flex: 1;
    min-width: 200px;
}
.custom-footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30px 0;
}
.custom-footer-column {
    flex: 1;
    min-width: 200px;
    padding: 20px;
}
.custom-footer-column h3 {
    font-size: 1.2rem;
    font-weight: bold;
}
.custom-footer-column ul {
    list-style: none;
    padding: 0;
}
.custom-footer-column ul li {
    margin: 5px 0;
}
.custom-footer-column ul li a {
    text-decoration: none;
    color: blue;
}
.custom-footer-column ul li a:hover {
    text-decoration: underline;
}
.custom-payment-img {
    max-width: 250px;
    display: flex;
    justify-content: flex-end;
}
.custom-payment-img img {
    width: 100%;
    height: auto;
}
/* footer section  */
/* Footer Styles */
.site-footer {
    background-color: #4a4a4a;
    color: #ccc;
    padding: 20px 0;
    text-align: center;
}

/* Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

/* Footer Left */
.footer-left p {
    margin: 0;
    font-size: 14px;
}

/* Footer Right */
.footer-right {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* Payment Icons */
.footer-right img {
    width: 50px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}
.footer-right img:hover {
    filter: grayscale(0%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-right {
        justify-content: center;
        margin-top: 10px;
    }
    .footer-right img {
        width: 40px;
    }
}