
/* ===============================
   SLIDER (SAFE CLASSES)
================================ */
.slider-container {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .slide.active {
        opacity: 1;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.caption {
    position: absolute;
    bottom: 30%;
    left: 10%;
    color: white;
}

    .caption h1 {
        font-size: 3rem;
        font-weight: bold;
    }

    .caption p {
        font-size: 1.3rem;
    }

/* Slider buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    font-size: 30px;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}



/* ===== PROFESSIONAL NAVBAR ===== */

.custom-navbar {
    background: linear-gradient(90deg, #0f0f0f, #1c1c1c, #0f0f0f);
    padding: 12px 0;
    box-shadow: 0 6px 25px rgba(0,0,0,0.7);
}

/* LOGO */
.site-logo {
    height: 42px;
    width: auto;
}

/* BRAND TEXT */
.brand-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ff9800;
    letter-spacing: 0.5px;
}

    .brand-text span {
        color: #ffffff;
        font-weight: 600;
    }

/* NAV LINKS */
.navbar-nav .nav-link {
    color: #e0e0e0 !important;
    font-weight: 500;
    margin: 0 12px;
    position: relative;
}

    .navbar-nav .nav-link:hover {
        color: #ff9800 !important;
    }

    /* ACTIVE LINK */
    .navbar-nav .nav-link.active {
        color: #ff9800 !important;
    }

    /* ORANGE UNDERLINE */
    .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        background: #ff9800;
        left: 50%;
        bottom: -6px;
        transform: translateX(-50%);
        transition: 0.3s;
    }

    .navbar-nav .nav-link:hover::after {
        width: 100%;
    }

/* CALL BUTTON */
.call-btn {
    background: linear-gradient(45deg, #ff9800, #ffb300);
    color: #000;
    font-weight: 700;
    border-radius: 30px;
    padding: 7px 22px;
    border: none;
    box-shadow: 0 0 14px rgba(255,152,0,0.7);
}

    .call-btn:hover {
        transform: scale(1.05);
    }

/* MOBILE */
.navbar-toggler-icon {
    filter: invert(1);
}

/* MOBILE LOGO */
@media (max-width: 576px) {
    .site-logo {
        height: 34px;
    }

    .brand-text {
        font-size: 1.1rem;
    }
}


/* ===============================
   DROPDOWN
================================ */
.dropdown-menu {
    background: #111;
    border: 1px solid #ff8c00;
    border-radius: 10px;
    padding: 8px 0;
    z-index: 2000;
}

.dropdown-item {
    color: #fff;
    font-weight: 500;
    padding: 10px 20px;
}

    .dropdown-item:hover {
        background: #ff8c00;
        color: #000;
    }

.dropdown-toggle::after {
    border-top-color: #ff8c00;
}

.navbar-toggler-icon {
    filter: invert(1);
}
/*Index Page Product Auto Show Card*/

/*.card:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
}

.card-img-top {
    border-bottom: 1px solid #eee;
}*/

/* BIKE CARD */
.bike-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
}

    .bike-card:hover {
        transform: translateY(-8px);
    }

/* IMAGE */
.bike-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

    /*.bike-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }*/

    .bike-img img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* NO CUT */
        background: #fff;
    }


/* BADGE */
.bike-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #000;
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 20px;
}

/* BODY */
.bike-body {
    padding: 15px;
    text-align: center;
}

.bike-title {
    font-weight: 700;
    margin-bottom: 2px;
}

.bike-brand {
    font-size: 14px;
    color: #666;
}

/* PRICE */
.bike-price {
    font-size: 20px;
    font-weight: 800;
    color: #2e7d32;
    margin: 10px 0;
}

/* SPECS */
.bike-specs {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    margin: 10px 0;
}

    .bike-specs div {
        text-align: center;
        font-size: 13px;
    }

    .bike-specs strong {
        display: block;
        font-size: 14px;
    }

/*Details Page Neat Look*/

.table th {
    width: 150px;
    background: #f8f9fa;
}

img {
    max-height: 450px;
    object-fit: cover;
}
/*About Css*/
.about-hero {
    background: linear-gradient(135deg, #000000, #222222);
    padding: 80px 0;
}

.service-box {
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 10px;
    height: 100%;
    transition: 0.3s;
}

    .service-box:hover {
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        transform: translateY(-5px);
    }

.why-list li {
    font-size: 16px;
    margin-bottom: 10px;
}
/*Finance page*/

.finance-hero {
    background: linear-gradient(135deg, #111, #000);
    padding: 80px 0;
}

.finance-box {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
}

    .finance-box ul {
        padding-left: 18px;
    }

.doc-box {
    border: 1px dashed #ccc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.why-finance li {
    font-size: 16px;
    margin-bottom: 10px;
}
/*Contact Page*/
.contact-hero {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    padding: 80px 0;
}

.contact-box {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    transition: 0.3s;
}

    .contact-box:hover {
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        transform: translateY(-5px);
    }


    /*Details Form*/
/* BIKE DETAILS PAGE */

.details-image-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

    .details-image-card img {
        width: 100%;
        height: 420px;
        object-fit: cover;
    }

/* INFO CARD */
.details-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* PRICE */
.details-price {
    font-size: 28px;
    font-weight: 800;
    color: #2e7d32;
    margin-top: 10px;
}

/* SPECS */
.details-specs {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

    .details-specs div {
        text-align: center;
        font-size: 14px;
    }

    .details-specs span {
        display: block;
        color: #777;
        margin-bottom: 4px;
    }

    .details-specs strong {
        font-size: 16px;
    }

/* ACTION BUTTONS */
.details-actions .btn {
    min-width: 160px;
}
/*Footer Css*/
/* FOOTER */

.site-footer {
    background: #0f0f0f;
    color: #ccc;
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer-title {
    color: #ff8c00;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 8px;
        font-size: 14px;
    }

    .footer-links a {
        color: #ccc;
        text-decoration: none;
    }

        .footer-links a:hover {
            color: #ff8c00;
        }

.footer-divider {
    border-color: #333;
}

.footer-copy {
    font-size: 13px;
    color: #999;
}

/*Search Colomn*/
/* SEARCH BOX */

.search-box {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

/*Logo */

/* SITE LOGO */

.site-logo {
    height: 45px;
    width: auto;
}

.brand-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff8c00;
}

/* Mobile logo size */
@media (max-width: 576px) {
    .site-logo {
        height: 36px;
    }

    .brand-text {
        font-size: 1.1rem;
    }
}


/*Whats App Logo*/
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 9999;
    transition: 0.3s;
}

    .whatsapp-float:hover {
        transform: scale(1.12);
    }

.whatsapp-icon {
    width: 40px;
    height: 40px;
}
