 

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            color: #333;
            line-height: 1.7;
        }

        a {
            text-decoration: none;
        }

        /* =========================
           NAVBAR
        ========================= */

        .navbar {
            background: #fff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 999;
        }

        .logo {
            font-size: 25px;
            font-weight: 800;
            color: #7b4b22;
            line-height: 1.1;
        }

        .logo span {
            display: block;
            font-size: 12px;
            color: #777;
            letter-spacing: 1.5px;
            font-weight: 500;
        }

        .navbar-nav .nav-link {
            color: #333;
            font-weight: 600;
            margin-left: 20px;
            transition: 0.3s;
        }

        .navbar-nav .nav-link:hover {
            color: #9a642f;
        }

        .nav-btn {
            background: #8b572a;
            color: #fff !important;
            padding: 9px 20px !important;
            border-radius: 30px;
        }

        .nav-btn:hover {
            background: #633b1b;
        }

        /* =========================
           HERO SLIDER
        ========================= */

        .hero {
            position: relative;
        }

        .hero-slide {
            height: 680px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .hero-slide::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                90deg,
                rgba(20, 15, 10, 0.78),
                rgba(20, 15, 10, 0.35),
                rgba(20, 15, 10, 0.15)
            );
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: #fff;
            padding-top: 180px;
            max-width: 750px;
        }

        .hero-content .tag {
            display: inline-block;
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.4);
            padding: 7px 18px;
            border-radius: 30px;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .hero-content h1 {
            font-size: 58px;
            font-weight: 800;
            line-height: 1.12;
            margin-bottom: 20px;
        }

        .hero-content h1 span {
            color: #e5bd86;
        }

        .hero-content p {
            font-size: 19px;
            max-width: 650px;
            margin-bottom: 30px;
            color: #f5f5f5;
        }

        .btn-main {
            display: inline-block;
            background: #a96d35;
            color: #fff;
            padding: 13px 28px;
            border-radius: 30px;
            font-weight: 700;
            margin-right: 10px;
            transition: 0.3s;
        }

        .btn-main:hover {
            background: #75451f;
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-outline-main {
            display: inline-block;
            border: 1px solid #fff;
            color: #fff;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 700;
            transition: 0.3s;
        }

        .btn-outline-main:hover {
            background: #fff;
            color: #6f451f;
        }

        /* =========================
           SECTION
        ========================= */

        .section {
            padding: 85px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title .small-title {
            color: #9a642f;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 14px;
            font-weight: 700;
        }

        .section-title h2 {
            font-size: 40px;
            font-weight: 800;
            color: #3b2a1d;
            margin-top: 8px;
        }

        .section-title p {
            max-width: 700px;
            margin: 12px auto 0;
            color: #777;
        }

        /* =========================
           ABOUT
        ========================= */

        .about-image {
            width: 100%;
            height: 520px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        .about-content {
            padding: 20px 0 20px 30px;
        }

        .about-content h2 {
            font-size: 40px;
            font-weight: 800;
            color: #3b2a1d;
            margin-bottom: 20px;
        }

        .about-content h2 span {
            color: #9a642f;
        }

        .about-content p {
            color: #666;
            margin-bottom: 15px;
        }

        .about-list {
            list-style: none;
            padding: 0;
            margin-top: 25px;
        }

        .about-list li {
            margin-bottom: 12px;
            font-weight: 600;
        }

        .about-list i {
            color: #9a642f;
            margin-right: 10px;
        }

        /* =========================
           BUSINESS CARDS
        ========================= */

        .business-card {
            background: #fff;
            border-radius: 15px;
            padding: 35px 25px;
            text-align: center;
            height: 100%;
            box-shadow: 0 8px 30px rgba(0,0,0,0.07);
            border: 1px solid #eee;
            transition: 0.3s;
        }

        .business-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }

        .business-icon {
            width: 75px;
            height: 75px;
            border-radius: 50%;
            background: #f3e6d6;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: #8b572a;
            font-size: 30px;
        }

        .business-card h4 {
            font-weight: 800;
            color: #3b2a1d;
        }

        .business-card p {
            color: #777;
            margin: 0;
        }

        /* =========================
           PRODUCT
        ========================= */

        .product-section {
            background: #faf7f2;
        }

        .product-card {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .product-card img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .product-info {
            padding: 30px;
        }

        .product-info h3 {
            color: #3b2a1d;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .product-info p {
            color: #666;
        }

        .product-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }

        .product-feature {
            background: #f3e6d6;
            color: #75451f;
            padding: 7px 13px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
        }

        /* =========================
           WHY CHOOSE
        ========================= */

        .why-card {
            padding: 30px 20px;
            text-align: center;
        }

        .why-icon {
            font-size: 35px;
            color: #9a642f;
            margin-bottom: 18px;
        }

        .why-card h5 {
            font-size: 19px;
            font-weight: 800;
            color: #3b2a1d;
        }

        .why-card p {
            color: #777;
            font-size: 15px;
        }

        /* =========================
           CTA
        ========================= */

        .cta {
            background:
                linear-gradient(rgba(70,40,15,0.88), rgba(70,40,15,0.88)),
                url("image/multani-mitti-banner.jpg") center/cover;
            padding: 90px 20px;
            color: #fff;
            text-align: center;
        }

        .cta h2 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .cta p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 18px;
        }

        /* =========================
           CONTACT
        ========================= */

        .contact-box {
            background: #fff;
            border-radius: 15px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 8px 25px rgba(0,0,0,0.07);
        }

        .contact-item {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }

        .contact-icon {
            min-width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #f3e6d6;
            color: #8b572a;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-item h6 {
            margin: 0 0 4px;
            font-weight: 800;
            color: #3b2a1d;
        }

        .contact-item p {
            margin: 0;
            color: #666;
        }

        /* =========================
           FOOTER
        ========================= */

        footer {
            background: #24180f;
            color: #ddd;
            padding: 50px 0 20px;
        }

        .footer-logo {
            color: #fff;
            font-size: 25px;
            font-weight: 800;
            margin-bottom: 15px;
        }

        footer p {
            color: #aaa;
        }

        .footer-title {
            color: #fff;
            font-weight: 700;
            margin-bottom: 18px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            color: #aaa;
            transition: 0.3s;
        }

        .footer-links a:hover {
            color: #fff;
        }

        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 30px;
            padding-top: 20px;
            text-align: center;
            color: #888;
            font-size: 14px;
        }

        /* =========================
           RESPONSIVE
        ========================= */

        @media(max-width: 991px) {

            .navbar-nav .nav-link {
                margin-left: 0;
                padding: 10px 0;
            }

            .hero-slide {
                height: 600px;
            }

            .hero-content {
                padding-top: 140px;
            }

            .hero-content h1 {
                font-size: 46px;
            }

            .about-content {
                padding: 30px 0 0;
            }
        }

        @media(max-width: 767px) {

            .section {
                padding: 60px 0;
            }

            .hero-slide {
                height: 570px;
            }

            .hero-content {
                padding-top: 125px;
            }

            .hero-content h1 {
                font-size: 37px;
            }

            .hero-content p {
                font-size: 16px;
            }

            .btn-main,
            .btn-outline-main {
                padding: 10px 20px;
                font-size: 14px;
            }

            .section-title h2,
            .about-content h2 {
                font-size: 31px;
            }

            .about-image {
                height: 350px;
            }

            .product-card img {
                height: 300px;
            }

            .cta h2 {
                font-size: 30px;
            }
        }

        @media(max-width: 480px) {

            .logo {
                font-size: 20px;
            }

            .hero-slide {
                height: 550px;
            }

            .hero-content h1 {
                font-size: 32px;
            }

            .hero-content {
                padding-top: 110px;
            }

            .hero-content .tag {
                font-size: 12px;
            }

            .btn-main,
            .btn-outline-main {
                display: block;
                width: fit-content;
                margin-bottom: 12px;
            }

            .about-image {
                height: 300px;
            }
        }

   .company-logo {
    width: 180px;
    height: 100px;
    object-fit: contain;
    display: block;
}
@media (max-width: 480px) {
    .company-logo {
        width: 160px;
        height: 100px;
    }
}
.footer-logo img {
    width: 200px;
    height: 65px;
    object-fit: contain;
    display: block;
}
@media (max-width: 480px) {
    .footer-logo img {
        width: 160px;
        height: 55px;
    }
}
/* =========================
   GALLERY
========================= */

.gallery-section {
    background: #fff;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    background: #eee;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(65, 38, 15, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    width: 55px;
    height: 55px;
    background: #fff;
    color: #8b572a;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
}

.gallery-overlay h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}


/* Mobile */

@media (max-width: 767px) {

    .gallery-item {
        height: 260px;
    }

}

@media (max-width: 480px) {

    .gallery-item {
        height: 240px;
    }

}
/* Image Zoom Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.90);

    align-items: center;
    justify-content: center;

    padding: 30px;
}

.image-modal.active {
    display: flex;
}

.image-modal-content {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
    position: relative;
}

.image-modal-content img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;

    object-fit: contain;
    border-radius: 8px;
    display: block;
    margin: auto;
}

.image-modal-content h5 {
    color: #fff;
    margin-top: 15px;
    font-size: 20px;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;

    color: #fff;
    font-size: 45px;
    font-weight: 300;

    cursor: pointer;
    z-index: 100000;

    line-height: 1;
}

.image-modal-close:hover {
    color: #ddd;
}

.zoom-icon {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.zoom-icon:hover {
    transform: scale(1.2);
}