﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Brand */
    --primary-color: #c71c47;
    /* Premium Deep Red */
    --primary-dark: #9f1239;
    /* Elegant Orange */
    --secondary-color: #ea580c;
    /* Gold Accent */
    --accent-color: #f59e0b;
    /* Luxury Dark */
    --dark-color: #111827;
    /* Soft Background */
    --light-color: #fff7f5;
    /* Text */
    --text-color: #374151;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--dark-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.contact-info i {
    margin-right: 5px;
}

.tagline {
    color: var(--secondary-color);
}
.img {
    max-width: 100%;
    height: auto;
}
/* Navigation */
/* =========================
   NAVBAR BASED ON LOGO THEME
========================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(199,28,71,0.08);
    box-shadow: 0 2px 12px rgba(15,23,42,0.05), 0 6px 20px rgba(199,28,71,0.05);
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    isolation: isolate;
}

/* Top Gradient Line Inspired From Logo */
    .navbar::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient( 90deg, #ff0059, #ff3d00, #ff9800, #ffd54f );
    }

    /* Optional Light Glow */
    .navbar::after {
        content: "";
      /*  position: absolute;*/
        top: -120%;
        left: -20%;
        width: 40%;
        height: 300%;
        /*background: linear-gradient( 120deg, transparent, rgba(255,255,255,0.45), transparent );*/
        transform: rotate(25deg);
        animation: navbarShine 7s linear infinite;
    }
@keyframes navbarShine {
    0% {
        left: -30%;
    }

    100% {
        left: 130%;
    }
}
@media (max-width: 768px) {

    .navbar::after {
        display: none;
    }

    .navbar {
        background: rgba(255,255,255,0.98);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    }


    .hero-slider {
        isolation: isolate;
    }

   /* .slide,
    .slide img,
    .slide-overlay {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }*/
}
/* =========================
   NAV WRAPPER
========================= */

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 90px;
    padding: 10px 0;
    position: relative;
    z-index: 2;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 100px;
    height: auto;
    display: block;
    object-fit: contain;
}
/* Responsive */

@media (max-width:768px) {
    .logo-icon {
        width: 100px;
    }
}
/*.logo-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary-color), var(--dark-color)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: bold; font-size: 18px; box-shadow: var(--shadow); }*/
.logo-text {
    display: none;
    flex-direction: column;
    line-height: 1.15;
}

@media (min-width: 640px) {
    .logo-text {
        display: flex;
    }
}
.logo-name {
    font-size: 20px;
    color: var(--dark-color);
    margin: 0;
}

.logo-tagline {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 500;
    color: var(--secondary-color);
}
/* =========================
   MENU LINKS
========================= */

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 10px;
    z-index: 9999;
}

    .nav-menu a {
        position: relative;
        text-decoration: none;
        color: #1f2937;
        padding: 12px 18px;
        border-radius: 12px;
        font-weight: 600;
        letter-spacing: 0.2px;
        transition: all 0.3s ease;
    }

        /* Hover & Active */
        .nav-menu a:hover,
        .nav-menu a.active {
            color: #e6003d;
            background: linear-gradient( 135deg, rgba(230,0,61,0.08), rgba(255,106,0,0.08) );
            box-shadow: inset 0 1px 1px rgba(255,255,255,0.4), 0 4px 10px rgba(230,0,61,0.08);
        }

        /* Animated Underline */
        .nav-menu a::after {
            content: "";
            position: absolute;
            left: 18px;
            bottom: 8px;
            width: 0;
            height: 2px;
            border-radius: 10px;
            background: linear-gradient( 90deg, #ff0059, #ff6a00, #ffc933 );
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: calc(100% - 36px);
        }

/* =========================
   MOBILE
========================= */

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: #e6003d;
    font-size: 24px;
    cursor: pointer;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .nav-wrapper {
        min-height: 74px;
        padding: 8px 0;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 10001;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 10px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        z-index: 9999;
    }

        .nav-menu.active {
            display: flex !important;
        }

        .nav-menu li {
            width: 100%;
        }
        .nav-menu a {
            display: inline-flex;
            align-items: center;
            width: auto;
            min-width:120px;
            padding: 14px 16px;
            border-radius: 10px;
        }

            /* Underline Fix */

            .nav-menu a::after {
                left: 16px;
                bottom: 8px;
                width: 0;
            }

            .nav-menu a:hover::after,
            .nav-menu a.active::after {
                width: 45px;
            }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-color);
    cursor: pointer;
}

/* Hero Section */
/* =========================
   HERO SLIDER
========================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: 92svh; 
    overflow: hidden;
    background: #000;
    isolation: isolate;
}

/* Slide */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .7s ease-in-out;
    z-index: 0;
    will-change: opacity;
    overflow: hidden;
    visibility: hidden;
}

    .slide.active {
        opacity: 1;
        visibility: visible;
        z-index: 1;
    }   
    /* Banner Image */
    .slide img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
       
        transform: translate3d(0,0,0);
        -webkit-transform: translate3d(0,0,0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

/* Overlay */
/*.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(17,24,39,0.82) 0%, rgba(127,29,29,0.62) 45%, rgba(199,28,71,0.45) 70%, rgba(234,88,12,0.22) 100% );
    z-index: 2;
}*/


/* Overlay */
.slide-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.82;
    /*background: linear-gradient( 135deg, rgba(8, 12, 25, 0.96) 0%, rgba(25, 10, 20, 0.92) 20%, rgba(75, 0, 20, 0.88) 45%, rgba(140, 0, 40, 0.72) 70%, rgba(255, 98, 0, 0.40) 100% );*/
    z-index: 2;
}

/* Content */
.slide-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    max-width: 700px;
}

    /* Text */
    .slide-content h1 {
        font-size: 64px;
        line-height: 1.1;
        margin-bottom: 24px;
        color: #fff;
        text-shadow: 0 5px 15px rgba(0,0,0,0.45);
    }

    .slide-content p {
        font-size: 20px;
        line-height: 1.8;
        color: rgba(255,255,255,0.92);
        margin-bottom: 35px;
    }

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* MOBILE FIX */
@media (max-width:768px) {

    .hero-slider,
    .slide,
    .slide img {
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

        .slide img {
            object-position: center;
        }
    .slide-content h1 {
        font-size: 38px;
    }

    .slide-content p {
        font-size: 16px;
    }
    /* VERY IMPORTANT */
    .navbar {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* Responsive */


@media (max-width: 480px) {

    .slide-content h1 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

        .hero-buttons .btn {
            width: 100%;
        }
}
/*.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.90), rgba(236, 72, 153, 0.88), rgba(249, 115, 22, 0.85)), url('https://images.unsplash.com/photo-1675176785803-bffbbb0cd2f4') center/cover;
    padding: 100px 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-title {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
*/
/* ---------- Buttons ---------- */
.btn-primary {
    background: linear-gradient( 135deg, #c71c47, #ea580c );
    color: #fff;
    border: none;
    box-shadow: 0 8px 20px rgba(199,28,71,0.25);
    transition: all .3s ease;
    padding:15px;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(199,28,71,0.35);
    }
    .btn-primary:disabled {
        opacity: 0.65;
        cursor: not-allowed;
        transform: none;
    }

    .btn-primary.btn-sm {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 2px solid rgba(255,255,255,0.88);
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.3px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all 0.35s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

    .btn-outline:hover {
        background: #ffffff;
        color: #c71c47;
        border-color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(255,255,255,0.22);
    }

    .btn-outline:active {
        transform: translateY(0);
    }
@media (max-width:768px) {

    .btn-outline {
        /*width: 100%;*/
        padding: 13px 20px;
        font-size: 15px;
    }
}
.btn-cta {
    background: var(--secondary-color);
    color: var(--white);
    font-size: 18px;
    box-shadow: var(--shadow-lg);
}

    .btn-cta:hover {
        background: #d97706;
        transform: translateY(-2px);
    }

.btn-ghost-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    background: transparent;
    color: #fff;
    padding: 0.85rem 1.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

    .btn-ghost-dark:hover {
        background: #fff;
        color: var(--ink);
        border-color: #fff;
    }


/* Stats Section */
.stats-section {
    position: relative;
    background: linear-gradient( 130deg, transparent 0%, transparent 45%, rgba(255, 191, 0, 0.08) 55%, rgba(255, 98, 0, 0.14) 68%, rgba(190, 24, 93, 0.18) 82%, rgba(127, 29, 29, 0.22) 100% ), linear-gradient( 135deg, #020617 0%, #111827 28%, #3f0a1d 55%, #7f1d1d 78%, #ea580c 100% );
    padding: 70px 0;
    overflow: hidden;
}

    /* Optional top glow */
    .stats-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient( circle at top right, rgba(249, 115, 22, 0.18), transparent 35% );
        pointer-events: none;
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 52px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--white);
}
/* Sweater */
/* =========================
   SWEATER SECTION
========================= */

.sweater-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sweater-image img {
    width: 100%;
    display: block;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.sweater-features-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

    .sweater-features-box h4 {
        font-size: 22px;
        color: var(--primary-color);
        margin-bottom: 20px;
        font-weight: 700;
    }

    .sweater-features-box ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .sweater-features-box li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
        font-size: 16px;
        color: var(--text-color);
    }

        .sweater-features-box li i {
            color: var(--primary-color);
            font-size: 15px;
        }

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .sweater-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sweater-image {
        order: 1;
    }

    .sweater-content {
        order: 2;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .sweater-wrapper {
        gap: 30px;
    }

    .sweater-image img {
        border-radius: 16px;
    }

    .sweater-features-box {
        padding: 22px;
    }

        .sweater-features-box h4 {
            font-size: 20px;
        }

        .sweater-features-box li {
            align-items: flex-start;
            font-size: 15px;
            line-height: 1.6;
        }

    .section-header h2 {
        font-size: 32px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .sweater-features-box {
        padding: 18px;
    }

        .sweater-features-box h4 {
            font-size: 18px;
        }

        .sweater-features-box li {
            font-size: 14px;
        }
}
/* Section Styles */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: left;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 15px;
}
    .section-header h3 {
        font-size: 24px;
        color: var(--dark-color);
        margin-bottom: 12px;
    }


.section-header p {
    color: var(--text-color);
    margin-bottom: 16px;
}
.product-section {
    background: var(--light-color);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 24px;
}

.product-category {
    display: inline-block;
    background: #dbeafe;
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-content h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.product-content p {
    color: var(--text-color);
    margin-bottom: 14px;
}

.product-features {
    list-style: none;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-color);
}

.product-features i {
    color: #10b981;
}
/* Lineage Section */
.lineage-section {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.03), rgba(236, 72, 153, 0.03), rgba(249, 115, 22, 0.02));
    padding: 80px 0;
}

.lineage-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

    .lineage-content h2 {
        font-size: 42px;
        color: var(--dark-color);
        margin-bottom: 30px;
        font-weight: 700;
        text-align: center;
    }
    .lineage-content h3 {
        font-size: 22px;
        color: var(--dark-color);
        margin-bottom: 30px;
        font-weight: 700;
        
    }

    .lineage-content p {
        font-size: 16px;
        line-height: 1.9;
        color: var(--text-color);
        margin-bottom: 20px;
    }
.lineage-choose {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 10px auto;
}

.lineage-item {
    display: flex;
    gap: 15px;
}

    .lineage-item i {
        color: var(--secondary-color);
        font-size: 20px;
        margin-top: 5px;
    }

/* Product Cards */
/*.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

.product-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

.product-card:hover .product-image img {
    transform: scale(1.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
}

.product-content {
    padding: 28px;
}

    .product-content h3 {
        font-size: 24px;
        color: var(--dark-color);
        margin-bottom: 15px;
        font-weight: 700;
    }

    .product-content p {
        color: var(--text-color);
        line-height: 1.7;
        margin-bottom: 20px;
    }

.product-list {
    list-style: none;
    margin-bottom: 25px;
}

    .product-list li {
        padding: 8px 0;
        border-bottom: 1px solid #eee;
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .product-list li i {
            color: var(--primary-color);
            font-size: 14px;
        }
*/
/* Fabric Section */
.fabric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.fabric-card {
    position: relative;
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    transition: all 0.35s ease;
}

    .fabric-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient( 135deg, #0f172a, #7f1d1d, #e11d48, #f97316 );
    }

    .fabric-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
    }

    .fabric-card h4 {
        font-size: 24px;
        font-weight: 700;
        color: #111827;
        margin-bottom: 18px;
    }

    .fabric-card p {
        font-size: 15px;
        color: #4b5563;
        margin-bottom: 12px;
        line-height: 1.7;
    }

        .fabric-card p strong {
            color: #111827;
        }

    .fabric-card ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .fabric-card ul li {
            position: relative;
            padding-left: 24px;
            margin-bottom: 12px;
            font-size: 15px;
            color: #374151;
            line-height: 1.7;
        }

            .fabric-card ul li::before {
                content: "✓";
                position: absolute;
                left: 0;
                top: 0;
                color: #e11d48;
                font-weight: bold;
                font-size: 15px;
            }

    .fabric-card:hover h4 {
        color: #b91c1c;
    }

/* Client Section */
.clients-section {
    background: var(--light-color);
}

.clients-content {
    max-width: 900px;
    margin: 0 auto;
}

.client-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.location-tag {
    background: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: var(--dark-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
/* =========================
   CLIENT SECTION
========================= */

.clients-section {
    background: #f7f7f7;
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 3px;
    color: #c71c47;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.section-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
    line-height:2px;
}

.section-header p {
    text-align:left;
    font-size: 16px;
    color: #6b7280;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
}

/* Layout */

.clients-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

/* Left Card */

.clients-card {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
}

    .clients-card h3 {
        font-size: 15px;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: #6b7280;
        margin-bottom: 25px;
        font-weight: 600;
    }

/* Location Tags */

.client-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 45px;
}

.location-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fafafa;
    border: 1px solid #e5e7eb;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    transition: all 0.3s ease;
}

    .location-tag i {
        color: #dc2626;
        font-size: 13px;
    }

    .location-tag:hover {
        background: #fff5f5;
        border-color: #dc2626;
        transform: translateY(-3px);
    }

/* Segments */

.client-segments {
    border-top: 1px solid #e5e7eb;
    padding-top: 35px;
}

    .client-segments h4 {
        font-size: 15px;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: #6b7280;
        margin-bottom: 25px;
        font-weight: 600;
    }

.segment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

    .segment-grid ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        .segment-grid ul li {
            position: relative;
            padding-left: 18px;
            margin-bottom: 18px;
            font-size: 16px;
            color: #374151;
        }

            .segment-grid ul li::before {
                content: "";
                width: 7px;
                height: 7px;
                background: #dc2626;
                border-radius: 50%;
                position: absolute;
                left: 0;
                top: 9px;
            }

/* Right States */

.clients-right {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.state-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

    .state-card::before {
        content: "";
        position: absolute;
        left: 25px;
        top: 30px;
        width: 4px;
        height: 40px;
        border-radius: 10px;
    }

    .state-card.red::before {
        background: #dc2626;
    }

    .state-card.orange::before {
        background: #f97316;
    }

    .state-card.yellow::before {
        background: #eab308;
    }

    .state-card.pink::before {
        background: #ec4899;
    }

    .state-card h3 {
        font-size: 22px;
        margin-left: 20px;
        margin-bottom: 10px;
        color: #111827;
        font-weight: 600;
    }

    .state-card span {
        margin-left: 20px;
        font-size: 13px;
        letter-spacing: 3px;
        color: #9ca3af;
        font-weight: 500;
    }

    .state-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 35px rgba(0,0,0,0.1);
    }

/* Responsive */

@media (max-width: 991px) {

    .clients-wrapper {
        grid-template-columns: 1fr;
    }

    .segment-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {

    .section-header h2 {
        font-size: 32px;
    }

    .clients-card {
        padding: 25px;
    }

    .location-tag {
        width: 100%;
    }
}
/* Services Grid */
.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    border-top: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-color);
    line-height: 1.7;
}

/* Testimonials */
.testimonials-section {
    background: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: var(--secondary-color);
    font-size: 18px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    color: var(--dark-color);
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-color);
    font-size: 14px;
}

/* CTA Section */
/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #dc2626, #ec4899, #f97316);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: #bfdbfe;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-cta {
    text-align: center;
}

/* Footer */
.footer {
    position: relative;
    background: black;
    color: #fff;
    padding: 80px 0 32px;
    overflow: hidden;
}
.footer-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient( 90deg, #e0266b 0%, #d50000 25%, #ff7f00 65%, #ffda43 100% );
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 10px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo .logo-icon {
    width: 100px;
    height: 100px;
   /* background: linear-gradient(135deg, var(--secondary-color), #d97706);*/
}
.footer-logo .logo-name {
    font-size: 20px;
    color: var(--white);
    margin: 0;
}

.footer-logo .logo-tagline {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 500;
    line-height:1.75;
    color: var(--secondary-color);
}
    .footer-logo .logo-text h3 {
        font-family: var(--heading-font);
        font-size: 18px;
        color: var(--white);
        margin: 0;
    }

.footer-logo .logo-text p {
    font-size: 11px;
    color: #94a3b8;
    margin: 0;
}

.footer-description {
    color: #94a3b8;
    margin-bottom: 20px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}
/* =========================
   FOOTER RESPONSIVE FIX
========================= */

@media (max-width: 991px) {

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .footer {
        padding: 60px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-logo {
        justify-content: center;
        text-align: center;
    }

        .footer-logo .logo-icon {
            width: 80px;
            height: auto;
        }

        .footer-logo .logo-name {
            font-size: 20px;
        }

    .footer-column {
        width: 100%;
        /*text-align: center;*/
    }

        .footer-column p,
        .footer-column a,
        .footer-column li {
            word-break: break-word;
        }

        .footer-column ul {
            padding: 0;
        }

    .footer-bottom {
        text-align: center;
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .footer {
        overflow-x: hidden;
    }

    .footer-content {
        gap: 28px;
    }

    .footer-column {
        padding: 0 10px;
    }

    .footer-logo .logo-icon {
        width: 70px;
    }

    .footer-logo .logo-name {
        font-size: 18px;
    }
}
/* ---------- Contact / Form ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 5fr 7fr;
        gap: 64px;
    }
}

.info-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: rgba(213, 0, 0, 0.1);
    color: var(--brand-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.info-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(28, 25, 23, 0.55);
    font-weight: 500;
}

.info-value {
    margin-top: 4px;
    color: rgba(28, 25, 23, 0.9);
    line-height: 1.6;
}

    .info-value a:hover {
        color: var(--brand-red);
    }

.contact-list li {
    display: flex;
    align-items: start;
    gap: 10px;
    color: #94a3b8;
    font-size: 14px;
}

.contact-list i {
    color: var(--secondary-color);
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 14px;
}

/* Responsive Design */
@media screen and (max-width:768px) {

    .mobile-menu-btn {
        display: block !important;
        position: relative;
        z-index: 99999;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        z-index: 9999;
    }

        .nav-menu.active {
            display: flex !important;
        }

    .navbar {
        overflow: visible !important;
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1589793463357-5fb813435467') center/cover no-repeat;
}

    .page-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(15, 23, 42, 0.75);
    }

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.story-section {
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

    .story-images img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: var(--shadow);
    }

        .story-images img:nth-child(2) {
            margin-top: 40px;
        }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

    .value-card:hover {
        transform: translateY(-5px);
    }

.value-icon {
    width: 70px;
    height: 70px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .value-icon i {
        font-size: 32px;
        color: var(--primary-color);
    }

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border-top: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

    .mv-card h3 {
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 26px;
        margin-bottom: 20px;
    }

    .mv-card i {
        font-size: 32px;
        color: var(--primary-color);
    }

.why-choose {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.why-item {
    display: flex;
    gap: 15px;
}

    .why-item i {
        color: #10b981;
        font-size: 20px;
        margin-top: 2px;
    }

@media (max-width: 768px) {
    .story-grid,
    .mission-vision {
        grid-template-columns: 1fr;
    }
}

/* Tracing beam border */
.beam-frame {
    position: relative;
    border-radius: 6px;
    padding: 2px;
    box-shadow: 0 25px 60px -25px rgba(213, 0, 0, 0.35);
    overflow: hidden;
}

    .beam-frame::before {
        content: "";
        position: absolute;
        inset: -2px;
        background: conic-gradient( from 0deg, #d50000, #ff7f00, #ffda43, #e0266b, #d50000 );
        animation: spin 8s linear infinite;
        z-index: 0;
    }

@keyframes spin {
    to {
        transform: rotate(1turn);
    }
}

.beam-inner {
    position: relative;
    background: #fff;
    border-radius: 4px;
    padding: 28px;
    z-index: 1;
}

@media (min-width: 640px) {
    .beam-inner {
        padding: 40px;
    }
}

#inquiry-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    #inquiry-form {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .field.full {
        grid-column: 1 / -1;
    }

    .field label {
        font-size: 0.68rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        color: rgba(28, 25, 23, 0.6);
        font-weight: 500;
    }

    .field input,
    .field select,
    .field textarea {
        width: 100%;
        padding: 0 14px;
        height: 44px;
        border-radius: 4px;
        border: 1px solid rgba(28, 25, 23, 0.15);
        background: #fff;
        font-family: inherit;
        font-size: 0.95rem;
        color: var(--ink);
        transition: all 0.25s ease;
    }

    .field textarea {
        height: auto;
        min-height: 120px;
        padding: 12px 14px;
        resize: vertical;
    }

        .field input:focus,
        .field select:focus,
        .field textarea:focus {
            outline: 0;
            border-color: var(--brand-red);
            box-shadow: 0 0 0 3px rgba(213, 0, 0, 0.15);
        }

.form-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 8px;
}

.privacy {
    margin: 0;
    max-width: 360px;
    font-size: 0.75rem;
    color: rgba(28, 25, 23, 0.55);
}

.success-panel {
    text-align: center;
    padding: 32px 0;
}

.success-icon {
    margin: 0 auto 16px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(213, 0, 0, 0.1);
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.success-panel h3 {
    font-family: var(--heading-font);
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
}

.success-panel p {
    margin: 8px auto 0;
    max-width: 420px;
    color: var(--muted-text);
}

.success-panel .btn-primary {
    margin-top: 24px;
}
.product-card,
.fabric-card,
.service-card,
.clients-card {
    background: #ffffff;
    border: 1px solid rgba(199,28,71,0.06);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-radius: 18px;
}
/* =========================
   GALLERY FILTER
========================= */

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    border: none;
    background: #ffffff;
    color: #374151;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

    .filter-btn:hover,
    .filter-btn.active {
        background: linear-gradient( 135deg, #c71c47, #ea580c );
        color: #ffffff;
        transform: translateY(-2px);
    }

/* Gallery */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
    gap: 30px;
}

.gallery-item {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    transition: all .35s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

    .gallery-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    }

.gallery-image {
    height: 280px;
    overflow: hidden;
}

    .gallery-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-caption {
    padding: 22px;
}

    .gallery-caption h3 {
        font-size: 22px;
        margin-bottom: 8px;
        color: #111827;
    }

    .gallery-caption p {
        color: #6b7280;
    }

/* Hide */

.gallery-item.hide {
    display: none;
}

/* Mobile */

@media (max-width:768px) {

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   FLOATING CONTACT BUTTONS
========================= */

.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 60px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    transition: all .35s ease;
    animation: floatPulse 2.5s infinite;
}

    .floating-btn i {
        font-size: 22px;
    }

.whatsapp-btn-float {
    background: linear-gradient( 135deg, #25d366, #128c7e );
}

.call-btn-float {
    background: linear-gradient( 135deg, #c71c47, #ea580c );
}

.floating-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

/* Pulse Animation */

@keyframes floatPulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Mobile */

@media (max-width: 768px) {

    .floating-contact {
        right: 14px;
        bottom: 18px;
    }

    .floating-btn {
        padding: 12px 16px;
        font-size: 14px;
        gap: 10px;
    }

        .floating-btn span {
            display: none;
        }

        .floating-btn i {
            font-size: 24px;
        }
}