/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}

html,
body {
    scroll-behavior: smooth;
}


.container {
    max-width: 1200px;
    margin: auto;
    padding: 12px;

}

a {
    text-decoration: none;
}

.main_wrapper {
    overflow-x: hidden !important;
} */


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 12px;
}

a {
    text-decoration: none;
}

body,
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
.main_wrapper {
    overflow: hidden;
}


/* loader */

/* Loader Wrapper */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Spinner Animation */
.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #ddd;
    border-top-color: #15367D;
    /* your theme color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Hide loader when done */
#loader.fade-out {
    opacity: 0;
    visibility: hidden;
}


/* ---------- Top Header ---------- */
/* ===== Top Header ===== */
.top-header {
    background: linear-gradient(90deg, #286400, #095f51);
    color: #fff;
    font-size: 15px;
    padding: 0;
    margin: 0;
    position: relative;

}

.top-header a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.top-header a:hover {
    text-decoration: underline;
}

.top-header i {
    margin-right: 6px;
    color: #fff;
}

.social-icons {
    position: absolute;
    right: 0;
    top: 10px;
}

.social-icons a {
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #e0f7fa;
    transform: scale(1.1);
}

/* Separator only on medium screens and up */
.separator {
    margin: 0 10px;
}

/* Responsive behavior */
@media (max-width:768px) {
    .contact-info {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        margin-top: 5px;
    }

    .social-icons {
        display: none;
    }
}


@media (max-width: 480px) {
    .top-header {
        font-size: 13px;
        padding: -3px;
    }

    .social-icons a {
        font-size: 16px;
        margin-right: 4px;
    }
}

.product-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute !important;
    z-index: 9999 !important;
}

.product-dropdown:hover .dropdown-menu {
    display: block !important;
}


/* ---------- Navbar ---------- */
.navbar_wrapper {
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    /* or your site color */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1050;
}

/* shadow when scrolled */
.navbar_wrapper.scrolled {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* Fallback: fixed header (if you prefer always-fixed) */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-brand img {
    height: 80px;
    width: 100%;
    margin-left: 30px;
}

@media (max-width:765px) {
    .navbar-brand img {
        height: 60px;
        width: 100%;
        margin-left: 0;
    }
}

.navbar-toggler {
    background: transparent;
    color: #000000;
    border: 1px solid #000;
    padding: 2px 8px;
    border-radius: 5px;
}

.navbar-nav .nav-link {
    color: #000000;
    font-weight: 500;
    padding: 8px 16px;
    transition: color 0.3s ease;
    font-size: 17px;
    margin: 10px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #312c1f !important;
    font-size: 18px;
    font-weight: 500;
    /* green accent */
}

.offcanvas-header {
    border-bottom: 1px solid #000;
}

.offcanvas-header img {
    max-height: 70px;
}

.offcanvas-title {
    display: flex;
}

.offcanvas-body {
    background: #ffffff;
}

.Consult_btn {
    background-color: #020020;
    padding: 10px 35px;
    margin-right: 20px;
    transition: 0.3s ease-in-out;
    border-radius: 10px;
    color: #ffffff;
}

.Consult_btn a {
    color: #ffffff;
}

.Consult_btn:hover {
    background: #15367D;
}

@media (max-width:765px) {
    .Consult_btn {
        background-color: #15367D;
        padding: 10px;
        width: 50%;
        margin-right: 20px;
        margin-top: 10px;
        transition: 0.3s ease-in-out;
    }
}


@media (max-width: 991px) {
    .dropdown-menu {
        border: none;
        box-shadow: none;
    }

    .dropdown-item {
        padding-left: 25px;
    }
}

/* navbar-exit */

/* banner */
.banner_wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #2150f4, #003cff);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

/* Canvas for animated particles */
#bannerParticles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Content above particles */
.banner_content {
    position: relative;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
}

.banner_content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

@media (max-width:678px) {
    .banner_content h1 {
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 15px;
    }

}

.breadcrumb {
    display: inline-block;
    background: #ffffff;
    padding: 8px 18px;
    border-radius: 10px;
    backdrop-filter: blur(6px);
    font-size: 16px;
    color: #000000;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.breadcrumb a {
    color: #000000;
    /* warm golden yellow accent */
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb a:hover {
    color: #494949;
    text-decoration: underline;
}

.breadcrumb span {
    color: #000000;
    opacity: 1;
}

/* banner exit */


/* carousal */
/* Main carousel images */
.carousel-item {
    position: relative;
    overflow: hidden;
}
.carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35); /* Adjust darkness */
    pointer-events: none;
}

.carousel-item img {
    width: 100%;
    height: 500px;
    /* Desktop height */
    object-fit: cover;
    object-position: center;
}

/* 📱 Mobile Responsive Fix */
@media (max-width: 768px) {
    .carousel-item img {
        height: auto;
        object-fit: contain;
        object-position: center;
        justify-content: center;
        /* margin-top: -66px; */
    }


    .carousel-caption {
        bottom: 40px;
        /* Move captions up for small screens */
        padding: 0 10px;
    }

    .carousel-caption h5 {
        font-size: 1.3rem;
        padding: 6px 12px;
    }

    .carousel-caption p {
        font-size: 0.9rem;
        padding: 5px 10px;
    }
}


/* Bubble Animation */
.bubble-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.bubble-container::before,
.bubble-container::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Create random bubbles using multiple pseudo-elements */
.bubble-container span {
    position: absolute;
    bottom: -50px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: bubble 10s infinite ease-in;
}

/* Generate multiple bubbles with different positions and sizes */
.bubble-container span:nth-child(1) {
    left: 10%;
    animation-duration: 12s;
    width: 15px;
    height: 15px;
}

.bubble-container span:nth-child(2) {
    left: 25%;
    animation-duration: 8s;
    width: 25px;
    height: 25px;
}

.bubble-container span:nth-child(3) {
    left: 40%;
    animation-duration: 10s;
    width: 20px;
    height: 20px;
}

.bubble-container span:nth-child(4) {
    left: 60%;
    animation-duration: 14s;
    width: 30px;
    height: 30px;
}

.bubble-container span:nth-child(5) {
    left: 75%;
    animation-duration: 9s;
    width: 18px;
    height: 18px;
}

.bubble-container span:nth-child(6) {
    left: 85%;
    animation-duration: 11s;
    width: 22px;
    height: 22px;
}

@keyframes bubble {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(-700px) scale(1.2);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .carousel-caption h5 {
        font-size: 1.4rem;
    }

    .carousel-caption p {
        font-size: 0.95rem;
    }

    .carousel-caption {
        bottom: 80px;
    }
}

/* carousal-exit */

/* feature_section */

.features-section {
    padding: 80px 20px;
    background: #DAFFD1;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #BC1F15;
    margin-bottom: 50px;
}

.section-title span {
    color: #34304e;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #000000;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: -70%;
    left: -70%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 91, 139, 0.15), transparent 70%);
    transform: scale(0);
    transition: 0.6s ease;
    z-index: 0;
}

.feature-card:hover::before {
    transform: scale(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.feature-card .icon {
    font-size: 30px;
    color: #1d233d;
    background: #ffffff;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease;
}

.feature-card:hover .icon {
    transform: rotate(15deg) scale(1.1);
}

.feature-card h3 {
    font-size: 28px;
    font-weight: 600;
    color: #2b2547;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #020202;
    font-size: 0.97rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 30px 20px;
    }
}

/* feature_section_exit */

/* about_section */
/* 🌟 Section Layout */
.about-section {
    position: relative;
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #efffeb;
    overflow: hidden;
    z-index: 1;
}



.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
}

/* 🟣 Circular Image Comparison */
.image-comparison {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
}

.img-wrapper {
    position: relative;
    width: 360px;
    height: 360px;
    overflow: hidden;
    border-radius: 50%;
    border: 8px solid #dd1f1f;
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.3);
    background: #fff;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}

.before-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%;
    transition: width 0.3s ease;
}

.before-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* 🎚️ Slider Button */
.slider-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    background: #ca1818;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: ew-resize;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4);
    transition: background 0.3s ease;
}

.slider-btn:hover {
    background: #ff672b;
}

/* 🧴 About Content */
.about-content {
    flex: 1 1 45%;
    color: #333;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.about-content h2 span {
    color: #AF1A12;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 15px;
}

.btn-learn {
    display: inline-block;
    background: #bd1a1a;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-learn:hover {
    background: #0097a7;
}

/* 📱 Responsive Design */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        order: 2;
    }

    .image-comparison {
        order: 1;
    }

    .img-wrapper {
        width: 280px;
        height: 280px;
    }
}

/* about_section_exit */

/* 🌿 Light Green Theme */
.eco-product-section {
    background: rgb(248, 255, 245);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.eco-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 50px;
    transition: all 0.4s ease;
}

.eco-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.eco-image {
    text-align: center;
}

.eco-image img {
    width: 100%;
    max-width: 380px;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.eco-image img:hover {
    transform: scale(1.05);
}

.eco-content {
    color: #062012;
}

.eco-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.eco-content h2 span {
    color: #007038;
    font-size: 30px;
}

.eco-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #000;
    font-weight: 600;
}

.eco-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #000000;
    font-weight: 500;
}

.eco-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.eco-content ul li {
    margin-bottom: 6px;
    font-size: 0.98rem;
    color: #000000;
    font-weight: 600;
}

.eco-details {
    background: #f5fff6;
    border: 2px dashed #9fd9a2;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
}

.btn-whatsapp {
    display: inline-block;
    background: linear-gradient(90deg, #07b54b, #059c3b);
    color: #fff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(5, 156, 59, 0.3);
}

.btn-whatsapp:hover {
    background: #048d33;
    transform: translateY(-3px);
}

.eco-content a {
    display: inline-block;
    width: 100%;
    max-width: 320px;
    /* optional: keep consistent button width */
    text-align: center;
    padding: 12px 20px;
    margin-bottom: 12px;
    /* spacing between buttons */
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #00a859;
    color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* Distributor Button */
.btn-distributor {
    background: #0b7d2b;
    color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* Hover effect */
.eco-content a:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    transition: 0.25s ease;
}

/* 🌿 Responsive */
@media (max-width: 992px) {
    .eco-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 35px;
    }

    .eco-image img {
        max-width: 320px;
        margin-bottom: 25px;
    }

    .eco-content h2 {
        font-size: 1.8rem;
    }

    .eco-content p {
        font-size: 0.95rem;
    }
}

.btn-distributor {
    background-color: #048d33;
    padding: 15px 25px;
    border-radius: 20px;
    color: #fff;
}

/* Features List */
.features_list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.features_list li {
    background: #fff5f5;
    border-left: 4px solid #b30000;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.features_list li:hover {
    background: #ffecec;
}

/* Product Details Table */
.details_table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    background: #fafafa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.details_table div {
    color: #444;
    font-size: 0.95rem;
}

/* Manufacturer Info */
.manufacturer_info {
    background: #fff5f5;
    padding: 20px;
    border-left: 4px solid #b30000;
    border-radius: 10px;
}

.manufacturer_info h4 {
    color: #b30000;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .product_wrapper {
        flex-direction: column;
    }

    .product_image {
        padding: 20px;
    }

    .product_content {
        padding: 30px;
    }

    .details_table {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .product_content h1 {
        font-size: 1.6rem;
    }

    .product_content {
        padding: 20px;
    }

    .features_list li {
        font-size: 0.9rem;
    }
}

/* products */

/* Our all products  */
.dual-products-section {
    padding: 60px 0;
    background: #f7f7f7;
}

.section-heading {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

.dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.side-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mini-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.mini-card img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.mini-card p {
    margin: 0;
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .dual-grid {
        grid-template-columns: 1fr;
    }
}

/* Our all products exit */
/* gallery */

/* Section */
.modern-gallery {
    padding: 50px 20px;
    background: #f7f7f2;
    text-align: left;
}

/* Title */
/* Title */
.gallery-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-left: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #222;
    text-align: center;
}

/* Video */
.gallery-video {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.gallery-video video {
    width: 100%;
    max-width: 1000px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.20);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-video video:hover {
    transform: scale(1.01);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.28);
}

/* Image Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1140px;
    margin: auto;
}

/* Each Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #f0f0f0;
}

/* Image */
.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.35s ease;
}

/* Hover Zoom */
.gallery-item:hover img {
    transform: scale(1.10);
    filter: brightness(0.85);
}

/* Caption */
.gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.60);
    color: #fff;
    font-size: 15px;
    padding: 8px 12px;
    font-weight: 500;
    backdrop-filter: blur(2px);
    transition: opacity 0.3s ease;
}

.gallery-item:hover .caption {
    opacity: 1;
}

/* Responsive Screens */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item img {
        height: 210px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item img {
        height: 200px;
    }
}

/* FIXED MOBILE VERSION — Show 2 Images Per Row */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 10px;
    }

    .gallery-item img {
        height: 170px;
    }
}

/* gallery exit */
/* why choose us */
.why-choose-section {
    padding: 100px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* ✨ Title */
.why-choose-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.why-choose-section h2 span {
    color: #B11A13;
}

.subtitle {
    color: #000000;
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.6;
}

/* 🟦 Grid Layout */
.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Desktop */
    gap: 25px;
}

/* 📱 Mobile: 2 cards per row */
@media (max-width: 768px) {
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

/* 📱 Extra Small: 1 card per row (optional) */
@media (max-width: 480px) {
    .choose-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}



/* 💧 Individual Cards */
.choose-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 25px;
    box-shadow: 0 8px 25px rgba(41, 19, 233, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #000000;
}

.choose-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(122, 192, 125, 0.2), transparent);
    transition: all 0.4s ease;
}

.choose-card:hover::before {
    top: 0;
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* 🧩 Icons */
.icon {
    width: 70px;
    height: 70px;
    background: #A31610;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    margin: 0 auto 20px;
    transition: 0.3s ease;
}

.choose-card:hover .icon {
    background: #000000;
}

/* 🧴 Card Text */
.choose-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #003a53;
    margin-bottom: 15px;
}

.choose-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* 📱 Responsive */
@media (max-width: 768px) {
    .why-choose-section h2 {
        font-size: 32px;
    }

    .choose-card {
        padding: 30px 20px;
    }
}

/* why choose us exit */

/* imnportant things  */
.important_things_wrapper {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdfbfb 0%, #e0c9c9 100%);
    font-family: 'Poppins', sans-serif;
}

.important_things_wrapper h3 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 50px;
}

.important_things_wrapper h3 span {
    color: #851212;
    font-size: 35px;
}

/* UL Styling */
.important-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.important-list li {
    background: #ffffff;
    border-left: 5px solid #374b4d;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(172, 121, 121, 0.52);
    font-size: 1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.important-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(224, 27, 27, 0.2);
}

.important-list strong {
    /* color: #be2121; */
    color: #1d3146;
    font-weight: 600;
    font-size: 20px;
}

/* Video Styling */
.video-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;


}

.video-wrapper video {
    width: 80%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
    .important_things_wrapper {
        padding: 60px 20px;
    }

    .important_things_wrapper h3 {
        font-size: 1.8rem;
    }

    .important-list li {
        font-size: 0.95rem;
    }

    .video-wrapper {
        margin-top: 30px;
    }

    .video-wrapper video {
        width: 100%;
        height: 500px;
        border-radius: 15px;
        object-fit: cover;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 576px) {
    .important_things_wrapper h3 {
        font-size: 1.6rem;
    }
}

/* important things exit */

/* product wrapper */
.best-products-section {
    background: linear-gradient(135deg, #eafbea, #d3ffd3);
    padding: 60px 20px;
    text-align: center;
}

.section-heading {
    font-size: 28px;
    font-weight: 700;
    color: #0b5137;
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
}

.section-heading::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #0b5137;
    margin: 10px auto;
    border-radius: 5px;
}

@media (max-width:768px) {
    .section-heading {
        font-size: 23px;
    }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    justify-items: center;
}

.product-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 280px;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 80%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px 5px 8px 8px;
}


.product-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info h4 {
    font-size: 19px;
    font-weight: 500;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.4;
}

.btn-shop {
    background-color: #0b5137;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-shop:hover {
    background: #097c53;
}

.view-all {
    margin-top: 40px;
}

.btn-view-all {
    background: #0b5137;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #097c53;
    transform: scale(1.05);
}

/* 📱 Responsive for Mobile View (Side-by-side layout) */
@media (max-width: 768px) {
    .product-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 10px;
        width: 100%;
    }

    .product-card img {
        width: 40%;
        height: 120px;
        border-radius: 10px;
    }

    .product-info {
        width: 60%;
        padding-left: 15px;
    }

    .product-info h4 {
        font-size: 18px;
        font-weight: 500;
    }

    .btn-shop {
        padding: 7px;
        font-size: 13px;
    }
}

.dual-products-section .mini-card {
    padding: 15px;
    border-radius: 10px;
    background: #f5f5f5;
    text-align: center;
    transition: 0.3s ease;
}

/* Assign different background colors */
.side-box .mini-card:nth-child(1) {
    background: #FFE5E5;
}

/* light red */
.side-box .mini-card:nth-child(2) {
    background: #E5F4FF;
}

/* light blue */
.side-box .mini-card:nth-child(3) {
    background: #E8FFE5;
}

/* light green */
.side-box .mini-card:nth-child(4) {
    background: #FFF7E5;
}

/* light yellow */
.side-box .mini-card:nth-child(5) {
    background: #F3E5FF;
}

/* light purple */

/* Hover effect */
.dual-products-section .mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}




/* product_wrapper_exit */
/* mission&vission */

.mission-vision-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #202020;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}


.mission-card,
.vision-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #1e3c72;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.mission-card h3,
.vision-card h3 {
    color: #1e3c72;
    font-weight: 700;
    margin-bottom: 15px;
}

.mission-card p,
.vision-card p {
    font-size: 1.05rem;
    color: #000000;
    line-height: 1.8;
}

/* 📱 Responsive */
@media (max-width: 768px) {

    .mission-card,
    .vision-card {
        margin-bottom: 30px;
        padding: 30px 20px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .section-title p {
        font-size: 23px;
    }
}



/* missionVissionexit */



/* FOOTER START */

/* Conversation_section */
.conversation-section {
    background-color: #EFAD1D;
    padding: 40px 20px;
}

.conversation-content h2 {
    color: #fff;
    /* Navy blue text */
    font-size: 35px;
    font-weight: 600;
    margin: 10px 0;
}

.conversation-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 768px) {
    .conversation-content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .whatsapp-btn {
        margin: 0 auto;
    }

    .conversation-content h2 {
        font-size: 30px;
        font-weight: 700;
    }
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #1ebd5b;
}

.whatsapp-btn i {
    font-size: 20px;
}

/* conversation end */

/* /* contact */

.Contact_wrapper {
    width: 100%;
    margin: 0;


}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.content_wrap {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 60px 0;
}

.address_area {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.address_area:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.address_area h3 {
    font-size: 26px;
    color: #222;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
}

.address_area h3::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #007bff;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.address_area ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.address_area ul li {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.address_area ul li i {
    color: #007bff;
    font-size: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .address_area {
        padding: 30px 20px;
    }

    .address_area h3 {
        font-size: 22px;
    }

    .address_area ul li {
        font-size: 16px;
        flex-direction: column;
        gap: 5px;
    }
}

.contact-card .contact-info p {
    font-size: 20px;
}

/* -------------------------- */

.contact-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff8d6 0%, #fffdf7 100%);
}

.contact-title {
    text-align: center;
    margin-bottom: 40px;
}

.contact-title h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #292013;
}

.contact-title p {
    font-size: 1.1rem;
    color: #000000;
}

.contact-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.contact-info i {
    color: #ff9800;
    margin-right: 8px;
}

/* ---- BUTTONS ---- */
.contact-buttons {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.contact-buttons .btn {
    flex: 1 1 30%;
    min-width: 120px;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
}

/* Button Colors */
.btn-call {
    background: #0288d1;
    color: #fff;
}

.btn-email {
    background: #8e24aa;
    color: #fff;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

/* Hover effects */
.contact-buttons .btn:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    transition: 0.25s ease;
}

/* -------- MOBILE FIX -------- */
@media (max-width: 576px) {
    .contact-buttons {
        flex-direction: column;
    }

    .contact-buttons .btn {
        width: 100%;
    }
}

/* contact Exit */

/* available section */
.available-section {
    background: #e7e7e7;
    padding: 40px 0;
    text-align: center;
}

.available-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 600;
}

.available-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.available-logos img {
    width: 200px;
    height: 100px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.available-logos img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

/* Mobile responsive */

@media (max-width: 576px) {
    .available-logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 10px;
    }

    .available-logos img {
        width: 100%;
        max-width: 140px;
        margin: 0 auto;
    }
}



/* available section exit */

/* footer_start */
.footer {
    background-color: #000000;
    color: #fff;
    padding: 50px 20px 0 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: auto;
    max-width: 1200px;
}

.footer-column {
    flex: 1 1 220px;

}

.footer-column h4 {
    position: relative;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 5px;
}

.footer-column ul,
.footer-column a {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}

.footer-column p {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    width: 250px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.footer-column a:hover {
    color: #00B86A;
    font-weight: 600;
}


.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons img {
    width: 18px;
    height: 18px;
    filter: brightness(1) invert(1);
    /* makes icons white */
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.2);
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        /* margin: 20px 0; */
        margin: 0;
    }
}


/* footer_End */
/* copyright */
.copyright-section {
    padding: 10px;
    text-align: center;
    border-top: 1px solid #fff;
    font-size: 12px;
    background-color: #033f08;
}

.copyright-section a {
    color: red;
    font-weight: 500;
    text-decoration: none;
    color: #fff;

}

.copyright-section p {
    font-size: 15px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    margin-bottom: 0;
}



/* logo_mobile */

/* Fixed_whatsapp */

.Whatsapp_fixed_icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #25D366;
    padding: 10px;
    border-radius: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.Whatsapp_fixed_icon:hover {
    transform: scale(1.1);
}

.Whatsapp_fixed_icon a {
    color: white;
    font-size: 24px;
}

/* Tap_aarrow */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 80px;
    background-color: #00a51c;
    color: rgb(0, 0, 0);
    padding: 5px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-to-top:hover {
    transform: scale(1.1);
}

.scroll-to-top i {
    font-size: 18px;
}

/* Tap_aarrow */


.carousel-caption h5 {
    font-size: 2rem;
}

.carousel-caption p {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .carousel-caption h5 {
        font-size: 1.2rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }
}

/* form */
/* 📋 Form Container */

.Top_form {
    background: linear-gradient(135deg, #e3f2fd, #fff);
}

.form_main {
    margin: 0;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.distributor-form {
    background: #fff;
    width: 90%;
    max-width: 600px;
    padding: 30px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.distributor-form h2 {
    text-align: center;
    color: #004aad;
    margin-bottom: 10px;
}

.distributor-form p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

/* 🧾 Input Styling */
.form-group {
    margin-bottom: 18px;
}

label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    color: #333;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.3s ease;
    box-sizing: border-box;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
    outline: none;
}

textarea {
    resize: none;
    height: 100px;
}

/* 💬 Submit Button */
.submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #007bff, #004aad);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #0056d2, #003b91);
}

/* ✅ Success Message */
.success-msg {
    text-align: center;
    color: green;
    font-weight: 600;
    display: none;
    margin-top: 15px;
}

/* 📱 Responsive */
@media (max-width: 480px) {
    .distributor-form {
        padding: 25px;
    }
}