/* ============================================================
   GMP SUSTAINABLE PACKAGING & FABRICS – COMPLETE CSS STYLESHEET
   ============================================================ */
 
/* ── CSS Custom Properties ── */
:root {
    --green-900: #1B5E20;
    --green-800: #2E7D32;
    --green-700: #388E3C;
    --green-600: #43A047;
    --green-500: #4CAF50;
    --green-400: #66BB6A;
    --green-300: #81C784;
    --green-200: #A5D6A7;
    --green-100: #C8E6C9;
    --green-50: #E8F5E9;
 
    --yellow-700: #F9A825;
    --yellow-600: #FBC02D;
    --yellow-500: #FFCA28;
    --yellow-400: #FFD54F;
    --yellow-300: #FFE082;
    --yellow-200: #FFECB3;
    --yellow-100: #FFF8E1;
 
    --dark-900: #0d1b0e;
    --dark-800: #1a2e1c;
    --gray-900: #1e1e1e;
    --gray-800: #333333;
    --gray-700: #3f3f3f;
    --gray-600: #616161;
    --gray-500: #888888;
    --gray-400: #bdbdbd;
    --gray-300: #d4d4d4;
    --gray-200: #e8e8e8;
    --gray-100: #f5f5f5;
    --gray-50: #fafafa;
    --white: #ffffff;
 
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Montserrat', sans-serif;
 
    --container-max: 1200px;
    --container-padding: 20px;
    --nav-height: 100px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
 
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.12);
    --shadow-green: 0 8px 24px rgba(46,125,50,0.25);
 
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --dur: 0.35s;
}
 
/* ── Reset ── */
*, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}
 
html { 
    scroll-behavior: smooth; 
    -webkit-font-smoothing: antialiased; 
    overflow-x: hidden;
}
 
body {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}
 
img { 
    max-width: 100%; 
    height: auto; 
    display: block; 
    position: relative; 
    z-index: 1; 
}
 
a { 
    text-decoration: none; 
    color: inherit; 
}
 
ul { 
    list-style: none; 
}
 
h1, h2, h3, h4, h5, h6 { 
    line-height: 1.25; 
    font-weight: 500; 
}
 
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--container-padding);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    font-family: var(--font-primary);
}

.btn-yellow {
    background: var(--yellow-500);
    color: var(--gray-900);
}

.btn-yellow:hover {
    background: var(--yellow-600);
    transform: translateY(-2px);
}

.btn-gray {
    background: var(--gray-100);
    color: var(--gray-800);
}

.btn-gray:hover {
    background: var(--gray-200);
    transform: translateY(-2px);
}
 
.btn-primary {
    background: var(--green-700);
    color: var(--white);
    border-color: var(--green-700);
    box-shadow: var(--shadow-green);
}
 
.btn-primary:hover {
    background: var(--green-800);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(46,125,50,0.35);
}
 
/* ── Section Headers ── */
.section-badge {
    display: inline-block;
    padding: 5px 16px;
    background: var(--green-50);
    color: var(--green-700);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    border: 1px solid var(--green-200);
    margin-bottom: 12px;
}
 
.badge-outline {
    background: transparent;
    border: 1px solid var(--gray-200);
    color: #9e4624;
    text-transform: uppercase;
}
 
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 36px;
}
 
.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    font-size: 14px;
    color: var(--gray-500);
}
 
.section-title {
    font-size: clamp(24px, 3.5vw, 36px);
    color: var(--gray-900);
    margin-bottom: 8px;
    font-weight: 600;
}
 
/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all var(--dur) var(--ease);
}
 
.navbar.scrolled {
    height: 70px;
    box-shadow: var(--shadow-md);
}
 
.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
 
.nav-logo {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 45px;
    width: 320px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}
 
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
 
.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
    padding: 4px 0;
}
 
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--green-600);
    border-radius: 2px;
    transition: width var(--dur) var(--ease);
}
 
.nav-links a:hover,
.nav-links a.active { color: var(--green-700); }
 
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
 
.nav-cta {
    padding: 8px 20px;
    background: var(--yellow-500);
    color: var(--dark-800);
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all var(--dur) var(--ease);
    white-space: nowrap;
}
 
.nav-cta:hover {
    background: var(--yellow-600);
    transform: translateY(-1px);
}
 
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}
 
.nav-toggle span {
    width: 22px; height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all var(--dur) var(--ease);
}
 
/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    background: var(--white);
    overflow: hidden;
}
 
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    min-height: 50vh;
    padding: 60px 0 80px;
}
 
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 600;
    color: var(--dark-800);
    margin-bottom: 8px;
    line-height: 1.15;
}
 
.hero-subtitle {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--yellow-500);
    text-transform: uppercase;
    font-family: var(--font-primary);
    margin-bottom: 8px;
}
 
.hero-description {
    font-size: 13.5px;
    color: var(--gray-500);
    max-width: 550px;
    margin-top: 16px;
    margin-bottom: 32px;
    line-height: 1.8;
}
 
.hero-actions { 
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
 
.hero-image { 
    position: relative; 
    width: 100%;
    display: flex;
    justify-content: flex-end; 
}
 
.hero-img-wrapper {
    position: relative;
    width: 100%; 
    height: 100vh;
    max-height: 650px;
    border-radius: 0;
    background: transparent;
    overflow: hidden;
}
 
.hero-img-wrapper img {
    width: 100%; 
    height: 100%;
    object-fit: contain;
    object-position: left center;
    display: block;
}
 
/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
    position: relative;
    padding: 60px 0;
    background: #f5f4f0;
    overflow: hidden;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 40px;
}

.about-left {
    flex: 0 0 auto;
    max-width: 500px;
}

.about-right {
    flex: 1;
}

.about-subtitle {
    color: #febc00;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 16px;
    margin-bottom: 6px;
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 600;
    font-family: var(--font-display, sans-serif);
}

.about-title {
    font-size: clamp(20px, 3vw, 24px);
    color: var(--gray-800);
    margin-bottom: 0;
    margin-top: 6px;
    font-weight: 700;
}

.about-description {
    font-size: 13.5px;
    color: var(--gray-500);
    line-height: 1.85;
    margin: 0;
}

/* ============================================================
   PRODUCTS / FABRIC BLOCKS SECTION
   ============================================================ */
.products {
    padding: 80px 0;
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
}
 
.fabric-block {
    display: grid;
    grid-template-columns: 3fr 7fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    width: 100%;
}
 
.fabric-block-reverse {
    grid-template-columns: 7fr 3fr;
}
 
.fabric-image {
    position: relative;
    height: 350px;
    z-index: 1;
    width: 100%;
}
 
.fabric-img-left, .fabric-img-right {
    height: 100%;
    width: 100%;
    overflow: hidden;
}
 
.fabric-image img {
    width: 100%; 
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}
 
.fabric-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--gray-100);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    padding: 40px 0;
    box-sizing: border-box;
    min-height: 350px;
    width: 100%;
    border-radius: 24px;
}
 
.fabric-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0; 
    align-items: center; 
    width: 100%;
}
 
.fabric-card img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0 auto 20px auto;
}
 
.card-yellow-gradient {
    background: radial-gradient(circle at right bottom, #ffeb99 0%, #ffffff 70%);
}
 
.card-green-gradient {
    background: radial-gradient(circle at right bottom, #e6f5e9 0%, #ffffff 70%);
}
 
.fabric-tab {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 32px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    z-index: 10;
    white-space: nowrap;
}
 
.tab-yellow {
    background: #fecb16;
    color: #212529;
}
 
.tab-green {
    background: #4caf50;
    color: #ffffff;
}
 
.lenzing-grid { grid-template-columns: 1fr 1fr 1fr; }
.birla-grid { grid-template-columns: 1fr 1fr; }
.natural-grid { grid-template-columns: 1fr 1fr 1fr; }
.flax-grid { grid-template-columns: 1fr 1fr 1fr; }
 
.fc-col { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    padding: 0 24px;
    align-items: center; 
    text-align: center;
    justify-content: center; 
}

.lenzing-grid .fc-col:not(:last-child),
.natural-grid .fc-col:not(:last-child),
.flax-grid .fc-col:not(:last-child) {
    position: relative;
}

.lenzing-grid .fc-col:not(:last-child)::after,
.natural-grid .fc-col:not(:last-child)::after,
.flax-grid .fc-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(0,0,0,0.08);
}
 
.fc-list {
    list-style: none;
    padding: 0 !important; 
    margin: 0;
    font-size: 14px;
    color: var(--gray-800);
    font-weight: 500;
    line-height: 1.8;
    display: inline-block;
    text-align: left;
}
 
.fc-list li { 
    padding-bottom: 4px; 
    text-align: left;
}
 
.fc-list-check li {
    position: relative;
    padding-left: 28px;
    display: flex;
    align-items: center;
    min-height: 22px;
}

.fc-list-check li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url('images/PremimumSection/Cotton.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.fc-item-title { font-size: 20px; font-weight: 500; color: var(--gray-800); margin-bottom: 4px; }
.fc-item-desc { font-size: 14px; color: var(--gray-600); }
.fc-item-highlight { font-size: 14px; color: #27a860; font-weight: 500; line-height: 1.4; }
.fc-item-sub { font-size: 13px; color: var(--gray-400); margin-top: 0; }
.fc-item-note { font-size: 12.5px; color: var(--gray-400); margin-top: 8px; font-style: italic; }

.fc-brand-logo-main { max-height: 55px !important; max-width: 150px; object-fit: contain; margin: 0 auto 6px auto !important; }
.fc-brand-logo-sub { max-height: 35px !important; max-width: 100px; object-fit: contain; margin: 0 auto 8px auto !important; }
.fc-brand-logo-sub1 { max-height: 30px !important; max-width: 120px; object-fit: contain; margin: 0 auto 8px auto !important; }

/* Birla Layout */
.birla-card { padding: 40px 0; }
.birla-inner-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
}
.birla-left-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
}
.birla-livaeco-row, .birla-reviva-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.birla-liva-img { height: 42px !important; max-width: 100px; object-fit: contain; margin: 0 !important; }
.birla-reviva-img { height: 46px !important; max-width: 130px; object-fit: contain; margin: 0 !important; }
.birla-divider { width: 1px; height: 200px; background: rgba(0,0,0,0.08); align-self: center; }
.birla-right-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 20px;
}
.birla-ecosoft-img { height: 40px !important; max-width: 260px; object-fit: contain; margin: 0 !important; }
.birla-sublogos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 18px;
    align-items: center;
    justify-items: center;
    width: 100%;
}
.birla-sub-img { height: 32px !important; max-width: 130px; object-fit: contain !important; margin: 0 !important; }
#birla-sub-spunshades { height: 50px !important; max-width: 220px !important; }

/* Natural Certs */
.fc-cert-top-row { display: flex; gap: 10px; align-items: center; justify-content: center; }
.fc-cert-logo-round { height: 56px !important; width: 56px !important; object-fit: contain !important; margin: 0 !important; }
.fc-cert-logo-bci { height: 50px !important; max-width: 130px; object-fit: contain !important; margin: 0 !important; }

.fc-blends-title { font-size: 16px; font-weight: 500; color: var(--gray-700); margin-bottom: 6px; }
.fc-blends-nums { font-size: 18px; font-weight: 600; color: var(--gray-900); }

/* ============================================================
   CAPACITIES SECTION
   ============================================================ */
.capacities {
    position: relative;
    overflow: hidden;
    background-image: url('manufacturing.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.capacities-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    min-height: 400px;
}

.cap-left {
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cap-badge {
    display: inline-block;
    background: rgba(255,255,255,0.9);
    color: #555;
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    width: fit-content;
}

.cap-title {
    font-size: clamp(24px, 3.2vw, 36px);
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

.cap-desc {
    font-size: 13px;
    color: #2a2a2a;
    line-height: 1.7;
    font-weight: 500;
    max-width: 380px;
}

.cap-right {
    display: flex;
    align-items: center;
    padding: 60px 56px;
}

.cap-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px 48px;
    width: 100%;
}

.cap-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cap-stat-label { font-size: 12px; color: #888; }
.cap-stat-val { font-size: 14px; font-weight: 800; color: #1a1a1a; text-transform: uppercase; letter-spacing: 0.3px; line-height: 1.4; }

/* ============================================================
   YARN TYPES SECTION
   ============================================================ */
.yarn-types {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.yarn-center {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 20px auto;
}

.yarn-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
    font-family: var(--font-display);
}

.yarn-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.8;
}

.yarn-oval-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 1000 / 480;
    height: auto;
    margin: 0 auto;
}

/* On Desktop, position .yarn-center in the dead center of the stadium oval */
@media (min-width: 769px) {
    .yarn-center {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        width: 420px;
        z-index: 5;
    }
}

.yarn-oval-svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
}

.mobile-yarn-svg { display: none; }

.yarn-run-path {
    stroke-dasharray: var(--path-length, 3000);
    stroke-dashoffset: var(--path-length, 3000);
}

.yarn-tag {
    position: absolute;
    padding: 9px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #383838;
    white-space: nowrap;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border: 1px solid #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    cursor: default;
    z-index: 2;
    transition: transform 0.25s ease;
}

.yt-pink   { background: linear-gradient(135deg, #fff2f4 0%, #fcdce0 100%); }
.yt-green  { background: linear-gradient(135deg, #f4faee 0%, #dbf3ca 100%); }
.yt-yellow { background: linear-gradient(135deg, #fffcf0 0%, #faecc3 100%); }
.yt-blue   { background: linear-gradient(135deg, #f0f7fe 0%, #dcf0fe 100%); }

/* ============================================================
   WEAVING PATTERNS SECTION
   ============================================================ */
.weaving-section {
    padding: 70px 0 80px;
    background: #ffffff;
    overflow: hidden;
}

.weaving-cloud {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 520px;
    margin: 20px auto 0;
}

.weaving-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: clamp(24px, 3.2vw, 38px);
    font-weight: 800;
    color: #222222;
    line-height: 1.25;
    z-index: 10;
    pointer-events: none;
    white-space: nowrap;
}

.tag {
    position: absolute;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    user-select: none;
    cursor: default;
    animation: tagFloat 4s ease-in-out infinite alternate;
}

.tag-yellow { background-color: #FFCD27; }
.tag-green  { background-color: #8CC63F; }
.tag-blue   { background-color: #5CD3FF; }
.tag-pink   { background-color: #FF6FA2; }

.tag:nth-child(odd) { animation-duration: 4.5s; animation-delay: -1s; }
.tag:nth-child(3n)  { animation-duration: 3.8s; animation-delay: -2s; }
.tag:nth-child(5n)  { animation-duration: 5.2s; animation-delay: -0.5s; }

@keyframes tagFloat {
    0% { transform: rotate(var(--rot, 0deg)) translateY(0px); }
    100% { transform: rotate(var(--rot, 0deg)) translateY(-8px); }
}

/* ============================================================
   CERTIFICATIONS SECTION
   ============================================================ */
.certifications-section {
    padding: 80px 0;
    background: #ffffff;
}

.cert-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 70px;
    align-items: center;
}

.cert-title {
    font-size: clamp(28px, 3.2vw, 36px);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.cert-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.8;
}

.cert-row {
    display: grid;
    align-items: center;
    justify-items: center;
    gap: 24px;
}

.cert-row-top {
    grid-template-columns: repeat(5, 1fr);
    margin-bottom: 30px;
}

.cert-row-bottom {
    grid-template-columns: repeat(6, 1fr);
}

.cert-row img {
    max-height: 72px;
    max-width: 115px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.cert-row img:hover { transform: scale(1.08); }

.cert-divider {
    height: 1px;
    background-color: #ededed;
    width: 100%;
    margin-bottom: 30px;
}

/* ============================================================
   SUSTAINABILITY 100% ENERGY BANNER
   ============================================================ */
.sustainability-section {
    padding: 60px 0 80px;
    background: #ffffff;
}

.sustain-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}



.sustain-percent {
    font-size: clamp(40px, 8vw, 56px);
    font-weight: 700;
    line-height: 1;
    margin: 0 0 15px;
    font-family: var(--font-display, sans-serif);
    color: #8D5A43;
    letter-spacing: -1px;
}

.sustain-desc {
    color: #666666;
    font-size: 14.5px;
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
}

/* ── Sustainability Section (Base Styling) ── */
.sustain-split-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.sustain-left-col {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #eaf4fd 0%, #fdfce8 50%, #fdeaf1 100%);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

/* Updated to display full image without cropping */
.sustain-right-col {
    width: 100%;
    height: auto;
    object-fit: contain !important;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    display: block;
}

/* ── Tablet & Mobile Adjustments (max-width: 992px) ── */
@media (max-width: 992px) {
    .sustain-split-card { 
        grid-template-columns: 1fr; 
        gap: 20px; 
    }
    
    .sustain-left-col { 
        padding: 40px 30px; 
        text-align: center; 
    }
    
    /* Ensures full image visibility on mobile without height clipping */
    .sustain-right-col { 
        width: 100%;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
    }
}
/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    padding: 70px 0 100px;
    background: #ffffff;
    text-align: left;
}

.contact-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 999px;
    background: #f8f7f7;
    color: #8a705a;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

.contact-title {
    font-size: clamp(28px, 3.8vw, 44px);
    font-weight: 600;
    color: var(--gray-900);
    font-family: var(--font-display, sans-serif);
    line-height: 1.25;
    margin-bottom: 22px;
}

.contact-desc {
    font-size: 14.5px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 35px;
}

.contact-btns {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: 999px;
    background: #ffd000;
    color: #111111;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(255, 208, 0, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 208, 0, 0.4);
}

.btn-brochure {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: 999px;
    background: #f2efe9;
    color: #222222;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.25s ease, background 0.25s ease;
}

.btn-brochure:hover {
    transform: translateY(-2px);
    background: #e6e2db;
}

.contact-gradient-card {
    border-radius: 32px;
    padding: 48px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    background: 
        radial-gradient(circle at 15% 25%, #dcf0fd 0%, rgba(220, 240, 253, 0) 55%),
        radial-gradient(circle at 78% 20%, #fbe1e8 0%, rgba(251, 225, 232, 0) 60%),
        radial-gradient(circle at 85% 78%, #fcf1ca 0%, rgba(252, 241, 202, 0) 60%),
        #f5fafc;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.contact-info-row { display: flex; align-items: flex-start; }
.contact-info-icon { width: 44px; font-size: 18px; color: #111; padding-top: 2px; }
.contact-info-text h4 { font-size: 16px; font-weight: 600; color: #222; margin-bottom: 4px; }
.contact-info-text p { font-size: 14px; color: #666; margin: 0; line-height: 1.6; }
.contact-info-divider { height: 1px; background: rgba(0, 0, 0, 0.06); margin: 20px 0 20px 44px; }

/* Floating Action Stack */
.floating-action-stack {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
    transition: transform 0.25s ease;
}

.float-btn:hover { transform: scale(1.1); }
.float-whatsapp { background-color: #25d366; }
.float-download { background-color: #a35d45; }
.float-top { background-color: #ffffff; color: #222222; border: 1px solid #eaeaea; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-bar {
    background: #2a2a2a;
    color: #ffffff;
    padding: 30px 0;
}

.footer-bar-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy { font-size: 14px; font-weight: 500; color: #ffffff; }
.footer-trademarks { font-size: 12.5px; color: #999999; }

/* ============================================================
   RESPONSIVE MEDIA QUERIES (TABLETS & MOBILES)
   ============================================================ */

/* ── Tablet Viewports (max-width: 992px) ── */
@media (max-width: 992px) {
    :root { --nav-height: 80px; }

    .brand-logo { width: 220px; height: 36px; }

    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 32px; padding: 40px 0 60px; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero-description { text-align: center; margin-bottom: 24px; }
    .hero-actions { justify-content: center; }
    .hero-image { justify-content: center; order: -1; width: 100%; }
    .hero-img-wrapper { height: 350px; max-height: 380px; width: 100%; }
    
    /* 1. HERO IMAGE FULL COVER */
    .hero-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover !important;
        object-position: center !important;
    }

    .about-content { flex-direction: column; gap: 24px; padding: 0 20px; text-align: center; }
    .about-left { max-width: 100%; }

    .fabric-block, .fabric-block-reverse { 
        grid-template-columns: 1fr; 
        gap: 30px; 
    }
    .fabric-image { height: 280px; order: 1; }
    .fabric-card { order: -1; height: auto; padding: 45px 20px 30px; }

    /* 2. CAPACITIES DATA CENTER ALIGNED */
    .capacities-grid { grid-template-columns: 1fr; }
    .cap-left { padding: 48px 28px; text-align: center; align-items: center; }
    .cap-desc { max-width: 100%; margin: 0 auto; }
    .cap-right { padding: 40px 28px; justify-content: center; text-align: center; }

    .cert-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .cert-text-col { max-width: 100%; text-align: center; }

    .sustain-split-card { grid-template-columns: 1fr; gap: 20px; }
    .sustain-left-col { padding: 40px 30px; text-align: center; }
    .sustain-right-col { min-height: 250px; max-height: 320px; }

    .contact-container { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Mobile Viewports (max-width: 768px) ── */
@media (max-width: 768px) {
    :root { --nav-height: 70px; }

    .nav-right { gap: 16px; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height); 
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 24px;
        gap: 18px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-bottom: 1px solid #eee;
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }

    .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hero-actions { width: 100%; flex-direction: column; }
    .hero-actions .btn { width: 100%; }

    /* Product Cards Mobile Vertical Stacking */
    .fabric-card-grid, .lenzing-grid, .natural-grid, .flax-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lenzing-grid .fc-col:not(:last-child)::after,
    .natural-grid .fc-col:not(:last-child)::after,
    .flax-grid .fc-col:not(:last-child)::after {
        display: none;
    }

    .fc-col { padding: 0 10px; }

    .birla-inner-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .birla-divider { width: 80%; height: 1px; margin: 0 auto; }
    .birla-left-col, .birla-right-col { padding: 0 10px; }
    .birla-sublogos-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

    /* Capacities Mobile Grid - Data Center Aligned */
    .cap-stats-grid { 
        grid-template-columns: 1fr; 
        gap: 24px; 
        text-align: center; 
    }
    .cap-stat { 
        align-items: center; 
        text-align: center; 
    }

    /* Yarn Horizontal Snake Roadmap (Mobile) */
    .yarn-oval-wrapper {
        position: relative !important;
        height: 1100px !important;
        aspect-ratio: auto !important; /* Override desktop aspect ratio */
        transform: none !important;
        padding: 0;
        display: block;
        overflow: visible;
    }
    .desktop-yarn-svg { display: none !important; /* Hide desktop oval */ }
    
    .mobile-yarn-svg {
        display: block !important;
        position: absolute;
        top: 200px;
        height: 720px;
        left: 5%;
        right: 5%;
        width: 90%;
        z-index: 1;
        filter: drop-shadow(0 4px 6px rgba(255, 180, 0, 0.4));
    }

    .yarn-center {
        position: absolute;
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        text-align: center;
        z-index: 5;
    }

    /* Tag alignment for horizontal roadmap */
    .yarn-tag {
        position: absolute !important;
        transform: translate(-50%, -50%) !important;
        width: 120px;
        padding: 10px;
        font-size: 11px;
        text-align: center;
        z-index: 2;
        margin: 0;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    /* Horizontal snake row mappings (2 per row wrapping) */
    .yarn-tag:nth-of-type(1)  { top: 200px !important; left: 23% !important; }
    .yarn-tag:nth-of-type(2)  { top: 200px !important; left: 77% !important; }
    .yarn-tag:nth-of-type(3)  { top: 320px !important; left: 77% !important; }
    .yarn-tag:nth-of-type(4)  { top: 320px !important; left: 23% !important; }
    .yarn-tag:nth-of-type(5)  { top: 440px !important; left: 23% !important; }
    .yarn-tag:nth-of-type(6)  { top: 440px !important; left: 77% !important; }
    .yarn-tag:nth-of-type(7)  { top: 560px !important; left: 77% !important; }
    .yarn-tag:nth-of-type(8)  { top: 560px !important; left: 23% !important; }
    .yarn-tag:nth-of-type(9)  { top: 680px !important; left: 23% !important; }
    .yarn-tag:nth-of-type(10) { top: 680px !important; left: 77% !important; }
    .yarn-tag:nth-of-type(11) { top: 800px !important; left: 77% !important; }
    .yarn-tag:nth-of-type(12) { top: 800px !important; left: 23% !important; }
    .yarn-tag:nth-of-type(13) { top: 920px !important; left: 23% !important; }
    .yarn-tag:nth-of-type(14) { top: 920px !important; left: 77% !important; }

    /* ============================================================
       MOBILE LOOM SHUTTLE REVEAL (3-COLUMN GRID LAYOUT)
       ============================================================ */
    .weaving-section {
        padding: 35px 0 50px;
        background: #ffffff;
        overflow: hidden;
    }

    .mobile-weaving-header {
        text-align: center;
        margin-bottom: 16px;
    }

    .mobile-weaving-title {
        font-size: clamp(22px, 6.5vw, 28px);
        font-weight: 800;
        color: #1a1a1a;
        line-height: 1.2;
        letter-spacing: -0.5px;
        margin-bottom: 8px;
    }

    .reweave-btn {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 5px 14px;
        font-size: 11.5px;
        font-weight: 600;
        color: #8d5a43;
        background: #fdf6ee;
        border: 1px solid #f2e2ce;
        border-radius: 999px;
        cursor: pointer;
        transition: transform 0.2s ease, background 0.2s ease;
    }

    .reweave-btn:active {
        transform: scale(0.95);
        background: #fbebd8;
    }

    /* Loom Frame Container */
    .loom-wrapper {
        position: relative;
        width: 100%;
        padding: 12px 8px;
        background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
        border-radius: 16px;
        border: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.03);
        overflow: hidden;
    }

    /* Animated Loom Shuttle Line & Needle */
    .loom-shuttle-line {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, transparent 0%, #ffca28 50%, #f57c00 100%);
        z-index: 10;
        pointer-events: none;
        box-shadow: 0 0 10px rgba(255, 193, 7, 0.8);
    }

    .shuttle-head {
        position: absolute;
        right: -6px;
        top: 50%;
        transform: translateY(-50%);
        width: 10px;
        height: 10px;
        background: #f57c00;
        border: 2px solid #ffffff;
        border-radius: 50%;
        box-shadow: 0 0 10px #ffca28;
    }

    /* 3-Column Grid Rows */
    .loom-row-3col {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        padding: 5px 0;
        position: relative;
        z-index: 2;
        align-items: center;
    }

    .loom-row-3col.row-single {
        display: flex;
        justify-content: center;
    }

    .loom-row-3col .tag {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        font-size: clamp(10px, 2.7vw, 11.5px);
        font-weight: 700;
        padding: 6px 4px;
        border-radius: 10px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 38px;
        line-height: 1.15;
        user-select: none;
        transition: transform 0.2s ease;
    }

    .loom-row-3col.row-single .tag {
        width: 50%;
    }

    .loom-row-3col .tag:active {
        transform: scale(1.08) !important;
    }

    /* Certifications Mobile Grid */
    .cert-row-top { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .cert-row-bottom { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .cert-row img { max-height: 52px; max-width: 90px; }

    .contact-gradient-card { padding: 32px 20px; }
    .contact-btns { flex-direction: column; width: 100%; }
    .btn-whatsapp, .btn-brochure { width: 100%; text-align: center; }

    .floating-action-stack { right: 15px; bottom: 15px; gap: 10px; }
    .float-btn { width: 40px; height: 40px; font-size: 16px; }

    .footer-bar-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .cert-row-top, .cert-row-bottom { grid-template-columns: repeat(2, 1fr); }
}

.mobile-only { display: none !important; }
.desktop-only { display: block; }

@media (max-width: 768px) {
    .mobile-only { display: block !important; }
    .desktop-only { display: none !important; }
}