html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
}

.navbar {
    padding: 8px 20px;
}

.air-img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.carousel-inner img {
    width: auto;
    height: auto;
    /*height: 800px;  */
    /*min-height: 800px;*/
    object-fit: cover;
    display: block;
}


.carousel-item {
    text-align: center;
}

.carousel-wrapper {
    width: 100%;
    padding: 0;
    margin: 0;
    background: none;
}

.carousel {
    width: 100%;
}




/* ---------- TOP NAVBAR ---------- */

.navbar.top-navbar {
    background-color: #ffffff;
}

.navbar.top-navbar .nav-link {
    font-size: 1rem;
    /* 16px */
    font-weight: 700;
    font-family: Arial, sans-serif;
    line-height: 1.4;
    /* semi-bold */
    color: #000;
    padding-top: 4px;
    padding-bottom: 4px;
}

.navbar.top-navbar .navbar-toggler {
    background: #000;
}


/* Highlight Our Products & Visit Us (Main Navbar) */

.navbar:not(.top-navbar) .nav-link,
.navbar:not(.top-navbar) .dropdown-toggle {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    cursor: pointer;
}


/* ---------- MAIN NAVBAR ---------- */

.navbar:not(.top-navbar) {
    background-color: #ffffff;

}

.navbar:not(.top-navbar) .nav-link {
    color: Black;
    font-weight: 600;
}

.navbar:not(.top-navbar) .nav-link,
.navbar:not(.top-navbar) .dropdown-toggle {
    font-family: arial, Sans-Serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 6px;
}


/* ---------- DROPDOWN ---------- */

.navbar .dropdown-menu {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 9999;
}

.navbar .dropdown-item {
    color: #000 !important;
    font-weight: 500;
}

.navbar .dropdown-item:hover {
    background-color: #f1f1f1;
}


/* ============================= */


/* HEADER */


/* ============================= */

header {
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

header h1 {
    margin-bottom: 10px;
    letter-spacing: 1px;
}

header p {
    opacity: 0.9;
}


/* PRODUCTS */

.products {
    padding-top: 20px;
    padding-bottom: 80px;
    background: #f5f5f5;
}

.products h2 {
    text-align: center;
    margin-bottom: 300px;
    font-size: 28px;
    margin-top: 0px;
}



/*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);
}



/* Grid */

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.products .grid {
    margin-top: 50px;
    /* push cards downward */
}


/* 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 {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}


/* Card Image */

.card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.05);
}


/* Card Text */

.card h3 {
    margin: 15px 0 5px;
    font-size: 18px;
}

.card p {
    font-size: 17px;
    color: #ff8c00;
    font-weight: bold;
}


/* ============================= */


/* BRANDS */


/* ============================= */

.brands {
    background: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

.brands h2 {
    margin-bottom: 40px;
}


/* Brand Carousel */

.brand-carousel {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    padding: 30px 0;
}

.brand-list {
    display: flex;
    align-items: center;
    gap: 120px;
    width: max-content;
    animation: scroll 18s linear infinite;
}

.brand-list img {
    height: 80px;
    width: 300px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.brand-list img:hover {
    transform: scale(1.1);
}


/* Infinite scroll */

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* Pause on hover */

.brand-carousel:hover .brand-list {
    animation-play-state: paused;
}

.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 {
    background: #041E42;
    color: white;
    padding: 30px 0;
}


/* 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 BOTTOM WHITE STRIP */


/* FOOTER BOTTOM WHITE STRIP */

.footer-bottom {
    background: #ffffff;
    border-top: 1px solid #ddd;
    padding: 12px 0;
    font-size: 14px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* mobile support */
}


/* FOOTER BOTTOM WHITE STRIP */

.footer-bottom {
    background: #ffffff;
    border-top: 1px solid #ddd;
    padding: 12px 0;
}

.footer-bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 40px;
}


/* PERFECT CENTER */

.footer-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-align: center;
    white-space: nowrap;
}


/* RIGHT LINKS */

.footer-right {
    margin-left: auto;
}

.footer-right a {
    color: #333;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
}

.footer-right a:hover {
    text-decoration: underline;
}


/* FOOTER MAIN LAYOUT */

.footer-main {
    padding: 40px 0;
}

.footer-left-content h4 {
    margin-top: 15px;
    font-weight: 600;
}

.footer-left-content p {
    margin-bottom: 6px;
    font-size: 15px;
}


/* RESPONSIVE */


/* ============================= */

@media (max-width: 1024px) {
    .card {
        width: 280px;
    }
}

@media (max-width: 600px) {
    .card {
        width: 100%;
        max-width: 320px;
    }
    .card img {
        height: 180px;
    }
    header h1 {
        font-size: 26px;
    }
    .products h2 {
        font-size: 22px;
    }
}

.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;
    }
}