        :root {
            --primary: #8b5e3c;
            --dark: #211914;
            --cream: #f8f3ed;
            --light: #fffaf5;
            --gold: #c49a6c;
            --text: #625851;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            color: var(--text);
            background: #fff;
            line-height: 1.7;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-weight: 700;
            color: var(--dark);
        }

        a {
            text-decoration: none;
        }

        /* ================= NAVBAR ================= */

        .main-header {
            background: #000;
            box-shadow: 0 3px 20px rgba(0,0,0,.08);
            position: sticky;
            top: 0;
            z-index: 999;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .brand-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 23px;
        }

        .brand-text {
            font-size: 20px;
            font-weight: 800;
            color: var(--dark);
            letter-spacing: .5px;
        }

        .brand-text small {
            display: block;
            font-size: 10px;
            letter-spacing: 2px;
            color: var(--primary);
        }

        .navbar-nav .nav-link {
            color: #fff;
            font-weight: 600;
            margin: 0 8px;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary);
        }

        .nav-btn {
            background: var(--primary);
            color: #fff !important;
            padding: 10px 20px !important;
            border-radius: 30px;
        }

        /* ================= HERO ================= */

        .hero {
            min-height:  650px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background:
                linear-gradient(
                    90deg,
                    rgba(25,16,11,.88),
                    rgba(25,16,11,.48),
                    rgba(25,16,11,.15)
                ),
                url("assets/images/rug-banner.jpg") center/cover no-repeat;
        }

        .hero-content {
            max-width: 700px;
            color: #fff;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,.12);
            border: 1px solid rgba(255,255,255,.3);
            padding: 9px 17px;
            border-radius: 30px;
            margin-bottom: 22px;
            font-size: 14px;
        }

        .hero h1 {
            color: #fff;
            font-size: clamp(42px, 6vw, 72px);
            line-height: 1.08;
            margin-bottom: 25px;
        }

        .hero h1 span {
            color: #e0b27e;
        }

        .hero p {
            font-size: 18px;
            color: rgba(255,255,255,.88);
            max-width: 650px;
            margin-bottom: 32px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-primary-custom {
            background: var(--primary);
            border: 2px solid var(--primary);
            color: #fff;
            padding: 13px 27px;
            border-radius: 30px;
            font-weight: 700;
        }

        .btn-primary-custom:hover {
            background: #71482d;
            color: #fff;
        }

        .btn-outline-custom {
            border: 2px solid #fff;
            color: #fff;
            padding: 13px 27px;
            border-radius: 30px;
            font-weight: 700;
        }

        .btn-outline-custom:hover {
            background: #fff;
            color: var(--dark);
        }

        /* ================= SECTIONS ================= */

        .section-padding {
            padding: 90px 0;
        }

        .section-title {
            max-width: 700px;
            margin: 0 auto 50px;
            text-align: center;
        }

        .section-title span {
            color: var(--primary);
            text-transform: uppercase;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 2px;
        }

        .section-title h2 {
            font-size: 42px;
            margin: 10px 0 15px;
        }

        .section-title p {
            color: var(--text);
        }

        /* ================= ABOUT ================= */

        .about {
            background: var(--light);
        }

        .about-image {
            min-height: 480px;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            background:
                url("assets/images/about-rugs.jpg")
                center/cover no-repeat;
        }

        .about-box {
            position: absolute;
            bottom: 25px;
            left: 25px;
            background: #fff;
            padding: 20px 25px;
            border-radius: 12px;
            box-shadow: 0 10px 35px rgba(0,0,0,.15);
        }

        .about-box strong {
            display: block;
            color: var(--primary);
            font-size: 25px;
        }

        .about-content span {
            color: var(--primary);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .about-content h2 {
            font-size: 42px;
            margin: 12px 0 20px;
        }

        .about-content p {
            margin-bottom: 15px;
        }

        /* ================= STATS ================= */

        .stats {
            background: var(--dark);
            color: #fff;
        }

        .stat-box {
            text-align: center;
            padding: 20px;
        }

        .stat-box i {
            font-size: 34px;
            color: var(--gold);
        }

        .stat-box h3 {
            color: #fff;
            font-size: 35px;
            margin: 8px 0 0;
        }

        .stat-box p {
            margin: 0;
            color: #d8ccc4;
        }

        /* ================= PRODUCTS ================= */

        .product-card {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            height: 100%;
            border: 1px solid #eee5dc;
            transition: .3s;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,.12);
        }

        .product-image {
            height: 250px;
            background-size: cover;
            background-position: center;
        }

        .product-content {
            padding: 25px;
        }

        .product-content h4 {
            margin-bottom: 10px;
        }

        .product-content p {
            margin-bottom: 0;
        }

        /* ================= WHY CHOOSE ================= */

        .why {
            background: var(--cream);
        }

        .feature-box {
            background: #fff;
            padding: 30px;
            border-radius: 16px;
            height: 100%;
            border: 1px solid #eee2d5;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 14px;
            background: #f1e3d5;
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 27px;
            margin-bottom: 20px;
        }

        .feature-box h4 {
            font-size: 20px;
        }

        /* ================= MANUFACTURING ================= */

        .manufacturing-image {
            min-height: 500px;
            border-radius: 20px;
            background:
                url("assets/images/manufacturing.jpg")
                center/cover no-repeat;
        }

        .manufacturing-list {
            list-style: none;
            padding: 0;
        }

        .manufacturing-list li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }

        .manufacturing-list i {
            color: var(--primary);
            margin-right: 10px;
        }

        /* ================= CUSTOM ================= */

        .custom-section {
            background:#000;
               
               

            color: #fff;
            text-align: center;
        }

        .custom-section h2 {
            color: #fff;
            font-size: 44px;
        }

        .custom-section p {
            max-width: 750px;
            margin: 15px auto 30px;
            color: #eee;
        }

        /* ================= INDUSTRIES ================= */

        .industry-card {
            padding: 35px 25px;
            border: 1px solid #eee5dc;
            border-radius: 16px;
            text-align: center;
            height: 100%;
            transition: .3s;
        }

        .industry-card:hover {
            background: var(--primary);
            color: #fff;
        }

        .industry-card:hover h5 {
            color: #fff;
        }

        .industry-card i {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 18px;
        }

        .industry-card:hover i {
            color: #fff;
        }

        /* ================= GALLERY ================= */

        .gallery-item {
            height: 280px;
            border-radius: 16px;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .gallery-item.large {
            height: 580px;
        }

        .gallery-overlay {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 25px;
            color: #fff;
            background: linear-gradient(
                transparent,
                rgba(0,0,0,.85)
            );
        }

        .gallery-overlay h5 {
            color: #fff;
            margin: 0;
        }

        /* ================= CONTACT ================= */

        .contact {
            background: var(--light);
        }

        .contact-info {
            background: #000000;
            color: #fff;
            border-radius: 20px;
            padding: 40px;
            height: 100%;
        }

        .contact-info h3 {
            color: #fff;
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }

        .contact-item i {
            color: var(--gold);
            font-size: 22px;
        }

        .contact-item strong {
            display: block;
            color: #fff;
        }

        .contact-form {
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 35px rgba(0,0,0,.07);
        }

        .form-control {
            padding: 13px 16px;
            border-radius: 10px;
            border: 1px solid #ddd;
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 .2rem rgba(139,94,60,.12);
        }

        /* ================= FOOTER ================= */

        footer {
            background: #000;
            color: #fff;
            padding: 60px 0 25px;
        }

        .footer-brand {
            color: #fff;
            font-size: 24px;
            font-weight: 800;
        }

        footer h5 {
            color: #fff;
            margin-bottom: 20px;
        }

        footer a {
            color: #fff;
            display: block;
            margin-bottom: 8px;
        }

        footer a:hover {
            color: var(--gold);
        }

        .copyright {
            border-top: 1px solid rgba(255,255,255,.1);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }

        /* ================= MOBILE ================= */

        @media(max-width: 991px) {

            .navbar-nav {
                padding: 15px 0;
            }

            .hero {
                min-height: 600px;
            }

            .section-title h2,
            .about-content h2 {
                font-size: 34px;
            }

        }

        @media(max-width: 575px) {

            .section-padding {
                padding: 65px 0;
            }

            .hero {
                min-height: 440px;
            }

            .hero h1 {
                font-size: 42px;
            }

            .hero p {
                font-size: 16px;
            }

            .about-image,
            .manufacturing-image {
                min-height: 350px;
            }

            .contact-info,
            .contact-form {
                padding: 25px;
            }

        }
.about-image {
    min-height: 480px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #eee;
}

.about-image img {
    width: 100%;
    height: 480px;
  
    display: block;
}

.about-box {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,.15);
}

.about-box strong {
    display: block;
    color: #8b5e3c;
    font-size: 25px;
}

.about-box span {
    color: #625851;
}
.brand-logo {
    width: 180px;
    height: 100px;
   
    display: block;
}
.manufacturing-image {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.manufacturing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: #211914;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: .3s ease;
}

.btn-primary-custom:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}
    