/* =========================================================
   PAWAR RUBBER PRODUCTS
   RUBBER MOULDED PRODUCTS PAGE
   COMPLETE REPLACEMENT CSS
   ========================================================= */


/* =========================================================
   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;

}


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

.section-padding {

    padding-top: 72px;
    padding-bottom: 72px;

}


/* =========================================================
   TOP 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
   ========================================================= */

.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;

}


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

.main-nav {

    display: flex;
    align-items: center;
    gap: 30px;

}

.nav-link {

    position: relative;

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

    padding: 8px 0;

    transition: color 0.25s ease;

}

.nav-link::after {

    content: "";

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

    width: 0;
    height: 1px;

    background: #b3262d;

    transition: width 0.25s ease;

}

.nav-link:hover::after,
.nav-link.active::after {

    width: 100%;

}

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

.nav-product-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}


/* PRODUCTS LINK */

.nav-product-dropdown > .nav-link {
    display: inline-flex;
    align-items: center;
}


/* DROPDOWN BOX */

.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;
}


/* SMALL SPACE ABOVE DROPDOWN
   Keeps hover active while moving mouse down */

.products-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -19px;
    left: 0;
    width: 100%;
    height: 19px;
}


/* SHOW DROPDOWN ON HOVER */

.nav-product-dropdown:hover .products-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}


/* DROPDOWN ITEMS */

.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;
}


/* DROPDOWN ITEM HOVER */

.products-dropdown-menu a:hover {
    color: #b3262d;
    background: #f6f6f4;
}


/* DROPDOWN ARROW */

.products-dropdown-menu a span:last-child {
    color: #b3262d;
    font-size: 16px;
    font-weight: 700;

    transform: translateX(0);

    transition: transform 0.2s ease;
}


/* ARROW MOVEMENT */

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


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

.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: #b3262d;
    border-color: #b3262d;
    color: #ffffff;

    transform: translateY(-2px);

}

.header-quote:hover span:last-child {

    transform: translateX(5px);

}

.site-header.scrolled .header-quote {

    background: transparent;
    border-color: #151719;
    color: #151719;

}

.site-header.scrolled .header-quote:hover {

    background: #b3262d;
    border-color: #b3262d;
    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
   ========================================================= */

.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-p.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;

    /* Center ONLY this heading */
    text-align: center;
}

.moulded-hero h1::after {
    content: "";
    display: block;
    width: 300px;
    height: 3px;
    margin: 18px auto 0;
    background: #b3262d;
}

.moulded-hero h1 span {

    font-weight: 500;
    opacity: 0.9;

}

.moulded-hero p {

    max-width: 590px;

    margin-top: 24px;

    font-size: 17px;
    line-height: 1.75;
    font-weight: 400;

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

}





/* =========================================================
   RIGHT 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;

}

.scroll-explore > span {

    writing-mode: vertical-rl;

    transform: rotate(180deg);

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

    color: #777;

}

.scroll-line {

    position: relative;

    width: 2px;
    height: 120px;

    overflow: hidden;

    background: #d5d5d2;

}

.scroll-line span {

    position: absolute;

    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 0;

    background: var(--red);

    transition: height 0.05s linear;

}


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

.section-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: #b3262d;

    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: #b3262d;

}


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

.products-intro {
    background: #fff;
    padding-top: 55px;
    padding-bottom: 45px;
}

.products-intro-grid {

    display: grid;

    grid-template-columns: 0.48fr 1.52fr;

    gap: 60px;

    align-items: start;

}

.products-intro-content {

    max-width: 700px;

}

.products-intro-content h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -2px;
    color: #111;
    margin-bottom: 0;
}

.products-intro-content h2 span {

    color: #111111;

}

.products-intro-content p {

    max-width: 570px;

    margin-top: 20px;

    color: #777a7d;

    font-size: 14px;

    line-height: 1.75;

}


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

.product-section {
    padding-top: 45px;
    padding-bottom: 85px;
    background: #fff;
}

.extruded-section {

    background: #f5f5f3;

}

.product-layout {

    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 90px;

    align-items: center;

}

.product-layout.reverse {

    grid-template-columns: 0.95fr 1.05fr;

}

.product-layout.reverse .product-image {

    order: 2;

}

.product-layout.reverse .product-content {

    order: 1;

}

.product-image {

    position: relative;

}

.image-wrapper {

    width: 100%;
    height: 500px;

    overflow: hidden;

    background: #eeeeee;

}

.image-wrapper img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;

}

.product-image:hover img {

    transform: scale(1.035);

}

.image-number {

    position: absolute;

    left: -1px;
    bottom: -1px;

    padding: 14px 20px;

    background: #ffffff;

    color: #111111;

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

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1px;

}

.product-content {

    max-width: 570px;

}

.product-label {

    color: #b3262d;

    font-size: 17px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;

}

.product-content h2 {
    
    max-width: 900px;

    margin-top: 20px;

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

    color: #111111;

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

    font-weight: 800;

    line-height: 1.04;

    letter-spacing: -2.4px;

}

.product-content h2 span {
    
    color: #111111;

}

.product-lead {

    margin-top: 27px;

    color: #4d5052;

    font-size: 17px;

    font-weight: 500;

    line-height: 1.7;

}

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

    margin-top: 20px;

    color: #777a7d;

    font-size: 13px;

    line-height: 1.9;

}

.product-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    margin-top: 35px;
    padding: 13px 18px 13px 20px;

    background: #b3262d;
    border: 1px solid #b3262d;
    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;
}

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


/* =========================================================
   CONVEYORS
   ========================================================= */

.conveyor-section {

    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: #ffffff;

}

.conveyor-background {

    position: absolute;

    inset: 0;

    background-image: url("../images/conveyors.png");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    transform: scale(1.02);

}

.conveyor-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(12, 14, 15, 0.84),
            rgba(12, 14, 15, 0.48),
            rgba(12, 14, 15, 0.20)
        );

}

.conveyor-content {

    position: relative;

    z-index: 2;

}

.product-label.light {

    color: #ffffff;

}

.conveyor-content h2 {

    max-width: 900px;

    margin-top: 22px;

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

    font-size: clamp(40px, 5vw, 62px);

    font-weight: 765;

    line-height: 1.02;

    letter-spacing: -3px;

}

.conveyor-content h2 span {

    color: #ffffff;

}

.conveyor-content > p {

    max-width: 570px;

    margin-top: 28px;

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

    font-size: 15.5px;

    line-height: 1.85;

}

.light-link {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin-top: 35px;

    padding-bottom: 9px;

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

    color: #ffffff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

}

.light-link strong {

    color: #b3262d;

    font-size: 18px;

    transition: transform 0.25s ease;

}

.light-link:hover strong {

    transform: translateX(5px);

}


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

.agriculture-section {

    background: #ffffff;

}

.agriculture-heading {

    max-width: 700px;

    margin-bottom: 27px;

}

.agriculture-heading h2 {

    margin-top: 20px;

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

    font-size: clamp(40px, 5vw, 62px);

    font-weight: 765;

    line-height: 1;

    letter-spacing: -3px;

    color: #111111;

}

.agriculture-heading h2 span {

    color: #111111;

}

.agriculture-heading > p {

    max-width: 600px;

    margin-top: 13.5px;

    color: #777a7d;

    font-size: 15.5px;

    line-height: 1.8;

}

.agriculture-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 30px;

}

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

.agriculture-card {
    background: #f5f5f3;
    overflow: hidden;
    border: 1px solid #e2e2df;
}

.agriculture-image {
    height: 500px;
    overflow: hidden;
    background: #eeeeee;
}

.agriculture-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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


/* COMPACT GREY CONTENT BOX */

.agriculture-card-content {
    position: relative;
    padding: 12px 22px 14px;
    background: #f5f5f3;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.agriculture-card h3 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: #111111;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.agriculture-card p {
    max-width: 470px;
    margin: 5px 0 0;
    color: #777a7d;
    font-size: 11.5px;
    line-height: 1.4;
}

.agriculture-card .product-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 9px;
    padding: 7px 13px 7px 15px;

    gap: 12px;
    border-radius: 30px;

    font-size: 9.5px;
}

.agriculture-card .product-link strong {
    font-size: 14px;
}


/* =========================================================
   CUSTOM MANUFACTURING
   MATCHED TO RUBBER MOULDED PRODUCTS PAGE
   ========================================================= */

.manufacture-section {

    position: relative;

    isolation: isolate;

    width: 100%;

    padding: 68px 0 70px;

    background: #151719 !important;

    background-color: #151719 !important;

    color: #ffffff !important;

}


/* Force inner wrappers transparent */

.manufacture-section > .container {

    background: transparent !important;

}


/* Custom introduction */

.custom-intro {

    max-width: 100%;

    width: 100%;

    margin-bottom: 0;

    background: transparent !important;

}

.custom-intro .section-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: #b3262d;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.8px;

    line-height: 1;

    text-transform: uppercase;

}

.custom-intro .section-label::before {

    content: "";

    width: 3px;

    height: 20px;

    background: #b3262d;

}

.custom-intro h2 {

    margin: 0;

    color: #ffffff !important;

    

    font-size: clamp(38px, 4.3vw, 52px);

    font-weight: 650;

    line-height: 1.08;

    letter-spacing: -1.3px;

}

.custom-intro h2 span {

    color: #ffffff !important;

    font-weight: inherit;

}

.custom-intro p {

    max-width: none;

    width: 100%;

    margin: 18px 0 0;

    color: rgba(255, 255, 255, 0.68) !important;

    font-size: 15px;

    line-height: 1.7;

}


/* =========================================================
   PROCESS CARDS
   ========================================================= */

.process-grid {

    display: grid;

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

    gap: 14px;

    align-items: stretch;

    margin-top: 20px;

    background: transparent !important;

}


/* White process cards */

.process-grid .process-item {

    position: relative;

    min-height: 235px;

    padding: 24px 20px 22px;

    background: #fafafa !important;

    border: 1px solid #dededb;

    border-radius: 8px;

    text-align: center;

    cursor: default;

    transition: none;

}

.process-grid .process-item:hover {

    transform: none;

    background: #fafafa !important;

    border-color: #dededb;

    box-shadow: none;

}


/* Process icon */

.process-icon {

    width: 58px;

    height: 58px;

    margin: 0 auto 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    border: 1.5px solid #b3262d;

    border-radius: 50%;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);

    position: relative;

    z-index: 2;

    transition: none;

}

.process-icon img,
.process-icon svg {

    width: 38px;

    height: 38px;

    object-fit: contain;

}

.process-item:hover .process-icon {

    border-color: #b3262d;

    transform: none;

}


/* Process title */

.process-grid .process-item h3 {

    margin: 0;

    color: #151719;

    

    font-size: 19px;

    font-weight: 750;

    line-height: 1.25;

    letter-spacing: -0.2px;

}


/* Red line */

.process-grid .process-item h3::after {

    content: "";

    display: block;

    width: 38px;

    height: 3px;

    margin: 13px auto 16px;

    background: #b3262d;

}


/* Process description */

.process-grid .process-item p {

    max-width: 100%;

    margin: 0;

    color: #5f6265;

    font-size: 13px;

    font-weight: 500;

    line-height: 1.65;

}


/* =========================================================
   RED CONNECTING ARROWS
   ========================================================= */

.process-arrow {

    position: absolute;

    top: 50%;

    right: -25px;

    width: 48px;

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    transform: translateY(-50%);

    color: #b3262d;

    font-size: 30px;

    font-weight: 900;

    line-height: 1;

    pointer-events: none;

    z-index: 100;

}

.process-arrow::before {

    content: "→";

}


/* =========================================================
   BOTTOM ACTION BOX
   ========================================================= */

.manufacture-action-box {

    width: 100%;

    min-height: 92px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 30px;

    padding: 20px 24px;

    background: #ffffff !important;

    border: 1px solid #dcdcdc;

    box-sizing: border-box;

}

.manufacture-note {

    margin: 0;

    color: #151719;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.8px;

    line-height: 1.3;

    text-transform: uppercase;

}

.manufacture-action-box .cta-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-height: 46px;

    padding: 0 18px;

    margin: 0;

    background: #151719;

    border: 1px solid #151719;

    color: #ffffff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

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

}

.manufacture-action-box .cta-button span:last-child {

    font-size: 16px;

    line-height: 1;

    transition: transform 0.3s ease;

}

.manufacture-action-box .cta-button:hover {

    background: #b3262d;

    border-color: #b3262d;

    color: #ffffff;

    transform: translateY(-2px);

}

.manufacture-action-box .cta-button:hover span:last-child {

    transform: translateX(5px);

}


/* =========================================================
   OUR APPROACH
   SAME AS RUBBER MOULDED PRODUCTS PAGE
   ========================================================= */

.capability-section {

    padding-top: 76px;

    padding-bottom: 76px;

    background: var(--white);

}

.capability-grid {

    display: grid;

    grid-template-columns: 0.7fr 2fr;

    gap: 80px;

}

.capability-label {

    padding-top: 8px;

    font-size: 18px;

    font-weight: 800;

    letter-spacing: 1.8px;

    color: var(--black);

}

.capability-content {

    max-width: 790px;

}

.capability-content h2 {

    

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

    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -1.3px;

    color: var(--black);

}

.capability-content h2 span {

    font-weight: 500;

    color: #727477;

}

.capability-content p {

    max-width: 720px;

    margin-top: 20px;

    font-size: 15px;

    line-height: 1.8;

    color: #343638;

}

.capability-content p + p {

    margin-top: 13px;

}


/* =========================================================
   FINAL CTA
   SAME AS RUBBER MOULDED PRODUCTS PAGE
   ========================================================= */

.products-cta {

    padding-top: 64px;

    padding-bottom: 64px;

    background: var(--light);

}

.products-cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 45px;

    padding: 34px 0;

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

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

}

.products-cta h2,
.products-cta-inner h2 {

    margin-top: 4px;

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

    font-size: clamp(38px, 4.3vw, 52px);

    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -1.3px;

    color: var(--black);

}

.products-cta h2 span,
.products-cta-inner h2 span {

    font-weight: 500;

    color: #727477;

}


/* Final CTA button */

.products-cta .cta-button {

    min-height: 48px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    padding: 0 21px;

    flex-shrink: 0;

    background: #151719;

    border: 1px solid #151719;

    color: #ffffff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.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;

}

.products-cta .cta-button span:last-child {

    font-size: 18px;

    line-height: 1;

    transition: transform 0.3s ease;

}

.products-cta .cta-button:hover {

    background: #b3262d;

    border-color: #b3262d;

    color: #ffffff;

    transform: translateY(-2px);

}

.products-cta .cta-button:hover span:last-child {

    transform: translateX(5px);

}


/* =========================================================
   FOOTER
   SAME AS RUBBER MOULDED 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
   ========================================================= */

.reveal {

    opacity: 1 !important;

    transform: none !important;

}

.reveal.visible {

    opacity: 1;

    transform: translateY(0);

}


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

@media (max-width: 1050px) {

    .main-nav {

        gap: 18px;

    }

    .header-quote {

        padding: 11px 14px;

    }

    .product-layout,
    .product-layout.reverse {

        grid-template-columns: 1fr 1fr;

        gap: 50px;

    }

    .image-wrapper {

        height: 520px;

    }


    /* CUSTOM MANUFACTURING */

    .manufacture-section {

        background: #151719 !important;

        background-color: #151719 !important;

    }

    .process-grid {

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

        gap: 14px;

    }

    .process-arrow {

        display: none;

    }


    /* OUR APPROACH */

    .capability-grid {

        gap: 55px;

    }


    /* FOOTER */

    .footer-grid {

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

        gap: 35px;

    }

}


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

@media (max-width: 850px) {

    .container {

        width: min(100% - 36px, 680px);

    }


    /* NAVIGATION */

    .main-nav {

        position: fixed;

        top: 86px;

        left: 0;

        width: 100%;

        height: auto;
        max-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;

    }

    .main-nav.open {

        transform: translateX(0);

    }

    .nav-link {

        font-size: 22px;

    }

    .header-quote {

        display: none;

    }

    .menu-toggle {

        display: flex;

    }


    /* INTRO */

    .products-intro-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    /* PRODUCTS */

    .product-layout,
    .product-layout.reverse {

        grid-template-columns: 1fr;

        gap: 50px;

    }

    .product-layout.reverse .product-image,
    .product-layout.reverse .product-content {

        order: initial;

    }

    .product-content {

        max-width: 700px;

    }


    /* CUSTOM MANUFACTURING */

    .manufacture-section {

        background: #151719 !important;

        background-color: #151719 !important;

    }

    .process-grid {

        grid-template-columns: 1fr 1fr;

        gap: 35px 25px;

    }

    .process-arrow {

        display: none;

    }


    /* OUR APPROACH */

    .capability-grid {

        grid-template-columns: 1fr;

        gap: 25px;

    }

    .capability-label {

        padding-top: 0;

    }


    /* FINAL CTA */

    .products-cta-inner {

        align-items: flex-start;

        flex-direction: column;

        gap: 25px;

    }

}


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

@media (max-width: 600px) {

    .section-padding {

        padding: 75px 0;

    }


    /* HEADER */

    .header-inner {

        min-height: 75px;

    }

    .main-nav {

        top: 75px;

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

    }


    /* HERO */

    .products-hero {

        height: 600px;

    }

    .products-hero h1 {

        font-size: 48px;

        letter-spacing: -2.5px;

    }

    .products-hero-content > p {

        font-size: 14px;

    }

    .hero-page-number {

        left: 25px;

        bottom: 28px;

    }


    /* INTRO */

    .products-intro-content h2 {

        font-size: 40px;

        letter-spacing: -2px;

    }


    /* PRODUCTS */

    .product-section {

        padding: 80px 0;

    }

    .image-wrapper {

        height: 400px;

    }

    .product-content h2 {

        font-size: 42px;

        letter-spacing: -2px;

    }

    .product-lead {

        font-size: 15px;

    }


    /* CONVEYOR */

    .conveyor-section {

        min-height: 560px;

    }

    .conveyor-content h2 {

        font-size: 43px;

        letter-spacing: -2px;

    }


    /* AGRICULTURE */

    .agriculture-heading {

        margin-bottom: 45px;

    }

    .agriculture-heading h2 {

        font-size: 45px;

        letter-spacing: -2px;

    }

    .agriculture-grid {

        grid-template-columns: 1fr;

        gap: 25px;

    }

    .agriculture-image {

        height: 350px;

    }


    /* -----------------------------------------------------
       CUSTOM MANUFACTURING
       ----------------------------------------------------- */

    .manufacture-section {

        padding-top: 58px;
        padding-bottom: 48px;

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

    }

    .custom-intro h2 {

        font-size:
            clamp(30px, 7.5vw, 39px);

        letter-spacing: -1px;

    }

    .custom-intro p {

        margin-top: 17px;

        margin-bottom: 25px;

        font-size: 14px;

        line-height: 1.75;

    }

    .process-grid {

        grid-template-columns: 1fr;

        gap: 26px;

        margin-top: 40px;

        padding-top: 22px;

    }

    .process-item {

        padding-right: 0;

    }

    .process-item h3 {

        font-size: 17px;

    }

    .process-item p {

        max-width: 100%;

        font-size: 13px;

    }

    .process-item .process-arrow {

        display: none;

    }

    .manufacture-action-box {

        margin-top: 28px;

        padding: 18px;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

    }

    .manufacture-action-box .cta-button {

        width: 100%;

    }


    /* -----------------------------------------------------
       OUR APPROACH
       ----------------------------------------------------- */

    .capability-section {

        padding-top: 58px;

        padding-bottom: 58px;

    }

    .capability-content h2 {

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

        letter-spacing: -1px;

    }

    .capability-content p {

        font-size: 14px;

        line-height: 1.75;

    }


    /* -----------------------------------------------------
       FINAL CTA
       ----------------------------------------------------- */

    .products-cta {

        padding-top: 50px;

        padding-bottom: 50px;

    }

    .products-cta-inner {

        align-items: flex-start;

        flex-direction: column;

        gap: 25px;

        padding:
            28px 0;

    }

    .products-cta h2 {

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

        letter-spacing: -1px;

    }


    /* -----------------------------------------------------
       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);

    }

    .products-hero h1 {

        font-size: 42px;

    }

    .product-content h2 {

        font-size: 38px;

    }

    .conveyor-content h2 {

        font-size: 38px;

    }

    .agriculture-heading h2 {

        font-size: 40px;

    }


    /* CUSTOM MANUFACTURING */

    .manufacture-section {

        background: #151719 !important;

        background-color: #151719 !important;

    }

    .custom-intro h2 {

        font-size: 37px;

    }

    .custom-intro > p {

        font-size: 13px;

    }


    /* FINAL CTA */

    .products-cta h2,
    .products-cta-inner h2 {

        font-size: 34px;

    }


    /* FOOTER */

    .footer-grid {

        gap: 28px;

    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */
/* =========================================================
   MOBILE ONLY — PRODUCTS PAGE
   Desktop remains completely unchanged
   ========================================================= */

@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 ---------- */

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

        display: block;

        width: 42px;
        height: 42px;

        flex-shrink: 0;

        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);
    }


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

    .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);
    }

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

        padding: 11px 0;

        font-size: 14px;
    }

    .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;
    }


    /* ---------- 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;
    }


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

    .scroll-explore {
        max-width: 100%;
    }


    /* ---------- INTRO ---------- */

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

        overflow-x: hidden;
    }

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

        min-width: 0;
    }

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

        min-width: 0;
    }

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

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


    /* ---------- PRODUCT SECTIONS ---------- */

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

        overflow-x: hidden;
    }

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

        min-width: 0;
    }

    .product-section > .container,
    .product-section .product-grid,
    .product-section .product-content,
    .product-section .product-image {
        min-width: 0;
        max-width: 100%;
    }

    .product-section h2,
    .product-section p,
    .product-section a {
        max-width: 100%;

        overflow-wrap: anywhere;
    }

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

        overflow: hidden;
    }

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


    /* ---------- CONVEYOR SECTION ---------- */

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

        overflow-x: hidden;
    }

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

        min-width: 0;
    }

    .conveyor-section h2,
    .conveyor-section p {
        max-width: 100%;

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


    /* ---------- AGRICULTURE ---------- */

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

        overflow-x: hidden;
    }

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

        min-width: 0;
    }

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

        min-width: 0;

        overflow: hidden;
    }

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

        height: auto;
    }

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

        overflow-wrap: anywhere;
    }


    /* ---------- CUSTOM MANUFACTURING ---------- */

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

        overflow-x: hidden;
    }

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

        min-width: 0;
    }

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

        min-width: 0;
    }

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

        white-space: normal;

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


    /* ---------- PROCESS GRID ---------- */

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

        min-width: 0;
    }

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

        min-width: 0;

        overflow: hidden;
    }

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

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

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

    .process-arrow {
        max-width: 100%;
    }


    /* ---------- MANUFACTURING ACTION BOX ---------- */

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

        min-width: 0;

        overflow: hidden;
    }

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

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

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


    /* ---------- CAPABILITY ---------- */

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

        overflow-x: hidden;
    }

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

        min-width: 0;
    }

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

        min-width: 0;
    }

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

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


    /* ---------- CTA ---------- */

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

        overflow-x: hidden;
    }

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

        min-width: 0;
    }

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

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

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


    /* ---------- 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;
    }


    /* ---------- PREVENT MOBILE MENU SCROLL ---------- */

    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;
    }

    .products-intro-content p,
    .product-section p,
    .conveyor-section p,
    .agriculture-card p,
    .custom-intro p,
    .process-item p,
    .capability-content p,
    .products-cta p {
        font-size: 14px;
        line-height: 1.7;
    }
}


/* =========================================================
   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 CONTENT SIDE GAP
   Hamburger / mobile navigation NOT TOUCHED
   ========================================================= */

@media (max-width: 850px) {

    /* Main page sections */
    .products-intro,
    .product-section,
    .conveyor-section,
    .agriculture-section,
    .manufacture-section,
    .capability-section,
    .products-cta,
    .site-footer {
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
    }

    /* Keep inner containers from adding extra width */
    .products-intro .container,
    .product-section .container,
    .conveyor-section .container,
    .agriculture-section .container,
    .manufacture-section .container,
    .capability-section .container,
    .products-cta .container,
    .site-footer .container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Images stay inside the new side spacing */
    .product-image,
    .agriculture-card,
    .agriculture-card img {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Manufacturing/process content */
    .custom-intro,
    .process-grid,
    .process-item,
    .manufacture-action-box,
    .capability-grid,
    .capability-content,
    .products-cta-inner,
    .footer-grid {
        max-width: 100%;
        box-sizing: border-box;
    }
}


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

@media (max-width: 600px) {

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


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

@media (max-width: 380px) {

    .products-intro,
    .product-section,
    .conveyor-section,
    .agriculture-section,
    .manufacture-section,
    .capability-section,
    .products-cta,
    .site-footer {
        padding-left: 12px;
        padding-right: 12px;
    }
}
/* =========================================================
   MOBILE IMAGE FRAME FIX
   Desktop completely untouched
   Images fill their mobile frames properly
   ========================================================= */

@media (max-width: 850px) {

    /* -----------------------------------------------------
       PRODUCT IMAGES
       ----------------------------------------------------- */

    .product-image {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .image-wrapper {
        width: 100%;
        height: 400px;
        overflow: hidden;
        position: relative;
    }

    .image-wrapper img {
        display: block;
        width: 100%;
        height: 100% !important;
        max-width: none !important;

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

        transition: transform 0.8s ease;
    }


    /* -----------------------------------------------------
       AGRICULTURE IMAGES
       ----------------------------------------------------- */

    .agriculture-image {
        width: 100%;
        height: 350px;
        overflow: hidden;
        position: relative;
    }

    .agriculture-image img {
        display: block;
        width: 100%;
        height: 100% !important;
        max-width: none !important;

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

        transition: transform 0.8s ease;
    }

}


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

@media (max-width: 600px) {

    .image-wrapper {
        height: 400px;
    }

    .agriculture-image {
        height: 350px;
    }

}


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

@media (max-width: 380px) {

    .image-wrapper {
        height: 360px;
    }

    .agriculture-image {
        height: 320px;
    }

}
/* =========================================================
   MOBILE ONLY — HERO / HEADER LOGO SIDE SPACE
   Desktop remains completely unchanged
   ========================================================= */

@media (max-width: 600px) {

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

    .brand {
        margin-left: 5px;
    }

}
/* =========================================================
   MOBILE ONLY — HIDE SCROLL TO EXPLORE
   Desktop remains completely unchanged
   ========================================================= */

@media (max-width: 850px) {

    .scroll-explore {
        display: none !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;
    }

}
/* =========================================================
   MOBILE HAMBURGER — CHANGE COLOR ON SCROLL
========================================================= */

@media (max-width: 850px) {

    /* Before scrolling — white hamburger */
    .site-header .menu-toggle {
        color: #ffffff;
    }

    /* After scrolling — black hamburger */
    .site-header.scrolled .menu-toggle {
        color: #111111;
    }

}