html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
}

.navbar {
    padding: 8px 20px;
}

.navbar:not(.top-navbar) .nav-link,
.navbar:not(.top-navbar) .dropdown-toggle {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    cursor: pointer;
}


/* ---------- TOP NAVBAR ---------- */

.navbar.top-navbar {
    background-color: #ffffff;
}

.navbar.top-navbar .nav-link {
    font-size: 1rem;
    /* 16px */
    font-weight: 600;
    /* semi-bold */
    color: #000;
    padding-top: 4px;
    padding-bottom: 4px;
}

.navbar.top-navbar .navbar-toggler {
    background: #000;
}


/* ---------- MAIN NAVBAR ---------- */

.navbar:not(.top-navbar) {  
    background-color: #ffffff;
}

.navbar:not(.top-navbar) .nav-link {
    color: black;
    font-weight: 600;
}


/* ---------- DROPDOWN ---------- */

.navbar .dropdown-menu {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 9999;
}

.bypionium {
    background-color: #ffffff;
}

.navbar .dropdown-item {
    color: #000 !important;
    font-weight: 500;
}

.navbar .dropdown-item:hover {
    background-color: #f1f1f1;
}

.container.mt-4 {
    margin-bottom: 70px;
}


/* FULL SCREEN SLIDER */

.carousel-wrapper {
    width: 100%;
    padding: 0;
    margin: 0;
    background: none;
}

.carousel {
    width: 100%;
}

.carousel-inner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.carousel-item {
    text-align: center;
}


/* HERO BLUE SECTION */

.hero-content {
    background: linear-gradient(#0b63c5, #062b66);
}


/* CATEGORY */

.category-box {
    display: flex;
    justify-content: center;
    margin: 0 40px;
}

.category-card {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    transition: 0.3s;
}

.category-card:hover {
    transform: scale(1.05);
}

.category-img {
    width: 300px;
    height: 200px;
    object-fit: contain;
}


/* PRODUCTS */

.product-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    transition: 0.3s;

    /* layout fix */
    height: auto;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.product-img-box {
    height: 160px; /* balanced for desktop + mobile */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.product-img-box img {
    max-width: 100%;
    max-height: 140px;
    width: auto;
    object-fit: contain;
}

.product-card h6 {
    margin: 15px 0 5px;
    font-size: 18px;
    font-weight: 700;
}

.product-card h5 {
    color: orange;
    margin: 5px 0 0;
}

.products-section {
    margin-bottom: 60px;
}

/* PRODUCTS */

.product-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    transition: 0.3s;

    /* layout fix */
    height: auto;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.product-img-box {
    height: 160px; /* balanced for desktop + mobile */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.product-img-box img {
    max-width: 100%;
    max-height: 140px;
    width: auto;
    object-fit: contain;
}

.product-card h6 {
    margin: 15px 0 5px;
    font-size: 18px;
    font-weight: 700;
}

.product-card h5 {
    color: orange;
    margin: 5px 0 0;
}

.products-section {
    margin-bottom: 60px;
}

/* Explore Button (Round/Pill + Center) */
.btn-explore {
    width: fit-content;
    padding: 12px 45px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;

    background: #0d6efd;
    color: #fff;
    border: none;

    display: inline-block;
    text-decoration: none;
    transition: 0.3s;

    /*  button center */
    margin: 10px auto 0 auto;
}

.btn-explore:hover {
    background-color: #e3963e;
    color: #fff;
}

.product-card a.btn-explore{
    margin: 10px auto 0 auto;
}

/* Mobile fix */
@media (max-width: 576px) {
    .product-card {
        padding: 18px 12px;
        min-height: 270px; /* Explore button visible rahega */
    }

    .product-img-box {
        height: 130px;
    }

    .product-img-box img {
        max-height: 110px;
    }

    .product-card h6 {
        font-size: 16px;
    }

    /*  mobile me bhi button perfect */
    .btn-explore {
        padding: 10px 35px;
        font-size: 15px;
    }
}



/* for brands */

.brands {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
}

.brand-list span {
    display: inline-block;
    margin: 10px;
    padding: 10px 22px;
    background: #eee;
    border-radius: 20px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.brands h2 {
    margin-bottom: 50px;
}


/* BRAND HOVER */

.brand-list span:hover {
    background: #011832;
    color: #fff;
    transform: scale(1.1);
}


/* BRAND CAROUSEL */

.brand-carousel {
    overflow: hidden;
    width: 100%;
    margin-top: 25px;
}

.brands h2 {
    margin-top: 50px;
    margin-bottom: 70px;
}

.brand-track {
    display: flex;
    gap: 120px;
    width: max-content;
    animation: scrollBrands 20s linear infinite;
}


/* BRAND LOGOS */

.brand-track img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}


/* HOVER EFFECT */

.brand-track img:hover {
    transform: scale(1.15);
    filter: grayscale(0%);
}


/* SCROLL ANIMATION */

@keyframes scrollBrands {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/* for whats app */

.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 25px;
    background: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: 0.3s ease-in-out;
}

.whatsapp-float img {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}


/* FOOTER */


/* FOOTER WRAPPER */


/* FOOTER RESET */

footer {
    margin: 0;
    padding: 0;
}


/* BLUE FOOTER AREA */

.footer-main {
    background: linear-gradient(180deg, #041E42, #02162f);
    padding: 60px 0 90px;
    /* ⬅ key spacing */
    color: #ffffff;
}


/* LEFT TEXT */

.footer-info-box p {
    margin-bottom: 6px;
    margin-top: 25px;
    font-size: 15px;
}


/* QUICK ENQUIRY BOX */

.quick-enquiry-box {
    background: #ffffff;
    padding: 22px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}


/* WHITE STRIP */

.footer-bottom {
    background: #ffffff;
    border-top: 1px solid #ddd;
    padding: 10px 0;
}


/* WHITE STRIP CONTENT */

.footer-bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 40px;
}


/* CENTER TEXT */

.footer-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: #333;
    white-space: nowrap;
}


/* RIGHT LINKS */

.footer-right {
    margin-left: auto;
}

.footer-right a {
    color: #333;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
}


/* QUICK ENQUIRY BOX */

.quick-enquiry-box {
    height: fit-content;
    position: relative;
    z-index: 2;
}

.quick-enquiry-box h5 {
    text-align: center;
    margin-bottom: 16px;
    font-weight: 600;
    color: black;
}

.quick-enquiry-box .form-control {
    font-size: 14px;
}

.quick-enquiry-box button {
    background-color: #0b63c5;
    border: none;
    font-weight: 600;
}

.quick-enquiry-box button:hover {
    background-color: #062b66;
}

.quick-enquiry-box {
    height: fit-content;
    .quick-enquiry-box {
        position: relative;
        z-index: 2;
    }
}

.select-wrapper {
    position: relative;
}

.select-icon-right {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #6c757d;
    pointer-events: none;
}

.select-with-icon {
    padding-left: 32px;
}

.select-with-icon-right {
    padding-right: 36px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}


/* MOBILE FIX */

@media (max-width: 768px) {
    .hero-title {
        font-size: 24px;
    }
    .hero-contact {
        display: block;
        line-height: 1.8;
    }
    .hero-contact .divider {
        display: none;
    }
    .footer-bottom-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }
    .footer-center {
        position: static;
        transform: none;
        white-space: normal;
        font-size: 13px;
        line-height: 1.4;
        max-width: 100%;
    }
    .footer-right {
        margin-left: 0;
    }
    .footer-right a {
        display: inline-block;
        margin: 0 8px;
        font-size: 13px;
    }
}