/* RESET & BASE */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #333;
}

.tv-img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.navbar.top-navbar {
    background-color: #ffffff;
}

.navbar.top-navbar .nav-link {
    font-size: 1rem;
    /* 16px */
    font-weight: 600;
    /* semi-bold */
    color: #000 !important;
    padding-top: 4px;
    padding-bottom: 4px;
}

.navbar.top-navbar .navbar-toggler {
    background: #000;
    color: #0b0000;
}


/* NAVBAR */

.navbar {
    background: #041E42;
}

.navbar.top-navbar {
    background-color: #ffffff;
}

.navbar.top-navbar .nav-link {
    color: black;
    font-weight: 600;
}

.navbar:not(.top-navbar) {
    background: #ffffff;
}

.navbar:not(.top-navbar) .nav-link {
    color: black;
    font-weight: 600;
}


/* HEADER */

header {
    background: linear-gradient(135deg, #011832, #033b7a);
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

header h1 {
    margin-bottom: 10px;
    letter-spacing: 1px;
}

header p {
    opacity: 0.9;
}


/* PRODUCTS */

.products {
    padding: 40px 20px;
}

.products h2 {
    /*Avialable Brands*/
    text-align: center;
    margin-bottom: -30px;
    font-size: 30px;
    margin-right: 10px;
}

.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;
}


/* FLEX GRID (3 + 3 + 2 CENTERED) */

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.products .grid {
    margin-top: 60px;
    /* push cards downward */
}





/*for 30% off code*/

.card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* image wrapper */
.img-wrapper {
    position: relative;
    text-align: center;
}

.img-wrapper img {
    max-width: 100%;
    height: auto;
}

/* OFFER BADGE */
.offer-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff3b3b;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}





/* CARD */

.card {
    width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    text-align: center;
    padding: 15px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}


/* CARD HOVER EFFECT */

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}


/* IMAGE */

.card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    transition: transform 0.3s ease;
}


/* IMAGE ZOOM ON HOVER */

.card:hover img {
    transform: scale(1.05);
}


/* TEXT */

.card h3 {
    margin: 15px 0 5px;
    font-size: 18px;
}

.card p {
    font-size: 17px;
    color: #ff8c00;
    font-weight: bold;
}


/* 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: 100px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}


/* 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;
}

.brand-track {
    display: flex;
    gap: 60px;
    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;
}

.brands h2 {
    margin-bottom: 40px;
}


/* HOVER EFFECT */

.brand-track img:hover {
    transform: scale(1.15);
}

.brand-carousel:hover .brand-list {
    animation-play-state: paused;
}


/* SCROLL ANIMATION */

@keyframes scrollBrands {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/* FOOTER */

.brands {
    background: white;
    padding: 40px 20px;
}


/* TABLET */

@media (max-width: 1024px) {
    .card {
        width: 280px;
    }
}


/* MOBILE */

@media (max-width: 600px) {
    .card {
        width: 100%;
        max-width: 320px;
    }
    .card img {
        height: 180px;
    }
    header h1 {
        font-size: 26px;
    }
    .products h2 {
        font-size: 22px;
    }
}



/* 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 TOP (BLUE) */

.footer-main {
    background: #041E42;
    color: #fff;
    padding: 28px 0;
    /* reduced height */
}

.footer-main p {
    margin-bottom: 6px;
    font-size: 14.5px;
    line-height: 1.5;
}

.footer-main h4 {
    font-weight: 600;
    margin-bottom: 6px;
}


/* FOOTER BOTTOM (WHITE STRIP) */

.footer-bottom {
    background: #ffffff;
    border-top: 1px solid #ddd;
    padding: 8px 0;
    /* very thin */
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 32px;
}


/* CENTER COPYRIGHT */

.footer-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13.5px;
    color: #333;
    white-space: nowrap;
}


/* RIGHT LINKS */

.footer-right {
    margin-left: auto;
}

.footer-right a {
    color: #333;
    text-decoration: none;
    margin-left: 20px;
    font-size: 13.5px;
    font-weight: 500;
}

.footer-right a:hover {
    text-decoration: underline;
}


/* BLUE INFO SECTION */

.hero-info {
    background: linear-gradient(#062b66, #041E42);
    padding: 60px 20px;
}

.hero-logo {
    width: 230px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-tagline {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-contact {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 15px;
}

.hero-contact .divider {
    margin: 0 10px;
    opacity: 0.8;
}

.hero-address {
    font-size: 15px;
    font-weight: 500;
    opacity: 0.95;
}


/* 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;
    }
}