/* =========================================================
   PAWAR RUBBER PRODUCTS
   ABOUT US PAGE
   BASED ON PRODUCTS PAGE DESIGN
   ========================================================= */


/* =========================================================
   ROOT
   ========================================================= */

:root {
    --black: #151719;
    --dark: #1d1f21;
    --text: #343638;
    --muted: #6f7275;
    --light: #f5f5f3;
    --lighter: #fafaf9;
    --white: #ffffff;
    --border: #dededb;
    --red: #b3262d;
    --container: min(1180px, calc(100% - 48px));
}


/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

html::-webkit-scrollbar {
    width: 0;
}

body {
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {
    width: var(--container);
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   SECTION PADDING
   ========================================================= */

.section-padding {
    padding-top: 72px;
    padding-bottom: 72px;
}


/* =========================================================
   SCROLL PROGRESS
   ========================================================= */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 9999;
}

.scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--red);
}


/* =========================================================
   HEADER
   SAME AS PRODUCTS PAGE
   ========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 82px;
    z-index: 1000;
    color: var(--white);
    background: transparent;
    transition:
        background 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease;
}

.site-header.scrolled {
    color: var(--black);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 5px 24px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(12px);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   BRAND
   ========================================================= */

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.brand-mark {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid currentColor;

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.brand-text span {
    margin-top: 4px;

    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1.8px;

    opacity: 0.68;
}


/* =========================================================
   MAIN NAVIGATION
   ========================================================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    position: relative;

    padding: 8px 0;

    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.2px;

    transition: color 0.25s ease;
}

.nav-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 1px;

    background: var(--red);

    transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* =========================================================
   PRODUCTS DROPDOWN
   ========================================================= */

.nav-product-dropdown {
    position: relative;

    display: flex;
    align-items: center;
}

.products-dropdown-menu {
    position: absolute;

    top: calc(100% + 18px);
    left: 50%;

    min-width: 235px;

    padding: 8px;

    background: #ffffff;

    border: 1px solid #e3e3e1;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);

    opacity: 0;
    visibility: hidden;

    transform: translate(-50%, 8px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 2000;
}

.products-dropdown-menu::before {
    content: "";

    position: absolute;

    top: -19px;
    left: 0;

    width: 100%;
    height: 19px;
}

.nav-product-dropdown:hover .products-dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translate(-50%, 0);
}

.products-dropdown-menu a {
    min-height: 43px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 0 13px;

    color: #222222;
    background: transparent;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;

    text-transform: uppercase;

    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.products-dropdown-menu a:hover {
    color: var(--red);
    background: #f6f6f4;
}

.products-dropdown-menu a span:last-child {
    color: var(--red);

    font-size: 16px;
    font-weight: 700;

    transform: translateX(0);

    transition: transform 0.2s ease;
}

.products-dropdown-menu a:hover span:last-child {
    transform: translateX(4px);
}


/* =========================================================
   HEADER QUOTE BUTTON
   ========================================================= */

.header-quote {
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 16px;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 6px;

    color: #ffffff;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.header-quote span:last-child {
    font-size: 16px;
    line-height: 1;

    transition: transform 0.3s ease;
}

.header-quote:hover {
    background: var(--red);
    border-color: var(--red);

    color: #ffffff;

    transform: translateY(-2px);
}

.header-quote:hover span:last-child {
    transform: translateX(5px);
}

.site-header.scrolled .header-quote {
    background: transparent;

    border-color: var(--black);

    color: var(--black);
}

.site-header.scrolled .header-quote:hover {
    background: var(--red);

    border-color: var(--red);

    color: #ffffff;
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 23px;
    height: 1px;

    margin: 5px auto;

    background: currentColor;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}


/* =========================================================
   HERO
   SAME HERO IMAGE AS PRODUCTS PAGE
   ========================================================= */

.moulded-hero {
    position: relative;

    height: 760px;
    min-height: 680px;

    overflow: hidden;

    color: var(--white);
}

.moulded-hero-background {
    position: absolute;

    inset: 0;

    background-image: url("../images/hero.jpg");

    background-size: cover;
    background-position: center;

    transform: scale(1.01);
}

.moulded-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.68) 0%,
            rgba(0, 0, 0, 0.42) 45%,
            rgba(0, 0, 0, 0.18) 100%
        );
}

.moulded-hero-content {
    position: relative;

    z-index: 2;

    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    padding-top: 180px;
}

.hero-label {
    margin-bottom: 17px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.8px;

    text-transform: uppercase;
}

.moulded-hero h1 {
    max-width: none;

    width: 100%;

    white-space: nowrap;

    font-family: "Manrope", sans-serif;

    font-size: clamp(42px, 5vw, 64px);

    font-weight: 600;

    line-height: 1.05;

    letter-spacing: -2px;

    word-spacing: 10px;

    text-align: center;
}

.moulded-hero h1::after {
    content: "";

    display: block;

    width: 300px;
    height: 3px;

    margin: 18px auto 0;

    background: var(--red);
}

.moulded-hero p {
    max-width: 590px;

    margin: 24px auto 0;

    font-size: 17px;

    line-height: 1.75;

    font-weight: 400;

    color: rgba(255, 255, 255, 0.84);

    text-align: center;

    align-self: center;
}

/* =========================================================
   SCROLL TO EXPLORE
========================================================= */

.scroll-explore {
    position: fixed;
    top: 50%;
    right: 28px;
    z-index: 900;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;

    transform: translateY(-50%);
    transition: opacity 0.3s ease;
}


/* TEXT */

.scroll-explore > span:first-child {
    writing-mode: vertical-rl;
    transform: rotate(180deg);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.4px;

    color: #777;
}


/* GREY LINE / TRACK */

.scroll-line {
    position: relative;

    width: 2px;
    height: 120px;

    overflow: hidden;

    background: #d5d5d2;
}


/* RED FILL */

.scroll-line span {
    position: absolute;

    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 0%;

    background: var(--red);

    transition: height 0.05s linear;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 850px) {

    .scroll-explore {
        display: none !important;
    }

}


/* =========================================================
   SECTION LABEL
   ========================================================= */

.section-label {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: var(--red);

    font-size: 17px;

    font-weight: 800;

    letter-spacing: 1.8px;

    line-height: 1;

    text-transform: uppercase;
}

.section-label::before {
    content: "";

    display: block;

    width: 4px;
    height: 21px;

    background: var(--red);
}


/* =========================================================
   COMPANY SECTION
   ========================================================= */

.company-section {
    padding-top: 82px;
    padding-bottom: 82px;

    background: var(--white);
}

.company-grid {
    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 85px;

    align-items: center;
}

.company-image {
    width: 100%;
    height: 540px;

    overflow: hidden;

    background: #eeeeee;
}

.company-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.company-image:hover img {
    transform: scale(1.035);
}

.company-content {
    max-width: 570px;
}

.company-content h2 {
    font-family: "Manrope", sans-serif;

    color: #111111;

    font-size: clamp(40px, 4vw, 58px);

    font-weight: 800;

    line-height: 1.04;

    letter-spacing: -2.4px;
}

.company-lead {
    margin-top: 27px;

    color: #4d5052;

    font-size: 17px;

    font-weight: 500;

    line-height: 1.7;
}

.company-content > p:not(.company-lead) {
    margin-top: 18px;

    color: #777a7d;

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================================
   RED PRODUCT LINK / BUTTON
   ========================================================= */

.product-link {
    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 18px;

    margin-top: 28px;

    padding: 13px 18px 13px 20px;

    background: var(--red);

    border: 1px solid var(--red);

    border-radius: 30px;

    color: #ffffff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.product-link strong {
    color: #ffffff;

    font-size: 17px;

    line-height: 1;

    transition: transform 0.25s ease;
}

.product-link:hover {
    background: #8f1d23;

    border-color: #8f1d23;

    color: #ffffff;

    transform: translateY(-2px);
}

.product-link:hover strong {
    transform: translateX(5px);
}


/* =========================================================
   STATS SECTION
   ========================================================= */

.stats-section {
    width: 100%;
    padding: 0;

    background: var(--black);

    display: flex;
    justify-content: center;
}


/* =========================================================
   STATS GRID
========================================================= */

.stats-grid {
    width: min(1050px, calc(100% - 48px));

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    align-items: stretch;
    justify-content: center;

    text-align: center;
}


/* =========================================================
   INDIVIDUAL STAT
========================================================= */

.stat-item {
    width: 100%;

    min-height: 125px;

    padding: 20px 20px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
    border-right: none;
}


/* =========================================================
   STAT NUMBER
========================================================= */

.stat-number {
    width: 100%;

    display: flex;

    align-items: baseline;

    justify-content: center;

    text-align: center;

    font-family: "Manrope", sans-serif;

    color: var(--white);

    font-size: clamp(30px, 3vw, 42px);

    font-weight: 800;

    line-height: 1;

    letter-spacing: -1.5px;
}


/* =========================================================
   STAT TITLE
========================================================= */

.stat-title,
.stat-label {
    width: 100%;

    display: block;

    margin-top: 8px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.1px;

    line-height: 1.4;

    text-align: center;

    white-space: normal;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .stats-grid {
        width: min(700px, calc(100% - 36px));

        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        min-height: 105px;

        padding: 18px 15px;

        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .stats-section {
        padding: 0;
    }

    .stats-grid {
        width: calc(100% - 30px);

        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        min-height: 90px;

        padding: 15px 8px;
    }

    .stat-number {
        font-size: 27px;

        letter-spacing: -1px;
    }

    .stat-title,
    .stat-label {
        max-width: 130px;

        margin-top: 6px;

        font-size: 7px;

        letter-spacing: 0.7px;

        line-height: 1.3;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .stats-grid {
        width: calc(100% - 20px);
    }

    .stat-item {
        padding-left: 5px;
        padding-right: 5px;
    }

}

/* =========================================================
   CAPABILITIES SECTION
   ========================================================= */

.capabilities-section {
    padding-top: 82px;

    padding-bottom: 82px;

    background: #ffffff;
}

.capabilities-grid {
    display: grid;

    grid-template-columns: 0.75fr 1.75fr;

    gap: 85px;

    align-items: start;
}

.capabilities-heading {
    max-width: 480px;
}

.capabilities-heading h2 {
    font-family: "Manrope", sans-serif;

    color: #111111;

    font-size: clamp(40px, 4vw, 54px);

    font-weight: 800;

    line-height: 1.04;

    letter-spacing: -2.2px;
}

.capabilities-heading p {
    margin-top: 20px;

    color: #777a7d;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   CAPABILITY LIST
   ========================================================= */

.capabilities-list {
    width: 100%;
}


/* =========================================================
   NORMAL CAPABILITY ITEM
   ========================================================= */

.capability-item {
    min-height: 78px;

    width: 100%;

    display: grid;

    grid-template-columns: 55px 1fr 30px;

    align-items: center;

    gap: 20px;

    padding: 0 5px;

    color: var(--text);

    background: transparent;

    border: 0;

    border-bottom: 1px solid var(--border);

    text-decoration: none;

    cursor: pointer;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease,
        background-color 0.25s ease;
}


/* Top border for first capability */

.capabilities-list > .capability-item:first-child,
.capability-dropdown:first-child .capability-item {
    border-top: 1px solid var(--border);
}


/* Capability number */

.capability-item > span {
    color: var(--red);  

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* Capability title */

.capability-item h3 {
    margin: 0;

    color: #222426;

    font-family: "Manrope", sans-serif;

    font-size: 17px;

    font-weight: 750;

    line-height: 1.3;

    letter-spacing: -0.3px;

    text-align: left;
}


/* Capability arrow */

.capability-item strong {
    justify-self: end;

    color: var(--red);

    font-size: 19px;

    font-weight: 800;

    line-height: 1;

    transition: transform 0.25s ease;
}


/* Normal hover */

.capability-item:hover {
    padding-left: 12px;

    background: var(--light);
}

.capability-item:hover h3 {
    color: var(--red);
}

.capability-item:hover strong {
    transform: translateX(5px);
}


/* =========================================================
   AGRICULTURE DROPDOWN
   ========================================================= */



.capability-dropdown {
    width: 100%;
}


/* Agriculture main button */

.capability-dropdown .capability-toggle {
    width: 100%;

    font-family: inherit;
    text-align: left;

    appearance: none;
    -webkit-appearance: none;
}


/* Agriculture arrow */

.capability-dropdown .capability-toggle strong {
    transform: rotate(0deg);

    transition:
        transform 0.3s ease,
        color 0.25s ease;
}


/* Rotate arrow on hover */

.capability-dropdown:hover .capability-toggle strong {
    transform: rotate(90deg);
}


/* =========================================================
   AGRICULTURE SUBMENU
   ========================================================= */

.capability-submenu {
    width: 100%;

    /*
       IMPORTANT:
       The submenu is part of the normal document flow.

       This means when it opens, it pushes
       Application-Focused Solutions downward.
    */

    max-height: 0;

    overflow: hidden;

    padding-left: 55px;

    opacity: 0;

    background: #fafafa;

    transition:
        max-height 0.45s ease,
        opacity 0.3s ease;
}


/* =========================================================
   OPEN SUBMENU ON HOVER
   ========================================================= */

.capability-dropdown:hover .capability-submenu {
    /*
       52px per submenu item × 2 items
    */

    max-height: 104px;

    opacity: 1;
}


/* =========================================================
   SUBMENU LINKS
   ========================================================= */

.capability-submenu a {
    display: flex;

    align-items: center;
    justify-content: space-between;

    height: 52px;

    padding: 0 20px;

    color: #55585b;

    border-bottom: 1px solid #e5e5e2;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.3px;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease,
        background-color 0.25s ease;
}


.capability-submenu a:last-child {
    border-bottom: none;
}


/* Submenu arrows */

.capability-submenu a strong {
    color: var(--red);

    font-size: 18px;
    font-weight: 500;

    line-height: 1;

    transition: transform 0.25s ease;
}


/* Submenu hover */

.capability-submenu a:hover {
    color: var(--red);

    padding-left: 28px;

    background: #f4f4f2;
}


.capability-submenu a:hover strong {
    transform: translateX(5px);
}


/* =========================================================
   CUSTOMERS SECTION
   ========================================================= */

.customers-heading {
    width: 100%;
    margin-bottom: 75px;
    text-align: center;
}

.customers-section-label {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;

    color: #b3262d;
    font-family: "Manrope", sans-serif;
    font-size: 27px;
    font-weight: 950;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
}

.customers-section-label::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;

    width: 150px;
    height: 2px;

    background: #b3262d;

    transform: translateX(-50%);
}


/* =========================================================
   CUSTOMER MARQUEE
   ========================================================= */

.customer-marquee {
    width: 105%;
    overflow: hidden;

    background: #ffffff;

    padding: 40px 0;
}

.customers-section {
    padding-top: 78px;
    padding-bottom: 45px;
    background: var(--light);
    overflow: hidden;
    text-align: center;
}

.customer-track {
    display: flex;

    width: max-content;

    animation: customerScroll 25s linear infinite;
}

.customer-group {
    display: flex;

    align-items: center;

    flex-shrink: 0;
}

.customer-group span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    color: #4f5255;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1.3px;
    white-space: nowrap;
}

.customer-group span::after {
    content: "•";

    position: absolute;

    right: -4px;

    color: var(--red);

    font-size: 30px;
}

@keyframes customerScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.customer-marquee:hover .customer-track {
    animation-play-state: running;
}


/* =========================================================
   FOOTER
   SAME AS PRODUCTS PAGE
   ========================================================= */

.site-footer {
    padding-top: 58px;

    padding-bottom: 24px;

    background: var(--black);

    color: var(--white);
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 0.8fr 0.9fr 1.2fr;

    gap: 55px;

    padding-bottom: 42px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
    color: var(--white);
}

.footer-company > p {
    max-width: 360px;

    margin-top: 18px;

    font-size: 15px;

    line-height: 1.75;

    color: rgba(255, 255, 255, 0.62);
}

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.footer-column h4 {
    margin-bottom: 18px;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.6px;

    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.9);
}

.footer-column a {
    margin-bottom: 10px;

    font-size: 15px;

    line-height: 1.5;

    color: rgba(255, 255, 255, 0.62);

    transition: color 0.25s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-contact p {
    margin-bottom: 10px;

    font-size: 15px;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.62);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.62);
}

.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 20px;

    font-size: 11px;

    color: rgba(255, 255, 255, 0.42);
}


/* =========================================================
   REVEAL ANIMATION
   ========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(24px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .main-nav {
        gap: 18px;
    }

    .header-quote {
        padding: 0 14px;
    }

    .company-grid {
        gap: 50px;
    }

    .company-image {
        height: 500px;
    }

    .capabilities-grid {
        gap: 55px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 35px;
    }

}


/* =========================================================
   TABLET / MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 850px) {

    .container {
        width: min(100% - 36px, 680px);
    }


    /* ---------------------------------------------
       MOBILE NAVIGATION
       --------------------------------------------- */

    .main-nav {
        position: fixed;

        top: 86px;
        left: 0;

        width: 100%;
        height: calc(100vh - 86px);

        padding: 45px 30px;

        background: #17191b;

        color: #ffffff;

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;

        transform: translateX(100%);

        transition: transform 0.35s ease;

        overflow-y: auto;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 22px;
    }

    .header-quote {
        display: none;
    }

    .menu-toggle {
        display: flex;

        align-items: center;

        justify-content: center;

        flex-direction: column;
    }


    /* ---------------------------------------------
       COMPANY
       --------------------------------------------- */

    .company-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .company-content {
        max-width: 700px;
    }


    /* ---------------------------------------------
       STATS
       --------------------------------------------- */

    .stats-grid {
        grid-template-columns: 1fr 1fr;

        width: fit-content;
    }

    .stat-item {
        min-height: 82px;

        padding: 8px 35px;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 2px solid var(--red);
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: none;
    }


    /* ---------------------------------------------
       CAPABILITIES
       --------------------------------------------- */

    .capabilities-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .capability-item {
        min-height: 72px;

        grid-template-columns: 45px 1fr 25px;

        gap: 15px;

        padding: 0;
    }

    .capability-item:hover {
        padding-left: 8px;
    }

    .capability-submenu {
        padding-left: 45px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .section-padding {
        padding: 75px 0;
    }


    /* ---------------------------------------------
       HEADER
       --------------------------------------------- */

    .header-inner {
        min-height: 75px;
    }

    .main-nav {
        top: 75px;

        height: calc(100vh - 75px);
    }


    /* ---------------------------------------------
       HERO
       --------------------------------------------- */

    .moulded-hero {
        height: 600px;

        min-height: 600px;
    }

    .moulded-hero-content {
        padding-top: 125px;
    }

    .hero-label {
        font-size: 10px;

        letter-spacing: 2px;
    }

    .moulded-hero h1 {
        white-space: normal;

        font-size: 45px;

        line-height: 1.02;

        letter-spacing: -2px;
    }

    .moulded-hero h1::after {
        width: 180px;

        height: 3px;

        margin-top: 15px;
    }

    .moulded-hero p {
        max-width: 430px;

        margin-top: 20px;

        font-size: 14px;

        line-height: 1.7;
    }


    /* ---------------------------------------------
       SCROLL INDICATOR
       --------------------------------------------- */

    .scroll-explore {
        right: 14px;
    }

    .scroll-line {
        height: 90px;
    }


    /* ---------------------------------------------
       COMPANY
       --------------------------------------------- */

    .company-section {
        padding-top: 58px;

        padding-bottom: 58px;
    }

    .company-image {
        height: 380px;
    }

    .company-content h2 {
        font-size: 42px;

        letter-spacing: -2px;
    }

    .company-lead {
        font-size: 15px;
    }

    .company-content > p:not(.company-lead) {
        font-size: 13px;

        line-height: 1.75;
    }

    .product-link {
        font-size: 10px;

        padding: 11px 15px 11px 17px;
    }


    /* ---------------------------------------------
       STATS
       --------------------------------------------- */

    .stats-section {
        padding: 12px 0;
    }

    .stats-grid {
        width: 100%;

        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        min-height: 75px;

        padding: 7px 8px;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: none;
    }

    .stat-number {
        font-size: 27px;

        letter-spacing: -1px;
    }

    .stat-label {
        max-width: 120px;

        margin-top: 5px;

        font-size: 7px;

        letter-spacing: 0.7px;

        line-height: 1.2;

        white-space: normal;
    }


    /* ---------------------------------------------
       CAPABILITIES
       --------------------------------------------- */

    .capabilities-section {
        padding-top: 58px;

        padding-bottom: 58px;
    }

    .capabilities-heading h2 {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .capabilities-heading p {
        font-size: 14px;
    }

    .capability-item {
        min-height: 68px;

        grid-template-columns: 35px 1fr 22px;

        gap: 10px;
    }

    .capability-item h3 {
        font-size: 15px;
    }

    .capability-item strong {
        font-size: 18px;
    }

    .capability-submenu {
        padding-left: 35px;
    }

    .capability-submenu a {
        min-height: 48px;

        padding: 0 12px;

        font-size: 12px;
    }

    .capability-submenu a:hover {
        padding-left: 18px;
    }


    /* ---------------------------------------------
       CUSTOMERS
       --------------------------------------------- */

    .customers-section {
        padding-top: 58px;

        padding-bottom: 58px;
    }

    .customers-heading {
        margin-bottom: 35px;
    }

    .customers-heading h2 {
        font-size: 42px;

        letter-spacing: -2px;
    }

    .customer-group span {
        min-width: 180px;

        height: 90px;

        padding: 0 20px;

        font-size: 12px;
    }


    /* ---------------------------------------------
       FOOTER
       --------------------------------------------- */

    .site-footer {
        padding-top: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 32px;

        padding-bottom: 32px;
    }

    .footer-bottom {
        align-items: flex-start;

        flex-direction: column;

        gap: 7px;

        font-size: 10px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .container {
        width: calc(100% - 28px);
    }

    .moulded-hero h1 {
        font-size: 40px;
    }

    .company-content h2 {
        font-size: 38px;
    }

    .capabilities-heading h2 {
        font-size: 39px;
    }

    .customers-heading h2 {
        font-size: 38px;
    }

}

/* =========================================================
   TABLET / MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 850px) {

    /* ---------------------------------------------
       MOBILE NAVIGATION
       --------------------------------------------- */

    .main-nav {

        position: fixed;

        top: 82px;
        left: 0;

        width: 100%;
        height: calc(100vh - 82px);

        padding: 40px 30px;

        background: #17191b;
        color: #ffffff;

        flex-direction: column;
        align-items: flex-start;

        gap: 25px;

        transform: translateX(100%);

        transition: transform 0.35s ease;

        overflow-y: auto;

        z-index: 999;
    }


    .main-nav.open {

        transform: translateX(0);

    }


    /* ---------------------------------------------
       MOBILE NAVIGATION LINKS
       --------------------------------------------- */

    .nav-link {

        font-size: 22px;

    }


    /* ---------------------------------------------
       HIDE DESKTOP QUOTE
       --------------------------------------------- */

    .header-quote {

        display: none;

    }


    /* ---------------------------------------------
       HAMBURGER BUTTON
       SAME STYLE AS PRODUCTS PAGE
       --------------------------------------------- */

    /* =====================================================
   HAMBURGER
   ===================================================== */

.menu-toggle {
    position: relative;
    z-index: 3000;

    display: flex;

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    padding: 0;

    border: 0;
    background: transparent;

    /* FORCE HAMBURGER TO WHITE */
    color: #ffffff;

    cursor: pointer;

    -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
    display: block;

    width: 23px;
    height: 2px;

    margin: 3px 0;

    /* Uses the white color above */
    background: currentColor;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform:
        translateY(8px)
        rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform:
        translateY(-8px)
        rotate(-45deg);
}


    /* ---------------------------------------------
       COMPANY
       --------------------------------------------- */

    .company-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }

    .company-content {

        max-width: 700px;

    }


    /* ---------------------------------------------
       STATS
       --------------------------------------------- */

    .stats-grid {

        grid-template-columns: 1fr 1fr;

        width: fit-content;

    }

    .stat-item {

        min-height: 82px;

        padding: 8px 35px;

    }

    .stat-item:nth-child(2) {

        border-right: none;

    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {

        border-bottom: 2px solid var(--red);

    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {

        border-bottom: none;

    }


    /* ---------------------------------------------
       CAPABILITIES
       --------------------------------------------- */

    .capabilities-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }

    .capability-item {

        min-height: 72px;

        grid-template-columns: 45px 1fr 25px;

        gap: 15px;

        padding: 0;

    }

    .capability-item:hover {

        padding-left: 8px;

    }

    .capability-submenu {

        padding-left: 45px;

    }

}



/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {


    /* ---------------------------------------------
       GENERAL
       --------------------------------------------- */

    .section-padding {

        padding: 75px 0;

    }


    /* ---------------------------------------------
       HEADER
       ONLY MOBILE HEADER POSITION
       --------------------------------------------- */

    .header-inner {

        min-height: 75px;

    }


    /* ---------------------------------------------
       MOBILE MENU
       --------------------------------------------- */

    .main-nav {

        top: 75px;

        height: calc(100vh - 75px);

        padding: 40px 24px;

    }


    /* ---------------------------------------------
       HAMBURGER
       --------------------------------------------- */

    .menu-toggle {

        width: 42px;

        height: 42px;

    }

    .menu-toggle span {

        width: 23px;

        height: 1px;

        margin: 5px auto;

    }


    /* ---------------------------------------------
       HERO
       --------------------------------------------- */

    .moulded-hero {

        height: 600px;

        min-height: 600px;

    }

    .moulded-hero-content {

        padding-top: 125px;

    }

    .hero-label {

        font-size: 10px;

        letter-spacing: 2px;

    }

    .moulded-hero h1 {

        white-space: normal;

        font-size: 45px;

        line-height: 1.02;

        letter-spacing: -2px;

    }

    .moulded-hero h1::after {

        width: 180px;

        height: 3px;

        margin-top: 15px;

    }

    .moulded-hero p {

        max-width: 430px;

        margin-top: 20px;

        font-size: 14px;

        line-height: 1.7;

    }


    /* ---------------------------------------------
       SCROLL INDICATOR
       --------------------------------------------- */

    .scroll-explore {

        right: 14px;

    }

    .scroll-line {

        height: 90px;

    }


    /* ---------------------------------------------
       COMPANY
       --------------------------------------------- */

    .company-section {

        padding-top: 58px;

        padding-bottom: 58px;

    }

    .company-image {

        height: 380px;

    }

    .company-content h2 {

        font-size: 42px;

        letter-spacing: -2px;

    }

    .company-lead {

        font-size: 15px;

    }

    .company-content > p:not(.company-lead) {

        font-size: 13px;

        line-height: 1.75;

    }

    .product-link {

        font-size: 10px;

        padding: 11px 15px 11px 17px;

    }


    /* ---------------------------------------------
       STATS
       --------------------------------------------- */

    .stats-section {

        padding: 12px 0;

    }

    .stats-grid {

        width: 100%;

        grid-template-columns: 1fr 1fr;

    }

    .stat-item {

        min-height: 75px;

        padding: 7px 8px;

    }

    .stat-item:nth-child(2) {

        border-right: none;

    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {

        border-bottom: none;

    }

    .stat-number {

        font-size: 27px;

        letter-spacing: -1px;

    }

    .stat-label {

        max-width: 120px;

        margin-top: 5px;

        font-size: 7px;

        letter-spacing: 0.7px;

        line-height: 1.2;

        white-space: normal;

    }


    /* ---------------------------------------------
       CAPABILITIES
       --------------------------------------------- */

    .capabilities-section {

        padding-top: 58px;

        padding-bottom: 58px;

    }

    .capabilities-heading h2 {

        font-size: 43px;

        letter-spacing: -2px;

    }

    .capabilities-heading p {

        font-size: 14px;

    }

    .capability-item {

        min-height: 68px;

        grid-template-columns: 35px 1fr 22px;

        gap: 10px;

    }

    .capability-item h3 {

        font-size: 15px;

    }

    .capability-item strong {

        font-size: 18px;

    }

    .capability-submenu {

        padding-left: 35px;

    }

    .capability-submenu a {

        min-height: 48px;

        padding: 0 12px;

        font-size: 12px;

    }

    .capability-submenu a:hover {

        padding-left: 18px;

    }


    /* ---------------------------------------------
       CUSTOMERS
       --------------------------------------------- */

    .customers-section {

        padding-top: 58px;

        padding-bottom: 58px;

    }

    .customers-heading {

        margin-bottom: 35px;

    }

    .customers-heading h2 {

        font-size: 42px;

        letter-spacing: -2px;

    }

    .customer-group span {

        min-width: 180px;

        height: 90px;

        padding: 0 20px;

        font-size: 12px;

    }


    /* ---------------------------------------------
       FOOTER
       --------------------------------------------- */

    .site-footer {

        padding-top: 48px;

    }

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 32px;

        padding-bottom: 32px;

    }

    .footer-bottom {

        align-items: flex-start;

        flex-direction: column;

        gap: 7px;

        font-size: 10px;

    }

}



/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .container {

        width: calc(100% - 28px);

    }

    .moulded-hero h1 {

        font-size: 40px;

    }

    .company-content h2 {

        font-size: 38px;

    }

    .capabilities-heading h2 {

        font-size: 39px;

    }

    .customers-heading h2 {

        font-size: 38px;

    }

}
/* =========================================================
   PAWAR RUBBER PRODUCTS
   MOBILE RESPONSIVE CSS
   Desktop remains completely unchanged
   ========================================================= */


/* =========================================================
   MOBILE — GLOBAL
   ========================================================= */

@media (max-width: 850px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        margin: 0;
        padding: 0;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    img {
        max-width: 100%;
    }


    /* =====================================================
       CONTAINER
       ===================================================== */

    .container {
        width: calc(100% - 28px);
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }


    /* =====================================================
       HEADER
       ===================================================== */

    .site-header {
        width: 100%;
        max-width: 100vw;
        min-height: 75px;
    }

    .header-inner {
        width: 100%;
        min-width: 0;
        min-height: 75px;

        padding-left: 10px;
        padding-right: 10px;
    }


    /* =====================================================
       LOGO / BRAND
       ===================================================== */

    .brand {
        display: flex;
        align-items: center;

        min-width: 0;
        max-width: calc(100% - 58px);

        margin-left: 5px;

        gap: 9px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;

        flex-shrink: 0;

        font-size: 11px;
    }

    .brand-text {
        min-width: 0;
        max-width: 100%;
    }

    .brand-text strong {
        display: block;

        max-width: 100%;

        font-size: 12px;
        letter-spacing: 0.6px;

        white-space: nowrap;
    }

    .brand-text span {
        display: block;

        max-width: 100%;

        font-size: 7px;
        letter-spacing: 1.3px;

        white-space: nowrap;
    }


    /* =====================================================
       HAMBURGER
       ===================================================== */

    .menu-toggle {
    position: relative;
    z-index: 3000;

    display: flex;

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    padding: 0;

    border: 0;
    background: transparent;

    color: #ffffff !important;

    cursor: pointer;

    -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
    display: block;

    width: 23px;
    height: 2px;

    margin: 3px 0;

    background: #ffffff !important;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

    .menu-toggle.active span:nth-child(1) {
        transform:
            translateY(8px)
            rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform:
            translateY(-8px)
            rotate(-45deg);
    }


    /* =====================================================
       MOBILE NAVIGATION
       ===================================================== */

    .main-nav {
        position: fixed;

        top: 75px;
        left: 0;

        width: 100%;
        max-width: 100vw;
        height: calc(100vh - 75px);
        height: calc(100dvh - 75px);

        padding: 25px 22px 35px;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 4px;

        overflow-x: hidden;
        overflow-y: auto;

        background: #17191b;
        color: #ffffff;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateX(100%);

        transition:
            transform 0.35s ease,
            opacity 0.35s ease,
            visibility 0.35s ease;

        z-index: 2500;

        -webkit-overflow-scrolling: touch;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: translateX(0);
    }

    .main-nav .nav-link {
        display: flex;
        align-items: center;

        width: 100%;
        min-width: 0;

        padding: 14px 0;

        color: #ffffff;

        font-size: 17px;
        font-weight: 600;
    }

    

    .header-quote {
        display: none !important;
    }


    /* =====================================================
       PRODUCTS DROPDOWN
       ===================================================== */

    .nav-product-dropdown {
        display: block;

        width: 100%;
        min-width: 0;
    }

    .nav-product-dropdown > .nav-link {
        width: 100%;
    }

    .products-dropdown-menu {
        position: static;

        width: 100%;
        min-width: 0;

        margin: 0;
        padding: 0;

        background: rgba(255, 255, 255, 0.06);

        border: 0;
        box-shadow: none;

        opacity: 1;
        visibility: visible;

        transform: none;

        display: block;
    }

    .products-dropdown-menu::before {
        display: none;
    }

    .products-dropdown-menu a {
        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;
        min-height: 42px;

        padding: 0 12px;

        color: rgba(255, 255, 255, 0.82);

        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.7px;
    }

    .products-dropdown-menu a:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.05);
    }


    /* =====================================================
       HERO
       ===================================================== */

    .moulded-hero {
        position: relative;

        width: 100%;
        max-width: 100vw;

        height: 620px;
        min-height: 620px;

        overflow: hidden;
    }

    .moulded-hero-background {
        position: absolute;
        inset: 0;

        width: 100%;
        max-width: 100%;

        background-size: cover;
        background-position: center;
    }

    .moulded-hero-overlay {
        position: absolute;
        inset: 0;

        width: 100%;
        max-width: 100%;

        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.58) 0%,
                rgba(0, 0, 0, 0.42) 50%,
                rgba(0, 0, 0, 0.72) 100%
            );
    }

    .moulded-hero-content {
        position: relative;

        z-index: 2;

        width: 100%;
        max-width: 100%;

        height: 100%;

        padding:
            120px 18px 70px;

        display: flex;
        flex-direction: column;

        justify-content: center;
        align-items: center;

        text-align: center;

        overflow: hidden;
    }

    .hero-label {
        max-width: 100%;

        margin-bottom: 15px;

        font-size: 10px;
        letter-spacing: 2px;

        text-align: center;
    }

    .moulded-hero h1 {
        width: 100%;
        max-width: 100%;

        margin: 0;

        white-space: normal;

        overflow-wrap: break-word;
        word-break: normal;

        font-family: "Manrope", sans-serif;

        font-size: clamp(
            34px,
            10vw,
            50px
        );

        line-height: 1.04;
        letter-spacing: -1.5px;

        text-align: center;
    }

    .moulded-hero h1::after {
        width: 120px;
        height: 2px;

        margin: 15px auto 0;
    }

    .moulded-hero p {
        width: 100%;
        max-width: 500px;

        margin-top: 20px;

        font-size: 14px;
        line-height: 1.7;

        text-align: center;

        overflow-wrap: break-word;
    }


    /* =====================================================
       SCROLL INDICATOR
       ===================================================== */

    .scroll-explore {
        display: none !important;
    }


    /* =====================================================
       SECTION PADDING
       ===================================================== */

    .section-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }


    /* =====================================================
       INTRO
       ===================================================== */

    .products-intro {
        width: 100%;
        max-width: 100vw;

        padding:
            55px 14px 45px;

        overflow-x: hidden;
    }

    .products-intro .container {
        width: 100%;
        max-width: 100%;
    }

    .products-intro-grid {
        width: 100%;
        max-width: 100%;

        grid-template-columns: 1fr;

        gap: 24px;
    }

    .products-intro-content {
        width: 100%;
        max-width: 100%;
    }

    .products-intro-content h2 {
        width: 100%;
        max-width: 100%;

        font-size: clamp(
            31px,
            8vw,
            40px
        );

        line-height: 1.08;
        letter-spacing: -1.5px;

        overflow-wrap: break-word;
    }

    .products-intro-content p {
        width: 100%;
        max-width: 100%;

        margin-top: 16px;

        font-size: 14px;
        line-height: 1.75;

        overflow-wrap: break-word;
    }


    /* =====================================================
       PRODUCT SECTIONS
       ===================================================== */

    .product-section {
        width: 100%;
        max-width: 100vw;

        padding:
            65px 14px;

        overflow-x: hidden;
    }

    .product-section .container {
        width: 100%;
        max-width: 100%;
    }

    .product-layout,
    .product-layout.reverse {
        width: 100%;
        max-width: 100%;

        grid-template-columns: 1fr;

        gap: 38px;
    }

    .product-layout.reverse .product-image,
    .product-layout.reverse .product-content {
        order: initial;
    }

    .product-image {
        width: 100%;
        max-width: 100%;

        overflow: hidden;
    }

    .image-wrapper {
        position: relative;

        width: 100%;
        max-width: 100%;

        height: 360px;

        overflow: hidden;
    }

    .image-wrapper img {
        display: block;

        width: 100%;
        height: 100% !important;

        max-width: none !important;

        object-fit: cover;
        object-position: center;
    }

    .image-number {
        left: 0;
        bottom: 0;

        padding:
            10px 14px;

        font-size: 12px;
    }

    .product-content {
        width: 100%;
        max-width: 100%;

        min-width: 0;
    }

    .product-label {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .product-content h2 {
        width: 100%;
        max-width: 100%;

        margin-top: 15px;

        font-size: clamp(
            32px,
            9vw,
            44px
        );

        line-height: 1.05;
        letter-spacing: -1.7px;

        overflow-wrap: break-word;
    }

    .product-lead {
        margin-top: 20px;

        font-size: 15px;
        line-height: 1.7;
    }

    .product-content > p:not(.product-lead) {
        margin-top: 15px;

        font-size: 13px;
        line-height: 1.8;
    }

    .product-link {
        max-width: 100%;

        margin-top: 25px;

        padding:
            11px 15px 11px 17px;

        font-size: 10px;
    }


    /* =====================================================
       CONVEYOR
       ===================================================== */

    .conveyor-section {
        width: 100%;
        max-width: 100vw;

        min-height: 560px;

        padding:
            70px 14px;

        overflow: hidden;
    }

    .conveyor-section .container {
        width: 100%;
        max-width: 100%;
    }

    .conveyor-background {
        background-position: center;
    }

    .conveyor-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(12, 14, 15, 0.62),
                rgba(12, 14, 15, 0.82)
            );
    }

    .conveyor-content {
        width: 100%;
        max-width: 100%;
    }

    .conveyor-content h2 {
        width: 100%;
        max-width: 100%;

        margin-top: 18px;

        font-size: clamp(
            34px,
            9vw,
            46px
        );

        line-height: 1.04;
        letter-spacing: -1.8px;

        overflow-wrap: break-word;
    }

    .conveyor-content > p {
        width: 100%;
        max-width: 100%;

        margin-top: 20px;

        font-size: 14px;
        line-height: 1.75;
    }

    .light-link {
        margin-top: 28px;
    }


    /* =====================================================
       AGRICULTURE
       ===================================================== */

    .agriculture-section {
        width: 100%;
        max-width: 100vw;

        padding:
            65px 14px;

        overflow-x: hidden;
    }

    .agriculture-section .container {
        width: 100%;
        max-width: 100%;
    }

    .agriculture-heading {
        width: 100%;
        max-width: 100%;

        margin-bottom: 35px;
    }

    .agriculture-heading h2 {
        width: 100%;
        max-width: 100%;

        margin-top: 16px;

        font-size: clamp(
            34px,
            9vw,
            46px
        );

        line-height: 1.04;
        letter-spacing: -1.8px;

        overflow-wrap: break-word;
    }

    .agriculture-heading > p {
        width: 100%;
        max-width: 100%;

        margin-top: 15px;

        font-size: 14px;
        line-height: 1.75;
    }

    .agriculture-grid {
        width: 100%;
        max-width: 100%;

        grid-template-columns: 1fr;

        gap: 25px;
    }

    .agriculture-card {
        width: 100%;
        max-width: 100%;

        overflow: hidden;
    }

    .agriculture-image {
        width: 100%;
        max-width: 100%;

        height: 320px;

        overflow: hidden;
    }

    .agriculture-image img {
        display: block;

        width: 100%;
        height: 100% !important;

        max-width: none !important;

        object-fit: cover;
        object-position: center;
    }

    .agriculture-card-content {
        width: 100%;
        max-width: 100%;

        padding:
            14px 16px 16px;
    }

    .agriculture-card h3 {
        font-size: 19px;
    }

    .agriculture-card p {
        width: 100%;
        max-width: 100%;

        font-size: 12px;
        line-height: 1.55;
    }


    /* =====================================================
       CUSTOM MANUFACTURING
       ===================================================== */

    .manufacture-section {
        width: 100%;
        max-width: 100vw;

        padding:
            58px 14px 48px;

        background: #151719 !important;
        background-color: #151719 !important;

        overflow-x: hidden;
    }

    .manufacture-section .container {
        width: 100%;
        max-width: 100%;
    }

    .custom-intro {
        width: 100%;
        max-width: 100%;

        margin: 0;
    }

    .custom-intro .section-label {
        margin-bottom: 16px;

        font-size: 11px;
        letter-spacing: 1.6px;
    }

    .custom-intro h2 {
        width: 100%;
        max-width: 100%;

        font-size: clamp(
            29px,
            7.8vw,
            39px
        );

        line-height: 1.08;
        letter-spacing: -1px;

        overflow-wrap: break-word;
    }

    .custom-intro p {
        width: 100%;
        max-width: 100%;

        margin-top: 16px;

        font-size: 14px;
        line-height: 1.75;

        overflow-wrap: break-word;
    }


    /* =====================================================
       PROCESS GRID
       ===================================================== */

    .process-grid {
        width: 100%;
        max-width: 100%;

        display: grid;

        grid-template-columns: 1fr;

        gap: 18px;

        margin-top: 30px;

        padding: 0;
    }

    .process-grid .process-item {
        width: 100%;
        max-width: 100%;

        min-width: 0;
        min-height: 0;

        padding:
            25px 18px 23px;

        background: #fafafa !important;

        border-radius: 8px;

        overflow: hidden;
    }

    .process-icon {
        width: 54px;
        height: 54px;

        margin-bottom: 14px;
    }

    .process-icon img,
    .process-icon svg {
        width: 34px;
        height: 34px;
    }

    .process-grid .process-item h3 {
        font-size: 18px;
        line-height: 1.25;
    }

    .process-grid .process-item h3::after {
        width: 35px;
        height: 3px;

        margin:
            11px auto 14px;
    }

    .process-grid .process-item p {
        width: 100%;
        max-width: 100%;

        font-size: 13px;
        line-height: 1.65;

        overflow-wrap: break-word;
    }

    .process-arrow {
        display: none !important;
    }


    /* =====================================================
       MANUFACTURING ACTION BOX
       ===================================================== */

    .manufacture-action-box {
        width: 100%;
        max-width: 100%;

        min-height: 0;

        margin-top: 25px;

        padding:
            18px;

        display: flex;
        flex-direction: column;

        align-items: stretch;
        justify-content: flex-start;

        gap: 18px;

        overflow: hidden;
    }

    .manufacture-note {
        width: 100%;
        max-width: 100%;

        font-size: 11px;
        line-height: 1.5;
        letter-spacing: 1.3px;

        overflow-wrap: break-word;
    }

    .manufacture-action-box .cta-button {
        width: 100%;
        max-width: 100%;

        min-height: 46px;
    }


    /* =====================================================
       OUR APPROACH
       ===================================================== */

    .capability-section {
        width: 100%;
        max-width: 100vw;

        padding:
            58px 14px;

        overflow-x: hidden;
    }

    .capability-section .container {
        width: 100%;
        max-width: 100%;
    }

    .capability-grid {
        width: 100%;
        max-width: 100%;

        grid-template-columns: 1fr;

        gap: 22px;
    }

    .capability-label {
        padding-top: 0;

        font-size: 14px;
        letter-spacing: 1.5px;
    }

    .capability-content {
        width: 100%;
        max-width: 100%;
    }

    .capability-content h2 {
        width: 100%;
        max-width: 100%;

        font-size: clamp(
            29px,
            7.6vw,
            38px
        );

        line-height: 1.08;
        letter-spacing: -1px;

        overflow-wrap: break-word;
    }

    .capability-content p {
        width: 100%;
        max-width: 100%;

        margin-top: 17px;

        font-size: 14px;
        line-height: 1.75;

        overflow-wrap: break-word;
    }

    .capability-content p + p {
        margin-top: 12px;
    }


    /* =====================================================
       FINAL CTA
       ===================================================== */

    .products-cta {
        width: 100%;
        max-width: 100vw;

        padding:
            48px 14px;

        overflow-x: hidden;
    }

    .products-cta .container {
        width: 100%;
        max-width: 100%;
    }

    .products-cta-inner {
        width: 100%;
        max-width: 100%;

        padding:
            27px 0;

        display: flex;
        flex-direction: column;

        align-items: flex-start;

        gap: 23px;
    }

    .products-cta h2,
    .products-cta-inner h2 {
        width: 100%;
        max-width: 100%;

        font-size: clamp(
            29px,
            7.5vw,
            38px
        );

        line-height: 1.08;
        letter-spacing: -1px;

        overflow-wrap: break-word;
    }

    .products-cta .cta-button {
        width: 100%;
        max-width: 100%;

        min-height: 48px;
    }


    /* =====================================================
       FOOTER
       ===================================================== */

    .site-footer {
        width: 100%;
        max-width: 100vw;

        padding:
            48px 14px 22px;

        overflow-x: hidden;
    }

    .site-footer .container {
        width: 100%;
        max-width: 100%;
    }

    .footer-grid {
        width: 100%;
        max-width: 100%;

        grid-template-columns: 1fr;

        gap: 30px;

        padding-bottom: 30px;
    }

    .footer-company,
    .footer-column,
    .footer-contact {
        width: 100%;
        max-width: 100%;

        min-width: 0;
    }

    .footer-company > p {
        width: 100%;
        max-width: 100%;

        margin-top: 15px;

        font-size: 14px;
        line-height: 1.7;
    }

    .footer-column h4 {
        margin-bottom: 14px;

        font-size: 11px;
    }

    .footer-column a {
        margin-bottom: 8px;

        font-size: 14px;
    }

    .footer-contact p {
        font-size: 14px;
    }

    .footer-bottom {
        width: 100%;
        max-width: 100%;

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        gap: 7px;

        padding-top: 18px;

        font-size: 10px;

        overflow-wrap: break-word;
    }
}


/* =========================================================
   SMALL PHONES
   600px
   ========================================================= */

@media (max-width: 600px) {

    .container {
        width: calc(100% - 24px);
    }

    .header-inner {
        padding-left: 8px;
        padding-right: 8px;
    }

    .brand {
        margin-left: 3px;
    }

    .moulded-hero {
        height: 590px;
        min-height: 590px;
    }

    .moulded-hero-content {
        padding:
            115px 18px 60px;
    }

    .moulded-hero h1 {
        font-size: clamp(
            34px,
            10.5vw,
            48px
        );

        letter-spacing: -1.2px;
    }

    .moulded-hero h1::after {
        width: 105px;
    }

    .moulded-hero p {
        font-size: 13.5px;
    }

    .products-intro,
    .product-section,
    .conveyor-section,
    .agriculture-section,
    .manufacture-section,
    .capability-section,
    .products-cta,
    .site-footer {
        padding-left: 12px;
        padding-right: 12px;
    }

    .image-wrapper {
        height: 340px;
    }

    .agriculture-image {
        height: 300px;
    }

    .conveyor-section {
        min-height: 530px;
    }

    .process-grid {
        gap: 16px;
    }
}


/* =========================================================
   VERY SMALL PHONES
   380px
   ========================================================= */

@media (max-width: 380px) {

    .container {
        width: calc(100% - 20px);
    }

    .header-inner {
        padding-left: 6px;
        padding-right: 6px;
    }

    .brand {
        gap: 7px;
        margin-left: 2px;
    }

    .brand-mark {
        width: 35px;
        height: 35px;

        font-size: 10px;
    }

    .brand-text strong {
        font-size: 11px;
    }

    .brand-text span {
        font-size: 6px;
        letter-spacing: 1.1px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .main-nav {
        top: 75px;

        height: auto;
        max-height: calc(100vh - 82px);

        padding-left: 18px;
        padding-right: 18px;
    }

    .main-nav .nav-link {
        font-size: 16px;
    }

    .moulded-hero {
        height: 560px;
        min-height: 560px;
    }

    .moulded-hero-content {
        padding:
            105px 16px 50px;
    }

    .moulded-hero h1 {
        font-size: 33px;
        letter-spacing: -1px;
    }

    .moulded-hero h1::after {
        width: 90px;
    }

    .moulded-hero p {
        font-size: 13px;
        line-height: 1.65;
    }

    .products-intro,
    .product-section,
    .conveyor-section,
    .agriculture-section,
    .manufacture-section,
    .capability-section,
    .products-cta,
    .site-footer {
        padding-left: 10px;
        padding-right: 10px;
    }

    .image-wrapper {
        height: 310px;
    }

    .agriculture-image {
        height: 275px;
    }

    .product-content h2 {
        font-size: 34px;
    }

    .conveyor-content h2 {
        font-size: 35px;
    }

    .agriculture-heading h2 {
        font-size: 35px;
    }

    .custom-intro h2 {
        font-size: 30px;
    }

    .capability-content h2 {
        font-size: 30px;
    }

    .products-cta h2,
    .products-cta-inner h2 {
        font-size: 30px;
    }
}


/* =========================================================
   MOBILE — TOUCH / TAP FIX
   ========================================================= */

@media (max-width: 850px) {

    .menu-toggle,
    .main-nav a,
    .product-link,
    .cta-button {
        touch-action: manipulation;
    }

    .menu-toggle {
        pointer-events: auto !important;
    }

    .main-nav {
        pointer-events: none;
    }

    .main-nav.open {
        pointer-events: auto;
    }
}


/* =========================================================
   MOBILE — NO HORIZONTAL OVERFLOW
   ========================================================= */

@media (max-width: 850px) {

    .products-intro *,
    .product-section *,
    .conveyor-section *,
    .agriculture-section *,
    .manufacture-section *,
    .capability-section *,
    .products-cta *,
    .site-footer * {
        max-width: 100%;
    }

    .products-intro h1,
    .products-intro h2,
    .products-intro h3,
    .product-section h1,
    .product-section h2,
    .product-section h3,
    .conveyor-section h1,
    .conveyor-section h2,
    .conveyor-section h3,
    .agriculture-section h1,
    .agriculture-section h2,
    .agriculture-section h3,
    .manufacture-section h1,
    .manufacture-section h2,
    .manufacture-section h3,
    .capability-section h1,
    .capability-section h2,
    .capability-section h3,
    .products-cta h1,
    .products-cta h2,
    .products-cta h3 {
        overflow-wrap: break-word;
        word-break: normal;
    }
}


/* =========================================================
   MOBILE — REVEAL
   ========================================================= */

@media (max-width: 850px) {

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    .reveal.visible {
        opacity: 1 !important;
        transform: none !important;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

}
@media (max-width: 850px) {

    .menu-toggle,
    .menu-toggle:hover,
    .menu-toggle:focus,
    .menu-toggle:active {
        color: #ffffff !important;
        background: transparent !important;
    }

    .menu-toggle span,
    .menu-toggle:hover span,
    .menu-toggle:focus span,
    .menu-toggle:active span {
        background-color: #ffffff !important;
    }
}

/* =========================================================
   ABOUT PAGE — MOBILE ONLY
   MATCHES PRODUCTS PAGE MOBILE HEADER/HAMBURGER
   DESKTOP IS COMPLETELY UNTOUCHED
   ========================================================= */

@media (max-width: 850px) {

    /* ---------- GLOBAL MOBILE CONTAINMENT ---------- */

    html,
    body {
        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
    }

    body {
        width: 100%;
    }

    .site-header {
        width: 100%;
        max-width: 100vw;
    }

    .header-inner {
        width: 100%;
        min-width: 0;
    }


    /* ---------- BRAND ---------- */

    .brand {
        min-width: 0;
        max-width: calc(100% - 58px);
    }

    .brand-text {
        min-width: 0;
    }

    .brand-text strong,
    .brand-text span {
        white-space: nowrap;
    }


    /* =====================================================
       HAMBURGER
       EXACT SAME STYLE AS PRODUCTS PAGE
       ===================================================== */

    .menu-toggle {
        position: relative;
        z-index: 3000;

        display: block;

        width: 42px;
        height: 42px;

        flex-shrink: 0;

        padding: 0;

        border: 0;
        background: transparent;

        color: #ffffff;

        cursor: pointer;

        -webkit-tap-highlight-color: transparent;
    }

    .menu-toggle span {
        display: block;

        width: 23px;
        height: 1px;

        margin: 5px auto;

        background: currentColor;

        transition:
            transform 0.3s ease,
            opacity 0.3s ease;
    }

    /* ---------- OPEN = WHITE X ---------- */

    .menu-toggle.active span:nth-child(1) {
        transform:
            translateY(6px)
            rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform:
            translateY(-6px)
            rotate(-45deg);
    }


    /* =====================================================
       MOBILE NAVIGATION
       EXACT SAME BEHAVIOUR AS PRODUCTS PAGE
       ===================================================== */

    .main-nav {
        position: fixed;

        top: 82px;
        left: 0;

        width: 100%;
        max-width: 100vw;
        min-width: 0;

        padding: 22px 24px 28px;

        overflow-x: hidden;

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        gap: 4px;

        background: rgba(255, 255, 255, 0.98);

        color: var(--black);

        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateY(-10px);

        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: translateY(0);
    }


    /* ---------- NAV LINKS ---------- */

    .main-nav .nav-link {
        width: 100%;
        min-width: 0;

        padding: 11px 0;

        font-size: 14px;

        color: var(--black);
    }

    .main-nav .nav-link:hover,
    .main-nav .nav-link:focus,
    .main-nav .nav-link:active {
        color: var(--black);
    }


    /* ---------- QUOTE BUTTON ---------- */

    .header-quote {
        display: none;
    }


    /* =====================================================
       PRODUCTS DROPDOWN
       ===================================================== */

    .nav-product-dropdown {
        width: 100%;
        min-width: 0;

        display: block;
    }

    .nav-product-dropdown > .nav-link {
        width: 100%;
    }

    .products-dropdown-menu {
        position: static;

        width: 100%;
        min-width: 0;

        margin-top: 4px;
        padding: 0;

        border: 0;

        box-shadow: none;

        background: #f6f6f4;

        opacity: 1;
        visibility: visible;

        transform: none;

        display: block;
    }

    .products-dropdown-menu::before {
        display: none;
    }

    .products-dropdown-menu a {
        width: 100%;
        min-height: 42px;

        padding: 0 12px;

        font-size: 10px;

        color: var(--black);
    }


    /* =====================================================
       ABOUT HERO
       ===================================================== */

    .moulded-hero {
        width: 100%;
        max-width: 100vw;

        overflow: hidden;
    }

    .moulded-hero-background {
        width: 100%;
        max-width: 100%;
    }

    .moulded-hero-overlay {
        width: 100%;
        max-width: 100%;
    }

    .moulded-hero-content {
        width: 100%;
        min-width: 0;
        max-width: 100%;

        overflow: hidden;
    }

    .moulded-hero h1 {
        width: 100%;
        max-width: 100%;

        white-space: normal;

        overflow-wrap: anywhere;
        word-break: normal;

        font-size: clamp(38px, 10vw, 54px);

        line-height: 1.05;

        letter-spacing: -1.5px;
    }


    /* =====================================================
       ABOUT CONTENT
       ===================================================== */

    .company-section,
    .about-section,
    .about-content,
    .stats-section,
    .capabilities-section,
    .customers-section {
        width: 100%;
        max-width: 100vw;

        overflow-x: hidden;
    }

    .company-section .container,
    .about-section .container,
    .stats-section .container,
    .capabilities-section .container,
    .customers-section .container {
        width: 100%;
        max-width: 100%;

        min-width: 0;

        box-sizing: border-box;
    }


    /* ---------- GENERAL TEXT CONTAINMENT ---------- */

    .company-section h1,
    .company-section h2,
    .company-section h3,
    .company-section p,

    .about-section h1,
    .about-section h2,
    .about-section h3,
    .about-section p,

    .capabilities-section h1,
    .capabilities-section h2,
    .capabilities-section h3,
    .capabilities-section p,

    .customers-section h1,
    .customers-section h2,
    .customers-section h3,
    .customers-section p {
        max-width: 100%;

        overflow-wrap: anywhere;
        word-break: normal;
    }


    /* =====================================================
       IMAGES
       ===================================================== */

    img {
        max-width: 100%;
        height: auto;
    }


    /* =====================================================
       STATS
       ===================================================== */

    .stats-grid,
    .stats {
        width: 100%;
        max-width: 100%;

        min-width: 0;

        box-sizing: border-box;
    }


    /* =====================================================
       CAPABILITIES
       ===================================================== */

    .capabilities-grid,
    .capability-grid {
        width: 100%;
        max-width: 100%;

        min-width: 0;

        box-sizing: border-box;
    }

    .capability-card,
    .capabilities-card {
        max-width: 100%;
        min-width: 0;

        overflow: hidden;
    }


    /* =====================================================
       CUSTOMER MARQUEE
       ===================================================== */

    .customers-marquee {
        width: 100%;
        max-width: 100vw;

        overflow: hidden;
    }

    .customers-track {
        max-width: none;
    }


    /* =====================================================
       FOOTER
       ===================================================== */

    .site-footer {
        width: 100%;
        max-width: 100vw;

        overflow-x: hidden;
    }

    .footer-grid {
        width: 100%;
        max-width: 100%;

        min-width: 0;
    }

    .footer-company,
    .footer-column,
    .footer-contact {
        min-width: 0;
        max-width: 100%;
    }

    .footer-company p,
    .footer-contact p,
    .footer-column a {
        max-width: 100%;

        overflow-wrap: anywhere;
        word-break: normal;
    }

    .footer-bottom {
        max-width: 100%;

        overflow-wrap: anywhere;
        word-break: normal;
    }


    /* =====================================================
       BODY WHEN MENU IS OPEN
       ===================================================== */

    body.menu-open {
        overflow: hidden;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 600px) {

    .moulded-hero h1 {
        font-size: clamp(36px, 11vw, 50px);

        line-height: 1.02;

        letter-spacing: -1.2px;
    }

    .moulded-hero-content {
        padding-left: 24px;
        padding-right: 24px;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .main-nav {
        padding-left: 20px;
        padding-right: 20px;
    }

    .moulded-hero-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .moulded-hero h1 {
        font-size: 35px;

        letter-spacing: -1px;
    }

}


/* =========================================================
   MOBILE HEADER SIDE SPACE
   ========================================================= */

@media (max-width: 600px) {

    .header-inner {
        padding-left: 10px;
        padding-right: 10px;
    }

    .brand {
        margin-left: 5px;
    }

}


/* =========================================================
   HIDE SCROLL TO EXPLORE ON MOBILE
   ========================================================= */

@media (max-width: 850px) {

    .scroll-explore {
        display: none !important;
    }

}
/* =========================================================
   ABOUT PAGE — MOBILE CONTENT SIDE GAPS
   HAMBURGER / HEADER NOT TOUCHED
   DESKTOP COMPLETELY UNCHANGED
   ========================================================= */

@media (max-width: 850px) {

    /* Main About page sections */
    .company-section,
    .about-section,
    .about-content,
    .stats-section,
    .capabilities-section,
    .customers-section,
    .site-footer {
        padding-left: 14px;
        padding-right: 14px;
        box-sizing: border-box;
    }


    /* Keep containers inside the side spacing */
    .company-section .container,
    .about-section .container,
    .about-content .container,
    .stats-section .container,
    .capabilities-section .container,
    .customers-section .container,
    .site-footer .container {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }


    /* Prevent content from touching the edges */
    .company-section *,
    .about-section *,
    .about-content *,
    .stats-section *,
    .capabilities-section *,
    .customers-section *,
    .site-footer * {
        max-width: 100%;
        box-sizing: border-box;
    }


    /* Text stays inside the new side gap */
    .company-section h1,
    .company-section h2,
    .company-section h3,
    .company-section p,

    .about-section h1,
    .about-section h2,
    .about-section h3,
    .about-section p,

    .capabilities-section h1,
    .capabilities-section h2,
    .capabilities-section h3,
    .capabilities-section p,

    .customers-section h1,
    .customers-section h2,
    .customers-section h3,
    .customers-section p {
        width: 100%;
        max-width: 100%;

        overflow-wrap: break-word;
        word-break: normal;
    }


    /* Images stay inside the side spacing */
    .company-section img,
    .about-section img,
    .about-content img,
    .stats-section img,
    .capabilities-section img,
    .customers-section img,
    .site-footer img {
        max-width: 100%;
        height: auto;
    }


    /* Stats/cards don't touch screen edges */
    .stats-grid,
    .stats,
    .capabilities-grid,
    .capability-grid {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }


    /* Customer/logo marquee stays contained */
    .customers-marquee {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 600px) {

    .company-section,
    .about-section,
    .about-content,
    .stats-section,
    .capabilities-section,
    .customers-section,
    .site-footer {
        padding-left: 12px;
        padding-right: 12px;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .company-section,
    .about-section,
    .about-content,
    .stats-section,
    .capabilities-section,
    .customers-section,
    .site-footer {
        padding-left: 10px;
        padding-right: 10px;
    }

}
/* =========================================================
   ABOUT PAGE — FINAL MOBILE IMAGE + CUSTOMER MARQUEE FIX
   DESKTOP COMPLETELY UNCHANGED
   ========================================================= */

@media (max-width: 850px) {

    /* =====================================================
       ABOUT CONTENT IMAGES
       Prevent image from filling/cropping the whole frame
       ===================================================== */

    .company-section img,
    .about-section img,
    .about-content img {

        display: block;

        width: 100%;
        max-width: 100%;

        height: auto !important;

        object-fit: contain !important;
        object-position: center center;

    }


    /* If the About page has a dedicated image wrapper */
    .company-image,
    .about-image {

        width: 100%;
        max-width: 100%;

        height: auto !important;

        overflow: hidden;
    }


    .company-image img,
    .about-image img {

        width: 100%;

        height: auto !important;

        max-width: 100%;

        object-fit: contain !important;

        object-position: center center;

    }


  /* =========================================================
   ABOUT PAGE — CUSTOMER MARQUEE
   FAST • SMOOTH • ZERO OVERLAP
   MOBILE ONLY
   ========================================================= */

@media (max-width: 850px) {
    .customer-group span {
    font-size: 17px;
    }
    /* =====================================================
       MARQUEE WINDOW
       ===================================================== */

    .customer-marquee {

        position: relative;

        width: 100%;
        max-width: 100%;

        overflow: hidden;

        white-space: nowrap;

        isolation: isolate;

    }


    /* =====================================================
       MOVING TRACK
       ===================================================== */

    .customer-track {

        display: flex !important;

        flex-direction: row;

        flex-wrap: nowrap !important;

        align-items: center;

        width: max-content !important;

        max-width: none !important;

        min-width: max-content;

        gap: 0 !important;

        margin: 0;

        padding: 0;

        white-space: nowrap;

        will-change: transform;

        transform: translate3d(0, 0, 0);

        backface-visibility: hidden;

    }


    /* =====================================================
       EACH COMPLETE GROUP
       ===================================================== */

    .customer-group {

        display: flex !important;

        flex-direction: row;

        flex-wrap: nowrap !important;

        align-items: center;

        flex: 0 0 auto !important;

        width: max-content !important;

        min-width: max-content;

        max-width: none !important;

        gap: 0 !important;

        margin: 0;

        padding: 0;

        white-space: nowrap;

    }


    /* =====================================================
       CUSTOMER NAMES
       ===================================================== */

    .customer-group span {

        display: inline-flex !important;

        align-items: center;

        justify-content: center;

        flex: 0 0 auto !important;

        width: auto !important;

        min-width: max-content;

        max-width: none !important;

        height: auto;

        margin: 0 !important;

        padding-left: 35px;

        padding-right: 35px;

        white-space: nowrap;

        word-break: normal;

        overflow-wrap: normal;

        text-overflow: clip;

    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 600px) {

    .customer-group span {

        padding-left: 30px;

        padding-right: 30px;

    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .customer-group span {

        padding-left: 25px;

        padding-right: 25px;

    }

}}/* =========================================================
   ABOUT PAGE — MOBILE HEADER SCROLL STATE
   WHITE HEADER + BLACK HAMBURGER AFTER SCROLL
   ========================================================= */

@media (max-width: 850px) {

    /* -----------------------------------------------------
       BEFORE SCROLL
       Transparent header + white hamburger
       ----------------------------------------------------- */

    .site-header {
        background: transparent;
        color: #ffffff;
        box-shadow: none;
    }

    .site-header .menu-toggle {
        color: #ffffff !important;
        background: transparent !important;
    }

    .site-header .menu-toggle span {
        background-color: #ffffff !important;
    }


    /* -----------------------------------------------------
       AFTER SCROLL
       White header + black hamburger
       ----------------------------------------------------- */

    .site-header.scrolled {
        background: rgba(255, 255, 255, 0.97) !important;
        color: #111111 !important;

        box-shadow:
            0 5px 24px rgba(0, 0, 0, 0.06);

        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .site-header.scrolled .menu-toggle {
        color: #111111 !important;
        background: transparent !important;
    }

    .site-header.scrolled .menu-toggle span {
        background-color: #111111 !important;
    }


    /* -----------------------------------------------------
       SCROLLED NAV TEXT
       ----------------------------------------------------- */

    .site-header.scrolled .main-nav {
        color: #111111;
    }

    .site-header.scrolled .nav-link {
        color: #111111;
    }

}
.stat-plus {
    color: #a90702;
    margin-left: 5px;
}