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

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


/* =========================================================
   HERO PAGE NUMBER
   ========================================================= */

.hero-page-number {
    position: absolute;

    right: 55px;
    bottom: 42px;

    z-index: 3;

    display: flex;
    align-items: center;

    gap: 13px;

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

.hero-page-number div {
    width: 42px;
    height: 1px;

    background:
        rgba(255, 255, 255, 0.55);
}


/* =========================================================
   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: 14px;
    font-weight: 800;
    letter-spacing: 1.8px;
    line-height: 1;

    text-transform: uppercase;
}

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

    display: block;

    width: 3px;
    height: 20px;

    background: #b3262d;
}


/* =========================================================
   WHAT WE MANUFACTURE
   ========================================================= */

.custom-section {
    padding-top: 72px;
    padding-bottom: 56px;

    background: var(--light);
}

.manufacture-heading {
    max-width: 760px;
}


/* MAIN HEADING ONLY */

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

    /* REDUCED SLIGHTLY */
    font-size: clamp(38px, 4.3vw, 52px);

    font-weight: 700;
    line-height: 1.1;

    letter-spacing: -1.5px;

    color: var(--black);
}

.manufacture-heading h2 span {
    font-weight: 500;
    color: #727477;
}

.manufacture-heading p {
    max-width: none;
    width: 100%;

    margin-top: 18px;

    font-size: 15px;
    line-height: 1.8;

    color: #343638;

    white-space: nowrap;
}

.manufacture-points {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 40px;
}

.manufacture-points li {
    position: relative;
    padding-left: 20px;

    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.manufacture-points li::before {
    content: "•";

    position: absolute;
    left: 0;
    top: -4px;              /* moves the dot upward */

    font-size: 20px;
    line-height: 1.6;

    color: #b3262d;
}

@media (max-width: 700px) {

    .manufacture-points {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .manufacture-points li {
        font-size: 15px;
    }

}

/* =========================================================
   PRODUCT MARQUEE
   ========================================================= */

.product-marquee {
    width: calc(100% - 510px);

    margin: 42px auto 0;

    overflow: hidden;

    position: relative;
}

.product-track {
    display: flex;

    width: max-content;

    gap: 0;

    will-change: transform;

    animation:
        productMarquee 38s linear infinite;

    animation-play-state: running !important;
}

.product-group {
    display: flex;
    flex-shrink: 0;
}

.product-card {
    width: 350px;

    padding: 9px;

    flex-shrink: 0;
}

.product-marquee:hover .product-track,
.product-track:hover {
    animation-play-state: running !important;
}


/* =========================================================
   PRODUCT IMAGE
   ========================================================= */

.product-image {
    position: relative;

    width: 100%;
    height: 250px;

    overflow: hidden;

    background: #e8e8e5;
}

.product-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}

.product-card:hover .product-image img {
    transform:
        scale(1.025);
}


/* =========================================================
   PRODUCT OVERLAY
   ========================================================= */

.product-overlay {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;

    padding:
        20px 18px;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.68),
            rgba(0, 0, 0, 0)
        );

    display: flex;
    align-items: flex-end;
}

.product-overlay span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: var(--white);
}


/* =========================================================
   PRODUCT MARQUEE ANIMATION
   ========================================================= */

@keyframes productMarquee {
    0% {
        transform:
            translateX(0);
    }

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


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

.manufacture-section {
    width: 100%;

    padding: 68px 0 70px;

    background: #151719 !important;

    color: #ffffff;
}

.process-container {
    width:
        min(1180px, calc(100% - 48px));

    margin: 0 auto;
}


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

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

    margin-bottom: 0;
}

.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 MANUFACTURING MAIN HEADING */

.custom-intro h2 {
    margin: 0;

    color: #ffffff;

    /* REDUCED SLIGHTLY */
    font-size: clamp(38px, 4.3vw, 52px);

    font-weight: 650;

    line-height: 1.08;

    letter-spacing: -1.3px;
}

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

    margin: 18px 0 0;

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

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


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

.process-grid {
    display: grid;

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

    gap: 14px;

    align-items: stretch;

    margin-top: 20px;
}


/* =========================================================
   PROCESS CARD
   ========================================================= */

.process-item {
    position: relative;

    min-height: 235px;

    padding: 24px 20px 22px;

    background: #fafafa;

    border: 1px solid #dededb;
    border-radius: 8px;

    text-align: center;

    cursor: default;

    transition: none;
}

.process-item:hover {
    transform: none;

    background: #fafafa;

    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-item h3 {
    margin: 0;

    color: #151719;

    font-size: 19px;
    font-weight: 750;

    line-height: 1.25;

    letter-spacing: -0.2px;
}

.process-item h3::after {
    content: "";

    display: block;

    width: 38px;
    height: 3px;

    margin: 13px auto 16px;

    background: #b3262d;
}


/* =========================================================
   PROCESS DESCRIPTION
   ========================================================= */

.process-item p {
    margin: 0;

    color: #5f6265;

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

    line-height: 1.65;
}


/* =========================================================
   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: "→";
}


/* =========================================================
   MANUFACTURE BOTTOM
   ========================================================= */

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

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

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

.capability-content {
    max-width: 790px;
}


/* OUR APPROACH MAIN HEADING */

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

    /* REDUCED SLIGHTLY */
    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
   ========================================================= */

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


/* FINAL CTA MAIN HEADING */

.products-cta h2 {
    margin-top: 4px;

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

    /* REDUCED SLIGHTLY */
    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 {
    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;

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

.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 DESCRIPTION
   ========================================================= */

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

    margin-top: 18px;

    font-size: 15px;

    line-height: 1.75;

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


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

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

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

    font-size: 15px;

    line-height: 1.7;

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


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

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

    transform:
        translateY(0);
}

.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


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

@media (max-width: 850px) {

    .main-nav {
        position: fixed;

        top: 82px;
        left: 0;

        width: 100%;

        padding: 22px 24px 28px;

        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;

        transform:
            translateY(-10px);

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

    .main-nav.open {
        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);
    }

    .nav-link {
        width: 100%;

        padding: 11px 0;

        font-size: 14px;
    }

    .header-quote {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

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

        gap: 35px 25px;
    }

    .process-arrow {
        display: none;
    }

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

        gap: 25px;
    }

    .capability-label {
        padding-top: 0;
    }

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

        gap: 40px;
    }
}


/* =========================================================
   TABLET / SMALL DESKTOP
   ========================================================= */

@media (max-width: 1050px) {

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

    .main-nav {
        gap: 22px;
    }

    .product-card {
        width: 320px;
    }

    .product-image {
        height: 235px;
    }

    .capability-grid {
        gap: 55px;
    }

    .footer-grid {
        gap: 35px;
    }
}


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

@media (max-width: 950px) {

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

        row-gap: 55px;
    }

    .process-item:nth-child(2) .process-arrow {
        display: none;
    }

    .process-item:nth-child(4) .process-arrow {
        display: none;
    }

    .process-footer {
        flex-direction: column;

        align-items: flex-start;
    }
}


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

@media (max-width: 600px) {

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

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


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

    .moulded-hero {
        height: 680px;
        min-height: 620px;
    }

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

    .hero-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .moulded-hero h1 {
        font-size:
            clamp(40px, 10vw, 54px);

        letter-spacing: -1.5px;
    }

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

        margin-top: 19px;

        font-size: 14px;

        line-height: 1.7;
    }

    .hero-page-number {
        right: 25px;
        bottom: 28px;
    }


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

    .scroll-explore {
        right: 12px;
    }

    .scroll-explore > span {
        font-size: 8px;
    }

    .scroll-line {
        height: 85px;
    }


    /* -----------------------------------------------------
       WHAT WE MANUFACTURE
       ----------------------------------------------------- */

    .custom-section {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .manufacture-heading h2 {
        font-size:
            clamp(30px, 7.5vw, 39px);

        letter-spacing: -1px;
    }

    .manufacture-heading p {
        margin-top: 16px;

        font-size: 14px;
    }


    /* -----------------------------------------------------
       PRODUCT MARQUEE
       ----------------------------------------------------- */

    .product-marquee {
        width: calc(100% - 16px);

        margin-top: 30px;
    }

    .product-card {
        width: 280px;
        padding: 7px;
    }

    .product-image {
        height: 210px;
    }

    .product-overlay {
        padding:
            16px 14px;
    }

    .product-overlay span {
        font-size: 9px;
        letter-spacing: 1.2px;
    }


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

    .manufacture-section {
        padding-top: 58px;
        padding-bottom: 48px;
    }

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

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

    .brand-text span {
        font-size: 7px;
    }

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

        font-size: 11px;
    }

    .moulded-hero {
        height: 640px;
    }

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

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

    .scroll-explore {
        display: none;
    }

    .product-card {
        width: 250px;
    }

    .product-image {
        height: 190px;
    }

    .cta-button {
        font-size: 10px;

        padding:
            0 15px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */
/* =========================================================
   MOBILE FIXES
   CONVEYOR PRODUCTS PAGE
   DESKTOP REMAINS UNCHANGED
   ========================================================= */


@media (max-width: 850px) {

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

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

    body.menu-open {
        overflow: hidden;
    }


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

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

    .header-inner {
        width: calc(100% - 32px);
        max-width: 100%;
        min-height: 82px;
    }

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

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

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


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

    .menu-toggle {
        position: relative;
        z-index: 3001;
        flex-shrink: 0;
    }


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

    .main-nav {
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;

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

        padding:
            20px 24px 26px;

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

        gap: 3px;

        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;

        transform:
            translateY(-10px);

        pointer-events: none;

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

        z-index: 3000;
    }


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

        transform:
            translateY(0);

        pointer-events: auto;
    }


    .main-nav .nav-link {
        width: 100%;
        max-width: 100%;

        padding:
            11px 0;

        font-size: 14px;

        white-space: normal;
    }


    /* -----------------------------------------------------
       PRODUCTS DROPDOWN ON MOBILE
       ----------------------------------------------------- */

    .nav-product-dropdown {
        width: 100%;
        max-width: 100%;

        display: block;
    }

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

    .products-dropdown-menu {
        position: static;

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

        margin:
            0 0 5px;

        padding: 4px 0;

        background:
            #f7f7f5;

        border:
            1px solid #e3e3e1;

        box-shadow: none;

        opacity: 1;
        visibility: visible;

        transform: none;

        display: block;
    }

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

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

        padding:
            0 12px;

        font-size: 10px;
    }


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

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

        overflow: hidden;
    }

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

    .moulded-hero-content {
        width: calc(100% - 32px);
        max-width: 100%;

        margin-left: auto;
        margin-right: auto;

        padding-top: 55px;

        overflow: hidden;
    }


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

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

        white-space: normal;

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

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

        line-height: 1.05;

        letter-spacing:
            -1.5px;

        word-spacing: normal;
    }


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

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

        white-space: normal;

        overflow-wrap: anywhere;

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


    /* -----------------------------------------------------
       WHAT WE MANUFACTURE
       ----------------------------------------------------- */

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

        overflow: hidden;
    }

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

        overflow: hidden;
    }

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

        white-space: normal;

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

    .manufacture-heading p {
        width: 100%;
        max-width: 100%;

        white-space: normal;

        overflow-wrap: anywhere;

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


    /* -----------------------------------------------------
       MANUFACTURE POINTS
       ----------------------------------------------------- */

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

        grid-template-columns: 1fr;

        gap: 10px;

        overflow: hidden;
    }

    .manufacture-points li {
        width: 100%;
        max-width: 100%;

        padding-left: 20px;

        overflow-wrap: anywhere;
    }


    /* -----------------------------------------------------
       PRODUCT MARQUEE
       ----------------------------------------------------- */

    .product-marquee {
        width: calc(100% - 16px);
        max-width: 100%;

        margin-left: auto;
        margin-right: auto;

        overflow: hidden;
    }

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

    .product-group {
        flex-shrink: 0;
    }

    .product-card {
        flex-shrink: 0;
    }

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

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


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

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

        overflow: hidden;
    }

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

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

        white-space: normal;

        overflow-wrap: anywhere;
    }

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

        white-space: normal;

        overflow-wrap: anywhere;
    }


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

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

        grid-template-columns: 1fr;

        gap: 26px;

        overflow: hidden;
    }

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

        min-width: 0;

        overflow: hidden;
    }

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

        overflow-wrap: anywhere;
    }

    .process-arrow {
        display: none;
    }


    /* -----------------------------------------------------
       MANUFACTURE ACTION BOX
       ----------------------------------------------------- */

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

        min-width: 0;

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

        gap: 20px;

        overflow: hidden;
    }

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

        overflow-wrap: anywhere;
    }

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

        white-space: normal;
    }


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

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

        overflow: hidden;
    }

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

        grid-template-columns: 1fr;
        gap: 25px;
    }

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

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

        white-space: normal;

        overflow-wrap: anywhere;
    }

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

        white-space: normal;

        overflow-wrap: anywhere;
    }


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

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

        overflow: hidden;
    }

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

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

        gap: 25px;
    }

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

        white-space: normal;

        overflow-wrap: anywhere;
    }

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

        white-space: normal;
    }


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

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

        overflow: hidden;
    }

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

        grid-template-columns: 1fr;
    }

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

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

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

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

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

        overflow-wrap: anywhere;
    }

}


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

@media (max-width: 600px) {

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

        max-width:
            calc(100% - 32px);
    }


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

    .header-inner {
        width:
            calc(100% - 32px);
    }


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

    .moulded-hero {
        height: 680px;
        min-height: 620px;
    }

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

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

        line-height: 1.04;

        letter-spacing:
            -1.5px;
    }

    .moulded-hero p {
        margin-top: 18px;

        font-size: 14px;

        line-height: 1.7;
    }


    /* -----------------------------------------------------
       SECTION LABEL
       ----------------------------------------------------- */

    .section-label {
        font-size: 11px;
        letter-spacing: 1.6px;
    }


    /* -----------------------------------------------------
       WHAT WE MANUFACTURE
       ----------------------------------------------------- */

    .custom-section {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .manufacture-heading h2 {
        font-size:
            clamp(
                30px,
                7.5vw,
                39px
            );

        letter-spacing:
            -1px;
    }

    .manufacture-heading p {
        margin-top: 16px;

        font-size: 14px;

        line-height: 1.75;
    }

    .manufacture-points {
        margin-top: 20px;

        grid-template-columns: 1fr;

        gap: 10px;
    }

    .manufacture-points li {
        font-size: 15px;
        line-height: 1.55;
    }


    /* -----------------------------------------------------
       PRODUCT MARQUEE
       ----------------------------------------------------- */

    .product-marquee {
        width:
            calc(100% - 16px);

        margin-top: 30px;
    }

    .product-card {
        width: 280px;
        padding: 7px;
    }

    .product-image {
        height: 210px;
    }

    .product-overlay {
        padding:
            16px 14px;
    }

    .product-overlay span {
        font-size: 9px;

        letter-spacing:
            1.2px;
    }


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

    .manufacture-section {
        padding-top: 58px;
        padding-bottom: 48px;
    }

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

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

        gap: 26px;

        margin-top: 40px;

        padding-top: 22px;
    }

    .process-item {
        padding:
            24px 18px 22px;
    }

    .process-item h3 {
        font-size: 17px;
    }

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

        font-size: 13px;

        line-height: 1.65;
    }


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

    .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% - 26px);

        max-width:
            calc(100% - 26px);
    }

    .header-inner {
        width:
            calc(100% - 26px);
    }


    /* BRAND */

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

    .brand-text span {
        font-size: 7px;
    }

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

        font-size: 11px;
    }


    /* HERO */

    .moulded-hero {
        height: 640px;
    }

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

        line-height: 1.04;
    }

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


    /* SCROLL INDICATOR */

    .scroll-explore {
        display: none;
    }


    /* PRODUCT */

    .product-card {
        width: 250px;
    }

    .product-image {
        height: 190px;
    }


    /* CTA */

    .cta-button {
        font-size: 10px;

        padding:
            0 15px;
    }

}
/* =========================================================
   MOBILE HEADER SCROLL COLOUR
   TOP = WHITE
   SCROLLED = BLACK
   DESKTOP UNTOUCHED
   ========================================================= */

@media (max-width: 850px) {

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

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


    /* SCROLLED */

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

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

}
.image-disclaimer {
    margin: 20px auto 0;
    text-align: center;
    font-size: 12px;
    color: #777;
    font-style: italic;
    letter-spacing: 0.2px;
}