/* =========================================================
   GLOBAL-TEX
   PREMIUM TYPOGRAPHY + RESPONSIVE SYSTEM
========================================================= */
:root {
    --navy: #0c2034;
    --navy-2: #112d46;
    --navy-3: #173d5c;
    --blue: #094B96;
    --blue-2: #0D5AA8;
    --blue-3: #2B72BA;
    --blue-light: #8eb8d4;
    --blue-soft: #F3F8FC;
    --white: #ffffff;
    --off-white: #f8fafb;
    --gray-50: #f4f6f8;
    --gray-100: #e8edf1;
    --gray-200: #d9e0e6;
    --gray-400: #9aa6b2;
    --gray-500: #6d7882;
    --gray-700: #39434c;
    --text: #17212b;
    --container: 1280px;
    /*
     * PREMIUM TYPOGRAPHY
     *
     * Manrope:
     * - Brand
     * - Headings
     * - Large display typography
     * - Important UI labels
     *
     * DM Sans:
     * - Body
     * - Navigation
     * - Paragraphs
     * - Buttons
     * - Supporting information
     */
    --heading-font:
        "Manrope",
        "Noto Sans",
        "Noto Sans Bengali",
        Arial,
        sans-serif;
    --body-font:
        "DM Sans",
        "Noto Sans",
        "Noto Sans Bengali",
        Arial,
        sans-serif;
    --transition: .35s ease;
	--accent: #1267a8;
    --brand-blue: #0879bd;
    --cta-blue: #0b67aa;
    --black: #111111;
    --surface: #f5f7f8;
    --surface-2: #f2f5f7;
    --blue-pale: #edf4f8;
    --deep: #0b2638;
    --footer: #10171d;
    --ui-font: Inter, Arial, sans-serif;

    /* Compact color aliases */
    --blue-mid: #2f6d9d;
    --blue-muted: #bcd4e7;
    --text-muted: #63727c;
    --border-blue: #a9c8da;
    --white-rgb: 255 255 255;
    --black-rgb: 0 0 0;
    --navy-rgb: 12 32 52;
    --deep-rgb: 11 38 56;
    --blue-rgb: 11 111 179;
    --blue-mid-rgb: 47 109 157;
	--radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
	--shadow-soft:
        0 10px 35px rgba(7, 16, 31, 0.06);
    --shadow-card:
        0 18px 55px rgba(7, 16, 31, 0.09);
    --shadow-hover:
        0 26px 70px rgba(7, 16, 31, 0.13);

    --ease:
        cubic-bezier(.22, 1, .36, 1);

    --fast:
        180ms var(--ease);
    --medium:
        420ms var(--ease);
    --slow:
        700ms var(--ease);
}

/* =========================================================
   RESET
========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: var(--body-font);
    color: var(--text);
    background: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
body.menu-open .mobile-menu-backdrop,
body.menu-open .main-navigation {
    touch-action: auto;
}
img,
svg,
video,
iframe {
    max-width: 100%;
}
img {
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font-family: inherit;
}
button,
input,
textarea,
select {
    font: inherit;
}
.container {
    width: min(var(--container), calc(100% - 70px));
    margin-inline: auto;
}
.center {
  display:flex;
  flex-direction:column;
  align-items:center
}
.min-w-180 span {
	min-width: 180px;
}
.mt-50 { margin-top: 50px; }
/* =========================================================
   HEADER
========================================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgb(var(--white-rgb) / 1);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.site-header.scrolled {
    border-color: var(--gray-200);
    box-shadow:
        0 8px 35px rgb(var(--navy-rgb) / .07);
}
.header-inner {
    height: 88px;
    display: flex;
    align-items: center;
    gap: 40px;
}
/* ---------------------------------------------------------
   Brand
--------------------------------------------------------- */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.brand-symbol {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    padding: 7px;
    background: var(--navy);
}
.brand-symbol span {
    flex: 1;
    background: var(--white);;
}
.brand-symbol span:nth-child(1) {
    height: 35%;
}
.brand-symbol span:nth-child(2) {
    height: 55%;
}
.brand-symbol span:nth-child(3) {
    height: 75%;
}
.brand-symbol span:nth-child(4) {
    height: 95%;
}
.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.brand-name strong {
    font-family: var(--heading-font);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 1.35px;
    color: var(--navy);
    -webkit-font-smoothing: antialiased;
}
.brand-name small {
    margin-top: 6px;
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 1.55px;
    color: var(--gray-500);
    text-transform: uppercase;
}
/* ---------------------------------------------------------
   Navigation
--------------------------------------------------------- */
.main-navigation {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--body-font);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: -.015em;
    color: var(--gray-700);
    /*transition: var(--transition);*/
	transition:
        color .35s ease,
        transform .35s cubic-bezier(.22, 1, .36, 1);
}
.nav-item:hover,
.nav-item.active {
    color: var(--navy);
}
/* Underline */
.nav-item::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--blue);

    transition:
        width .35s cubic-bezier(.22, 1, .36, 1);
}
.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}
/* ---------------------------------------------------------
   Dropdown
--------------------------------------------------------- */
.nav-dropdown {
    position: relative;
}
.nav-dropdown > .nav-item::after {
    display: block;
}
/* Products itself */
.nav-dropdown > .nav-item {
    gap: 8px;
}
/* Dropdown arrow */
.nav-dropdown > .nav-item i {
    font-size: 10px;

    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1),
        color .3s ease;
}
/* Products hover */
.nav-dropdown:hover > .nav-item i {
    transform: translateY(1px) rotate(180deg);
}
/* Products active */
.nav-dropdown > .nav-item.active {
    color: var(--blue);
}
/* Active underline */
.nav-dropdown > .nav-item.active::after {
    display: block;
    width: 100%;
}
/* Active + hover arrow */
.nav-dropdown:hover > .nav-item.active i {
    color: var(--blue);
    transform: translateY(1px) rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 25px);
    left: -20px;
    width: 210px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow:
        0 20px 45px rgb(var(--navy-rgb) / .1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -.005em;
    color: var(--gray-700);
    transition: var(--transition);
}
.dropdown-menu a:hover {
    background: var(--blue-soft);
    color: var(--navy);
}
.dropdown-menu a.active {
    background: var(--blue-soft);
    color: var(--navy);
}
/* =========================================================
   PREMIUM HEADER CTA BUTTON
========================================================= */
.header-contact {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 20px;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(
            135deg,
            var(--navy) 0%,
            var(--navy-3) 55%,
            var(--navy-3) 100%
        );
    color: var(--white);
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -.01em;
    border: 1px solid rgb(var(--white-rgb) / .08);
    box-shadow:
        0 8px 22px rgb(var(--navy-rgb) / .14),
        inset 0 1px 0 rgb(var(--white-rgb) / .08);
    transform: translateY(0);
    transition:
        color .3s ease,
        background .4s ease,
        border-color .3s ease,
        box-shadow .4s ease,
        transform .4s cubic-bezier(.22, 1, .36, 1);
}
/* Shine layer */
.header-contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    z-index: -1;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgb(var(--white-rgb) / .18),
            transparent
        );
    transform: skewX(-20deg);
    transition:
        left .7s cubic-bezier(.22, 1, .36, 1);
}
/* Bottom accent */
.header-contact::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 5px;
    height: 1px;
    background: rgb(var(--white-rgb) / .25);
    transform: scaleX(0);
    transform-origin: center;
    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1);
}
.header-contact:hover {
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--navy-3) 0%,
            var(--blue-mid) 100%
        );
    border-color:
        rgb(var(--white-rgb) / .16);
    transform: translateY(-3px);
    box-shadow:
        0 14px 32px rgb(var(--navy-rgb) / .22),
        0 0 0 4px rgb(var(--blue-mid-rgb) / .08),
        inset 0 1px 0 rgb(var(--white-rgb) / .12);
}
.header-contact:hover::before {
    left: 145%;
}
.header-contact:hover::after {
    transform: scaleX(1);
}
.header-contact:active {
    transform: translateY(-1px) scale(.98);
    box-shadow:
        0 7px 18px rgb(var(--navy-rgb) / .18);
}
/* =========================================================
   MOBILE
========================================================= */
.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: var(--navy);
    padding: 10px;
    cursor: pointer;
}
.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
    transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
/* =========================================================
   HERO
========================================================= */
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}
.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 390px;
    align-items: center;
    gap: 90px;
    padding-top: 90px;
}
.hero-copy {
    max-width: 820px;
}
.section-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 23px;
    color: var(--blue);
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.section-kicker span {
    width: 35px;
    height: 2px;
    background: currentColor;
}
.section-kicker.light {
    color: var(--blue-muted);
}
.section-kicker.light-blue, .light-blue {
    color: var(--blue-light);
}
.hero h1 {
    max-width: 850px;
    font-family: var(--heading-font);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.065;
    font-weight: 700;
    letter-spacing: -3.15px;
    text-wrap: balance;
}
.hero h1 strong {
    display: inline;
    color: var(--blue-light);
    font-weight: 700;
    letter-spacing: inherit;
}
.hero-copy > p {
    max-width: 720px;
    margin-top: 30px;
    color: rgb(var(--white-rgb) / .8);
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.78;
    letter-spacing: -.01em;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}
/* =========================================================
   GLOBAL-TEX — UNIVERSAL INNER PAGE HERO
   ========================================================= */

.page-hero {
    position: relative;
    min-height: 500px;

    display: flex;
    align-items: center;

    overflow: hidden;
    isolation: isolate;

    color: var(--white);
    background: var(--blue-light);
	margin-top: 100px; /* আপনার header-এর actual height */
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;

    transform: scale(1.02);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        linear-gradient(
            90deg,
            rgba(7, 16, 31, .88) 0%,
            rgba(7, 16, 31, .62) 55%,
            rgba(7, 16, 31, .35) 100%
        );
}

.page-hero-content {
    max-width: 760px;
    padding: 150px 0 75px;
}

.page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 20px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page-hero-eyebrow::before {
    content: "";

    width: 35px;
    height: 2px;

    background: currentColor;
}

.page-hero h1 {
    margin: 0;

    color: var(--white);

    font-family: var(--heading-font, "Manrope", sans-serif);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 700;

    line-height: 1;
}

.page-hero p {
    max-width: 600px;

    margin: 25px 0 0;

    color: rgb(var(--white-rgb) / .8);

    font-size: 18px;
    line-height: 1.75;
}
.page-hero-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}
.product-bg {
    background:
        url("../images/Knit-Woven-Denim.jpg")
        center top / 100% auto no-repeat;
}
.quality-bg {
	background:
        url("../images/quality-hero.jpg")
        center center / cover no-repeat;
}

.contact-bg {
    background:
        url("../images/globaltexcn-contact.jpg")
        center center / cover no-repeat;
}


/* =========================================================
   HOVER / MOTION
   ========================================================= */

.page-hero-bg {
    animation: pageHeroZoom 10s cubic-bezier(.22,1,.36,1) both;
}

@keyframes pageHeroZoom {
    from {
        transform: scale(1.07);
    }

    to {
        transform: scale(1.02);
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .page-hero {
        min-height: 390px;
    }

    .page-hero-content {
        padding: 135px 0 65px;
    }

    .page-hero h1 {
        font-size: clamp(44px, 7vw, 62px);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .page-hero {
        min-height: 340px;
    }

    .page-hero-bg {
        background-position: center;
    }

    .page-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(7,16,31,.90) 0%,
                rgba(7,16,31,.65) 100%
            );
    }

    .page-hero-content {
        padding: 120px 0 55px;
    }

    .page-hero-eyebrow {
        margin-bottom: 17px;
        font-size: 8px;
    }

    .page-hero-eyebrow::before {
        width: 24px;
    }

    .page-hero h1 {
        font-size: clamp(39px, 12vw, 54px);
        letter-spacing: -.06em;
    }

    .page-hero p {
        max-width: 420px;

        margin-top: 17px;

        font-size: 13px;
        line-height: 1.7;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .page-hero {
        min-height: 315px;
    }

    .page-hero-content {
        padding-top: 108px;
    }

    .page-hero h1 {
        font-size: 38px;
    }

    .page-hero p {
        font-size: 12px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .page-hero-bg {
        animation: none;
        transform: none;
    }
}
/* =========================================================
   PREMIUM BUTTON SYSTEM
========================================================= */
.btn {
    position: relative;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 25px;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid transparent;
    font-family: var(--body-font);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -.01em;
    white-space: nowrap;
    cursor: pointer;
    transform: translateY(0);
    -webkit-tap-highlight-color: transparent;
    transition:
        color .3s ease,
        background .4s ease,
        border-color .35s ease,
        box-shadow .4s ease,
        transform .42s cubic-bezier(.22, 1, .36, 1);
}
/* ---------------------------------------------------------
   Premium Shine
--------------------------------------------------------- */
.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -125%;
    width: 70%;
    height: 100%;
    z-index: -1;
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgb(var(--white-rgb) / .08) 35%,
            rgb(var(--white-rgb) / .22) 50%,
            rgb(var(--white-rgb) / .08) 65%,
            transparent 100%
        );
    transform: skewX(-20deg);
    transition:
        left .75s cubic-bezier(.22, 1, .36, 1);
}
/* ---------------------------------------------------------
   Subtle Top Highlight
--------------------------------------------------------- */
.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    width: 84%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgb(var(--white-rgb) / .25),
            transparent
        );
    opacity: .65;
    transition:
        opacity .3s ease;
}
/* ---------------------------------------------------------
   Button Content
--------------------------------------------------------- */
.btn i,
.btn svg {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    transition:
        transform .42s cubic-bezier(.22, 1, .36, 1);
}
/* ---------------------------------------------------------
   Primary Button
--------------------------------------------------------- */
.btn-primary {
    background:
        linear-gradient(
            135deg,
            var(--blue-mid) 0%,
            var(--blue-mid) 50%,
            var(--blue-mid) 100%
        );
    color: var(--white);
    border-color:
        rgb(var(--white-rgb) / .08);
    box-shadow:
        0 9px 24px rgb(var(--blue-mid-rgb) / .20),
        inset 0 1px 0 rgb(var(--white-rgb) / .14);
}
.btn-primary:hover {
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--blue-mid) 0%,
            var(--blue-mid) 50%,
            var(--blue-mid) 100%
        );
    border-color:
        rgb(var(--white-rgb) / .16);
    transform:
        translateY(-4px);
    box-shadow:
        0 16px 34px rgb(var(--blue-mid-rgb) / .28),
        0 0 0 4px rgb(var(--blue-mid-rgb) / .08),
        inset 0 1px 0 rgb(var(--white-rgb) / .18);
}
.btn-primary:hover::before {
    left: 145%;
}
.btn-primary:hover::after {
    opacity: 1;
}
.btn-primary:active {
    transform:
        translateY(-1px)
        scale(.975);
    box-shadow:
        0 7px 17px rgb(var(--blue-mid-rgb) / .20);
}
/* ---------------------------------------------------------
   Primary Button Arrow Animation
--------------------------------------------------------- */
.btn-primary i.fa-arrow-right,
.btn-primary i.fa-arrow-up-right,
.btn-primary svg {
    margin-left: 2px;
}
.btn-primary:hover i.fa-arrow-right,
.btn-primary:hover i.fa-arrow-up-right {
    transform:
        translateX(5px)
        translateY(-1px);
}
/* ---------------------------------------------------------
   Light Outline Button
--------------------------------------------------------- */
.btn-outline-light {
    position: relative;
    border-color:
        rgb(var(--white-rgb) / .38);
    background:
        rgb(var(--white-rgb) / .025);
    color: var(--white);
    box-shadow:
        inset 0 1px 0 rgb(var(--white-rgb) / .08);
}
.btn-outline-light::before {
    background:
        linear-gradient(
            90deg,
            transparent,
            rgb(var(--white-rgb) / .30),
            transparent
        );
}
.btn-outline-light:hover {
    color: var(--navy);
    background: var(--white);
    border-color: var(--white);
    transform:
        translateY(-4px);
    box-shadow:
        0 15px 32px rgb(var(--black-rgb) / .18),
        0 0 0 4px rgb(var(--white-rgb) / .08);
}
.btn-outline-light:hover::before {
    left: 145%;
}
.btn-outline-light:hover i,
.btn-outline-light:hover svg {
    transform:
        translateX(5px);
}
.btn-outline-light:active {
    transform:
        translateY(-1px)
        scale(.975);
}
/* ---------------------------------------------------------
   var(--white) CTA Button
--------------------------------------------------------- */
.btn-white {
    width: 100%;
    background:
        linear-gradient(
            135deg,
            var(--white) 0%,
            var(--off-white) 100%
        );
    color: var(--navy);
    border-color:
        rgb(var(--white-rgb) / .75);
    box-shadow:
        0 10px 28px rgb(var(--black-rgb) / .12),
        inset 0 1px 0 rgb(var(--white-rgb) / 1);
}
.btn-white::before {
    background:
        linear-gradient(
            90deg,
            transparent,
            rgb(var(--blue-mid-rgb) / .08),
            transparent
        );
}
.btn-white:hover {
    background:
        linear-gradient(
            135deg,
            var(--white) 0%,
            var(--blue-pale) 100%
        );
    color: var(--navy);
    border-color: var(--white);
    transform:
        translateY(-4px);
    box-shadow:
        0 17px 38px rgb(var(--black-rgb) / .18),
        0 0 0 4px rgb(var(--white-rgb) / .08),
        inset 0 1px 0 var(--white);
}
.btn-white:hover::before {
    left: 145%;
}
.btn-white:hover i,
.btn-white:hover svg {
    transform:
        translateX(5px);
}
.btn-white:active {
    transform:
        translateY(-1px)
        scale(.975);
    box-shadow:
        0 8px 20px rgb(var(--black-rgb) / .14);
}
/* ---------------------------------------------------------
   Button Focus
--------------------------------------------------------- */
.btn:focus-visible,
.header-contact:focus-visible {
    outline: 2px solid var(--blue-light);
    outline-offset: 5px;
}
/* ---------------------------------------------------------
   Button Disabled
--------------------------------------------------------- */
.btn:disabled,
.btn.disabled,
.header-contact:disabled {
    cursor: not-allowed;
    opacity: .55;
    transform: none !important;
    box-shadow: none !important;
}
/* ---------------------------------------------------------
   Touch Devices
--------------------------------------------------------- */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }
    .btn:hover::before {
        left: -125%;
    }
    .btn:active {
        transform:
            scale(.975);
    }
    .header-contact:hover {
        transform: none;
    }
    .header-contact:hover::before {
        left: -120%;
    }
    .header-contact:active {
        transform:
            scale(.975);
    }
}
/* ---------------------------------------------------------
   Button Reduced Motion
--------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .btn,
    .btn::before,
    .btn::after,
    .btn i,
    .btn svg,
    .header-contact,
    .header-contact::before,
    .header-contact::after {
        transition: none !important;
    }
    .btn:hover,
    .btn:active,
    .header-contact:hover,
    .header-contact:active {
        transform: none !important;
    }
}
/* =========================================================
   HERO SIDE
========================================================= */
.hero-side {
    display: flex;
    justify-content: flex-end;
}
.hero-side-card {
    width: 100%;
    max-width: 340px;
    padding: 38px;
    border: 1px solid rgb(var(--white-rgb) / .25);
    background: rgb(var(--navy-rgb) / .38);
    backdrop-filter: blur(10px);
}
.side-number {
    display: block;
    color: var(--blue-light);
    font-family: var(--body-font);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 2px;
}
.side-label {
    display: block;
    margin-top: 55px;
    color: rgb(var(--white-rgb) / .6);
    font-family: var(--body-font);
    font-size: 11px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.hero-side-card h3 {
    margin-top: 14px;
    font-family: var(--heading-font);
    font-size: 27px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -.65px;
}
.side-line {
    width: 45px;
    height: 1px;
    margin-top: 28px;
    background: var(--blue-light);
}
.side-caption {
    display: block;
    margin-top: 18px;
    color: rgb(var(--white-rgb) / .55);
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
}
/* =========================================================
   HERO BOTTOM
========================================================= */
.hero-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    background: rgb(var(--navy-rgb) / .75);
    border-top: 1px solid rgb(var(--white-rgb) / .15);
}
.hero-bottom-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 22px;
}
.hero-bottom-inner span {
    color: rgb(var(--white-rgb) / .65);
    font-family: var(--body-font);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.hero-bottom-inner i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--blue-light);
}
/* =========================================================
   COMMON SECTIONS
========================================================= */
.section {
    padding: 100px 0;
}
.section-light {
    padding: 100px 0;
    background: var(--off-white);
}
.section-heading {
    display: grid;
    grid-template-columns: 1fr .58fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 65px;
}
.section-heading h2,
.center-heading h2,
.about-content h2,
.why-header h2,
.quality-content h2,
.network-content h2,
.sustainability-content h2,
.cta-content h2 {
    font-family: var(--heading-font);
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.095;
    font-weight: 700;
    letter-spacing: -2.65px;
    color: var(--navy);
    text-wrap: balance;
    -webkit-font-smoothing: antialiased;
}
.section-heading h2 em,
.center-heading h2 em,
.about-content h2 em,
.quality-content h2 em,
.network-content h2 em,
.sustainability-content h2 em {
    font-style: normal;
    color: var(--blue);
}
.section-heading > p {
    color: var(--gray-500);
    font-family: var(--body-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.82;
    letter-spacing: -.01em;
}
.center-heading {
    max-width: 850px;
    margin: 0 auto 65px;
    text-align: center;
}
.center-heading .section-kicker {
    justify-content: center;
}
.center-heading > p {
    max-width: 650px;
    margin: 22px auto 0;
    color: var(--gray-500);
    font-family: var(--body-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.78;
    letter-spacing: -.01em;
}
/* =========================================================
   ABOUT
========================================================= */
.about {
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: .95fr 1fr;
    gap: 100px;
    align-items: center;
}
.about-image-wrap {
    position: relative;
    padding: 0 45px 45px 0;
}
.about-image {
    min-height: 620px;
    background-image:
        linear-gradient(
            rgb(var(--navy-rgb) / .05),
            rgb(var(--navy-rgb) / .15)
        ),
        url("../images/globaltex-finishing.jpg");
    background-size: cover;
    background-position: center;
}
.about-image-wrap::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 72%;
    height: 72%;
    border: 1px solid var(--navy);
    z-index: -1;
}
.image-caption {
    position: absolute;
    left: 30px;
    bottom: 20px;
    padding: 25px 30px;
    background: var(--navy);
    color: var(--white);
}
.image-caption span {
    display: block;
    color: var(--blue-light);
    font-family: var(--body-font);
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.image-caption strong {
    display: block;
    margin-top: 8px;
    font-family: var(--heading-font);
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
}
.about-content .large-text {
    margin-top: 30px;
    color: var(--gray-700);
    font-family: var(--body-font);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: -.015em;
}
.about-content > p:not(.large-text) {
    margin-top: 22px;
    color: var(--gray-500);
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}
.about-statement {
    margin-top: 35px;
    margin-bottom: 20px;
    padding: 25px 28px;
    border-left: 3px solid var(--blue);
    background: var(--blue-soft);
}
.about-statement span {
    display: block;
    color: var(--blue);
    font-family: var(--body-font);
    font-size: 11px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.about-statement strong {
    display: block;
    margin-top: 8px;
    color: var(--navy);
    font-family: var(--heading-font);
    font-size: 20px;
    line-height: 1.45;
    font-weight: 700;
    letter-spacing: -.3px;
}
/* =========================================================
   ARROW LINK — Premium Hover Animation
========================================================= */
.arrow-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 26px;
    padding: 9px 0 10px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .06em;
    line-height: 1.4;
    text-transform: uppercase;
    white-space: nowrap;
    color: inherit;
    border-bottom: 1px solid currentColor;
    overflow: visible;
    transition:
        color .3s ease,
        border-color .3s ease,
        transform .42s cubic-bezier(.22, 1, .36, 1);
}
.arrow-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: var(--brand-blue);
    pointer-events: none;
    transform-origin: left center;
    transition:
        width .45s cubic-bezier(.2, .75, .2, 1);
}
.arrow-link b {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
    min-width: 16px;
    margin-left: 4px;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    transition:
        transform .42s cubic-bezier(.22, 1, .36, 1),
        opacity .25s ease;
}
.arrow-link:hover {
    color: var(--brand-blue);
    border-bottom-color: var(--blue-muted);
    transform: translateY(-1px);
}
.arrow-link:hover::before {
    width: 100%;
}
.arrow-link:hover b {
    transform: translate3d(7px, 0, 0);
    opacity: 1;
}
.arrow-link:focus-visible {
    outline: 2px solid var(--brand-blue);
    outline-offset: 5px;
}
@media (prefers-reduced-motion: reduce) {
    .arrow-link,
    .arrow-link::before,
    .arrow-link b {
        transition: none !important;
    }
    .arrow-link:hover {
        transform: none;
    }
    .arrow-link:hover b {
        transform: none;
    }
    .arrow-link:hover::before {
        width: 100%;
    }
}
/* =========================================================
   FABRICS
========================================================= */
.fabric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch;
}
.fabric-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.fabric-card:hover {
    transform: translateY(-7px);
    box-shadow:
        0 25px 60px rgb(var(--navy-rgb) / .1);
}
.fabric-photo {
    position: relative;
    flex-shrink: 0;
    height: 370px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}
.fabric-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            transparent 45%,
            rgb(var(--navy-rgb) / .75)
        );
}
.knit-photo {
    background-image:
        url("../images/knit-fabrics.jpg");
}
.woven-photo {
    background-image:
        url("../images/woven-fabrics.jpg");
}
.denim-photo {
    background-image:
        url("../images/denim-fabrics.jpg");
}
.fabric-index {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(var(--white-rgb) / .9);
    color: var(--navy);
    font-family: var(--body-font);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
}
.fabric-photo-title {
    position: relative;
    z-index: 2;
    padding: 25px 28px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 1.8px;
}
.fabric-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 34px;
}
.fabric-category {
    color: var(--blue);
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.fabric-info h3 {
    margin-top: 13px;
    color: var(--navy);
    font-family: var(--heading-font);
    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -.7px;
}
.fabric-info > p {
    margin-top: 18px;
    color: var(--gray-500);
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: -.005em;
}
.fabric-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 22px;
	margin-bottom: 20px;
}
.fabric-info .arrow-link {
    margin-top: auto;
    align-self: flex-start;
}
.fabric-list span {
    padding: 6px 9px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-family: var(--body-font);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 500;
}
.fabric-list span:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--white);
}
/* =========================================================
   WHY
========================================================= */
.why {
    background: var(--navy);
    color: var(--white);
}
.why-header {
    margin-bottom: 65px;
}
.why-header h2 {
    color: var(--white);
}
.why-header h2 em {
    font-style: normal;
    color: var(--blue-light);
}
.why-header p {
    max-width: 700px;
    margin-top: 25px;
    color: rgb(var(--white-rgb) / .6);
    font-family: var(--body-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgb(var(--white-rgb) / .15);
}
.why-card {
    position: relative;
    min-height: 285px;
    padding: 35px;
    background: var(--navy);
    transition: var(--transition);
}
.why-card:hover {
    background: var(--navy-2);
}
.why-number {
    position: absolute;
    top: 30px;
    right: 30px;
    color: rgb(var(--white-rgb) / .25);
    font-family: var(--body-font);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 1px;
}
.why-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(var(--white-rgb) / .09);
    color: var(--blue-light);;
    font-size: 18px;
}
.why-card h3 {
    margin-top: 35px;
    font-family: var(--heading-font);
    font-size: 21px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -.35px;
}
.why-card p {
    margin-top: 12px;
    color: rgb(var(--white-rgb) / .55);
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
}
/* =========================================================
   PROCESS
========================================================= */

.process {
    position: relative;
    overflow: hidden;
    padding: 145px 0;
    background: linear-gradient(
        135deg,
        var(--surface),
        var(--white)
    );
}


/* Large background typography */

.process::before {
    content: "PROCESS";
    position: absolute;
    right: -80px;
    top: 40px;

    font-family: "Manrope", sans-serif;
    font-size: clamp(100px, 16vw, 230px);
    font-weight: 800;
    line-height: 1;

    color: rgb(var(--blue-rgb) / 0.035);
    letter-spacing: -0.08em;

    pointer-events: none;
    user-select: none;
}

/* =========================================================
   PROCESS STEPS GRID
========================================================= */

.steps {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #ccd3d7;
    border-left: 1px solid #ccd3d7;
}


/* ---------- Individual Step ---------- */

.steps > div {
    position: relative;

    min-height: 230px;
    padding: 38px;

    background: rgb(var(--white-rgb) / 0.72);

    border-right: 1px solid #ccd3d7;
    border-bottom: 1px solid #ccd3d7;

    transition:
        transform 0.4s cubic-bezier(.2,.75,.2,1),
        background 0.4s ease,
        box-shadow 0.4s ease;
}


.steps > div:before {
  content:"";
  position:absolute;
  left:0;
  top:-1px;
  width:0;
  height:2px;
  background:var(--blue);
  transition:width .45s var(--ease)
}
.steps > div:hover {
  background:linear-gradient(90deg,rgba(11,111,179,.045),transparent);
}
.steps > div:hover:before {
  width:100%
}


/* ---------- Hover Effect ---------- */

/*.steps > div:hover {
    transform: translateY(-7px);

    background: var(--white);;

    box-shadow:
        0 20px 45px rgb(var(--deep-rgb) / 0.08);
}*/


/* ---------- Step Number ---------- */

.steps span {
    display: inline-flex;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--border-blue);
    border-radius: 50%;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;

    color: var(--brand-blue);

    transition:
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}


/* Number hover */

.steps > div:hover span {
    background: var(--brand-blue);
    color: var(--white);;

    border-color: var(--brand-blue);

    transform: rotate(8deg);
}


/* ---------- Step Title ---------- */

.steps h3 {
    margin: 24px 0 8px;

    font-family: "Manrope", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;

    letter-spacing: -0.02em;

    color: var(--text);
}


/* ---------- Step Description ---------- */

.steps p {
    max-width: 330px;

    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.8;

    color: var(--text-muted);
}


/* =========================================================
   TABLET
   951px – 1100px
========================================================= */

@media (max-width: 1100px) {

    .process {
        padding: 120px 0;
    }

    .process-head {
        margin-bottom: 60px;
    }

    .process-head h2 {
        font-size: clamp(42px, 5vw, 60px);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps > div {
        min-height: 210px;
        padding: 32px;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
   761px – 950px
========================================================= */

@media (max-width: 950px) {

    .process {
        padding: 105px 0;
    }

    .process-head {
        gap: 35px;
        margin-bottom: 55px;
    }

    .process-head h2 {
        font-size: 48px;
    }

    .process-head p {
        max-width: 300px;
        font-size: 15px;
    }

    .steps > div {
        min-height: 200px;
        padding: 30px;
    }

    .steps h3 {
        font-size: 22px;
    }

}


/* =========================================================
   MOBILE
   max-width: 760px
========================================================= */

@media (max-width: 760px) {

    .process {
        padding: 88px 0;
    }


    /* Smaller background word */

    .process::before {
        right: -40px;
        top: 35px;

        font-size: 100px;
        opacity: 0.8;
    }


    /* Heading */

    .process-head {
        display: block;

        margin-bottom: 45px;
    }

    .process-head h2 {
        font-size: 42px;
        line-height: 1.08;
    }

    .process-head p {
        max-width: 100%;
        margin-top: 20px;

        font-size: 15px;
        line-height: 1.75;
    }


    /* Steps become single column */

    .steps {
        grid-template-columns: 1fr;
    }


    .steps > div {
        min-height: 0;
        padding: 28px;
    }


    .steps h3 {
        margin-top: 20px;

        font-size: 22px;
    }


    .steps p {
        max-width: 100%;

        font-size: 14px;
        line-height: 1.75;
    }

}


/* =========================================================
   SMALL MOBILE
   max-width: 480px
========================================================= */

@media (max-width: 480px) {

    .process {
        padding: 72px 0;
    }

    .process::before {
        font-size: 75px;
        right: -25px;
        top: 25px;
    }

    .process-head {
        margin-bottom: 35px;
    }

    .process-head h2 {
        font-size: 36px;
    }

    .process-head p {
        font-size: 14px;
    }

    .steps > div {
        padding: 24px;
    }

    .steps span {
        width: 38px;
        height: 38px;

        font-size: 13px;
    }

    .steps h3 {
        margin: 18px 0 7px;

        font-size: 20px;
    }

    .steps p {
        font-size: 14px;
        line-height: 1.7;
    }

}

/* =========================================================
   QUALITY
========================================================= */
.quality {
    background: var(--gray-50);
}
.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}
.quality-content > p {
    font-family: var(--body-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
}
.quality-lead {
    margin-top: 30px;
    font-size: 19px !important;
    line-height: 1.8;
    font-weight: 400;
    color: var(--gray-700) !important;
}
/* =========================================================
   GLOBAL-TEX — QUALITY CHECKS
   Responsive
========================================================= */

.checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
}

.checks span {
    display: block;
    padding: 11px 0;

    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);

    transition:
        color .25s ease,
        transform .25s ease;
}

.checks span:hover {
    color: var(--blue);
    transform: translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .checks {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 22px;
        font-size: 14px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .checks {
        grid-template-columns: 1fr;
        gap: 0;

        margin-top: 25px;
        padding-top: 20px;

        font-size: 14px;
    }

    .checks span {
        padding: 10px 0;
    }

    .checks span:hover {
        transform: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .checks {
        font-size: 14px;
        padding-top: 18px;
    }

    .checks span {
        padding: 9px 0;
    }

}
.quality-visual {
    position: relative;
    padding: 0 0 40px 40px;
}
.quality-image {
    min-height: 590px;
    background-image:
        linear-gradient(
            rgb(var(--navy-rgb) / .08),
            rgb(var(--navy-rgb) / .1)
        ),
        url("../images/Textile-Quality-Contro.jpg");
    background-size: cover;
    background-position: center;
}
.quality-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 27px 32px;
    background: var(--navy);
    color: var(--white);
}
.quality-badge span {
    display: block;
    color: var(--blue-light);;
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.quality-badge strong {
    display: block;
    margin-top: 7px;
    font-family: var(--heading-font);
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -.3px;
}
/* =========================================================
   NETWORK
========================================================= */
.network {
  background:var(--blue-pale);
  text-align:center
}
.network-content > p {
    margin-top: 28px;
    color: var(--gray-500);
    font-family: var(--body-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
}
.network-content .section-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ================================
   CHINA SOURCING NETWORK — ROUTE
   ================================ */

.route {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  margin: 65px auto 34px;
  background: rgb(var(--white-rgb) / .62);
  border-top: 1px solid #c6d2da;
  border-bottom: 1px solid #c6d2da;
  box-shadow: 0 18px 55px rgb(var(--deep-rgb) / .07);
}

.route div {
  padding: 34px 15px;
}

.route small {
  display: block;
  font-size: 14px;
  letter-spacing: .15em;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.route strong {
  font: 800 20px var(--heading-font);
}

.route > b {
  font-size: 30px;
  color: var(--accent);
  animation: arrowPulse 2s ease-in-out infinite;
}


/* ================================
   MOBILE
   ================================ */

@media (max-width: 760px) {

  .route {
    grid-template-columns: 1fr;
  }

  .route > b {
    transform: rotate(90deg);
  }

  .route strong {
    font-size: 21px;
  }

  .route small {
    font-size: 14px;
  }
}


/* ================================
   ARROW ANIMATION
   ================================ */

@keyframes arrowPulse {

  0%, 100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(6px);
  }

}


.partner-placeholder {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 22px;
    padding: 22px;
    border: 1px dashed var(--gray-400);
}
.partner-placeholder > i {
    font-size: 25px;
    color: var(--blue);
}
.partner-placeholder strong {
    display: block;
    color: var(--navy);
    font-family: var(--heading-font);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}
.partner-placeholder span {
    display: block;
    margin-top: 5px;
    color: var(--gray-500);
    font-family: var(--body-font);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
}
/* =========================================================
   SUSTAINABILITY
========================================================= */
.sustainability {
    background: var(--gray-50);
}
.sustainability-inner {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
    align-items: center;
    padding: 80px;
    background:
        linear-gradient(
            120deg,
            var(--blue-pale),
            var(--off-white)
        );
    border: 1px solid var(--gray-200);
}
.sustainability-content p {
    max-width: 600px;
    margin-top: 28px;
    color: var(--gray-500);
    font-family: var(--body-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
}
.sustainability-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.sustainability-items div {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px;
    background: var(--white);
    border: 1px solid var(--gray-200);
	transition: 
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}
/* Hover Effect */
.sustainability-items > div:hover {
    transform: translateY(-1px);
    border-color: var(--blue);
    box-shadow: 0 15px 35px rgb(var(--black-rgb) / 0.10);
}
.sustainability-items i {
    color: var(--blue);
    font-size: 25px;
}
.sustainability-items span {
    margin-top: 18px;
    color: var(--navy);
    font-family: var(--body-font);
    font-size: 15px;
    line-height: 1.5;

    font-weight: 700;
    letter-spacing: -.01em;
	transition: all 0.35s ease;
}
.sustainability-items > div:hover span {
    transform: translateX(4px);
}
/* =========================================================
   CUSTOMERS
========================================================= */
.customer-tags {
    display: flex;
    flex-wrap: wrap;    
	align-items: stretch;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
}
.customer-tags.gap20 {
	gap: 20px;
}

.customer-tags span {
	flex: 0 0 calc(20% - 10px);
    box-sizing: border-box;
	display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;	
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.customer-tags span:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-2px);
}
/* Desktop — 5 + 4 = 2 Lines */
@media (min-width: 769px) {
    .customer-tags span {
        flex: 0 0 calc(20% - 10px);
    }
}

/* Tablet — 2 Columns */
@media (min-width: 481px) and (max-width: 768px) {
    .customer-tags {
        max-width: 600px;
    }

    .customer-tags span {
        flex: 0 0 calc(50% - 6px);
    }
}

/* Mobile — 1 Column */
@media (max-width: 480px) {
    .customer-tags {
        width: 100%;
        gap: 10px;
    }

    .customer-tags span {
        flex: 0 0 100%;
    }
}
.customer-note {
    max-width: 750px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 55px auto 0;
    padding: 25px 30px;
    background: var(--blue-soft);
    border: 1px solid var(--gray-200);
}
.customer-note > i {
    color: var(--blue);
    font-size: 25px;
}
.customer-note strong {
    color: var(--navy);
    font-family: var(--heading-font);
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
}
.customer-note p {
    margin-top: 3px;
    color: var(--gray-500);
    font-family: var(--body-font);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
}
/* =========================================================
   CTA
========================================================= */
.cta {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: var(--navy);
    color: var(--white);
}
.cta-background {
    position: absolute;
    inset: 0;
    background-image:
        url("../images/globaltex-fabric-warehouse.jpg");
    background-size: cover;
    background-position: center;
    opacity: .15;
}
.cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: center;
    padding: 75px;
    border: 1px solid rgb(var(--white-rgb) / .15);
    background: rgb(var(--navy-rgb) / .72);
}
.cta-content h2 {
    color: var(--white);
}
.cta-content h2 em {
    font-style: normal;
    color: var(--blue-light);
}
.cta-content p {
    max-width: 680px;
    margin-top: 25px;
    color: rgb(var(--white-rgb) / .65);
    font-family: var(--body-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
}
.cta-slogan {
    display: block;
    margin-top: 25px;
    color: var(--blue-light);
    font-family: var(--heading-font);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: -.2px;
}
.cta-action {
    min-width: 0;
    width: min(100%, 350px);
}
.cta-action .btn {
    max-width: 100%;
}
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 25px;
}
.contact-list a,
.contact-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(var(--white-rgb) / .6);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}
.contact-list i {
    width: 30px;

    color: var(--blue-light);;
    text-align: center;
}
/* =========================================================
   FOOTER
========================================================= */
.footer {
    padding: 75px 0 25px;
    background: var(--navy);
    color: var(--white);
}
.footer-main {
    display: grid;
    grid-template-columns: 1.4fr .7fr .7fr 1fr;
    gap: 65px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgb(var(--white-rgb) / .1);
}
.footer-logo .brand-name strong {
    color: var(--white);
}
.footer-logo .brand-name small {
    color: rgb(var(--white-rgb) / .45);
}
.footer-brand > p {
    margin-top: 25px;
    color: rgb(var(--white-rgb) / .5);
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
}
.footer-fabric-types {
    margin-top: 12px;
    color: var(--blue-light);;
    font-family: var(--body-font);
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 1px;
}
.footer-fabric-types span {
    margin: 0 6px;
    color: rgb(var(--white-rgb) / .3);
}
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.footer-column h4 {
    margin-bottom: 10px;
    color: var(--white);
    font-family: var(--body-font);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}
.footer-column a,
.footer-column span {
    color: rgb(var(--white-rgb) / .5);
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    transition: var(--transition);
}
.footer-column a:hover {
    color: var(--blue-light);
}
.footer-contact a,
.footer-contact span {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-contact i {
    width: 16px;
    margin-top: 5px;
    color: var(--blue-light);
    text-align: center;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
}
.footer-bottom p {
    color: rgb(var(--white-rgb) / .35);
    font-family: var(--body-font);
    font-size: 12px;
    line-height: 1.5;
    font-weight: 400;
}
/* =========================================================
   BACK TO TOP
========================================================= */
.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 500;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: var(--navy);
    color: var(--white);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--blue);
}
/* =========================================================
   REVEAL ANIMATION
========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
/* =========================================================
   GLOBAL WIDTH / OVERFLOW SAFETY
========================================================= */
.hero,
.hero-inner,
.hero-copy,
.hero-side,
.hero-side-card,
.hero-buttons,
.cta-inner,
.cta-content,
.cta-action,
.sustainability-inner,
.sustainability-content,
.network-inner,
.network-content,
.about-inner,
.about-content,
.quality-inner,
.quality-content,
.footer-main,
.footer-column {
    min-width: 0;
}
.hero-copy,
.hero-copy > p,
.hero h1,
.section-heading,
.center-heading,
.about-content,
.why-header,
.quality-content,
.network-content,
.sustainability-content,
.cta-content,
.footer-column {
    overflow-wrap: anywhere;
    word-break: normal;
}
/* =========================================================
   HERO OVERLAY
========================================================= */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgb(var(--navy-rgb) / .96) 0%,
            rgb(var(--navy-rgb) / .88) 28%,
            rgb(var(--navy-rgb) / .55) 48%,
            rgb(var(--navy-rgb) / .18) 62%,
            rgb(var(--navy-rgb) / 0) 72%
        );
    pointer-events: none;
}
/* =========================================================
   PREMIUM HERO MOTION
========================================================= */
.hero-background {
    position: absolute;
    inset: 0;
    background-image:
        url("../images/Knit-Woven-Denim.jpg");
    background-size: cover;
    background-position: center;
    transform: scale(1.035) translate3d(0, 0, 0);
    transform-origin: center center;
    will-change:
        transform,
        opacity,
        background-image;
    transition:
        opacity .8s cubic-bezier(.22, .61, .36, 1),
        transform 7.2s cubic-bezier(.16, 1, .3, 1);
    animation:
        heroKenBurns 7.2s cubic-bezier(.16, 1, .3, 1) both;
}
.hero.is-transitioning .hero-background {
    opacity: .02;
    transition:
        opacity .55s cubic-bezier(.4, 0, 1, 1);
}
@keyframes heroKenBurns {
    0% {
        transform:
            scale(1.035)
            translate3d(0, 0, 0);
    }
    100% {
        transform:
            scale(1.105)
            translate3d(-.45%, -.35%, 0);
    }
}
/* =========================================================
   HERO SLIDER CONTROLS
========================================================= */
.hero-slider-controls-wrap {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 5;
    width: 100%;
    bottom: clamp(104px, 11vh, 132px);
    pointer-events: none;
}
.hero-slider-controls-wrap .hero-slider-controls {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(var(--container), calc(100% - 70px));
    max-width: var(--container);
    min-width: 0;
    min-height: 1px;
    margin-inline: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
    box-sizing: border-box;
    transform: none;
    pointer-events: none;
}
.hero-slider-controls-wrap .hero-slider-controls > * {
    pointer-events: auto;
}
.hero-slider-arrow {
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(var(--white-rgb) / .28);
    border-radius: 50%;
    color: var(--white);
    background: rgb(var(--white-rgb) / .075);
    backdrop-filter: blur(14px) saturate(125%);
    -webkit-backdrop-filter:
        blur(14px) saturate(125%);
    box-shadow:
        0 12px 32px rgb(var(--black-rgb) / .18),
        inset 0 1px 0 rgb(var(--white-rgb) / .12);
    cursor: pointer;
    transition:
        transform .32s cubic-bezier(.22, 1, .36, 1),
        background .32s ease,
        border-color .32s ease,
        box-shadow .32s ease;
}
.hero-slider-arrow i {
    font-size: 13px;
    transition:
        transform .32s cubic-bezier(.22, 1, .36, 1);
}
.hero-slider-arrow:hover {
    transform:
        translateY(-3px)
        scale(1.045);
    background: rgb(var(--white-rgb) / .15);
    border-color:
        rgb(var(--white-rgb) / .58);
    box-shadow:
        0 16px 38px rgb(var(--black-rgb) / .25),
        0 0 24px rgb(var(--white-rgb) / .10);
}
.hero-slider-prev:hover i {
    transform: translateX(-2px);
}
.hero-slider-next:hover i {
    transform: translateX(2px);
}
.hero-slider-arrow:active {
    transform:
        translateY(0)
        scale(.94);
}
.hero-slider-arrow:focus-visible,
.hero-slider-dots button:focus-visible {
    outline: 2px solid rgb(var(--white-rgb) / .9);
    outline-offset: 4px;
}
.hero-slider-dots {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 4px;
}
.hero-slider-dots button {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: rgb(var(--white-rgb) / .42);
    cursor: pointer;
    transition:
        width .35s cubic-bezier(.22, 1, .36, 1),
        background .35s ease,
        transform .35s ease;
}
.hero-slider-dots button:hover {
    transform: scale(1.25);
    background: rgb(var(--white-rgb) / .72);
}
.hero-slider-dots button.active {
    width: 25px;
    background: var(--white);
}
/* =========================================================
   DESKTOP
========================================================= */
@media (min-width: 1400px) {
    .container {
        width:
            min(
                var(--container),
                calc(100% - 96px)
            );
    }
    .hero-inner {
        gap: 110px;
    }
}
/* =========================================================
   TABLET / COMPACT DESKTOP — 951–1150
========================================================= */
@media (min-width: 951px) and (max-width: 1150px) {
    .main-navigation {
        gap: 14px;
    }
    .nav-item {
        font-size: 14px;
        letter-spacing: -.01em;
    }
    .header-inner {
        gap: 18px;
    }
    .hero-inner {
        width:
            min(
                var(--container),
                calc(100% - 56px)
            );
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 300px);
        gap: 36px;
    }
    .hero h1 {
        font-size:
            clamp(
                44px,
                5.15vw,
                56px
            );
        line-height: 1.075;
        letter-spacing: -2.55px;
    }
    .hero-copy > p {
        max-width: 100%;
        font-size: 17px;
        line-height: 1.75;
    }
    .hero-slider-controls-wrap .hero-slider-controls {
        width:
            min(
                var(--container),
                calc(100% - 56px)
            );
    }
}
/* =========================================================
   TABLET / MOBILE — <=950
========================================================= */
@media (max-width: 950px) {
    .container {
        width:
            min(
                var(--container),
                calc(100% - 40px)
            );
    }
    .header-inner {
        height: 78px;
        justify-content: space-between;
    }
    .brand {
        min-width: 0;
    }
    .mobile-toggle {
        display: grid;
        place-items: center;
        position: relative;
        z-index: 3005;
        cursor: pointer;
        pointer-events: auto;
    }
    .main-navigation {
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }
    .hero {
        min-height: 800px;
    }
    .hero-inner {
        width: calc(100% - 40px);
        max-width: none;
        grid-template-columns:
            minmax(0, 1fr);
        padding-top: 100px;
        padding-bottom: 105px;
    }
    .hero-copy {
        width: min(100%, 820px);
        max-width: 820px;
    }
    .hero h1 {
        max-width: 100%;
        font-size: 50px;
        line-height: 1.075;
        letter-spacing: -2.6px;
    }
    .hero-side {
        display: none;
    }
    .hero-slider-controls-wrap .hero-slider-controls {
        width: calc(100% - 40px);
    }
    .hero-slider-arrow {
        width: 47px;
        height: 47px;
    }
    .section-heading {
        grid-template-columns: 1fr;
    }
    .about-grid,
    .quality-grid,
    .network-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-image-wrap {
        max-width: 700px;
    }
    .quality-visual {
        max-width: 700px;
    }
    .fabric-grid {
        grid-template-columns: 1fr 1fr;
    }
    .fabric-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 12px);
        margin-inline: auto;
    }
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
    .process-line {
        grid-template-columns:
            1fr 1fr 1fr;
    }
    .process-step:nth-child(3) {
        border-right: 0;
    }
    .process-step:nth-child(-n + 3) {
        border-bottom:
            1px solid var(--gray-200);
    }
    .process-step:last-child {
        border-right: 0;
    }
    .sustainability-inner {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 55px;
    }
    .cta-inner {
        grid-template-columns:
            minmax(0, 1fr);
        gap: 50px;
    }
    .cta-action {
        width: min(100%, 350px);
        max-width: 350px;
    }
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
    .hero-bottom-inner {
        width: calc(100% - 40px);
        justify-content: center;
        flex-wrap: wrap;
        min-height: 62px;
        padding: 10px 0;
    }
    .nav-dropdown.mobile-open .dropdown-menu {
        display: block;
    }
}
/* =========================================================
   PREMIUM MOBILE NAVIGATION
========================================================= */
@media (max-width: 950px) {
    .site-header,
    .site-header.scrolled {
        z-index: 3000;
        backdrop-filter:
            blur(18px) saturate(140%);
        -webkit-backdrop-filter:
            blur(18px) saturate(140%);
    }
    .header-inner {
        position: relative;
    }
    .mobile-toggle {
        display: grid !important;
        place-items: center;
        position: relative !important;
        z-index: 3005 !important;
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        padding: 0;
        border:
            1px solid rgb(var(--white-rgb) / .12);
        border-radius: 50%;
        background: var(--navy);
        box-shadow:
            0 8px 24px rgb(var(--navy-rgb) / .16);
        cursor: pointer !important;
        pointer-events: auto !important;
        transition:
            transform .35s cubic-bezier(.22, 1, .36, 1),
            background .3s ease,
            box-shadow .3s ease;
    }
    .mobile-toggle:hover {
        transform: translateY(-2px);
        box-shadow:
            0 12px 30px rgb(var(--navy-rgb) / .22);
    }
    .mobile-toggle span {
        position: absolute;
        width: 20px;
        height: 2px;
        margin: 0;
        border-radius: 10px;
        background: var(--white);
        transform-origin: center;
        transition:
            transform .45s cubic-bezier(.22, 1, .36, 1),
            opacity .25s ease,
            width .3s ease;
    }
    .mobile-toggle span:nth-child(1) {
        transform: translateY(-6px);
    }
    .mobile-toggle span:nth-child(2) {
        transform: translateY(0);
        width: 15px;
        margin-left: -5px;
    }
    .mobile-toggle span:nth-child(3) {
        transform: translateY(6px);
    }
    .mobile-toggle.active {
        background: var(--blue);
        transform: rotate(90deg);
    }
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg);
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
        width: 20px;
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg);
    }
    .mobile-menu-backdrop {
        position: fixed;
        inset: 0;
        z-index: 2990;
        background:
            rgb(var(--navy-rgb) / .42);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        transition:
            opacity .4s ease,
            visibility .4s ease;
    }
    .mobile-menu-backdrop.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .main-navigation {
        position: fixed;
        z-index: 3001 !important;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: min(420px, 88vw);
        height: 100dvh;
        min-height: 100vh;
        margin: 0;
        padding: 116px 24px 34px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 5px;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        background:
            radial-gradient(
                circle at 100% 0%,
                rgb(var(--blue-rgb) / .22),
                transparent 34%
            ),
            linear-gradient(
                145deg,
                var(--navy) 0%,
                var(--navy-2) 48%,
                var(--navy) 100%
            );
        box-shadow:
            -28px 0 80px rgb(var(--black-rgb) / .22);
        transform:
            translate3d(105%, 0, 0);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
            transform .55s cubic-bezier(.22, 1, .36, 1),
            opacity .35s ease,
            visibility .35s ease;
    }
    .main-navigation.open {
        transform:
            translate3d(0, 0, 0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto !important;
    }
    .main-navigation::before {
        content: "GLOBAL-TEX";
        position: absolute;
        top: 82px;
        left: 24px;
        color: rgb(var(--white-rgb) / .38);
        font-family: var(--body-font);
        font-size: 11px;
        font-weight: 800;
        line-height: 1.3;
        letter-spacing: .24em;
    }
    .main-navigation > .nav-item,
    .main-navigation > .nav-dropdown {
        opacity: 0;
        transform: translateX(24px);
    }
    .main-navigation.open > .nav-item,
    .main-navigation.open > .nav-dropdown {
        opacity: 1;
        transform: translateX(0);
        transition:
            opacity .45s ease,
            transform .55s cubic-bezier(.22, 1, .36, 1);
    }
    .main-navigation.open > :nth-child(1) {
        transition-delay: .08s;
    }
    .main-navigation.open > :nth-child(2) {
        transition-delay: .13s;
    }
    .main-navigation.open > :nth-child(3) {
        transition-delay: .18s;
    }
    .main-navigation.open > :nth-child(4) {
        transition-delay: .23s;
    }
    .main-navigation.open > :nth-child(5) {
        transition-delay: .28s;
    }
    .main-navigation.open > :nth-child(6) {
        transition-delay: .33s;
    }
    .main-navigation.open > :nth-child(7) {
        transition-delay: .38s;
    }
    .main-navigation .nav-item {
        min-height: 54px;
        width: 100%;
        padding: 14px 15px;
        border-radius: 11px;
        color: rgb(var(--white-rgb) / .78);
        font-family: var(--body-font);
        font-size: 17px;
        line-height: 1.45;
        font-weight: 600;
        letter-spacing: -.01em;
        transition:
            color .25s ease,
            background .25s ease,
            transform .3s cubic-bezier(.22, 1, .36, 1);
    }
    .main-navigation .nav-item::after {
        left: 15px;
        bottom: 8px;
        width: 0;
        height: 1px;
        background: var(--blue-light);
    }
    .main-navigation .nav-item:hover,
    .main-navigation .nav-item.active {
        color: var(--white);
        background:
            rgb(var(--white-rgb) / .075);
        transform: translateX(4px);
    }
    .main-navigation .nav-item.active::after {
        width: 26px;
    }
    .nav-dropdown {
        width: 100%;
    }
    .nav-dropdown > .nav-item {
        justify-content: space-between;
    }
    .nav-dropdown > .nav-item i {
        font-size: 12px;
        transition:
            transform .35s cubic-bezier(.22, 1, .36, 1);
    }
    .nav-dropdown.mobile-open > .nav-item i {
        transform: rotate(180deg);
    }
    .dropdown-menu,
    .nav-dropdown:hover .dropdown-menu {
        position: static;
        width: 100%;
        display: block;
        margin: 0;
        padding: 0 8px;
        border: 0;
        border-left:
            1px solid rgb(var(--white-rgb) / .14);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        pointer-events: none;
        transition:
            max-height .48s cubic-bezier(.22, 1, .36, 1),
            padding .35s ease,
            margin .35s ease;
    }
    .nav-dropdown.mobile-open .dropdown-menu {
        max-height: 220px;
        margin: 2px 0 7px;
        padding: 3px 8px 5px;
        pointer-events: auto;
    }
    .dropdown-menu::before {
        display: none;
    }
    .dropdown-menu a {
        position: relative;
        display: flex;
        align-items: center;
        min-height: 45px;
        padding: 9px 11px;
        border-radius: 8px;
        color:
            rgb(var(--white-rgb) / .62);
        font-family: var(--body-font);
        font-size: 15px;
        line-height: 1.5;
        font-weight: 500;
        transition:
            color .25s ease,
            background .25s ease,
            transform .3s cubic-bezier(.22, 1, .36, 1);
    }
    .dropdown-menu a::before {
        content: "";
        position: absolute;
        left: -9px;
        top: 50%;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--blue-light);
        opacity: 0;
        transform:
            translate(-5px, -50%)
            scale(.5);
        transition:
            opacity .25s ease,
            transform .3s ease;
    }
    .dropdown-menu a:hover {
        color: var(--white);
        background:
            rgb(var(--white-rgb) / .06);
        transform: translateX(5px);
    }
    .dropdown-menu a:hover::before {
        opacity: 1;
        transform:
            translate(0, -50%)
            scale(1);
    }
    .main-navigation > .nav-item:last-child {
        margin-top: 10px;
        justify-content: center;
        background: var(--white);
        color: var(--navy);
        box-shadow:
            0 12px 30px rgb(var(--black-rgb) / .12);
    }
    .main-navigation > .nav-item:last-child:hover {
        background: var(--blue-soft);
        color: var(--navy);
    }
}
/* =========================================================
   MOBILE — <=650
========================================================= */
@media (max-width: 650px) {
    body {
        font-size: 16px;
        line-height: 1.68;
    }
    .container {
        width: calc(100% - 30px);
    }
    .header-inner {
        height: 72px;
    }
    .brand-name {
        min-width: 0;
    }
    .brand-name strong,
    .brand-name small {
        white-space: nowrap;
    }
    .brand-name strong {
        font-size: 17px;
        letter-spacing: 1.15px;
    }
    .brand-name small {
        font-size: 9px;
        letter-spacing: 1.4px;
    }
    .mobile-toggle {
        flex: 0 0 48px;
    }
    .hero {
        min-height: 720px;
    }
    .hero-inner {
        width: calc(100% - 30px);
        padding-top: 88px;
        padding-bottom: 126px;
    }
    .hero h1 {
        max-width: 100%;
        font-size:
            clamp(
                34px,
                9.5vw,
                43px
            );
        line-height: 1.075;
        letter-spacing: -1.75px;
    }
    .hero-copy > p {
        max-width: 100%;
        margin-top: 22px;
        font-size: 16px;
        line-height: 1.68;
        letter-spacing: -.005em;
    }
    .hero-buttons {
        width: 100%;
        margin-top: 28px;
        gap: 11px;
        flex-direction: column;
        align-items: stretch;
    }
    .btn {
        min-height: 52px;
        width: 100%;
        padding-inline: 18px;
        font-size: 15px;
        font-weight: 700;
    }
    .hero-slider-controls-wrap {
        bottom: 108px;
    }
    .hero-slider-controls-wrap .hero-slider-controls {
        width: calc(100% - 30px);
        gap: 9px;
    }
    .hero-slider-arrow {
        width: 43px;
        height: 43px;
    }
    .hero-slider-dots {
        gap: 6px;
    }
    .hero-slider-dots button.active {
        width: 21px;
    }
    .hero-bottom-inner {
        width: calc(100% - 30px);
        gap: 9px 11px;
        justify-content: center;
    }
    .hero-bottom-inner span {
        font-size: 11px;
        letter-spacing: 1.1px;
    }
    .hero-bottom-inner i {
        width: 3px;
        height: 3px;
    }
    .section,
    .section-light {
        padding: 65px 0;
    }
    .section-heading,
    .center-heading {
        gap: 24px;
    }
    .section-heading h2,
    .center-heading h2,
    .about-content h2,
    .why-header h2,
    .quality-content h2,
    .network-content h2,
    .sustainability-content h2,
    .cta-content h2 {
        font-size:
            clamp(
                32px,
                9vw,
                39px
            );
        line-height: 1.1;        
    }
    .section-heading > p,
    .center-heading > p {
        font-size: 16px;
        line-height: 1.75;
        letter-spacing: -.005em;
    }
    .about-content .large-text {
        font-size: 17px;
        line-height: 1.75;
        letter-spacing: -.01em;
    }
    .about-content > p:not(.large-text) {
        font-size: 16px;
        line-height: 1.78;
    }
    .about-image,
    .quality-image {
        min-height: 360px;
    }
    .about-image-wrap {
        padding-right: 14px;
        padding-bottom: 24px;
    }
    .image-caption {
        max-width:
            calc(100% - 14px);
        left: 10px;
        bottom: 10px;
        padding: 15px 16px;
    }
    .image-caption span {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
    .image-caption strong {
        font-size: 18px;
        letter-spacing: -.25px;
    }
    .fabric-grid {
        grid-template-columns: 1fr;
    }
    .fabric-card:last-child {
        grid-column: auto;
        width: 100%;
    }
    .fabric-photo {
        height: 300px;
    }
    .fabric-info {
        padding: 28px 24px;
    }
    .fabric-info h3 {
        font-size: 25px;
        line-height: 1.25;
        letter-spacing: -.6px;
    }
    .fabric-info > p {
        font-size: 15px;
        line-height: 1.75;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .why-card {
        min-height: 250px;
    }
    .why-card p {
        font-size: 15px;
        line-height: 1.75;
    }
    .process-line {
        grid-template-columns: 1fr;
    }
    .process-step,
    .process-step:nth-child(3) {
        border-right: 0;
        border-bottom:
            1px solid var(--gray-200);
    }
    .process-step:last-child {
        border-bottom: 0;
    }
    .process-step p {
        font-size: 14px;
        line-height: 1.75;
    }
    .quality-list {
        grid-template-columns: 1fr;
    }
    .quality-image {
        min-height: 430px;
    }
    .quality-visual {
        padding-left: 20px;
    }
    .quality-list span {
        font-size: 14px;
        line-height: 1.5;
    }
    .sustainability-inner {
        padding: 30px 20px;
    }
    .sustainability-items {
        grid-template-columns: 1fr;
    }
    .sustainability-items span {
        font-size: 15px;
    }
    .customer-tags span {
        padding: 11px 15px;
        font-size: 13px;
    }
    .customer-note {
        align-items: flex-start;
        padding: 20px;
    }
    .customer-note strong {
        font-size: 14px;
    }
    .customer-note p {
        font-size: 13px;
    }
    .cta {
        padding: 75px 0;
    }
    .cta-inner {
        width: 100%;
        padding: 40px 25px;
        gap: 32px;
    }
    .cta-content p {
        font-size: 16px;
        line-height: 1.75;
    }
    .cta-slogan {
        font-size: 16px;
        line-height: 1.5;
    }
    .cta-action {
        width: 100%;
        max-width: none;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-brand > p {
        font-size: 14px;
        line-height: 1.75;
    }
    .footer-column a,
    .footer-column span {
        font-size: 14px;
        line-height: 1.6;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
/* =========================================================
   SMALL MOBILE — <=420
========================================================= */
@media (max-width: 420px) {
    .container {
        width: calc(100% - 24px);
    }
    .brand-name strong {
        font-size: 15px;
        letter-spacing: 1px;
    }
    .brand-name small {
        font-size: 8px;
        letter-spacing: .9px;
    }
    .brand-symbol {
        width: 34px;
        height: 34px;
    }
    .hero {
        min-height: 700px;
    }
    .hero-inner {
        width: calc(100% - 24px);
        padding-top: 82px;
        padding-bottom: 124px;
    }
    .hero h1 {
        font-size:
            clamp(
                31px,
                9.4vw,
                36px
            );
        line-height: 1.08;
        letter-spacing: -1.35px;
    }
    .hero-copy > p {
        font-size: 15px;
        line-height: 1.68;
    }
    .section-kicker {
        font-size: 10px;
        letter-spacing: 1.4px;
    }
    .section-kicker span {
        width: 27px;
    }
    .hero-slider-controls-wrap {
        bottom: 106px;
    }
    .hero-slider-controls-wrap .hero-slider-controls {
        width: calc(100% - 24px);
        gap: 7px;
    }
    .hero-slider-arrow {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }
    .hero-slider-dots {
        min-width: 0;
    }
    .hero-slider-dots button {
        width: 6px;
        height: 6px;
    }
    .hero-slider-dots button.active {
        width: 18px;
    }
    .hero-bottom-inner span {
        font-size: 10px;
        letter-spacing: .9px;
    }
    .cta-inner {
        padding-inline: 18px;
    }
}
/* =========================================================
   ULTRA-SMALL — <=340
========================================================= */
@media (max-width: 340px) {
    .container {
        width: calc(100% - 20px);
    }
    .brand-name {
        display: none;
    }
    .hero-inner {
        width: calc(100% - 20px);
    }
    .hero h1 {
        font-size: 30px;
        letter-spacing: -1.15px;
    }
    .hero-copy > p {
        font-size: 15px;
        line-height: 1.65;
    }
    .hero-bottom-inner {
        gap: 7px;
    }
    .hero-bottom-inner i {
        display: none;
    }
    .hero-slider-controls-wrap .hero-slider-controls {
        width: calc(100% - 20px);
        gap: 5px;
    }
    .hero-slider-arrow {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
    }
    .hero-slider-dots {
        gap: 4px;
        padding-inline: 2px;
    }
    .hero-slider-dots button.active {
        width: 16px;
    }
    .cta-inner {
        padding-inline: 14px;
    }
}
/* =========================================================
   MOBILE MENU WIDTH TUNING
========================================================= */
@media (max-width: 520px) {
    .main-navigation {
        width: 92vw;
        padding-inline: 19px;
    }
    .main-navigation::before {
        left: 19px;
    }
}
@media (max-width: 360px) {
    .main-navigation {
        width: 100%;
        padding-inline: 16px;
    }
    .main-navigation::before {
        left: 16px;
    }
}
/* =========================================================
   LANDSCAPE TABLET / MOBILE
========================================================= */
@media (orientation: landscape) and (max-width: 950px) {
    .hero {
        min-height: 620px;
    }
    .hero-inner {
        padding-top: 105px;
        padding-bottom: 105px;
    }
    .hero-slider-controls-wrap {
        bottom: 78px;
    }
    .hero-bottom-inner {
        min-height: 54px;
    }
}
/* =========================================================
   TOUCH DEVICES
========================================================= */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .why-card:hover,
    .fabric-card:hover,
    .process-step:hover,
    .customer-card:hover,
    .sustainability-item:hover {
        transform: none;
    }
    .hero-slider-arrow:hover {
        transform: none;
        background:
            rgb(var(--white-rgb) / .075);
        border-color:
            rgb(var(--white-rgb) / .28);
        box-shadow:
            0 12px 32px rgb(var(--black-rgb) / .18),
            inset 0 1px 0 rgb(var(--white-rgb) / .12);
    }
    .dropdown-menu a,
    .nav-item,
    .btn,
    .header-contact,
    .mobile-toggle {
        -webkit-tap-highlight-color:
            transparent;
    }
}
/* =========================================================
   PREMIUM DESKTOP NAVIGATION
========================================================= */
@media (min-width: 951px) {
    backdrop-filter:
        blur(18px) saturate(135%);
    -webkit-backdrop-filter:
        blur(18px) saturate(135%);
    .main-navigation {
        gap:
            clamp(
                16px,
                1.8vw,
                28px
            );
    }
    .nav-item {
        transition:
            color .28s ease,
            transform .28s ease;
    }
    .nav-item:hover {
        transform: translateY(-1px);
    }
    .dropdown-menu {
        top: calc(100% + 18px);
        left: 50%;
        width: 245px;
        padding: 9px;
        border:
            1px solid rgb(var(--navy-rgb) / .09);
        border-radius: 14px;
        box-shadow:
            0 22px 55px rgb(var(--navy-rgb) / .14);
        transform:
            translate(-50%, 12px)
            scale(.97);
        transform-origin:
            top center;
        transition:
            opacity .3s ease,
            visibility .3s ease,
            transform .38s cubic-bezier(.22, 1, .36, 1);
    }
    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown:focus-within .dropdown-menu {
        transform:
            translate(-50%, 0)
            scale(1);
    }
    .dropdown-menu::before {
        content: "";
        position: absolute;
        top: -6px;
        left: 50%;
        width: 11px;
        height: 11px;
        background: var(--white);
        border-left:
            1px solid rgb(var(--navy-rgb) / .09);
        border-top:
            1px solid rgb(var(--navy-rgb) / .09);
        transform:
            translateX(-50%)
            rotate(45deg);
    }
    .dropdown-menu a {
        position: relative;
        overflow: hidden;
        border-radius: 9px;
        padding: 12px 13px;
        transition:
            color .25s ease,
            background .25s ease,
            transform .28s cubic-bezier(.22, 1, .36, 1);
    }
    .dropdown-menu a::before {
        content: "";
        position: absolute;
        inset: 0 auto 0 0;
        width: 3px;
        background: var(--blue);
        transform: scaleY(0);
        transform-origin: center;
        transition:
            transform .28s ease;
    }
    .dropdown-menu a:hover {
        transform: translateX(3px);
    }
    .dropdown-menu a:hover::before {
        transform: scaleY(1);
    }

}
/* =========================================================
   MENU SCROLL LOCK
========================================================= */
html.menu-scroll-lock,
body.menu-open {
    position: fixed !important;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden !important;
    overscroll-behavior: none;
    touch-action: none;
}
body.menu-open .mobile-menu-backdrop,
body.menu-open .main-navigation {
    touch-action: auto;
}
/* =========================================================
   REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
    .hero-background {
        animation: none !important;
        transform: scale(1.02);
        transition:
            opacity .25s ease;
    }
    .hero-slider-controls-wrap .hero-slider-controls,
    .hero-slider-arrow,
    .hero-slider-arrow i,
    .hero-slider-dots button,
    .mobile-toggle,
    .mobile-toggle span,
    .main-navigation,
    .main-navigation > .nav-item,
    .main-navigation > .nav-dropdown,
    .dropdown-menu,
    .dropdown-menu a,
    .mobile-menu-backdrop,
    .hero-side-card,
    .btn,
    .reveal,
    .fabric-card,
    .why-card,
    .process-step,
    .customer-card,
    .sustainability-item {
        animation: none !important;
        transition: none !important;
    }
}

/* Decorative scroll progress */
.scroll-progress {
  position:fixed;
  left:0;
  top:0;
  height:3px;
  width:0;
  background:linear-gradient(90deg,#0b6fb3,#70caff);
  z-index:10000;
  box-shadow:0 0 14px rgba(11,111,179,.45)
}

/* =========================================================
   FINAL RESPONSIVE POLISH
   - Mobile header contact becomes icon-only
   - Index customer tags become 2 columns on mobile
   - About hero uses the full image without cropping
   - Knit hero keeps the complete source image visible
========================================================= */

/* Keep media and content inside the viewport on every device. */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img,
video,
iframe {
    max-width: 100%;
}

/* Index — two customer columns on phones */
@media (max-width: 480px) {
    .index-customer-tags {
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .index-customer-tags span {
        width: auto;
        min-width: 0;
        min-height: 48px;
        padding: 11px 10px;
        font-size: 12px;
        line-height: 1.35;
    }
}

/* Mobile header — compact icon-only Contact button */
@media (max-width: 650px) {
    .header-contact {
        width: 44px;
        min-width: 44px;
        height: 44px;
        min-height: 44px;
        padding: 0;
        gap: 0;
        border-radius: 50%;
        flex: 0 0 44px;
    }

    .header-contact-label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .header-contact i {
        margin: 0;
        font-size: 14px;
        transform: none;
    }

    .header-contact::after {
        left: 11px;
        right: 11px;
    }

    .page-hero, .inner-page-hero {
        margin-top: 88px;
    }
}

/* Very small phones: keep the knit hero image proportional and usable. */
@media (max-width: 380px) {
    .inner-page-hero {
        height: calc(100vw * 793 / 1983);
        max-height: 180px;
    }

    .inner-page-hero .hero-copy h1 {
        font-size: 27px;
    }

    .inner-page-hero .hero-bottom-inner span {
        font-size: 9px;
        letter-spacing: .7px;
    }
}

/* Tablet header: prevent CTA/nav crowding before the mobile breakpoint. */
@media (min-width: 651px) and (max-width: 950px) {
    .header-contact {
        width: 48px;
        min-width: 48px;
        height: 48px;
        padding: 0;
        gap: 0;
        border-radius: 50%;
        flex: 0 0 48px;
    }

    .header-contact-label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
}

/* =========================================================
   GLOBAL-TEX — FINAL UNIVERSAL RESPONSIVE SYSTEM
   ---------------------------------------------------------
   One shared hero system. No page-specific hero CSS needed.
========================================================= */

/* Prevent horizontal overflow on every viewport */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Universal inner-page hero image: preserve the complete image */
.page-hero {
    width: 100%;
    min-height: 0;
    height: auto;
    margin-top: 88px;
    display: block;
    overflow: hidden;
    background: var(--blue-light);
}

.page-hero-image {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    max-width: 100%;
    object-fit: contain;
    object-position: center center;
    transform: none;
}

/* Mobile header: Contact Us becomes icon-only */
@media (max-width: 650px) {
    .header-contact {
        width: 44px;
        min-width: 44px;
        height: 44px;
        min-height: 44px;
        padding: 0;
        gap: 0;
        flex: 0 0 44px;
        border-radius: 50%;
    }

    .header-contact-label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .header-contact i {
        margin: 0;
        font-size: 14px;
    }
}

/* OUR CUSTOMERS — exactly 2 columns on phones */
@media (max-width: 650px) {
    .customer-tags,
    .index-customer-tags {
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .customer-tags span,
    .index-customer-tags span {
        width: auto;
        min-width: 0;
        flex: none;
        padding: 13px 10px;
        font-size: 13px;
    }
}

/* Universal inner-page hero on small screens remains natural-height */
@media (max-width: 768px) {
    .hero, .page-hero {
        margin-top: 72px;
    }

    .page-hero-image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .container {
        width: min(var(--container), calc(100% - 30px));
    }
}

/* Knit/standard hero background: show the complete image on narrow screens.
   This uses the shared .hero system; the page-specific class is not required
   for the image sizing itself. */
@media (max-width: 650px) {
    .hero {
        min-height: 0;
        height: auto;
    }

    .hero-background {
        background-size: cover;
        background-position: center center;
    }

    .hero.inner-page-hero {
        aspect-ratio: 1983 / 793;
        min-height: 0;
        height: auto;
    }

    .hero.inner-page-hero .hero-background {
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center center;
        transform: none;
        animation: none;
    }

    .hero.inner-page-hero .hero-inner {
        min-height: 0;
    }
}

/* Better tablet/mobile spacing */
@media (max-width: 480px) {
    .section,
    .section-light {
        padding: 60px 0;
    }

    .page-hero h1 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .page-hero p {
        font-size: 16px;
    }
}

/* Accessibility: respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    .page-hero-bg,
    .hero-background {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}

/* =========================================================
   HERO DEVICE VISIBILITY
   ========================================================= */

/* Desktop / Tablet */
.hero-mobile {
    display: none;
}


/* Mobile */
@media (max-width: 767px) {

    .hero-mobile {
        display: block;
    }

    .hero-desktop {
        display: none;
    }

}



/* =========================================================
   MOBILE FIX — HEADER / OFF-CANVAS MENU / HERO ARROWS
   ---------------------------------------------------------
   Keeps the existing desktop design unchanged.
========================================================= */
@media (max-width: 950px) {
    /* A backdrop-filter on the fixed header can create a new
       containing block for fixed descendants on mobile browsers.
       Keep the header solid so the off-canvas menu can cover the
       full viewport correctly. */
    .site-header,
    .site-header.scrolled {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: var(--white) !important;
    }

    .main-navigation {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        bottom: auto !important;
        left: auto !important;
        width: min(420px, 92vw) !important;
        height: 100vh !important;
        height: 100dvh !important;
        max-height: 100dvh !important;
        min-height: 0 !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        overscroll-behavior: contain !important;
        -webkit-overflow-scrolling: touch !important;
        z-index: 3001 !important;
    }

    .mobile-menu-backdrop {
        z-index: 2999 !important;
    }

    .mobile-toggle {
        z-index: 3005 !important;
    }
}

/* Phone header: keep the three controls balanced without
   allowing the contact button or hamburger to be squeezed. */
@media (max-width: 650px) {
    .header-inner {
        width: calc(100% - 24px);
        gap: 8px;
    }

    .brand {
        min-width: 0;
        flex: 1 1 auto;
    }

    .brand-name {
        min-width: 0;
        overflow: hidden;
    }

    .brand-name strong,
    .brand-name small {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .header-contact,
    .mobile-toggle {
        flex: 0 0 44px !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
    }

    /* Place the slider controls in their own row below the CTA,
       instead of sitting on top of the secondary CTA button. */
    .hero-slider-controls-wrap {
        bottom: 76px !important;
    }

    .hero-slider-controls-wrap .hero-slider-controls {
        width: calc(100% - 24px) !important;
        justify-content: center !important;
        gap: 12px !important;
    }

    .hero-slider-arrow {
        width: 44px !important;
        height: 44px !important;
        flex: 0 0 44px !important;
        border-width: 1px;
    }

    .hero-slider-arrow i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        font-size: 17px !important;
        line-height: 1;
    }

    .hero-slider-dots {
        gap: 7px !important;
        padding: 0 2px !important;
    }
}

@media (max-width: 420px) {
    .hero-slider-controls-wrap {
        bottom: 76px !important;
    }

    .hero-slider-controls-wrap .hero-slider-controls {
        gap: 9px !important;
    }

    .hero-slider-arrow {
        width: 40px !important;
        height: 40px !important;
        flex-basis: 40px !important;
    }

    .hero-slider-arrow i {
        font-size: 15px !important;
    }
}

@media (max-width: 340px) {
    .hero-slider-controls-wrap {
        bottom: 72px !important;
    }

    .hero-slider-controls-wrap .hero-slider-controls {
        gap: 7px !important;
    }

    .hero-slider-arrow {
        width: 38px !important;
        height: 38px !important;
        flex-basis: 38px !important;
    }
}

/* Hide on desktop and Show only on mobile */
@media (min-width: 951px) {
    .mobile-contact-item {
        display: none;
    }
}
/* Hide on mobile */
@media (max-width: 950px) {
    .hide-mobile {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-content {
        order: 1;
    }

    .about-image-wrap {
        order: 2;
    }
}

