/* Topbar wrapper */
.topbar {
    background: #247DB8;
    color: var(--text);
    padding: 4px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    font-size: 14px;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-family: poppins;
    font-weight: 500;
    gap: 8px;
}


.topbar a .icon {
    display: inline-flex;
    width: 18px;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}


.topbar .muted {
    color: var(--muted);
    font-size: 13px
}


/* small pill for clickable contact */
.pill {
    padding: 6px 10px;
}


/* responsive behaviour */
@media (max-width: 729px) {
    .topbar {
        display: none;
    }
}

nav {
    background-color: #fff;
    padding: 5px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
        rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    z-index: 1;
}

nav .logo {
    display: flex;
    align-items: center;
}



@media screen and (max-width: 390px) {
    .logo img {
        max-width: 265px;
        height: auto;
    }
}


nav .logo img {
    margin-top: 5px;
    height: 62px;
    width: auto;
    margin-right: 10px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    text-decoration: none;
    color: #247DB8;
    font-size: 96%;
    font-family: poppins;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 5px;
}

nav ul li a:hover {
    padding: 12px;
    background-color: #247DB8;
    color: #fff;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 1px;
    background-color: #1f1f1f;
    display: block;
    margin: 7px auto;
    margin-left: -5px;
    transition: all 0.3s ease-in-out;
}

.nav-links li a.active {
    padding: 12px;
    background-color: #247DB8;
    /* example color */
    color: #fff;
}


.menubar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 250px;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 1000;
    flex-direction: column;
    align-items: center;

    /* animation defaults */
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

/* when active -> visible */
.menubar.active {
    transform: translateX(0);
}

/* close button */
.close-btn {
    font-size: 28px;
    color: #666;
    position: absolute;
    top: -6px;
    right: 5px;
    cursor: pointer;
}




/* Media query: hide menubar on large screens (desktop) */
@media screen and (min-width: 1082px) {
    .menubar {
        display: none !important;
        /* desktop par sidebar hide */
    }

    .hamburger {
        display: none;
        /* hamburger bhi hide */
    }
}



.menubar .logo {
    text-align: start;
}

.menubar .logo img {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
    padding-bottom: 10px;
    border-bottom: 0.4px solid rgba(128, 128, 128, 0.448);

}

.active {
    left: 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.menubar ul {
    margin-top: 30px;
    padding: 0;
    list-style: none;
}

.menubar ul li {
    margin-bottom: 32px;
}

.menubar ul li a {
    text-decoration: none;
    color: #000;
    font-size: 95%;
    font-weight: 400;
    padding: 5px 10px;
    border-radius: 5px;
}

.menubar ul li a:hover {
    background-color: #f5f5f5;
}

@media screen and (max-width: 1083px) {
    .hamburger {
        display: block;
    }

    nav ul {
        display: none;
    }
}


/* Responsive hero slider improvements for mobile/tablet */
@media (max-width: 800px) {
    /* ...existing code... */
}

@media (max-width: 500px) {
    .new-slide {
        display: none !important;
    }

    .new-slide.active {
        display: flex !important;
    }

    .new-slide:first-child {
        display: flex !important;
    }

    #hero-slider {
        width: 100vw !important;
        height: 200px !important;
        min-height: 200px !important;
        max-width: 100vw !important;
        overflow: hidden;
    }

    .new-slider {
        width: 100vw !important;
        height: 200px !important;
        min-height: 200px !important;
        max-width: 100vw !important;
        overflow: hidden;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    #hero-slider {
        width: 100vw !important;
        height: 200px !important;
        min-height: 200px !important;
        max-width: 100vw !important;
        overflow: hidden;
        background: transparent !important;
    }

    .new-slider {
        width: 100vw !important;
        height: 200px !important;
        min-height: 200px !important;
        max-width: 100vw !important;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent !important;
    }

    .new-slide img {
        width: 100vw !important;
        height: 200px !important;
        object-fit: contain !important;
        margin: 0 !important;
        display: block;
        background: transparent !important;
    }

    #hero-slider .hero-content h1 {
        font-size: 0.95rem;
    }

    #hero-slider .hero-content p {
        font-size: 0.8rem;
    }
}

:root {
    --primary: #247DB8;
    --secondary: #003366;
    --accent: #F7931E;
    --light: #F8F9FA;
    --dark: #212529;
    --gray: #6C757D;
    --light-gray: #EAEAEA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: #f5f5f5;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    max-height: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 70px;
    width: auto;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 500;
}

.contact-item i {
    color: var(--accent);
}


/* Hero Section */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url(../images/img4.gif), url(../images/img3.gif);
    background-position: left center, right center;
    background-repeat: no-repeat, no-repeat;
    background-size: 50% 100%, 50% 100%;
    height: 450px;
    color: #fff;
    background-color: #000;
    position: relative;
}


.hero-content {
    max-width: 800px;
    background: rgba(0, 0, 0, 0.432);
    /* semi-transparent overlay for text visibility */
    padding: 30px;
    border-radius: 10px;
}

.hero-section h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 14px;
    margin-bottom: 30px;
}

.hero-section .btn {
    display: inline-block;
    padding: 8px 18px;
    background-color: #007bff;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
}

.hero-section .btn:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .hero-section {
        background-size: cover;
        background-position: center;
        flex-direction: column;
    }
}

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #e07d0a;
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    display: flex;
    padding: 20px 0;
    gap: 20px;
}

.content-left {
    flex: 0 0 250px;
    margin-left: 20px;
}

.category-menu {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.category-header {
    background-color: var(--secondary);
    color: white;
    padding: 15px;
    font-weight: 400;
    font-size: 1rem;
}

.category-list-aside {
    list-style: none;

}

.category-list-aside li {
    border-bottom: 1px solid #eee;
    font-size: 12px;
}

.category-list-aside li:last-child {
    border-bottom: none;
}

.category-list-aside li a {
    display: block;
    padding: 12px 15px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-list li a:hover {
    background-color: #f8f9fa;
    color: var(--primary);
    padding-left: 20px;
}

.content-right {
    flex: 1;
}

/* About Section */
.section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
}

.section-title {
    color: var(--primary);
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: var(--accent);
}

/* Products Section */
.products-section {
    margin-bottom: 40px;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.category-tab {
    padding: 8px 20px;
    background-color: #eee;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-tab:hover,
.category-tab.active {
    background-color: var(--primary);
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-img {
    height: 284px;
    background-color: #D3D3D3;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}



.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: 15px;
}

.product-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary);
}

.product-desc {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.product-link i {
    transition: transform 0.3s ease;
}

.product-link:hover i {
    transform: translateX(3px);
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary);
}

/* Testimonials */
.testimonials {
    background-color: var(--secondary);
    color: white;
    padding: 60px 0;
    margin: 0px 0;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    text-align: center;
    padding: 0 20px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text:before,
.testimonial-text:after {
    content: '"';
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
}

.testimonial-text:before {
    top: -20px;
    left: -15px;
}

.testimonial-text:after {
    bottom: -40px;
    right: -15px;
}

.testimonial-author {
    font-weight: 600;
    margin-top: 30px;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.whatsapp-icon {
    margin-top: 16px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .main-content {
        flex-direction: column;
    }

    .content-left {
        flex: 1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .nav-menu {
        flex-direction: column;
    }

    .hero {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }
}




/* ===== CSS: put in your stylesheet or inside <style> ===== */
/* New Responsive Slider Styles */
.new-slider-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #222;

    display: block;
}

.new-slider {
    position: relative;
    width: 100%;
    height: 450px;
    margin: 0 auto;
    display: block;
}

.new-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.new-slide.active {
    opacity: 1;
    z-index: 2;
}

.new-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




@media (max-width: 800px) {


    .new-slider-content h1 {
        font-size: 1.2rem;
    }

    .new-slider-content p {
        font-size: 0.95rem;
    }

    .new-slider-content {
        padding: 18px 8px;
        max-width: 95vw;
    }

    .new-slide img {
        width: 100%;
        height: 200px;
        object-fit: contain;
    }
}

@media (max-width: 500px) {


    .new-slider {
        height: 200px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .new-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
    }

    .new-slide img {
        width: auto;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        margin: auto;
        display: block;
    }
}