/* =========================================================
   NAVIGARE SYSTEMS
   GLOBAL — GOLD / BLACK / WHITE MASTER THEME
   Layout, spacing, selectors and responsive behavior retained.
========================================================= */

:root {

    /* Navigare Systems — approved master palette */
    --gold: #D4A017;
    --gold-dark: #B8860B;
    --gold-light: #E7C65A;

    --black: #0B0B0B;
    --black-dark: #000000;
    --black-soft: #151515;

    --white: #ffffff;
    --light: #F7F7F5;

    /* Legacy aliases — retained for selector compatibility */
    --navy: var(--black);
    --navy-dark: var(--black-dark);
    --blue: var(--gold);
    --blue-dark: var(--gold-dark);
    --teal: var(--gold);

    --text: #172536;
    --muted: #647383;

    --border: #E5E5E5;

    --container-width: 1320px;

    --topbar-height: 38px;
    --navbar-height: 82px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(100% - 50px, var(--container-width));
    margin-inline: auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.topbar {

    position: sticky;
    top: 0;

    z-index: 1100;

    height: var(--topbar-height);

    background: var(--navy-dark);

    color: rgba(255, 255, 255, 0.88);

    font-size: 12px;
}

.topbar-inner {

    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-tagline {
    letter-spacing: 0.2px;
}

.topbar-right {

    display: flex;
    align-items: center;
    gap: 15px;
}

.topbar-right a {

    display: inline-flex;
    align-items: center;
    gap: 6px;

    transition: color 0.25s ease;
}

.topbar-right a:hover {
    color: #ffffff;
}

.topbar-right i {
    font-size: 12px;
}

.topbar-divider {

    width: 1px;
    height: 14px;

    background: rgba(255, 255, 255, 0.20);
}

/* =========================================================
   NAVIGARE SYSTEMS
   PREMIUM MAIN NAVBAR
   ========================================================= */


/* =========================================================
   MAIN HEADER
   ========================================================= */

.main-header {
    position: sticky;
    top: var(--topbar-height);
    z-index: 1050;

    width: 100%;
    height: 100px;

    background: rgba(255, 255, 255, 0.98);

    border-bottom: 1px solid #E8E8E8;

    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.05);

    backdrop-filter: blur(10px);
}


/* =========================================================
   NAVBAR WRAPPER
   ========================================================= */

.navbar {
    position: relative;

    width: 100%;
    height: var(--navbar-height);

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   LOGO
   ========================================================= */

.navbar-brand {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    text-decoration: none;
}

.navbar-brand img {
    display: block;

    width: auto;
    max-width: 195px;
    max-height: 82px;
    padding-top: 2px;
    object-fit: contain;
}


/* =========================================================
   MAIN NAVIGATION
   ========================================================= */

.main-nav {
    margin-left: auto;
    margin-right: 30px;
}

.main-nav > ul {
    display: flex;
    align-items: center;

    gap: 28px;

    margin: 0;
    padding: 0;

    list-style: none;
}


/* =========================================================
   TOP LEVEL MENU ITEM
   ========================================================= */

.main-nav > ul > li {
    position: relative;

    list-style: none;
}


/* =========================================================
   TOP LEVEL LINK
   ========================================================= */

.main-nav > ul > li > a {
    position: relative;

    height: var(--navbar-height);

    display: flex;
    align-items: center;

    gap: 7px;

    color: #171717;

    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    transition:
        color 0.25s ease;
}


/* =========================================================
   ACTIVE / HOVER LINE
   ========================================================= */

.main-nav > ul > li > a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    background: var(--blue);

    transform: scaleX(0);

    transform-origin: center;

    transition:
        transform 0.3s ease;
}

.main-nav > ul > li:hover > a {
    color: var(--blue);
}

.main-nav > ul > li:hover > a::after {
    transform: scaleX(1);
}


/* =========================================================
   DROPDOWN ARROW
   ========================================================= */

.main-nav > ul > li > a > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 9px;

    color: #666666;

    transition:
        color 0.25s ease,
        transform 0.3s ease;
}

.main-nav > ul > li:hover > a > i {
    color: var(--blue);

    transform: rotate(180deg);
}


/* =========================================================
   DROPDOWN
   ========================================================= */

.main-nav .dropdown {
    position: absolute;

    top: calc(100% + 1px);
    left: 0;

    min-width: 245px;

    margin: 0;
    padding: 9px 0;

    background: #ffffff;

    border: 1px solid #E5E5E5;
    border-top: 3px solid var(--blue);

    border-radius: 0 0 7px 7px;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.13);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 1200;
}


/* =========================================================
   SHOW DROPDOWN
   ========================================================= */

.main-nav > ul > li:hover > .dropdown {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* =========================================================
   DROPDOWN LIST
   ========================================================= */

.main-nav .dropdown li {
    position: relative;

    display: block;

    margin: 0;
    padding: 0;

    list-style: none;
}


/* =========================================================
   DROPDOWN LINK
   ========================================================= */

.main-nav .dropdown li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    min-height: 42px;

    padding: 10px 18px;

    color: #252525;

    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 500;

    line-height: 1.45;

    text-decoration: none;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        padding-left 0.2s ease;
}

.main-nav .dropdown li > a:hover {
    color: var(--blue);

    background: #F7F7F5;

    padding-left: 23px;
}


/* =========================================================
   NESTED DROPDOWN ARROW
   ========================================================= */

.main-nav .dropdown li.has-dropdown > a > i {
    flex-shrink: 0;

    margin-left: 12px;

    font-size: 9px;

    color: #707070;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.main-nav .dropdown li.has-dropdown:hover > a > i {
    color: var(--blue);

    transform: translateX(3px);
}


/* =========================================================
   NESTED DROPDOWN
   ========================================================= */

.main-nav .dropdown .nested-dropdown {
    top: -12px;
    left: calc(100% + 1px);

    transform: translateX(10px);
}

.main-nav .dropdown li.has-dropdown:hover > .nested-dropdown {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);
}


/* =========================================================
   PRODUCTS DROPDOWN
   ========================================================= */

.main-nav .products-dropdown {
    min-width: 265px;
}


/* =========================================================
   INDUSTRIES DROPDOWN
   ========================================================= */

.main-nav .industries-dropdown {
    min-width: 235px;
}


/* =========================================================
   DROPDOWN DIVIDER
   ========================================================= */

.main-nav .dropdown .dropdown-divider {
    height: 1px;

    margin: 7px 15px;

    background: #E7E7E5;
}


/* =========================================================
   EXTERNAL LINK ICON
   ========================================================= */

.main-nav .dropdown .bi-arrow-up-right {
    flex-shrink: 0;

    margin-left: 10px;

    font-size: 10px;

    color: #707070;
}


/* =========================================================
   ENQUIRE NOW BUTTON
   ========================================================= */

.navbar-action {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.btn-enquire {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 43px;

    padding: 0 20px;

    color: #ffffff;

    background: var(--blue);

    border-radius: 4px;

    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 7px 18px rgba(212, 160, 23, 0.16);

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.btn-enquire:hover {
    color: #ffffff;

    background: var(--blue-dark);

    transform: translateY(-2px);

    box-shadow:
        0 11px 25px rgba(212, 160, 23, 0.23);
}

.btn-enquire i {
    font-size: 13px;

    transition:
        transform 0.25s ease;
}

.btn-enquire:hover i {
    transform: translateX(3px);
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.mobile-menu-toggle {
    display: none;

    position: relative;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 1px solid #E1E1E1;
    border-radius: 5px;

    background: #ffffff;

    cursor: pointer;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    flex-shrink: 0;

    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}

.mobile-menu-toggle span {
    display: block;

    width: 21px;
    height: 2px;

    background: var(--navy);

    border-radius: 2px;

    transition:
        transform 0.3s ease,
        opacity 0.2s ease,
        width 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: #F7F7F5;

    border-color: #D6D6D6;
}


/* =========================================================
   MOBILE BUTTON → X
   ========================================================= */

.main-header.mobile-open
.mobile-menu-toggle span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.main-header.mobile-open
.mobile-menu-toggle span:nth-child(2) {
    width: 0;

    opacity: 0;
}

.main-header.mobile-open
.mobile-menu-toggle span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 991px) {

    .main-nav {
        display: none;
    }

    .navbar-action {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }


    /* -----------------------------------------------------
       MOBILE NAV PANEL
       ----------------------------------------------------- */

    .main-header.mobile-open .main-nav {
        display: block;

        position: absolute;

        top: var(--navbar-height);
        left: 0;
        right: 0;

        width: 100%;

        margin: 0;

        background: #ffffff;

        border-top: 1px solid #E5E5E5;

        box-shadow:
            0 18px 35px rgba(0, 0, 0, 0.12);

        max-height: calc(100vh - var(--topbar-height) - var(--navbar-height));

        overflow-y: auto;
    }


    /* -----------------------------------------------------
       MOBILE MAIN LIST
       ----------------------------------------------------- */

    .main-header.mobile-open .main-nav > ul {
        display: block;

        width: 100%;

        margin: 0;
        padding: 8px 0;

        list-style: none;
    }


    /* -----------------------------------------------------
       MOBILE MAIN ITEM
       ----------------------------------------------------- */

    .main-header.mobile-open
    .main-nav > ul > li {
        display: block;

        width: 100%;

        border-bottom: 1px solid #edf1f4;
    }

    .main-header.mobile-open
    .main-nav > ul > li:last-child {
        border-bottom: 0;
    }


    /* -----------------------------------------------------
       MOBILE MAIN LINK
       ----------------------------------------------------- */

    .main-header.mobile-open
    .main-nav > ul > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;
        height: auto;

        min-height: 52px;

        padding: 14px 20px;

        color: #171717;

        font-size: 13px;
    }

    .main-header.mobile-open
    .main-nav > ul > li > a::after {
        display: none;
    }


    /* -----------------------------------------------------
       MOBILE ARROW
       ----------------------------------------------------- */

    .main-header.mobile-open
    .main-nav > ul > li > a > i {
        font-size: 10px;

        transition:
            transform 0.25s ease;
    }

    .main-header.mobile-open
    .main-nav > ul > li.mobile-dropdown-open > a > i {
        transform: rotate(180deg);
    }


    /* -----------------------------------------------------
       MOBILE DROPDOWN
       ----------------------------------------------------- */

    .main-header.mobile-open
    .main-nav .dropdown {
        position: static;

        display: none;

        width: 100%;
        min-width: 0;

        margin: 0;
        padding: 0;

        background: #FAFAF8;

        border: 0;

        border-radius: 0;

        box-shadow: none;

        opacity: 1;
        visibility: visible;

        transform: none;
    }

    .main-header.mobile-open
    .main-nav
    li.mobile-dropdown-open > .dropdown {
        display: block;
    }


    /* -----------------------------------------------------
       MOBILE DROPDOWN LINK
       ----------------------------------------------------- */

    .main-header.mobile-open
    .main-nav .dropdown li > a {
        min-height: 45px;

        padding: 11px 30px;

        font-size: 12px;

        border-top: 1px solid #e9eef2;
    }

    .main-header.mobile-open
    .main-nav .dropdown li > a:hover {
        padding-left: 35px;
    }


    /* -----------------------------------------------------
       MOBILE NESTED DROPDOWN
       ----------------------------------------------------- */

    .main-header.mobile-open
    .main-nav .nested-dropdown {
        position: static;

        display: none;

        background: #F3F3F0;

        transform: none;
    }

    .main-header.mobile-open
    .main-nav
    li.mobile-dropdown-open > .nested-dropdown {
        display: block;
    }

    .main-header.mobile-open
    .main-nav .nested-dropdown li > a {
        padding-left: 48px;

        font-size: 11px;
    }

    .main-header.mobile-open
    .main-nav .nested-dropdown li > a:hover {
        padding-left: 53px;
    }


    /* -----------------------------------------------------
       MOBILE DIVIDER
       ----------------------------------------------------- */

    .main-header.mobile-open
    .main-nav .dropdown .dropdown-divider {
        margin: 0;

        height: 1px;

        background: #E2E2E2;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575px) {

    .navbar-brand img {
        max-width: 145px;
        max-height: 42px;
    }

    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
    }

    .mobile-menu-toggle span {
        width: 20px;
    }

}

/* =========================================================
   NAV DROPDOWN ARROWS
   PURE CSS — NO ICON FONT DEPENDENCY
   ========================================================= */

.main-nav > ul > li > a > i.bi-chevron-down {
    display: inline-block;

    width: 7px;
    height: 7px;

    margin-left: 4px;

    border-right: 1.5px solid #647383;
    border-bottom: 1.5px solid #647383;

    font-size: 0;
    line-height: 0;

    transform: rotate(45deg) translateY(-2px);

    transition:
        border-color 0.25s ease,
        transform 0.25s ease;
}


/* Hover */

.main-nav > ul > li:hover > a > i.bi-chevron-down {
    border-color: var(--blue);

    transform:
        rotate(225deg)
        translateY(-2px);
}


/* =========================================================
   NESTED DROPDOWN RIGHT ARROW
   ========================================================= */

.main-nav .dropdown li.has-dropdown > a > i.bi-chevron-right {
    display: inline-block;

    width: 7px;
    height: 7px;

    margin-left: auto;

    border-right: 1.5px solid #666666;
    border-bottom: 1.5px solid #666666;

    font-size: 0;
    line-height: 0;

    transform: rotate(-45deg);

    transition:
        border-color 0.25s ease,
        transform 0.25s ease;
}


/* Hover */

.main-nav .dropdown li.has-dropdown:hover > a > i.bi-chevron-right {
    border-color: var(--blue);

    transform:
        rotate(-45deg)
        translateX(3px);
}


/* =========================================================
   MOBILE DOWN ARROW
   ========================================================= */

@media (max-width: 991px) {

    .main-header.mobile-open
    .main-nav > ul > li > a > i.bi-chevron-down {

        width: 8px;
        height: 8px;

        margin-left: auto;

        border-width: 1.5px;

        transform: rotate(45deg);

    }


    /* Open dropdown */

    .main-header.mobile-open
    .main-nav > ul > li.mobile-dropdown-open
    > a > i.bi-chevron-down {

        transform: rotate(225deg);

        border-color: var(--blue);

    }


    /* Nested arrow */

    .main-header.mobile-open
    .main-nav .dropdown li.has-dropdown
    > a > i.bi-chevron-right {

        width: 7px;
        height: 7px;

        transform: rotate(-45deg);

        border-width: 1.5px;

    }

}
/* =========================================================
   HERO BASE
========================================================= */

.home-hero {
    position: relative;
    width: 100%;
    height: 720px;
    overflow: hidden;
    background: #0B0B0B;
}


/* =========================================================
   SLIDER WRAPPER
========================================================= */

.home-hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}


/* =========================================================
   INDIVIDUAL SLIDE
========================================================= */

.home-hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.9s ease,
        visibility 0.9s ease;

    z-index: 1;
}

.home-hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.home-hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    transform: scale(1.02);

    transition:
        transform 7s ease;
}

.home-hero-slide.active .home-hero-image {
    transform: scale(1.07);
}


/* =========================================================
   BLUE HERO OVERLAY
========================================================= */

.home-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.96) 0%,
            rgba(11, 11, 11, 0.90) 30%,
            rgba(21, 21, 21, 0.72) 55%,
            rgba(21, 21, 21, 0.40) 78%,
            rgba(0, 0, 0, 0.18) 100%
        );

    z-index: 1;
}


/* =========================================================
   HERO CONTENT WRAPPER
========================================================= */

.home-hero .container {
    position: relative;
    height: 100%;

    display: flex;
    align-items: center;

    z-index: 3;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.home-hero-content {
    width: 680px;
    max-width: 100%;

    padding-top: 15px;
    padding-bottom: 55px;

    color: #ffffff;
}


/* =========================================================
   EYEBROW
========================================================= */

.home-hero-eyebrow {
    position: relative;

    display: inline-flex;
    align-items: center;

    margin-bottom: 25px;
    padding-left: 48px;

    color: #E7C65A;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.2px;
    line-height: 1.4;
}

.home-hero-eyebrow::before {
    content: "";

    position: absolute;
    left: 0;
    top: 50%;

    width: 34px;
    height: 2px;

    background: #D4A017;

    transform: translateY(-50%);
}


/* =========================================================
   HEADING
========================================================= */

.home-hero-content h1,
.home-hero-content h2 {
    margin: 0 0 25px;

    max-width: 720px;

    color: #ffffff;

    font-size: clamp(48px, 5.2vw, 76px);
    font-weight: 700;

    line-height: 1.04;

    letter-spacing: -2.8px;
}

.home-hero-content h1 span,
.home-hero-content h2 span {
    display: block;

    color: #E7C65A;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.home-hero-content p {
    max-width: 590px;

    margin: 0 0 35px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 16px;
    font-weight: 400;

    line-height: 1.75;
}


/* =========================================================
   HERO ACTIONS
========================================================= */

.home-hero-actions {
    display: flex;
    align-items: center;
    gap: 13px;
}


/* =========================================================
   HERO BUTTON BASE
========================================================= */

.home-hero-actions .btn {
    min-height: 52px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 3px;

    font-size: 13px;
    font-weight: 700;

    line-height: 1;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.home-hero-actions .btn-primary {
    background: #D4A017;

    border: 1px solid #D4A017;

    color: #ffffff;
}

.home-hero-actions .btn-primary:hover {
    background: #B8860B;

    border-color: #B8860B;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.25);
}

.home-hero-actions .btn-primary i {
    font-size: 15px;
}


/* =========================================================
   OUTLINE BUTTON
========================================================= */

.home-hero-actions .btn-outline-light {
    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.48);

    color: #ffffff;
}

.home-hero-actions .btn-outline-light:hover {
    background: #ffffff;

    border-color: #ffffff;

    color: #0B0B0B;

    transform: translateY(-2px);
}


/* =========================================================
   HERO CONTROLS
========================================================= */

.home-hero-controls {
    position: absolute;

    left: 50px;
    bottom: 42px;

    z-index: 10;

    display: flex;
    align-items: center;

    gap: 12px;
}


/* =========================================================
   ARROWS
========================================================= */

.home-hero-prev,
.home-hero-next {
    width: 46px;
    height: 46px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.45);

    border: 1px solid rgba(255, 255, 255, 0.30);

    border-radius: 2px;

    color: #ffffff;

    font-size: 16px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.home-hero-prev:hover,
.home-hero-next:hover {
    background: #D4A017;

    border-color: #D4A017;

    transform: translateY(-1px);
}


/* =========================================================
   DOTS
========================================================= */

.home-hero-dots {
    display: flex;
    align-items: center;

    gap: 7px;

    padding: 0 4px;
}

.home-hero-dots button {
    width: 25px;
    height: 3px;

    padding: 0;

    border: 0;

    background: rgba(255, 255, 255, 0.32);

    cursor: pointer;

    transition:
        width 0.35s ease,
        background 0.35s ease;
}

.home-hero-dots button.active {
    width: 48px;

    background: #ffffff;
}


/* =========================================================
   SLIDE COUNTER
========================================================= */

.home-hero-counter {
    position: absolute;

    right: 50px;
    bottom: 43px;

    z-index: 10;

    display: flex;
    align-items: center;

    gap: 12px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.home-hero-current {
    color: #ffffff;

    font-size: 15px;
}

.home-hero-counter-line {
    width: 42px;
    height: 1px;

    background: rgba(255, 255, 255, 0.30);
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.home-hero-scroll {
    position: absolute;

    right: 50px;
    top: 50%;

    z-index: 10;

    display: flex;
    align-items: center;

    gap: 10px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;

    writing-mode: vertical-rl;

    transform: translateY(-50%);
}

.home-hero-scroll i {
    font-size: 13px;

    animation: heroScrollArrow 1.8s ease-in-out infinite;
}

@keyframes heroScrollArrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}


/* =========================================================
   SLIDE CONTENT ANIMATION
========================================================= */

.home-hero-slide .home-hero-eyebrow,
.home-hero-slide .home-hero-content h1,
.home-hero-slide .home-hero-content h2,
.home-hero-slide .home-hero-content p,
.home-hero-slide .home-hero-actions {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.home-hero-slide.active .home-hero-eyebrow {
    opacity: 1;

    transform: translateY(0);

    transition-delay: 0.15s;
}

.home-hero-slide.active .home-hero-content h1,
.home-hero-slide.active .home-hero-content h2 {
    opacity: 1;

    transform: translateY(0);

    transition-delay: 0.25s;
}

.home-hero-slide.active .home-hero-content p {
    opacity: 1;

    transform: translateY(0);

    transition-delay: 0.35s;
}

.home-hero-slide.active .home-hero-actions {
    opacity: 1;

    transform: translateY(0);

    transition-delay: 0.45s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .home-hero {
        height: 670px;
    }

    .home-hero-content {
        width: 620px;
    }

    .home-hero-content h1,
    .home-hero-content h2 {
        font-size: 60px;
    }

    .home-hero-controls {
        left: 35px;
    }

    .home-hero-counter {
        right: 35px;
    }

    .home-hero-scroll {
        right: 25px;
    }
}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 991px) {

    .home-hero {
        height: 620px;
    }

    .home-hero .container {
        align-items: center;
    }

    .home-hero-content {
        width: 100%;
        max-width: 650px;

        padding-bottom: 65px;
    }

    .home-hero-content h1,
    .home-hero-content h2 {
        font-size: clamp(42px, 7vw, 60px);
    }

    .home-hero-content p {
        max-width: 560px;

        font-size: 15px;
    }

    .home-hero-scroll {
        display: none;
    }

    .home-hero-controls {
        left: 25px;
        bottom: 28px;
    }

    .home-hero-counter {
        right: 25px;
        bottom: 30px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .home-hero {
        height: 650px;
    }

    .home-hero-image {
        background-position: 62% center;
    }

    .home-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.97) 0%,
                rgba(11, 11, 11, 0.89) 58%,
                rgba(21, 21, 21, 0.65) 100%
            );
    }

    .home-hero-content {
        padding-top: 15px;
        padding-bottom: 75px;
    }

    .home-hero-eyebrow {
        margin-bottom: 18px;

        padding-left: 38px;

        font-size: 9px;

        letter-spacing: 1.4px;
    }

    .home-hero-eyebrow::before {
        width: 27px;
    }

    .home-hero-content h1,
    .home-hero-content h2 {
        margin-bottom: 19px;

        font-size: 39px;

        line-height: 1.08;

        letter-spacing: -1.2px;
    }

    .home-hero-content p {
        margin-bottom: 25px;

        font-size: 14px;

        line-height: 1.65;
    }

    .home-hero-actions {
        flex-direction: column;

        align-items: flex-start;

        gap: 9px;
    }

    .home-hero-actions .btn {
        min-height: 48px;

        padding: 0 19px;

        font-size: 12px;
    }

    .home-hero-controls {
        left: 15px;
        bottom: 20px;

        gap: 8px;
    }

    .home-hero-prev,
    .home-hero-next {
        width: 40px;
        height: 40px;

        font-size: 14px;
    }

    .home-hero-dots {
        gap: 5px;
    }

    .home-hero-dots button {
        width: 19px;
        height: 2px;
    }

    .home-hero-dots button.active {
        width: 36px;
    }

    .home-hero-counter {
        right: 15px;
        bottom: 27px;

        gap: 8px;

        font-size: 9px;
    }

    .home-hero-current {
        font-size: 13px;
    }

    .home-hero-counter-line {
        width: 28px;
    }
}
/* =========================================================
   HOME — CAPABILITIES
   ========================================================= */

.capabilities-section {
    position: relative;

    padding: 0;

    background: #ffffff;

    border-bottom: 1px solid #E7E7E5;
}


/* =========================================================
   CAPABILITIES GRID
   ========================================================= */

.capabilities-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    width: 100%;
}


/* =========================================================
   CAPABILITY ITEM
   ========================================================= */

.capability-item {
    position: relative;

    min-height: 145px;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 28px 25px;

    background: #ffffff;

    border-right: 1px solid #E5E5E5;

    overflow: hidden;

    transition:
        background .3s ease,
        transform .3s ease;
}

.capability-item:first-child {
    border-left: 1px solid #E5E5E5;
}


/* =========================================================
   HOVER BACKGROUND
   ========================================================= */

.capability-item::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: var(--blue);

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform .35s ease;
}

.capability-item:hover {
    background: #f7fafc;
}

.capability-item:hover::before {
    transform: scaleX(1);
}


/* =========================================================
   ICON
   ========================================================= */

.capability-icon {
    position: relative;

    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--blue);

    background: #F8F3DF;

    border: 1px solid #EFE3B8;

    border-radius: 6px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.capability-icon i {
    font-size: 23px;
}

.capability-item:hover .capability-icon {
    color: #ffffff;

    background: var(--blue);

    border-color: var(--blue);

    transform: translateY(-3px);
}


/* =========================================================
   CONTENT
   ========================================================= */

.capability-content {
    position: relative;

    min-width: 0;
}

.capability-number {
    display: block;

    margin-bottom: 4px;

    color: #777777;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.capability-content h3 {
    margin: 0 0 6px;

    color: var(--navy);

    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 700;

    line-height: 1.3;
}

.capability-content p {
    margin: 0;

    color: var(--muted);

    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 400;

    line-height: 1.55;
}


/* =========================================================
   SMALL DECORATIVE LINE
   ========================================================= */

.capability-content h3::after {
    content: "";

    display: block;

    width: 22px;
    height: 1px;

    margin-top: 7px;

    background: var(--blue);

    opacity: .65;
}
/* =========================================================
   HOME — ABOUT SECTION
   ========================================================= */

.home-about-section {
    position: relative;

    padding: 105px 0;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   ABOUT GRID
   ========================================================= */

.home-about-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(0, 1.08fr);

    align-items: center;

    gap: 90px;
}


/* =========================================================
   IMAGE WRAPPER
   ========================================================= */

.home-about-image-wrap {
    position: relative;

    padding-right: 25px;
    padding-bottom: 25px;
}


/* =========================================================
   IMAGE
   ========================================================= */

.home-about-image {
    position: relative;

    width: 100%;

    aspect-ratio: 1 / 1.03;

    overflow: hidden;

    background: #F3F3F0;
}

.home-about-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(11, 11, 11, 0.04),
            transparent 55%
        );

    pointer-events: none;
}

.home-about-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s ease;
}

.home-about-image-wrap:hover
.home-about-image img {
    transform: scale(1.035);
}


/* =========================================================
   IMAGE DECORATIVE FRAME
   ========================================================= */

.home-about-image-wrap::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;

    width: 62%;
    height: 58%;

    border-right: 3px solid var(--blue);
    border-bottom: 3px solid var(--blue);

    pointer-events: none;
}


/* =========================================================
   ABOUT BADGE
   ========================================================= */

.home-about-badge {
    position: absolute;

    left: -25px;
    bottom: 45px;

    display: flex;
    align-items: center;

    gap: 14px;

    min-width: 205px;

    padding: 17px 20px;

    background: var(--navy);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .18);

    z-index: 2;
}

.home-about-badge-number {
    color: #D4A017;

    font-family: "Manrope", sans-serif;
    font-size: 25px;
    font-weight: 800;

    line-height: 1;
}

.home-about-badge-text {
    color: #ffffff;

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 600;

    line-height: 1.55;

    letter-spacing: .3px;
}


/* =========================================================
   ABOUT CONTENT
   ========================================================= */

.home-about-content {
    max-width: 650px;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.section-eyebrow {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 17px;

    color: var(--blue);

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.section-eyebrow::before {
    content: "";

    width: 28px;
    height: 2px;

    background: var(--blue);
}


/* =========================================================
   HEADING
   ========================================================= */

.home-about-content h2 {
    max-width: 600px;

    margin: 0 0 22px;

    color: var(--navy);

    font-family: "Manrope", sans-serif;
    font-size: 43px;
    font-weight: 800;

    line-height: 1.12;

    letter-spacing: -1.2px;
}

.home-about-content h2 span {
    display: block;

    color: var(--blue);
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.home-about-content > p {
    max-width: 620px;

    margin: 0 0 17px;

    color: var(--muted);

    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;

    line-height: 1.8;
}

.home-about-content > p.home-about-intro {
    color: #444444;

    font-size: 15px;
    font-weight: 500;

    line-height: 1.75;
}


/* =========================================================
   POINTS GRID
   ========================================================= */

.home-about-points {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 22px 30px;

    margin-top: 30px;
    padding-top: 27px;

    border-top: 1px solid #E5E5E5;
}


/* =========================================================
   POINT
   ========================================================= */

.home-about-point {
    display: flex;
    align-items: flex-start;

    gap: 12px;
}


/* =========================================================
   POINT ICON
   ========================================================= */

.home-about-point-icon {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 1px;

    color: var(--blue);

    background: #F8F3DF;

    border: 1px solid #EFE3B8;

    border-radius: 50%;
}

.home-about-point-icon i {
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   POINT CONTENT
   ========================================================= */

.home-about-point h3 {
    margin: 0 0 4px;

    color: var(--navy);

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 700;

    line-height: 1.35;
}

.home-about-point p {
    margin: 0;

    color: #666666;

    font-family: "Inter", sans-serif;
    font-size: 10px;

    line-height: 1.55;
}


/* =========================================================
   ABOUT ACTION
   ========================================================= */

.home-about-action {
    display: flex;
    align-items: center;

    gap: 25px;

    margin-top: 34px;
}


/* =========================================================
   CONTACT LINK
   ========================================================= */

.home-about-contact {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--navy);

    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;

    text-decoration: none;

    transition:
        color .25s ease;
}

.home-about-contact:hover {
    color: var(--blue);
}

.home-about-contact i {
    font-size: 10px;

    transition:
        transform .25s ease;
}

.home-about-contact:hover i {
    transform: translate(2px, -2px);
}
/* =========================================================
   HOME — SERVICES SECTION
   ========================================================= */

.home-services-section {
    position: relative;

    padding: 105px 0 110px;

    background: #F7F7F5;

    overflow: hidden;
}


/* =========================================================
   SECTION HEADER
   ========================================================= */

.home-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 48px;
}

.home-section-heading {
    max-width: 600px;
}

.home-section-heading .section-eyebrow {
    margin-bottom: 15px;
}

.home-section-heading h2 {
    margin: 0;

    color: var(--navy);

    font-family: "Manrope", sans-serif;
    font-size: 42px;
    font-weight: 800;

    line-height: 1.12;

    letter-spacing: -1px;
}

.home-section-heading h2 span {
    color: var(--blue);
}


/* =========================================================
   HEADER RIGHT
   ========================================================= */

.home-section-header-right {
    max-width: 440px;
}

.home-section-header-right p {
    margin: 0 0 17px;

    color: var(--muted);

    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 400;

    line-height: 1.75;
}


/* =========================================================
   SECTION LINK
   ========================================================= */

.section-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--navy);

    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;

    text-decoration: none;

    transition:
        color .25s ease;
}

.section-link:hover {
    color: var(--blue);
}

.section-link i {
    font-size: 12px;

    transition:
        transform .25s ease;
}

.section-link:hover i {
    transform: translateX(4px);
}


/* =========================================================
   SERVICES GRID
   ========================================================= */

.home-services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}


/* =========================================================
   SERVICE CARD
   ========================================================= */

.home-service-card {
    position: relative;

    background: #ffffff;

    border: 1px solid #E1E1E1;

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.home-service-card:hover {
    transform: translateY(-7px);

    border-color: #D4D4D4;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .10);
}


/* =========================================================
   SERVICE IMAGE
   ========================================================= */

.home-service-image {
    position: relative;

    width: 100%;

    height: 220px;

    overflow: hidden;

    background: #E7E7E5;
}

.home-service-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.03) 25%,
            rgba(0, 0, 0, 0.38) 100%
        );

    pointer-events: none;
}

.home-service-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .65s ease;
}

.home-service-card:hover
.home-service-image img {
    transform: scale(1.06);
}


/* =========================================================
   SERVICE NUMBER
   ========================================================= */

.home-service-number {
    position: absolute;

    top: 16px;
    left: 16px;

    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 30px;

    color: #ffffff;

    background: rgba(11, 11, 11, .88);

    border-left: 2px solid #D4A017;

    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;

    backdrop-filter: blur(5px);
}


/* =========================================================
   SERVICE CONTENT
   ========================================================= */

.home-service-content {
    position: relative;

    padding: 27px 27px 28px;
}


/* =========================================================
   SERVICE ICON
   ========================================================= */

.home-service-icon {
    position: absolute;

    top: -27px;
    right: 25px;

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: var(--blue);

    border: 4px solid #ffffff;

    border-radius: 6px;

    box-shadow:
        0 7px 20px rgba(212, 160, 23, .18);

    transition:
        transform .3s ease,
        background .3s ease;
}

.home-service-icon i {
    font-size: 21px;
}

.home-service-card:hover
.home-service-icon {
    background: var(--navy);

    transform: rotate(-4deg);
}


/* =========================================================
   SERVICE TITLE
   ========================================================= */

.home-service-content h3 {
    margin: 0 65px 10px 0;

    color: var(--navy);

    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 700;

    line-height: 1.3;
}


/* =========================================================
   SERVICE DESCRIPTION
   ========================================================= */

.home-service-content p {
    min-height: 62px;

    margin: 0 0 20px;

    color: var(--muted);

    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 400;

    line-height: 1.7;
}


/* =========================================================
   SERVICE LINK
   ========================================================= */

.home-service-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding-top: 15px;

    color: var(--blue);

    border-top: 1px solid #E5E5E5;

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;

    text-decoration: none;

    transition:
        color .25s ease,
        gap .25s ease;
}

.home-service-link:hover {
    color: var(--navy);

    gap: 11px;
}

.home-service-link i {
    font-size: 11px;
}


/* =========================================================
   TOP ACCENT
   ========================================================= */

.home-service-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 0;
    height: 3px;

    background: var(--blue);

    z-index: 5;

    transition:
        width .4s ease;
}

.home-service-card:hover::before {
    width: 100%;
}
/* =========================================================
   HOME — INDUSTRIES SECTION
   ========================================================= */

.home-industries-section {
    position: relative;

    padding: 105px 0 110px;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   INDUSTRIES GRID
   ========================================================= */

.home-industries-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   INDUSTRY CARD
   ========================================================= */

.home-industry-card {
    position: relative;

    display: block;

    height: 355px;

    overflow: hidden;

    background: var(--navy);

    text-decoration: none;

    isolation: isolate;
}


/* =========================================================
   LARGE FEATURE CARD
   ========================================================= */

.home-industry-card:first-child,
.home-industry-card:nth-child(4) {
    grid-column: span 2;
}


/* =========================================================
   IMAGE
   ========================================================= */

.home-industry-image {
    position: absolute;

    inset: 0;

    z-index: -3;
}

.home-industry-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s cubic-bezier(.2,.7,.2,1);
}

.home-industry-card:hover
.home-industry-image img {
    transform: scale(1.08);
}


/* =========================================================
   OVERLAY
   ========================================================= */

.home-industry-overlay {
    position: absolute;

    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, .05) 15%,
            rgba(0, 0, 0, .28) 42%,
            rgba(0, 0, 0, .94) 100%
        );

    transition:
        background .4s ease;
}

.home-industry-card:hover
.home-industry-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, .12) 5%,
            rgba(0, 0, 0, .42) 40%,
            rgba(0, 0, 0, .97) 100%
        );
}


/* =========================================================
   TOP ACCENT
   ========================================================= */

.home-industry-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 3px;

    background: var(--blue);

    z-index: 4;

    transition:
        width .4s ease;
}

.home-industry-card:hover::before {
    width: 100%;
}


/* =========================================================
   CONTENT
   ========================================================= */

.home-industry-content {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 23px;

    z-index: 2;
}


/* =========================================================
   NUMBER
   ========================================================= */

.home-industry-number {
    position: absolute;

    right: 0;
    bottom: 0;

    color: rgba(255,255,255,.18);

    font-family: "Manrope", sans-serif;
    font-size: 48px;
    font-weight: 800;

    line-height: 1;

    transition:
        color .3s ease;
}

.home-industry-card:hover
.home-industry-number {
    color: rgba(255,255,255,.27);
}


/* =========================================================
   ICON
   ========================================================= */

.home-industry-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;

    color: #ffffff;

    background: rgba(212, 160, 23, .9);

    border: 1px solid rgba(255,255,255,.22);

    border-radius: 5px;

    backdrop-filter: blur(5px);

    transition:
        background .3s ease,
        transform .3s ease;
}

.home-industry-icon i {
    font-size: 18px;
}

.home-industry-card:hover
.home-industry-icon {
    background: var(--blue);

    transform: translateY(-4px);
}


/* =========================================================
   TITLE
   ========================================================= */

.home-industry-content h3 {
    position: relative;

    margin: 0 0 9px;

    color: #ffffff;

    font-family: "Manrope", sans-serif;
    font-size: 19px;
    font-weight: 700;

    line-height: 1.25;

    letter-spacing: -.2px;
}

.home-industry-content h3::after {
    content: "";

    display: block;

    width: 25px;
    height: 2px;

    margin-top: 9px;

    background: #E7C65A;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.home-industry-content p {
    max-width: 390px;

    margin: 0 0 13px;

    color: rgba(255,255,255,.78);

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 400;

    line-height: 1.6;
}


/* =========================================================
   EXPLORE LINK
   ========================================================= */

.home-industry-link {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #ffffff;

    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: .4px;
    text-transform: uppercase;

    transition:
        color .25s ease,
        gap .25s ease;
}

.home-industry-link i {
    font-size: 10px;

    transition:
        transform .25s ease;
}

.home-industry-card:hover
.home-industry-link {
    color: #E7C65A;

    gap: 10px;
}

.home-industry-card:hover
.home-industry-link i {
    transform: translate(2px, -2px);
}
/* =========================================================
   HOME — PRODUCTS SECTION
   ========================================================= */

.home-products-section {
    position: relative;

    padding: 105px 0 100px;

    background: #F7F7F5;

    overflow: hidden;
}


/* =========================================================
   PRODUCTS GRID
   ========================================================= */

.home-products-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================================
   PRODUCT CARD
   ========================================================= */

.home-product-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;

    background: #ffffff;

    border: 1px solid #E1E1E1;

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.home-product-card:hover {
    transform: translateY(-7px);

    border-color: #D9D9D9;

    box-shadow:
        0 18px 42px rgba(0, 0, 0, .10);
}


/* =========================================================
   IMAGE
   ========================================================= */

.home-product-image {
    position: relative;

    width: 100%;
    height: 215px;

    overflow: hidden;

    background: #E2E2E2;
}

.home-product-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, .02),
            rgba(0, 0, 0, .30)
        );
}

.home-product-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .65s ease;
}

.home-product-card:hover
.home-product-image img {
    transform: scale(1.07);
}


/* =========================================================
   PRODUCT CATEGORY
   ========================================================= */

.home-product-category {
    position: absolute;

    left: 15px;
    bottom: 14px;

    z-index: 2;

    display: inline-flex;

    padding: 7px 10px;

    color: #ffffff;

    background: rgba(11, 11, 11, .90);

    border-left: 2px solid #D4A017;

    font-family: "Inter", sans-serif;
    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.2px;
}


/* =========================================================
   CONTENT
   ========================================================= */

.home-product-content {
    position: relative;

    flex: 1;

    padding: 25px 23px 24px;
}


/* =========================================================
   TOP ROW
   ========================================================= */

.home-product-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 15px;
}


/* =========================================================
   NUMBER
   ========================================================= */

.home-product-number {
    color: #a0adb8;

    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


/* =========================================================
   ICON
   ========================================================= */

.home-product-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--blue);

    background: #F8F3DF;

    border: 1px solid #EFE3B8;

    border-radius: 5px;

    transition:
        color .3s ease,
        background .3s ease,
        transform .3s ease;
}

.home-product-icon i {
    font-size: 18px;
}

.home-product-card:hover
.home-product-icon {
    color: #ffffff;

    background: var(--blue);

    border-color: var(--blue);

    transform: translateY(-2px);
}


/* =========================================================
   TITLE
   ========================================================= */

.home-product-content h3 {
    margin: 0 0 10px;

    color: var(--navy);

    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 700;

    line-height: 1.3;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.home-product-content p {
    min-height: 68px;

    margin: 0 0 20px;

    color: var(--muted);

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 400;

    line-height: 1.7;
}


/* =========================================================
   LINK
   ========================================================= */

.home-product-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding-top: 14px;

    color: var(--blue);

    border-top: 1px solid #E5E5E5;

    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;

    text-decoration: none;

    transition:
        color .25s ease,
        gap .25s ease;
}

.home-product-link:hover {
    color: var(--navy);

    gap: 11px;
}

.home-product-link i {
    font-size: 10px;
}


/* =========================================================
   TOP ACCENT
   ========================================================= */

.home-product-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 3px;

    background: var(--blue);

    z-index: 4;

    transition:
        width .4s ease;
}

.home-product-card:hover::before {
    width: 100%;
}


/* =========================================================
   BOTTOM ROW
   ========================================================= */

.home-products-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    margin-top: 25px;
    padding-top: 22px;

    border-top: 1px solid #E7E7E5;
}


/* =========================================================
   BOTTOM LEFT
   ========================================================= */

.home-products-bottom-left {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #666666;

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 600;
}

.home-products-bottom-left i {
    color: var(--blue);

    font-size: 15px;
}


/* =========================================================
   ENQUIRY LINK
   ========================================================= */

.home-products-enquiry {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--navy);

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;

    text-decoration: none;

    transition:
        color .25s ease;
}

.home-products-enquiry:hover {
    color: var(--blue);
}

.home-products-enquiry i {
    font-size: 10px;

    transition:
        transform .25s ease;
}

.home-products-enquiry:hover i {
    transform: translate(2px, -2px);
}

/* =========================================================
   TECHNOLOGIES & SOLUTIONS
========================================================= */

.home-technologies-section {
    position: relative;
    padding: 110px 0 100px;
    background: #ffffff;
    overflow: hidden;
}

.home-technologies-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 380px;
    height: 380px;
    background: radial-gradient(
        circle,
        rgba(212, 160, 23, 0.055) 0%,
        rgba(212, 160, 23, 0) 70%
    );
    pointer-events: none;
}

.home-technologies-section .container {
    position: relative;
    z-index: 2;
}


/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.technologies-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
    align-items: end;
    gap: 60px;
    margin-bottom: 55px;
}

.technologies-header .section-heading-wrap {
    max-width: 700px;
}

.technologies-header .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--blue);
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.technologies-header .section-eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--blue);
}

.technologies-header .section-title {
    margin: 0;
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -1.1px;
}

.technologies-header .section-title span {
    display: block;
    color: var(--blue);
}

.technologies-header .section-header-content {
    padding-bottom: 3px;
}

.technologies-header .section-header-content p {
    margin: 0 0 22px;
    color: var(--muted);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
}

.technologies-header .section-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--navy);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: color .25s ease;
}

.technologies-header .section-link i {
    color: var(--blue);
    font-size: 14px;
    transition: transform .25s ease;
}

.technologies-header .section-link:hover {
    color: var(--blue);
}

.technologies-header .section-link:hover i {
    transform: translateX(4px);
}


/* ---------------------------------------------------------
   TECHNOLOGY GRID
--------------------------------------------------------- */

.technologies-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 24px;
}


/* ---------------------------------------------------------
   TECHNOLOGY CARD
--------------------------------------------------------- */

.technology-card {
    position: relative;
    min-width: 0;
    background: #ffffff;
    border: 1px solid #E4E4E4;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.055);
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.technology-card:hover {
    transform: translateY(-7px);
    border-color: #D3D3D3;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.11);
}


/* ---------------------------------------------------------
   CARD IMAGE
--------------------------------------------------------- */

.technology-card-image {
    position: relative;
    height: 255px;
    overflow: hidden;
    background: #E7E7E5;
}

.technology-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.technology-card:hover .technology-card-image img {
    transform: scale(1.055);
}

.technology-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.05) 15%,
        rgba(0, 0, 0, 0.20) 55%,
        rgba(0, 0, 0, 0.72) 100%
    );
}

.technology-number {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 29px;
    padding: 0 10px;
    color: #ffffff;
    background: rgba(11, 11, 11, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 3px;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* ---------------------------------------------------------
   CARD CONTENT
--------------------------------------------------------- */

.technology-card-content {
    display: flex;
    align-items: flex-start;
    gap: 19px;
    padding: 27px 27px 21px;
}

.technology-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    color: var(--blue);
    background: #F8F3DF;
    border: 1px solid #E9D99B;
    border-radius: 5px;
    font-size: 21px;
    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease;
}

.technology-card:hover .technology-icon {
    color: #ffffff;
    background: var(--blue);
    border-color: var(--blue);
}

.technology-card-content > div:last-child {
    min-width: 0;
}

.technology-label {
    display: block;
    margin-bottom: 7px;
    color: var(--blue);
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.technology-card-content h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -.3px;
}

.technology-card-content p {
    margin: 0;
    color: var(--muted);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   TECHNOLOGY TAGS
--------------------------------------------------------- */

.technology-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 27px 27px;
    padding-top: 17px;
    border-top: 1px solid #edf1f4;
}

.technology-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 29px;
    padding: 0 10px;
    color: #555555;
    background: #FAFAF8;
    border: 1px solid #E5E5E3;
    border-radius: 3px;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 600;
}

.technology-tags-small {
    margin-top: 1px;
}


/* ---------------------------------------------------------
   TECHNOLOGY LINK
--------------------------------------------------------- */

.technology-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 27px 25px;
    padding-top: 17px;
    border-top: 1px solid #edf1f4;
    color: var(--navy);
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: color .25s ease;
}

.technology-link i {
    color: var(--blue);
    font-size: 13px;
    transition: transform .25s ease;
}

.technology-link:hover {
    color: var(--blue);
}

.technology-link:hover i {
    transform: translate(3px, -3px);
}


/* ---------------------------------------------------------
   LARGE CARD
--------------------------------------------------------- */

.technology-card-large {
    grid-row: span 2;
}

.technology-card-large .technology-card-image {
    height: 325px;
}

.technology-card-large .technology-card-content {
    padding-top: 30px;
}

.technology-card-large .technology-card-content h3 {
    font-size: 23px;
}


/* ---------------------------------------------------------
   BOTTOM STRIP
--------------------------------------------------------- */

.technologies-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 28px;
    padding: 27px 32px;
    background: var(--navy);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.technologies-bottom::after {
    content: "";
    position: absolute;
    top: -100px;
    right: -70px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    pointer-events: none;
}

.technologies-bottom-left {
    display: flex;
    align-items: center;
    gap: 17px;
    position: relative;
    z-index: 1;
}

.technologies-bottom-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    color: #ffffff;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 5px;
    font-size: 19px;
}

.technologies-bottom-label {
    display: block;
    margin-bottom: 4px;
    color: #E7C65A;
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.technologies-bottom h4 {
    margin: 0;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.technologies-bottom-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 43px;
    padding: 0 18px;
    color: var(--navy);
    background: #ffffff;
    border-radius: 4px;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.technologies-bottom-btn i {
    font-size: 13px;
    transition: transform .25s ease;
}

.technologies-bottom-btn:hover {
    color: #ffffff;
    background: var(--blue);
    transform: translateY(-2px);
}

.technologies-bottom-btn:hover i {
    transform: translateX(3px);
}

/* =========================================================
   CUSTOMERS & TRUST
========================================================= */

.home-customers-section {
    position: relative;
    padding: 110px 0 100px;
    background: #F7F7F5;
    overflow: hidden;
}

.home-customers-section::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -180px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(212, 160, 23, .06);
    border-radius: 50%;
}

.home-customers-section::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(11, 11, 11, .05);
    border-radius: 50%;
}

.home-customers-section .container {
    position: relative;
    z-index: 2;
}


/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.customers-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
    align-items: end;
    gap: 60px;
    margin-bottom: 55px;
}

.customers-header .section-heading-wrap {
    max-width: 700px;
}

.customers-header .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--blue);
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.customers-header .section-eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--blue);
}

.customers-header .section-title {
    margin: 0;
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -1.1px;
}

.customers-header .section-title span {
    display: block;
    color: var(--blue);
}

.customers-header .section-header-content {
    padding-bottom: 3px;
}

.customers-header .section-header-content p {
    margin: 0 0 22px;
    color: var(--muted);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.8;
}

.customers-header .section-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--navy);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: color .25s ease;
}

.customers-header .section-link i {
    color: var(--blue);
    font-size: 14px;
    transition: transform .25s ease;
}

.customers-header .section-link:hover {
    color: var(--blue);
}

.customers-header .section-link:hover i {
    transform: translateX(4px);
}


/* ---------------------------------------------------------
   MAIN CUSTOMER AREA
--------------------------------------------------------- */

.customers-main {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    min-height: 570px;
    background: #ffffff;
    border: 1px solid #E2E2E2;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .07);
}


/* ---------------------------------------------------------
   VISUAL PANEL
--------------------------------------------------------- */

.customers-visual {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    background: #E5E5E3;
}

.customers-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.customers-main:hover .customers-visual img {
    transform: scale(1.035);
}

.customers-visual-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, .08) 0%,
            rgba(0, 0, 0, .18) 38%,
            rgba(0, 0, 0, .88) 100%
        );
}

.customers-visual-number {
    position: absolute;
    top: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 30px;
    color: #ffffff;
    background: rgba(11, 11, 11, .78);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 3px;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.customers-visual-content {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 38px;
    max-width: 510px;
}

.customers-visual-label {
    display: inline-block;
    margin-bottom: 13px;
    color: #73c8ed;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.customers-visual-content h3 {
    margin: 0 0 13px;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.5px;
}

.customers-visual-content p {
    max-width: 470px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   TRUST PANEL
--------------------------------------------------------- */

.customers-trust-panel {
    display: flex;
    flex-direction: column;
    padding: 42px 42px 35px;
}

.customers-panel-label {
    display: block;
    margin-bottom: 10px;
    color: var(--blue);
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.customers-trust-intro h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 27px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -.5px;
}

.customers-trust-intro p {
    margin: 0;
    color: var(--muted);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   TRUST LIST
--------------------------------------------------------- */

.customers-trust-list {
    margin-top: 28px;
}

.customer-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 0;
    border-top: 1px solid #e9eef2;
}

.customer-trust-item:last-child {
    border-bottom: 1px solid #e9eef2;
}

.customer-trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    color: var(--blue);
    background: #F8F3DF;
    border: 1px solid #E9D99B;
    border-radius: 4px;
    font-size: 16px;
    transition:
        background .25s ease,
        color .25s ease;
}

.customer-trust-item:hover .customer-trust-icon {
    color: #ffffff;
    background: var(--blue);
}

.customer-trust-item h4 {
    margin: 1px 0 5px;
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
}

.customer-trust-item p {
    margin: 0;
    color: var(--muted);
    font-family: "Inter", sans-serif;
    font-size: 11px;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   CONTACT LINK
--------------------------------------------------------- */

.customers-contact-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 9px;
    margin-top: auto;
    padding-top: 24px;
    color: var(--navy);
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: color .25s ease;
}

.customers-contact-link i {
    color: var(--blue);
    font-size: 13px;
    transition: transform .25s ease;
}

.customers-contact-link:hover {
    color: var(--blue);
}

.customers-contact-link:hover i {
    transform: translate(3px, -3px);
}


/* ---------------------------------------------------------
   INDUSTRY STRIP
--------------------------------------------------------- */

.customers-industry-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-top: 25px;
    padding: 24px 30px;
    background: #ffffff;
    border: 1px solid #E2E2E2;
    border-radius: 6px;
}

.customers-strip-heading {
    flex: 0 0 auto;
    min-width: 170px;
}

.customers-strip-heading span {
    display: block;
    margin-bottom: 4px;
    color: var(--blue);
    font-family: "Inter", sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.customers-strip-heading strong {
    display: block;
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.customers-industry-items {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 0;
}

.customers-industry-item {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 0 22px;
    color: #555555;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 600;
    border-left: 1px solid #e5ebf0;
}

.customers-industry-item:first-child {
    border-left: 0;
}

.customers-industry-item i {
    color: var(--blue);
    font-size: 15px;
}
/* =========================================================
   INSIGHTS & KNOWLEDGE
========================================================= */

.home-insights-section {
    position: relative;
    padding: 110px 0 100px;
    background: #ffffff;
    overflow: hidden;
}

.home-insights-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -160px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(212, 160, 23, .055);
    border-radius: 50%;
}

.home-insights-section::after {
    content: "";
    position: absolute;
    left: -220px;
    bottom: -220px;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(11, 11, 11, .04);
    border-radius: 50%;
}

.home-insights-section .container {
    position: relative;
    z-index: 2;
}


/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.insights-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
    align-items: end;
    gap: 60px;
    margin-bottom: 52px;
}

.insights-header .section-heading-wrap {
    max-width: 700px;
}

.insights-header .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--blue);
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.insights-header .section-eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--blue);
}

.insights-header .section-title {
    margin: 0;
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -1.1px;
}

.insights-header .section-title span {
    display: block;
    color: var(--blue);
}

.insights-header .section-header-content {
    padding-bottom: 3px;
}

.insights-header .section-header-content p {
    margin: 0 0 22px;
    color: var(--muted);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.8;
}

.insights-header .section-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--navy);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: color .25s ease;
}

.insights-header .section-link i {
    color: var(--blue);
    font-size: 14px;
    transition: transform .25s ease;
}

.insights-header .section-link:hover {
    color: var(--blue);
}

.insights-header .section-link:hover i {
    transform: translateX(4px);
}


/* ---------------------------------------------------------
   INSIGHTS GRID
--------------------------------------------------------- */

.insights-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 24px;
}


/* ---------------------------------------------------------
   INSIGHT CARD
--------------------------------------------------------- */

.insight-card {
    position: relative;
    min-width: 0;
    background: #ffffff;
    border: 1px solid #E2E2E2;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .05);
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.insight-card:hover {
    transform: translateY(-7px);
    border-color: #D4D4D4;
    box-shadow: 0 22px 50px rgba(0, 0, 0, .10);
}


/* ---------------------------------------------------------
   IMAGE
--------------------------------------------------------- */

.insight-image {
    position: relative;
    display: block;
    height: 235px;
    overflow: hidden;
    background: #E7E7E5;
    text-decoration: none;
}

.insight-card-featured .insight-image {
    height: 280px;
}

.insight-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.insight-card:hover .insight-image img {
    transform: scale(1.055);
}

.insight-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, .02) 25%,
        rgba(0, 0, 0, .50) 100%
    );
    pointer-events: none;
}


/* ---------------------------------------------------------
   CATEGORY
--------------------------------------------------------- */

.insight-category {
    position: absolute;
    left: 18px;
    bottom: 17px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 0 10px;
    color: #ffffff;
    background: rgba(11, 11, 11, .84);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 3px;
    font-family: "Inter", sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.insight-image-arrow {
    position: absolute;
    top: 17px;
    right: 17px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    color: #ffffff;
    background: rgba(11, 11, 11, .72);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 4px;
    font-size: 13px;
    opacity: .9;
    transition:
        background .25s ease,
        transform .25s ease;
}

.insight-card:hover .insight-image-arrow {
    background: var(--blue);
    transform: translate(2px, -2px);
}


/* ---------------------------------------------------------
   CONTENT
--------------------------------------------------------- */

.insight-content {
    padding: 25px 25px 27px;
}

.insight-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--blue);
    font-family: "Inter", sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.25px;
}

.insight-meta-dot {
    width: 3px;
    height: 3px;
    background: #8A8A8A;
    border-radius: 50%;
}

.insight-content h3 {
    margin: 0 0 11px;
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.38;
    letter-spacing: -.25px;
}

.insight-card-featured .insight-content h3 {
    font-size: 21px;
}

.insight-content p {
    margin: 0;
    color: var(--muted);
    font-family: "Inter", sans-serif;
    font-size: 11px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   READ MORE
--------------------------------------------------------- */

.insight-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 19px;
    color: var(--navy);
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: color .25s ease;
}

.insight-read-more i {
    color: var(--blue);
    font-size: 13px;
    transition: transform .25s ease;
}

.insight-read-more:hover {
    color: var(--blue);
}

.insight-read-more:hover i {
    transform: translateX(4px);
}


/* ---------------------------------------------------------
   BOTTOM CTA
--------------------------------------------------------- */

.insights-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 27px;
    padding: 26px 31px;
    background: var(--navy);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.insights-bottom::after {
    content: "";
    position: absolute;
    right: -70px;
    top: -115px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    pointer-events: none;
}

.insights-bottom-left {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}

.insights-bottom-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 47px;
    width: 47px;
    height: 47px;
    color: #ffffff;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 5px;
    font-size: 18px;
}

.insights-bottom-label {
    display: block;
    margin-bottom: 4px;
    color: #73c8ed;
    font-family: "Inter", sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.insights-bottom h4 {
    margin: 0;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.insights-bottom-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 42px;
    padding: 0 18px;
    color: var(--navy);
    background: #ffffff;
    border-radius: 4px;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.insights-bottom-btn i {
    font-size: 13px;
    transition: transform .25s ease;
}

.insights-bottom-btn:hover {
    color: #ffffff;
    background: var(--blue);
    transform: translateY(-2px);
}

.insights-bottom-btn:hover i {
    transform: translateX(3px);
}
/* =========================================================
   FOOTER CTA
========================================================= */

.footer-cta-section {
    position: relative;
    padding: 0 0 90px;
    background: #ffffff;
    overflow: hidden;
}

.footer-cta-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    min-height: 265px;
    padding: 48px 55px;
    background: var(--navy);
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}


/* ---------------------------------------------------------
   CONTENT
--------------------------------------------------------- */

.footer-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.footer-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    color: #73c8ed;
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.footer-cta-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--blue);
}

.footer-cta-content h2 {
    margin: 0 0 13px;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.7px;
}

.footer-cta-content h2 span {
    color: #62bce6;
}

.footer-cta-content p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, .70);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   ACTIONS
--------------------------------------------------------- */

.footer-cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 0 0 190px;
    gap: 10px;
}

.footer-cta-primary,
.footer-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 45px;
    padding: 0 18px;
    border-radius: 4px;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.footer-cta-primary {
    color: var(--navy);
    background: #ffffff;
    border: 1px solid #ffffff;
}

.footer-cta-primary i,
.footer-cta-secondary i {
    font-size: 13px;
    transition: transform .25s ease;
}

.footer-cta-primary:hover {
    color: #ffffff;
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-2px);
}

.footer-cta-primary:hover i {
    transform: translateX(3px);
}

.footer-cta-secondary {
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .25);
}

.footer-cta-secondary i {
    color: #E7C65A;
}

.footer-cta-secondary:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .45);
    transform: translateY(-2px);
}

.footer-cta-secondary:hover i {
    transform: translate(3px, -3px);
}


/* ---------------------------------------------------------
   DECORATIVE CIRCLES
--------------------------------------------------------- */

.footer-cta-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 480px;
    height: 100%;
    pointer-events: none;
}

.footer-cta-circle {
    position: absolute;
    display: block;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
}

.footer-cta-circle.circle-one {
    top: -155px;
    right: -80px;
    width: 390px;
    height: 390px;
}

.footer-cta-circle.circle-two {
    top: -95px;
    right: -20px;
    width: 270px;
    height: 270px;
}

.footer-cta-circle.circle-three {
    top: -35px;
    right: 45px;
    width: 150px;
    height: 150px;
    border-color: rgba(212, 160, 23, .20);
}

/* =========================================================
   SITE FOOTER
========================================================= */

.site-footer {
    position: relative;
    background: #0B0B0B;
    color: #ffffff;
    overflow: hidden;
}


/* ---------------------------------------------------------
   MAIN FOOTER
--------------------------------------------------------- */

.footer-main {
    position: relative;
    padding: 78px 0 65px;
    background:
        linear-gradient(
            135deg,
            #0B0B0B 0%,
            #151515 55%,
            #0B0B0B 100%
        );
}

.footer-main::before {
    content: "";
    position: absolute;
    top: -250px;
    right: -180px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255,255,255,.045);
    border-radius: 50%;
    pointer-events: none;
}

.footer-main::after {
    content: "";
    position: absolute;
    bottom: -280px;
    left: -220px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(212,160,23,.08);
    border-radius: 50%;
    pointer-events: none;
}

.footer-main .container {
    position: relative;
    z-index: 2;
}


/* ---------------------------------------------------------
   FOOTER GRID
--------------------------------------------------------- */

.footer-grid {
    display: grid;
    grid-template-columns: 1.65fr .85fr 1fr 1.35fr;
    gap: 55px;
}


/* ---------------------------------------------------------
   COMPANY
--------------------------------------------------------- */

.footer-company {
    max-width: 365px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 24px;
    text-decoration: none;
}

.footer-logo img {
    display: block;
    width: auto;
    max-width: 185px;
    max-height: 52px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-company-text {
    margin: 0;
    color: rgba(255,255,255,.62);
    font-family: "Inter", sans-serif;
    font-size: 11px;
    line-height: 1.85;
}

.footer-tagline {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 21px;
    color: #E7C65A;
    font-family: "Inter", sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .8px;
    line-height: 1.5;
}

.footer-tagline span {
    width: 24px;
    height: 2px;
    flex-shrink: 0;
    background: var(--blue);
}

.footer-company-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: color .25s ease;
}

.footer-company-link i {
    color: #D4A017;
    font-size: 12px;
    transition: transform .25s ease;
}

.footer-company-link:hover {
    color: #D4A017;
}

.footer-company-link:hover i {
    transform: translate(3px,-3px);
}


/* ---------------------------------------------------------
   FOOTER TITLES
--------------------------------------------------------- */

.footer-title {
    position: relative;
    margin: 4px 0 22px;
    padding-bottom: 12px;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -.1px;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 25px;
    height: 2px;
    background: var(--blue);
}


/* ---------------------------------------------------------
   FOOTER LINKS
--------------------------------------------------------- */

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin: 0;
    padding: 0;
}

.footer-links li + li {
    margin-top: 10px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.58);
    font-family: "Inter", sans-serif;
    font-size: 10.5px;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
    transition:
        color .25s ease,
        padding-left .25s ease;
}

.footer-links a i {
    color: #D4A017;
    font-size: 8px;
    transition: transform .25s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-links a:hover i {
    transform: translateX(2px);
}


/* ---------------------------------------------------------
   CONTACT
--------------------------------------------------------- */

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: inherit;
    text-decoration: none;
}

.footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    color: #D4A017;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 4px;
    font-size: 13px;
    transition:
        background .25s ease,
        color .25s ease;
}

.footer-contact-item:hover .footer-contact-icon {
    color: #ffffff;
    background: var(--blue);
}

.footer-contact-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    padding-top: 1px;
}

.footer-contact-content small {
    color: rgba(255,255,255,.38);
    font-family: "Inter", sans-serif;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.footer-contact-content strong {
    color: rgba(255,255,255,.72);
    font-family: "Inter", sans-serif;
    font-size: 10.5px;
    font-weight: 500;
    line-height: 1.55;
}

.footer-contact-item:hover .footer-contact-content strong {
    color: #ffffff;
}

.footer-address {
    cursor: default;
}

.footer-address:hover .footer-contact-icon {
    color: #D4A017;
    background: rgba(255,255,255,.055);
}


/* ---------------------------------------------------------
   SOCIAL
--------------------------------------------------------- */

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-social > span {
    margin-right: 3px;
    color: rgba(255,255,255,.38);
    font-family: "Inter", sans-serif;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    color: #ffffff;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 4px;
    font-size: 12px;
    text-decoration: none;
    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.footer-social a:hover {
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-2px);
}


/* ---------------------------------------------------------
   FOOTER MIDDLE STRIP
--------------------------------------------------------- */

.footer-middle {
    position: relative;
    background: rgba(0,0,0,.16);
    border-top: 1px solid rgba(255,255,255,.07);
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-middle-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.footer-middle-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 82px;
    padding: 15px 30px;
    border-right: 1px solid rgba(255,255,255,.07);
}

.footer-middle-item:first-child {
    padding-left: 0;
}

.footer-middle-item:last-child {
    border-right: 0;
}

.footer-middle-item > i {
    color: #D4A017;
    font-size: 21px;
}

.footer-middle-item div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-middle-item strong {
    color: rgba(255,255,255,.88);
    font-family: "Manrope", sans-serif;
    font-size: 10.5px;
    font-weight: 700;
}

.footer-middle-item span {
    color: rgba(255,255,255,.40);
    font-family: "Inter", sans-serif;
    font-size: 8.5px;
}


/* ---------------------------------------------------------
   FOOTER BOTTOM
--------------------------------------------------------- */

.footer-bottom {
    background: #000000;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 62px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,.38);
    font-family: "Inter", sans-serif;
    font-size: 8.5px;
    line-height: 1.5;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,.42);
    font-family: "Inter", sans-serif;
    font-size: 8.5px;
    text-decoration: none;
    transition: color .25s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

.footer-bottom-links span {
    width: 3px;
    height: 3px;
    background: rgba(255,255,255,.22);
    border-radius: 50%;
}

.footer-credit a {
    color: #E7C65A;
    font-weight: 600;
    text-decoration: none;
}

.footer-credit a:hover {
    color: #ffffff;
}
/* =========================================================
   INNER PAGE COMMON
========================================================= */

.inner-page-hero {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.inner-page-hero-bg {
    position: absolute;
    inset: 0;
}

.inner-page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .94) 0%,
            rgba(11, 11, 11, .82) 45%,
            rgba(11, 11, 11, .48) 100%
        );
}

.inner-page-hero .container {
    position: relative;
    z-index: 2;
}

.inner-page-hero-content {
    max-width: 720px;
    padding: 70px 0;
}

.inner-page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
    color: #E7C65A;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.inner-page-eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--blue);
}

.inner-page-hero h1 {
    margin: 0 0 18px;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -1.3px;
}

.inner-page-hero h1 span {
    display: block;
    color: #D4A017;
}

.inner-page-hero-content > p {
    max-width: 620px;
    margin: 0;
    color: rgba(255,255,255,.73);
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.8;
}

.inner-page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 28px;
    color: rgba(255,255,255,.52);
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 500;
}

.inner-page-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color .25s ease;
}

.inner-page-breadcrumb a:hover {
    color: #D4A017;
}

.inner-page-breadcrumb i {
    color: #E7C65A;
    font-size: 8px;
}


/* =========================================================
   ABOUT INTRO
========================================================= */

.about-intro-section {
    padding: 110px 0;
    background: #ffffff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 80px;
}


/* Visual */

.about-intro-visual {
    position: relative;
    min-height: 540px;
    overflow: visible;
}

.about-intro-visual::before {
    content: "";
    position: absolute;
    top: -18px;
    left: -18px;
    width: 115px;
    height: 115px;
    border-top: 2px solid var(--blue);
    border-left: 2px solid var(--blue);
    z-index: 1;
}

.about-intro-visual img {
    display: block;
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.about-intro-badge {
    position: absolute;
    right: -28px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 165px;
    padding: 17px 20px;
    background: var(--navy);
    border-left: 3px solid var(--blue);
    box-shadow: 0 15px 35px rgba(0,0,0,.18);
}

.about-intro-badge strong {
    color: #63bee8;
    font-family: "Manrope", sans-serif;
    font-size: 27px;
    font-weight: 800;
}

.about-intro-badge span {
    color: rgba(255,255,255,.72);
    font-family: "Inter", sans-serif;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.6;
}


/* Content */

.about-intro-content {
    max-width: 650px;
}

.inner-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--blue);
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.inner-section-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--blue);
}

.about-intro-content h2,
.inner-section-header h2,
.about-approach-content h2,
.about-industries-inner h2 {
    margin: 0 0 18px;
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}

.about-intro-content h2 span,
.inner-section-header h2 span,
.about-approach-content h2 span,
.about-industries-inner h2 span {
    display: block;
    color: var(--blue);
}

.about-intro-content p {
    margin: 0 0 15px;
    color: var(--muted);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    line-height: 1.85;
}

.about-intro-content .about-lead {
    color: #444444;
    font-size: 13px;
    line-height: 1.8;
}


/* Points */

.about-intro-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px 25px;
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid #E7E7E5;
}

.about-intro-point {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #444444;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 600;
}

.about-intro-point i {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    color: var(--blue);
    background: #F8F3DF;
    border-radius: 50%;
    font-size: 11px;
}


/* =========================================================
   ABOUT SCOPE
========================================================= */

.about-scope-section {
    padding: 105px 0;
    background: #F7F7F5;
}

.inner-section-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
    align-items: end;
    gap: 60px;
    margin-bottom: 50px;
}

.inner-section-header h2 {
    margin-bottom: 0;
}

.inner-section-header > p {
    margin: 0;
    color: var(--muted);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    line-height: 1.8;
}


/* Scope cards */

.about-scope-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-scope-card {
    position: relative;
    min-height: 245px;
    padding: 29px;
    background: #ffffff;
    border: 1px solid #E2E2E2;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.about-scope-card::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -55px;
    width: 145px;
    height: 145px;
    border: 1px solid rgba(212,160,23,.07);
    border-radius: 50%;
    transition: transform .4s ease;
}

.about-scope-card:hover {
    transform: translateY(-6px);
    border-color: #D8D8D8;
    box-shadow: 0 20px 45px rgba(0,0,0,.09);
}

.about-scope-card:hover::after {
    transform: scale(1.25);
}

.about-scope-number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: #9A9A9A;
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-scope-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    margin-bottom: 20px;
    color: var(--blue);
    background: #F8F3DF;
    border: 1px solid #E9D99B;
    border-radius: 5px;
    font-size: 19px;
    transition:
        background .25s ease,
        color .25s ease;
}

.about-scope-card:hover .about-scope-icon {
    color: #ffffff;
    background: var(--blue);
}

.about-scope-card h3 {
    margin: 0 0 9px;
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 800;
}

.about-scope-card p {
    max-width: 310px;
    margin: 0;
    color: var(--muted);
    font-family: "Inter", sans-serif;
    font-size: 10.5px;
    line-height: 1.75;
}


/* =========================================================
   ABOUT APPROACH
========================================================= */

.about-approach-section {
    padding: 110px 0;
    background: #ffffff;
}

.about-approach-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
    align-items: center;
    gap: 75px;
}

.about-approach-content {
    max-width: 620px;
}

.about-approach-content > p {
    margin: 0 0 14px;
    color: var(--muted);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    line-height: 1.85;
}

.about-approach-steps {
    margin-top: 28px;
    border-top: 1px solid #E7E7E5;
}

.about-approach-step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #E7E7E5;
}

.about-approach-step > span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    color: var(--blue);
    background: #F8F3DF;
    border-radius: 4px;
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;
}

.about-approach-step h3 {
    margin: 1px 0 4px;
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.about-approach-step p {
    margin: 0;
    color: var(--muted);
    font-family: "Inter", sans-serif;
    font-size: 10px;
    line-height: 1.65;
}

.about-approach-visual {
    position: relative;
    min-height: 510px;
    overflow: hidden;
    border-radius: 5px;
}

.about-approach-visual img {
    display: block;
    width: 100%;
    height: 510px;
    object-fit: cover;
    transition: transform .7s ease;
}

.about-approach-visual:hover img {
    transform: scale(1.035);
}

.about-approach-overlay {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    padding: 20px 22px;
    background: rgba(0,0,0,.86);
    border-left: 3px solid var(--blue);
}

.about-approach-overlay span {
    display: block;
    margin-bottom: 4px;
    color: #E7C65A;
    font-family: "Inter", sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.about-approach-overlay strong {
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 800;
}


/* =========================================================
   WHY NAVIGARE
========================================================= */

.about-why-section {
    padding: 105px 0;
    background: #F7F7F5;
}

.about-why-header {
    margin-bottom: 42px;
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #ffffff;
    border: 1px solid #E1E1E1;
}

.about-why-item {
    position: relative;
    padding: 31px 27px;
    border-right: 1px solid #E4E4E4;
}

.about-why-item:last-child {
    border-right: 0;
}

.about-why-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 27px;
    width: 30px;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.about-why-item:hover::before {
    transform: scaleX(1);
}

.about-why-item > i {
    display: block;
    margin-bottom: 21px;
    color: var(--blue);
    font-size: 23px;
}

.about-why-item h3 {
    margin: 0 0 9px;
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 800;
}

.about-why-item p {
    margin: 0;
    color: var(--muted);
    font-family: "Inter", sans-serif;
    font-size: 10px;
    line-height: 1.75;
}


/* =========================================================
   ABOUT INDUSTRIES
========================================================= */

.about-industries-section {
    padding: 95px 0;
    background: var(--navy);
}

.about-industries-inner {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 80px;
}

.about-industries-inner .inner-section-eyebrow {
    color: #E7C65A;
}

.about-industries-inner h2 {
    color: #ffffff;
    margin-bottom: 17px;
}

.about-industries-inner h2 span {
    color: #D4A017;
}

.about-industries-inner > div:first-child > p {
    max-width: 500px;
    margin: 0;
    color: rgba(255,255,255,.62);
    font-family: "Inter", sans-serif;
    font-size: 11px;
    line-height: 1.8;
}

.about-industry-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255,255,255,.12);
    border-left: 1px solid rgba(255,255,255,.12);
}

.about-industry-list span {
    display: flex;
    align-items: center;
    min-height: 65px;
    padding: 0 22px;
    color: rgba(255,255,255,.72);
    border-right: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 600;
    transition:
        color .25s ease,
        background .25s ease;
}

.about-industry-list span::before {
    content: "";
    width: 5px;
    height: 5px;
    margin-right: 11px;
    background: var(--blue);
    border-radius: 50%;
}

.about-industry-list span:hover {
    color: #ffffff;
    background: rgba(255,255,255,.045);
}
/* =========================================================
   CUSTOMERS PAGE
========================================================= */

/* ---------------------------------------------------------
   CUSTOMER INTRO
--------------------------------------------------------- */

.customers-page-intro {
    padding: 100px 0;
    background: var(--white);
}

.customers-page-intro-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 80px;
    align-items: center;
}

.customers-page-intro-content {
    max-width: 700px;
}

.customers-page-intro-content .inner-section-eyebrow {
    margin-bottom: 16px;
}

.customers-page-intro-content h2 {
    margin: 0 0 24px;
    font-family: 'Manrope', sans-serif;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--navy-dark);
}

.customers-page-intro-content h2 span {
    color: var(--blue);
    display: block;
}

.customers-page-lead {
    font-size: 19px;
    line-height: 1.75;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 20px;
}

.customers-page-intro-content p:not(.customers-page-lead) {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 16px;
}


/* ---------------------------------------------------------
   CUSTOMER INTRO CARD
--------------------------------------------------------- */

.customers-page-intro-card {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    padding: 48px;
    background: linear-gradient(145deg, var(--navy), var(--navy-dark));
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

.customers-page-intro-card::before {
    content: '';
    position: absolute;
    width: 270px;
    height: 270px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    top: -90px;
    right: -80px;
}

.customers-page-intro-card::after {
    content: '';
    position: absolute;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    top: -45px;
    right: -35px;
}

.customers-page-intro-card-number {
    position: absolute;
    top: 30px;
    right: 35px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    color: rgba(255,255,255,.45);
}

.customers-page-intro-card > i {
    position: relative;
    z-index: 2;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: auto;
    border-radius: 50%;
    background: rgba(212,160,23,.18);
    border: 1px solid rgba(212,160,23,.35);
    color: #E7C65A;
    font-size: 28px;
}

.customers-page-intro-card-label {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 12px;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 2px;
    color: #E7C65A;
}

.customers-page-intro-card h3 {
    position: relative;
    z-index: 2;
    max-width: 480px;
    margin: 0 0 16px;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
}

.customers-page-intro-card p {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 0;
    color: rgba(255,255,255,.70);
    font-size: 15px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   CUSTOMER VALUE
--------------------------------------------------------- */

.customers-value-section {
    padding: 100px 0;
    background: var(--light);
}

.customers-value-section .inner-section-header {
    margin-bottom: 50px;
}

.customers-value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.customers-value-card {
    position: relative;
    overflow: hidden;
    min-height: 310px;
    padding: 34px 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 5px;
    transition: all .35s ease;
}

.customers-value-card::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--blue);
    transition: width .35s ease;
}

.customers-value-card:hover {
    transform: translateY(-7px);
    border-color: rgba(212,160,23,.22);
    box-shadow: 0 18px 45px rgba(11,11,11,.09);
}

.customers-value-card:hover::after {
    width: 100%;
}

.customers-value-number {
    position: absolute;
    top: 24px;
    right: 25px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #9A9A9A;
}

.customers-value-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: #F8F3DF;
    color: var(--blue);
    font-size: 24px;
    transition: all .35s ease;
}

.customers-value-card:hover .customers-value-icon {
    background: var(--blue);
    color: var(--white);
}

.customers-value-card h3 {
    margin: 0 0 13px;
    font-family: 'Manrope', sans-serif;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--navy-dark);
}

.customers-value-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   CUSTOMER INDUSTRIES
--------------------------------------------------------- */

.customers-industries-section {
    padding: 100px 0;
    background: var(--white);
}

.customers-industries-header {
    display: grid;
    grid-template-columns: 1fr .7fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 45px;
}

.customers-industries-header h2 {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--navy-dark);
}

.customers-industries-header h2 span {
    display: block;
    color: var(--blue);
}

.customers-industries-header p {
    margin: 0;
    max-width: 500px;
    justify-self: end;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.customers-industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.customers-industry-card {
    position: relative;
    min-height: 150px;
    padding: 27px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--light);
    border: 1px solid var(--border);
    color: var(--navy-dark);
    text-decoration: none;
    transition: all .35s ease;
}

.customers-industry-card:nth-child(5),
.customers-industry-card:nth-child(6),
.customers-industry-card:nth-child(7) {
    min-height: 140px;
}

.customers-industry-card > i:first-child {
    font-size: 25px;
    color: var(--blue);
    transition: transform .35s ease;
}

.customers-industry-card span {
    display: block;
    margin-top: 22px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.customers-industry-card .industry-arrow {
    position: absolute;
    right: 22px;
    bottom: 22px;
    font-size: 15px;
    color: #aab8c4;
    transition: all .35s ease;
}

.customers-industry-card:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(11,11,11,.13);
}

.customers-industry-card:hover > i:first-child {
    color: #E7C65A;
    transform: scale(1.08);
}

.customers-industry-card:hover .industry-arrow {
    color: var(--white);
    transform: translate(3px, -3px);
}


/* ---------------------------------------------------------
   CUSTOMER JOURNEY
--------------------------------------------------------- */

.customers-journey-section {
    padding: 100px 0;
    background: var(--light);
}

.customers-journey-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.customers-journey-visual {
    position: relative;
    min-height: 530px;
    overflow: hidden;
    border-radius: 5px;
}

.customers-journey-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.70) 0%,
        rgba(0,0,0,.08) 60%,
        rgba(0,0,0,0) 100%
    );
}

.customers-journey-visual img {
    width: 100%;
    height: 100%;
    min-height: 530px;
    object-fit: cover;
    display: block;
}

.customers-journey-overlay {
    position: absolute;
    z-index: 2;
    left: 35px;
    right: 35px;
    bottom: 35px;
}

.customers-journey-overlay span {
    display: block;
    margin-bottom: 8px;
    color: #E7C65A;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.customers-journey-overlay strong {
    display: block;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 29px;
    line-height: 1.2;
}

.customers-journey-content {
    max-width: 650px;
}

.customers-journey-content h2 {
    margin: 0 0 22px;
    font-family: 'Manrope', sans-serif;
    font-size: 40px;
    line-height: 1.18;
    font-weight: 800;
    color: var(--navy-dark);
}

.customers-journey-content h2 span {
    display: block;
    color: var(--blue);
}

.customers-journey-content > p {
    margin: 0 0 35px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.customers-journey-steps {
    border-top: 1px solid var(--border);
}

.customers-journey-step {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
    padding: 23px 0;
    border-bottom: 1px solid var(--border);
}

.customers-journey-step > span {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 800;
}

.customers-journey-step h3 {
    margin: 0 0 5px;
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy-dark);
}

.customers-journey-step p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   CUSTOMER PORTFOLIO
--------------------------------------------------------- */

.customers-portfolio-section {
    padding: 80px 0 100px;
    background: var(--light);
}

.customers-portfolio-box {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    padding: 45px 50px;
    display: grid;
    grid-template-columns: 85px 1fr auto;
    gap: 30px;
    align-items: center;
    background: var(--navy);
    border-radius: 5px;
}

.customers-portfolio-box::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    right: -100px;
    top: -170px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 50%;
}

.customers-portfolio-box::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    right: -40px;
    bottom: -145px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 50%;
}

.customers-portfolio-icon {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(231,198,90,.3);
    background: rgba(212,160,23,.15);
    color: #E7C65A;
    font-size: 28px;
}

.customers-portfolio-box > div:nth-child(2) {
    position: relative;
    z-index: 2;
}

.customers-portfolio-box > div:nth-child(2) > span {
    display: block;
    margin-bottom: 8px;
    color: #E7C65A;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.customers-portfolio-box h2 {
    margin: 0 0 9px;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 27px;
    line-height: 1.25;
    font-weight: 700;
}

.customers-portfolio-box p {
    max-width: 680px;
    margin: 0;
    color: rgba(255,255,255,.65);
    font-size: 14px;
    line-height: 1.7;
}

.customers-portfolio-btn {
    position: relative;
    z-index: 3;
    min-width: 160px;
    padding: 15px 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid var(--blue);
    transition: all .3s ease;
}

.customers-portfolio-btn:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.customers-portfolio-btn i {
    transition: transform .3s ease;
}

.customers-portfolio-btn:hover i {
    transform: translateX(4px);
}
/* =========================================================
   SERVICES PAGE
========================================================= */

/* ---------------------------------------------------------
   SERVICES INTRO
--------------------------------------------------------- */

.services-intro-section {
    padding: 100px 0;
    background: var(--white);
}

.services-intro-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 80px;
    align-items: center;
}

.services-intro-content {
    max-width: 700px;
}

.services-intro-content h2 {
    margin: 0 0 24px;
    font-family: 'Manrope', sans-serif;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--navy-dark);
}

.services-intro-content h2 span {
    display: block;
    color: var(--blue);
}

.services-intro-lead {
    margin-bottom: 20px;
    color: var(--text);
    font-size: 19px;
    line-height: 1.75;
    font-weight: 500;
}

.services-intro-content p:not(.services-intro-lead) {
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   INTRO PANEL
--------------------------------------------------------- */

.services-intro-panel {
    position: relative;
    overflow: hidden;
    min-height: 410px;
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(145deg, var(--navy), var(--navy-dark));
    border-radius: 5px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

.services-intro-panel::before {
    content: '';
    position: absolute;
    width: 310px;
    height: 310px;
    top: -130px;
    right: -90px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
}

.services-intro-panel::after {
    content: '';
    position: absolute;
    width: 210px;
    height: 210px;
    top: -75px;
    right: -35px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.services-intro-panel-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.services-intro-panel-top span {
    color: rgba(255,255,255,.4);
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.services-intro-panel-top i {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,160,23,.16);
    border: 1px solid rgba(231,198,90,.28);
    border-radius: 50%;
    color: #E7C65A;
    font-size: 26px;
}

.services-intro-panel-bottom {
    position: relative;
    z-index: 2;
}

.services-intro-panel-bottom small {
    display: block;
    margin-bottom: 10px;
    color: #E7C65A;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.services-intro-panel-bottom h3 {
    max-width: 480px;
    margin: 0 0 16px;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 31px;
    line-height: 1.2;
    font-weight: 800;
}

.services-intro-panel-bottom p {
    max-width: 480px;
    margin: 0;
    color: rgba(255,255,255,.65);
    font-size: 14px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   SERVICES MAIN
--------------------------------------------------------- */

.services-main-section {
    padding: 100px 0;
    background: var(--light);
}

.services-main-header {
    margin-bottom: 50px;
}

.services-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.services-main-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 5px;
    transition: all .35s ease;
}

.services-main-card:hover {
    transform: translateY(-7px);
    border-color: rgba(212,160,23,.22);
    box-shadow: 0 20px 45px rgba(11,11,11,.10);
}

.services-main-card-image {
    position: relative;
    height: 235px;
    overflow: hidden;
}

.services-main-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.55),
        transparent 55%
    );
}

.services-main-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.services-main-card:hover .services-main-card-image img {
    transform: scale(1.06);
}

.services-main-number {
    position: absolute;
    z-index: 2;
    top: 18px;
    right: 20px;
    color: rgba(255,255,255,.75);
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.services-main-card-content {
    position: relative;
    padding: 35px 30px 30px;
}

.services-main-icon {
    position: absolute;
    top: -29px;
    left: 30px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 5px;
    color: var(--blue);
    font-size: 23px;
    box-shadow: 0 8px 20px rgba(11,11,11,.08);
    transition: all .35s ease;
}

.services-main-card:hover .services-main-icon {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.services-main-card-content h3 {
    margin: 0 0 13px;
    font-family: 'Manrope', sans-serif;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--navy-dark);
}

.services-main-card-content p {
    min-height: 78px;
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.services-main-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: color .3s ease;
}

.services-main-link i {
    transition: transform .3s ease;
}

.services-main-link:hover {
    color: var(--blue);
}

.services-main-link:hover i {
    transform: translateX(5px);
}


/* ---------------------------------------------------------
   SERVICE PROCESS
--------------------------------------------------------- */

.services-process-section {
    padding: 100px 0;
    background: var(--navy);
}

.services-process-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.services-process-content {
    max-width: 570px;
}

.services-process-content .inner-section-eyebrow {
    color: #E7C65A;
}

.services-process-content h2 {
    margin: 0 0 22px;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 40px;
    line-height: 1.18;
    font-weight: 800;
}

.services-process-content h2 span {
    display: block;
    color: #E7C65A;
}

.services-process-content > p {
    margin: 0 0 30px;
    color: rgba(255,255,255,.68);
    font-size: 16px;
    line-height: 1.8;
}

.services-process-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all .3s ease;
}

.services-process-btn:hover {
    background: var(--white);
    color: var(--navy);
}

.services-process-btn i {
    transition: transform .3s ease;
}

.services-process-btn:hover i {
    transform: translateX(4px);
}

.services-process-steps {
    border-top: 1px solid rgba(255,255,255,.12);
}

.services-process-step {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.services-process-step-number {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,160,23,.20);
    border: 1px solid rgba(231,198,90,.22);
    color: #E7C65A;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
}

.services-process-step h3 {
    margin: 0 0 6px;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.services-process-step p {
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 14px;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   SERVICE COVERAGE
--------------------------------------------------------- */

.services-coverage-section {
    padding: 100px 0;
    background: var(--white);
}

.services-coverage-header {
    display: grid;
    grid-template-columns: 1fr .7fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 45px;
}

.services-coverage-header h2 {
    margin: 0;
    color: var(--navy-dark);
    font-family: 'Manrope', sans-serif;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
}

.services-coverage-header h2 span {
    display: block;
    color: var(--blue);
}

.services-coverage-header p {
    margin: 0;
    max-width: 500px;
    justify-self: end;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.services-coverage-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.services-coverage-item {
    min-height: 85px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 13px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: all .3s ease;
}

.services-coverage-item:hover {
    background: var(--light);
}

.services-coverage-item i {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8F3DF;
    border-radius: 50%;
    color: var(--blue);
    font-size: 14px;
}

.services-coverage-item span {
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
}
/* =========================================================
   PRODUCTS PAGE
========================================================= */


/* ---------------------------------------------------------
   PRODUCTS INTRO
--------------------------------------------------------- */

.products-intro-section {
    padding: 100px 0;
    background: var(--white);
}

.products-intro-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 80px;
    align-items: center;
}

.products-intro-content {
    max-width: 700px;
}

.products-intro-content h2 {
    margin: 0 0 24px;
    color: var(--navy-dark);
    font-family: 'Manrope', sans-serif;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
}

.products-intro-content h2 span {
    display: block;
    color: var(--blue);
}

.products-intro-lead {
    margin: 0 0 20px;
    color: var(--text);
    font-size: 19px;
    line-height: 1.75;
    font-weight: 500;
}

.products-intro-content p:not(.products-intro-lead) {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   INTRO STATS
--------------------------------------------------------- */

.products-intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.products-intro-stat {
    min-height: 190px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--light);
}

.products-intro-stat span {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #a7b5c1;
}

.products-intro-stat strong {
    color: var(--navy-dark);
    font-family: 'Manrope', sans-serif;
    font-size: 21px;
    font-weight: 800;
}

.products-intro-stat small {
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.3px;
}


/* ---------------------------------------------------------
   PRODUCT CATEGORIES
--------------------------------------------------------- */

.products-category-section {
    padding: 100px 0;
    background: var(--light);
}

.products-category-header {
    margin-bottom: 50px;
}

.products-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.products-category-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 5px;
    transition: all .35s ease;
}

.products-category-card:hover {
    transform: translateY(-7px);
    border-color: rgba(212,160,23,.22);
    box-shadow: 0 20px 45px rgba(11,11,11,.10);
}

.products-category-image {
    position: relative;
    height: 285px;
    overflow: hidden;
}

.products-category-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.65),
        transparent 60%
    );
}

.products-category-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.products-category-card:hover .products-category-image img {
    transform: scale(1.06);
}

.products-category-number {
    position: absolute;
    z-index: 2;
    top: 20px;
    right: 22px;
    color: rgba(255,255,255,.78);
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.products-category-content {
    position: relative;
    padding: 42px 32px 32px;
}

.products-category-icon {
    position: absolute;
    top: -30px;
    left: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 5px;
    color: var(--blue);
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(11,11,11,.08);
    transition: all .35s ease;
}

.products-category-card:hover .products-category-icon {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.products-category-label {
    display: block;
    margin-bottom: 9px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.products-category-content h3 {
    margin: 0 0 12px;
    color: var(--navy-dark);
    font-family: 'Manrope', sans-serif;
    font-size: 23px;
    line-height: 1.3;
    font-weight: 800;
}

.products-category-content p {
    min-height: 55px;
    margin: 0 0 21px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.products-category-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: color .3s ease;
}

.products-category-link i {
    transition: transform .3s ease;
}

.products-category-link:hover {
    color: var(--blue);
}

.products-category-link:hover i {
    transform: translateX(5px);
}


/* ---------------------------------------------------------
   VALVES FEATURE
--------------------------------------------------------- */

.products-valves-section {
    padding: 100px 0;
    background: var(--white);
}

.products-valves-box {
    display: grid;
    grid-template-columns: 1fr .82fr;
    min-height: 510px;
    overflow: hidden;
    background: var(--navy);
    border-radius: 5px;
}

.products-valves-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.products-valves-content .inner-section-eyebrow {
    color: #E7C65A;
}

.products-valves-content h2 {
    margin: 0 0 20px;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 39px;
    line-height: 1.17;
    font-weight: 800;
}

.products-valves-content h2 span {
    display: block;
    color: #E7C65A;
}

.products-valves-content > p {
    max-width: 620px;
    margin: 0 0 27px;
    color: rgba(255,255,255,.68);
    font-size: 15px;
    line-height: 1.8;
}

.products-valves-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 30px;
    margin-bottom: 30px;
}

.products-valves-list span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,.78);
    font-size: 13px;
}

.products-valves-list i {
    color: #E7C65A;
    font-size: 15px;
}

.products-valves-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 21px;
    background: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all .3s ease;
}

.products-valves-btn:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--navy);
}

.products-valves-btn i {
    transition: transform .3s ease;
}

.products-valves-btn:hover i {
    transform: translateX(4px);
}

.products-valves-visual {
    position: relative;
    min-height: 510px;
    overflow: hidden;
}

.products-valves-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,.30),
        rgba(0,0,0,.02)
    );
}

.products-valves-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.products-valves-visual-label {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 30px;
    padding: 18px 20px;
    min-width: 155px;
    background: rgba(0,0,0,.88);
    border-left: 3px solid #E7C65A;
}

.products-valves-visual-label span {
    display: block;
    margin-bottom: 6px;
    color: #E7C65A;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.products-valves-visual-label strong {
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    line-height: 1.1;
}


/* ---------------------------------------------------------
   SPECIALISED SOLUTIONS
--------------------------------------------------------- */

.products-solutions-section {
    padding: 100px 0;
    background: var(--light);
}

.products-solutions-header {
    display: grid;
    grid-template-columns: 1fr .7fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 45px;
}

.products-solutions-header h2 {
    margin: 0;
    color: var(--navy-dark);
    font-family: 'Manrope', sans-serif;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
}

.products-solutions-header h2 span {
    display: block;
    color: var(--blue);
}

.products-solutions-header p {
    max-width: 500px;
    margin: 0;
    justify-self: end;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.products-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.products-solution-item {
    min-height: 190px;
    padding: 30px;
    display: flex;
    gap: 22px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: all .35s ease;
}

.products-solution-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212,160,23,.22);
    box-shadow: 0 15px 35px rgba(11,11,11,.08);
}

.products-solution-icon {
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8F3DF;
    border-radius: 5px;
    color: var(--blue);
    font-size: 23px;
}

.products-solution-item h3 {
    margin: 0 0 9px;
    color: var(--navy-dark);
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
}

.products-solution-item p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   FUEL MAXX
--------------------------------------------------------- */

.products-fuel-section {
    padding: 75px 0;
    background: var(--white);
}

.products-fuel-box {
    position: relative;
    overflow: hidden;
    padding: 38px 45px;
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 25px;
    align-items: center;
    background: #F5F5F2;
    border: 1px solid var(--border);
}

.products-fuel-mark {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: #E7C65A;
    font-size: 25px;
}

.products-fuel-content > span {
    display: block;
    margin-bottom: 6px;
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.products-fuel-content h2 {
    margin: 0 0 7px;
    color: var(--navy-dark);
    font-family: 'Manrope', sans-serif;
    font-size: 25px;
    font-weight: 800;
}

.products-fuel-content p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.products-fuel-btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 14px 20px;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: all .3s ease;
}

.products-fuel-btn:hover {
    background: var(--blue);
}

.products-fuel-btn i {
    transition: transform .3s ease;
}

.products-fuel-btn:hover i {
    transform: translate(3px, -3px);
}


/* ---------------------------------------------------------
   PRODUCT REQUIREMENT CTA
--------------------------------------------------------- */

.products-requirement-section {
    padding: 0 0 100px;
    background: var(--white);
}

.products-requirement-inner {
    padding: 55px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: var(--navy);
}

.products-requirement-inner .inner-section-eyebrow {
    color: #E7C65A;
}

.products-requirement-inner h2 {
    margin: 0 0 12px;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 31px;
    line-height: 1.2;
    font-weight: 800;
}

.products-requirement-inner h2 span {
    color: #E7C65A;
}

.products-requirement-inner p {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.65);
    font-size: 14px;
    line-height: 1.7;
}

.products-requirement-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 23px;
    background: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all .3s ease;
}

.products-requirement-btn:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--navy);
}

.products-requirement-btn i {
    transition: transform .3s ease;
}

.products-requirement-btn:hover i {
    transform: translateX(4px);
}
/* =========================================================
   PRODUCTS PAGE RESPONSIVE
========================================================= */


/* ---------------------------------------------------------
   MAX WIDTH 1199px
--------------------------------------------------------- */

@media (max-width: 1199px) {

    .products-intro-grid {
        gap: 50px;
    }

    .products-intro-content h2 {
        font-size: 37px;
    }

    .products-category-grid {
        gap: 18px;
    }

    .products-category-content {
        padding-left: 27px;
        padding-right: 27px;
    }

    .products-category-icon {
        left: 27px;
    }

    .products-valves-content {
        padding: 50px;
    }

    .products-valves-content h2 {
        font-size: 35px;
    }

    .products-solutions-header {
        gap: 50px;
    }

}


/* ---------------------------------------------------------
   MAX WIDTH 991px
--------------------------------------------------------- */

@media (max-width: 991px) {

    .products-intro-section {
        padding: 75px 0;
    }

    .products-intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .products-intro-content {
        max-width: 100%;
    }

    .products-intro-content h2 {
        font-size: 36px;
    }

    .products-intro-stats {
        max-width: 700px;
    }


    /* Categories */

    .products-category-section {
        padding: 75px 0;
    }

    .products-category-grid {
        grid-template-columns: 1fr 1fr;
    }


    /* Valves */

    .products-valves-section {
        padding: 75px 0;
    }

    .products-valves-box {
        grid-template-columns: 1fr;
    }

    .products-valves-content {
        padding: 50px;
    }

    .products-valves-visual {
        min-height: 400px;
    }


    /* Solutions */

    .products-solutions-section {
        padding: 75px 0;
    }

    .products-solutions-header {
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: start;
    }

    .products-solutions-header p {
        justify-self: start;
        max-width: 700px;
    }

    .products-solutions-grid {
        grid-template-columns: 1fr;
    }


    /* Fuel */

    .products-fuel-section {
        padding: 60px 0;
    }

    .products-fuel-box {
        grid-template-columns: 65px 1fr;
    }

    .products-fuel-btn {
        grid-column: 2;
        justify-self: start;
    }


    /* CTA */

    .products-requirement-section {
        padding-bottom: 75px;
    }

    .products-requirement-inner {
        padding: 45px;
    }

}


/* ---------------------------------------------------------
   MAX WIDTH 767px
--------------------------------------------------------- */

@media (max-width: 767px) {

    .products-intro-section {
        padding: 60px 0;
    }

    .products-intro-content h2 {
        font-size: 31px;
    }

    .products-intro-lead {
        font-size: 17px;
    }

    .products-intro-stats {
        grid-template-columns: 1fr;
    }

    .products-intro-stat {
        min-height: 125px;
    }


    /* Categories */

    .products-category-section {
        padding: 60px 0;
    }

    .products-category-header {
        margin-bottom: 35px;
    }

    .products-category-grid {
        grid-template-columns: 1fr;
    }

    .products-category-image {
        height: 250px;
    }

    .products-category-content p {
        min-height: auto;
    }


    /* Valves */

    .products-valves-section {
        padding: 60px 0;
    }

    .products-valves-content {
        padding: 40px 30px;
    }

    .products-valves-content h2 {
        font-size: 31px;
    }

    .products-valves-list {
        gap: 12px 15px;
    }

    .products-valves-visual {
        min-height: 350px;
    }


    /* Solutions */

    .products-solutions-section {
        padding: 60px 0;
    }

    .products-solutions-header h2 {
        font-size: 31px;
    }

    .products-solution-item {
        min-height: auto;
    }


    /* Fuel */

    .products-fuel-section {
        padding: 50px 0;
    }

    .products-fuel-box {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .products-fuel-btn {
        grid-column: auto;
        width: 100%;
        justify-content: center;
    }


    /* CTA */

    .products-requirement-section {
        padding-bottom: 60px;
    }

    .products-requirement-inner {
        padding: 38px 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .products-requirement-inner h2 {
        font-size: 27px;
    }

    .products-requirement-btn {
        width: 100%;
        justify-content: center;
    }

}


/* ---------------------------------------------------------
   MAX WIDTH 575px
--------------------------------------------------------- */

@media (max-width: 575px) {

    .products-intro-section {
        padding: 50px 0;
    }

    .products-intro-content h2 {
        font-size: 28px;
    }

    .products-intro-lead {
        font-size: 16px;
    }

    .products-intro-content p:not(.products-intro-lead) {
        font-size: 14px;
    }

    .products-intro-stat {
        min-height: 110px;
        padding: 20px;
    }


    /* Categories */

    .products-category-section {
        padding: 50px 0;
    }

    .products-category-image {
        height: 220px;
    }

    .products-category-content {
        padding: 38px 23px 25px;
    }

    .products-category-icon {
        left: 23px;
    }

    .products-category-content h3 {
        font-size: 20px;
    }

    .products-category-content p {
        font-size: 13px;
    }


    /* Valves */

    .products-valves-section {
        padding: 50px 0;
    }

    .products-valves-content {
        padding: 35px 23px;
    }

    .products-valves-content h2 {
        font-size: 28px;
    }

    .products-valves-content > p {
        font-size: 13px;
    }

    .products-valves-list {
        grid-template-columns: 1fr;
    }

    .products-valves-visual {
        min-height: 300px;
    }

    .products-valves-visual-label {
        right: 20px;
        bottom: 20px;
    }


    /* Solutions */

    .products-solutions-section {
        padding: 50px 0;
    }

    .products-solutions-header h2 {
        font-size: 28px;
    }

    .products-solutions-header p {
        font-size: 14px;
    }

    .products-solution-item {
        padding: 25px 20px;
        gap: 16px;
    }

    .products-solution-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 20px;
    }

    .products-solution-item h3 {
        font-size: 16px;
    }


    /* Fuel */

    .products-fuel-section {
        padding: 40px 0;
    }

    .products-fuel-box {
        padding: 28px 22px;
    }

    .products-fuel-mark {
        width: 58px;
        height: 58px;
    }

    .products-fuel-content h2 {
        font-size: 22px;
    }

    .products-fuel-content p {
        font-size: 13px;
    }


    /* CTA */

    .products-requirement-section {
        padding-bottom: 50px;
    }

    .products-requirement-inner {
        padding: 32px 22px;
    }

    .products-requirement-inner h2 {
        font-size: 24px;
    }

    .products-requirement-inner p {
        font-size: 13px;
    }

}
/* =========================================================
   INDUSTRIAL VALVES PAGE
========================================================= */


/* ---------------------------------------------------------
   INTRO
--------------------------------------------------------- */

.valves-intro-section {
    padding: 100px 0;
    background: var(--white);
}

.valves-intro-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 80px;
    align-items: center;
}

.valves-intro-content {
    max-width: 700px;
}

.valves-intro-content h2 {
    margin: 0 0 24px;
    color: var(--navy-dark);
    font-family: 'Manrope', sans-serif;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
}

.valves-intro-content h2 span {
    display: block;
    color: var(--blue);
}

.valves-intro-lead {
    margin: 0 0 20px;
    color: var(--text);
    font-size: 19px;
    line-height: 1.75;
    font-weight: 500;
}

.valves-intro-content p:not(.valves-intro-lead) {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   INTRO CARD
--------------------------------------------------------- */

.valves-intro-card {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(145deg, var(--navy), var(--navy-dark));
    border-radius: 5px;
    box-shadow: 0 25px 60px rgba(0,0,0,.15);
}

.valves-intro-card::before {
    content: '';
    position: absolute;
    width: 310px;
    height: 310px;
    top: -130px;
    right: -100px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
}

.valves-intro-card::after {
    content: '';
    position: absolute;
    width: 210px;
    height: 210px;
    top: -75px;
    right: -45px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 50%;
}

.valves-intro-number {
    position: absolute;
    top: 28px;
    right: 30px;
    color: rgba(255,255,255,.38);
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.valves-intro-icon {
    position: relative;
    z-index: 2;
    width: 65px;
    height: 65px;
    margin-bottom: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,160,23,.17);
    border: 1px solid rgba(231,198,90,.28);
    border-radius: 50%;
    color: #E7C65A;
    font-size: 25px;
}

.valves-intro-card small {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 10px;
    color: #E7C65A;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.valves-intro-card h3 {
    position: relative;
    z-index: 2;
    max-width: 450px;
    margin: 0 0 15px;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 29px;
    line-height: 1.25;
    font-weight: 800;
}

.valves-intro-card p {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 0;
    color: rgba(255,255,255,.65);
    font-size: 14px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   VALVE CATEGORIES
--------------------------------------------------------- */

.valves-category-section {
    padding: 100px 0;
    background: var(--light);
}

.valves-category-header {
    margin-bottom: 50px;
}

.valves-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.valves-category-card {
    position: relative;
    overflow: hidden;
    min-height: 255px;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: all .35s ease;
}

.valves-category-card::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--blue);
    transition: width .35s ease;
}

.valves-category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212,160,23,.20);
    box-shadow: 0 18px 40px rgba(11,11,11,.08);
}

.valves-category-card:hover::after {
    width: 100%;
}

.valves-category-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.valves-category-top span {
    color: #888888;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.valves-category-top > i {
    color: #b7c3cc;
    font-size: 14px;
    transition: all .3s ease;
}

.valves-category-card:hover .valves-category-top > i {
    color: var(--blue);
    transform: translate(3px,-3px);
}

.valves-category-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8F3DF;
    border-radius: 5px;
    color: var(--blue);
    font-size: 21px;
    transition: all .35s ease;
}

.valves-category-card:hover .valves-category-icon {
    background: var(--blue);
    color: var(--white);
}

.valves-category-card h3 {
    margin: 0 0 10px;
    color: var(--navy-dark);
    font-family: 'Manrope', sans-serif;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
}

.valves-category-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.valves-category-featured {
    background: var(--navy);
    border-color: var(--navy);
}

.valves-category-featured h3 {
    color: var(--white);
}

.valves-category-featured p {
    color: rgba(255,255,255,.62);
}

.valves-category-featured .valves-category-icon {
    background: rgba(212,160,23,.20);
    color: #E7C65A;
}

.valves-category-featured .valves-category-top span {
    color: rgba(255,255,255,.40);
}

.valves-category-featured .valves-category-top > i {
    color: rgba(255,255,255,.45);
}

.valves-category-link {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #E7C65A;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

.valves-category-link i {
    transition: transform .3s ease;
}

.valves-category-link:hover {
    color: var(--white);
}

.valves-category-link:hover i {
    transform: translateX(4px);
}


/* ---------------------------------------------------------
   GATE VALVE FEATURE
--------------------------------------------------------- */

.valves-gate-section {
    padding: 100px 0;
    background: var(--white);
}

.valves-gate-box {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    min-height: 500px;
    overflow: hidden;
    background: var(--navy);
    border-radius: 5px;
}

.valves-gate-visual {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.valves-gate-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.72),
        rgba(0,0,0,.05) 65%
    );
}

.valves-gate-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.valves-gate-box:hover .valves-gate-visual img {
    transform: scale(1.04);
}

.valves-gate-visual-label {
    position: absolute;
    z-index: 2;
    left: 30px;
    bottom: 30px;
    padding: 18px 20px;
    min-width: 145px;
    background: rgba(0,0,0,.90);
    border-left: 3px solid #E7C65A;
}

.valves-gate-visual-label span {
    display: block;
    margin-bottom: 6px;
    color: #E7C65A;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.valves-gate-visual-label strong {
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    line-height: 1.1;
}

.valves-gate-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.valves-gate-content .inner-section-eyebrow {
    color: #E7C65A;
}

.valves-gate-content h2 {
    margin: 0 0 20px;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 39px;
    line-height: 1.17;
    font-weight: 800;
}

.valves-gate-content h2 span {
    display: block;
    color: #E7C65A;
}

.valves-gate-content > p {
    max-width: 620px;
    margin: 0 0 15px;
    color: rgba(255,255,255,.65);
    font-size: 15px;
    line-height: 1.8;
}

.valves-gate-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 12px 0 28px;
}

.valves-gate-points span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,.76);
    font-size: 13px;
}

.valves-gate-points i {
    color: #E7C65A;
}

.valves-gate-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 14px 21px;
    background: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all .3s ease;
}

.valves-gate-btn:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--navy);
}

.valves-gate-btn i {
    transition: transform .3s ease;
}

.valves-gate-btn:hover i {
    transform: translateX(4px);
}


/* ---------------------------------------------------------
   APPLICATIONS
--------------------------------------------------------- */

.valves-applications-section {
    padding: 100px 0;
    background: var(--light);
}

.valves-applications-header {
    margin-bottom: 45px;
}

.valves-applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.valves-application-card {
    min-height: 170px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white);
    border: 1px solid var(--border);
    transition: all .3s ease;
}

.valves-application-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212,160,23,.20);
    box-shadow: 0 15px 35px rgba(11,11,11,.08);
}

.valves-application-card > i {
    font-size: 24px;
    color: var(--blue);
}

.valves-application-card h3 {
    margin: 20px 0 5px;
    color: var(--navy-dark);
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
}

.valves-application-card span {
    color: var(--muted);
    font-size: 12px;
}


/* ---------------------------------------------------------
   REQUIREMENT CTA
--------------------------------------------------------- */

.valves-requirement-section {
    padding: 0 0 100px;
    background: var(--light);
}

.valves-requirement-box {
    padding: 55px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: var(--navy);
}

.valves-requirement-box .inner-section-eyebrow {
    color: #E7C65A;
}

.valves-requirement-box h2 {
    margin: 0 0 12px;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 31px;
    line-height: 1.2;
    font-weight: 800;
}

.valves-requirement-box h2 span {
    color: #E7C65A;
}

.valves-requirement-box p {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: 14px;
    line-height: 1.7;
}

.valves-requirement-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 15px 23px;
    background: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all .3s ease;
}

.valves-requirement-btn:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--navy);
}

.valves-requirement-btn i {
    transition: transform .3s ease;
}

.valves-requirement-btn:hover i {
    transform: translateX(4px);
}
/* =========================================================
   GATE VALVE PAGE
========================================================= */


/* ---------------------------------------------------------
   INTRO
--------------------------------------------------------- */

.gate-valve-intro-section {
    padding: 100px 0;
    background: var(--white);
}

.gate-valve-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.gate-valve-intro-visual {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: 5px;
}

.gate-valve-intro-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.03) 65%
    );
}

.gate-valve-intro-visual img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.gate-valve-intro-visual:hover img {
    transform: scale(1.04);
}

.gate-valve-intro-label {
    position: absolute;
    z-index: 2;
    left: 30px;
    bottom: 30px;
    min-width: 150px;
    padding: 18px 20px;
    background: rgba(0,0,0,.90);
    border-left: 3px solid #E7C65A;
}

.gate-valve-intro-label span {
    display: block;
    margin-bottom: 6px;
    color: #E7C65A;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.gate-valve-intro-label strong {
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 21px;
    line-height: 1.05;
}

.gate-valve-intro-content {
    max-width: 680px;
}

.gate-valve-intro-content h2 {
    margin: 0 0 23px;
    color: var(--navy-dark);
    font-family: 'Manrope', sans-serif;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
}

.gate-valve-intro-content h2 span {
    display: block;
    color: var(--blue);
}

.gate-valve-lead {
    margin: 0 0 20px;
    color: var(--text);
    font-size: 19px;
    line-height: 1.75;
    font-weight: 500;
}

.gate-valve-intro-content p:not(.gate-valve-lead) {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.gate-valve-primary-btn {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 14px 22px;
    background: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all .3s ease;
}

.gate-valve-primary-btn:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.gate-valve-primary-btn i {
    transition: transform .3s ease;
}

.gate-valve-primary-btn:hover i {
    transform: translateX(4px);
}


/* ---------------------------------------------------------
   FEATURES
--------------------------------------------------------- */

.gate-valve-features-section {
    padding: 100px 0;
    background: var(--light);
}

.gate-valve-features-header {
    margin-bottom: 50px;
}

.gate-valve-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gate-valve-feature-card {
    position: relative;
    min-height: 290px;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: all .35s ease;
}

.gate-valve-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,160,23,.20);
    box-shadow: 0 18px 40px rgba(11,11,11,.08);
}

.gate-valve-feature-card > span {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #888888;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.gate-valve-feature-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8F3DF;
    color: var(--blue);
    border-radius: 5px;
    font-size: 23px;
    transition: all .35s ease;
}

.gate-valve-feature-card:hover .gate-valve-feature-icon {
    background: var(--blue);
    color: var(--white);
}

.gate-valve-feature-card h3 {
    margin: 0 0 12px;
    color: var(--navy-dark);
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}

.gate-valve-feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   FEATURED PRODUCT
--------------------------------------------------------- */

.gate-valve-product-section {
    padding: 100px 0;
    background: var(--white);
}

.gate-valve-product-box {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    min-height: 510px;
    overflow: hidden;
    background: var(--navy);
    border-radius: 5px;
}

.gate-valve-product-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gate-valve-product-content .inner-section-eyebrow {
    color: #E7C65A;
}

.gate-valve-product-code {
    display: block;
    margin-bottom: 9px;
    color: rgba(255,255,255,.38);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.gate-valve-product-content h2 {
    margin: 0 0 20px;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 39px;
    line-height: 1.17;
    font-weight: 800;
}

.gate-valve-product-content h2 span {
    display: block;
    color: #E7C65A;
}

.gate-valve-product-content > p {
    max-width: 600px;
    margin: 0 0 23px;
    color: rgba(255,255,255,.65);
    font-size: 15px;
    line-height: 1.8;
}

.gate-valve-product-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.gate-valve-product-points span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,.75);
    font-size: 13px;
}

.gate-valve-product-points i {
    color: #E7C65A;
}

.gate-valve-product-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 14px 21px;
    background: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all .3s ease;
}

.gate-valve-product-btn:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--navy);
}

.gate-valve-product-btn i {
    transition: transform .3s ease;
}

.gate-valve-product-btn:hover i {
    transform: translateX(4px);
}

.gate-valve-product-visual {
    position: relative;
    min-height: 510px;
    overflow: hidden;
}

.gate-valve-product-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,.30),
        rgba(0,0,0,.02)
    );
}

.gate-valve-product-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.gate-valve-product-box:hover .gate-valve-product-visual img {
    transform: scale(1.04);
}

.gate-valve-product-badge {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 28px;
    min-width: 130px;
    padding: 17px 19px;
    background: rgba(0,0,0,.90);
    border-left: 3px solid #E7C65A;
}

.gate-valve-product-badge span {
    display: block;
    margin-bottom: 5px;
    color: #E7C65A;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.gate-valve-product-badge strong {
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
}


/* ---------------------------------------------------------
   APPLICATIONS
--------------------------------------------------------- */

.gate-valve-applications-section {
    padding: 100px 0;
    background: var(--light);
}

.gate-valve-application-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gate-valve-application-item {
    min-height: 185px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: all .3s ease;
}

.gate-valve-application-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212,160,23,.20);
    box-shadow: 0 15px 35px rgba(11,11,11,.08);
}

.gate-valve-application-item > i {
    color: var(--blue);
    font-size: 24px;
}

.gate-valve-application-item h3 {
    margin: 25px 0 7px;
    color: var(--navy-dark);
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
}

.gate-valve-application-item p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   REQUIREMENT CTA
--------------------------------------------------------- */

.gate-valve-requirement-section {
    padding: 0 0 100px;
    background: var(--light);
}

.gate-valve-requirement-box {
    padding: 55px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: var(--navy);
}

.gate-valve-requirement-box .inner-section-eyebrow {
    color: #E7C65A;
}

.gate-valve-requirement-box h2 {
    margin: 0 0 12px;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 31px;
    line-height: 1.2;
    font-weight: 800;
}

.gate-valve-requirement-box h2 span {
    color: #E7C65A;
}

.gate-valve-requirement-box p {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: 14px;
    line-height: 1.7;
}

.gate-valve-requirement-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 15px 23px;
    background: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all .3s ease;
}

.gate-valve-requirement-btn:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--navy);
}

.gate-valve-requirement-btn i {
    transition: transform .3s ease;
}

.gate-valve-requirement-btn:hover i {
    transform: translateX(4px);
}
/* =========================================
   GATE VALVE PRODUCT DETAIL
========================================= */

.gate-product-intro-section {
    padding: 100px 0;
    background: var(--white);
}

.gate-product-intro-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 70px;
    align-items: center;
}

.gate-product-visual {
    position: relative;
}

.gate-product-image-wrap {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: var(--light);
}

.gate-product-image-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.gate-product-image-label {
    position: absolute;
    left: 28px;
    bottom: 28px;
    padding: 18px 22px;
    background: rgba(0, 0, 0, .94);
    color: var(--white);
    min-width: 220px;
}

.gate-product-image-label span {
    display: block;
    margin-bottom: 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #E7C65A;
}

.gate-product-image-label strong {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.gate-product-content {
    max-width: 680px;
}

.gate-product-content h2 {
    margin: 12px 0 24px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1.12;
    color: var(--navy);
}

.gate-product-content h2 span {
    display: block;
    color: var(--blue);
}

.gate-product-content p {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.85;
    color: var(--muted);
}

.gate-product-content .gate-product-lead {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text);
}

.gate-product-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 32px;
}

.gate-product-highlight {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 17px;
    background: var(--light);
    border: 1px solid var(--border);
}

.gate-product-highlight > i {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 160, 23, .1);
    color: var(--blue);
    font-size: 18px;
}

.gate-product-highlight strong {
    display: block;
    margin-bottom: 4px;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    color: var(--navy);
}

.gate-product-highlight span {
    display: block;
    font-size: 11px;
    line-height: 1.5;
    color: var(--muted);
}


/* =========================================
   PRODUCT OVERVIEW
========================================= */

.gate-product-overview-section {
    padding: 95px 0;
    background: var(--light);
}

.gate-product-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 45px;
}

.gate-product-overview-card {
    position: relative;
    padding: 32px 26px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: transform .3s ease, box-shadow .3s ease;
}

.gate-product-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(11, 11, 11, .08);
}

.gate-product-overview-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 160, 23, .09);
    color: var(--blue);
    font-size: 22px;
}

.gate-product-overview-card > span {
    position: absolute;
    top: 25px;
    right: 25px;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #8A8A8A;
}

.gate-product-overview-card h3 {
    margin-bottom: 12px;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    color: var(--navy);
}

.gate-product-overview-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.75;
    color: var(--muted);
}


/* =========================================
   APPLICATIONS
========================================= */

.gate-product-applications-section {
    padding: 100px 0;
    background: var(--white);
}

.gate-product-applications-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.gate-product-applications-content h2 {
    margin: 12px 0 20px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 3vw, 44px);
    line-height: 1.15;
    color: var(--navy);
}

.gate-product-applications-content h2 span {
    display: block;
    color: var(--blue);
}

.gate-product-applications-content p {
    max-width: 540px;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.85;
    color: var(--muted);
}

.inner-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: var(--navy);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background .3s ease, transform .3s ease;
}

.inner-primary-btn:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}

.gate-product-application-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.gate-product-application-item {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 14px;
    padding: 28px 24px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.gate-product-application-number {
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: var(--blue);
}

.gate-product-application-item h3 {
    margin: 0 0 7px;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    color: var(--navy);
}

.gate-product-application-item p {
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
    color: var(--muted);
}


/* =========================================
   PRODUCT ENQUIRY
========================================= */

.gate-product-enquiry-section {
    padding: 0 0 100px;
    background: var(--white);
}

.gate-product-enquiry-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 52px 60px;
    overflow: hidden;
    background: var(--navy);
}

.gate-product-enquiry-box::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -80px;
    top: -110px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}

.gate-product-enquiry-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.gate-product-enquiry-content .inner-section-eyebrow {
    color: #E7C65A;
}

.gate-product-enquiry-content h2 {
    margin: 10px 0 13px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    color: var(--white);
}

.gate-product-enquiry-content h2 span {
    color: #E7C65A;
}

.gate-product-enquiry-content p {
    margin: 0;
    max-width: 620px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,.68);
}

.gate-product-enquiry-action {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.gate-product-enquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 23px;
    background: var(--white);
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: .3s ease;
}

.gate-product-enquiry-btn:hover {
    background: var(--blue);
    color: var(--white);
}

.gate-product-enquiry-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.7);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.gate-product-enquiry-link:hover {
    color: var(--white);
}
/* =========================================
   PROCESS INSTRUMENTATION
========================================= */

.instrumentation-intro-section {
    padding: 100px 0;
    background: var(--white);
}

.instrumentation-intro-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 70px;
    align-items: center;
}

.instrumentation-intro-visual {
    position: relative;
}

.instrumentation-image-wrap {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: var(--light);
}

.instrumentation-image-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.instrumentation-image-label {
    position: absolute;
    left: 28px;
    bottom: 28px;
    min-width: 220px;
    padding: 18px 22px;
    background: rgba(0, 0, 0, .94);
    color: var(--white);
}

.instrumentation-image-label span {
    display: block;
    margin-bottom: 5px;
    color: #E7C65A;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.instrumentation-image-label strong {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.instrumentation-intro-content {
    max-width: 680px;
}

.instrumentation-intro-content h2 {
    margin: 12px 0 24px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1.12;
    color: var(--navy);
}

.instrumentation-intro-content h2 span {
    display: block;
    color: var(--blue);
}

.instrumentation-intro-content p {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.85;
    color: var(--muted);
}

.instrumentation-intro-content .instrumentation-lead {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text);
}

.instrumentation-intro-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 30px;
}

.instrumentation-intro-point {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    background: var(--light);
    border: 1px solid var(--border);
}

.instrumentation-intro-point i {
    color: var(--blue);
    font-size: 17px;
}

.instrumentation-intro-point span {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
}


/* =========================================
   INSTRUMENTATION CATEGORIES
========================================= */

.instrumentation-category-section {
    padding: 95px 0;
    background: var(--light);
}

.instrumentation-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 45px;
}

.instrumentation-category-card {
    position: relative;
    padding: 30px 28px 26px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: transform .3s ease, box-shadow .3s ease;
}

.instrumentation-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(11, 11, 11, .08);
}

.instrumentation-category-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 25px;
}

.instrumentation-category-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 160, 23, .09);
    color: var(--blue);
    font-size: 22px;
}

.instrumentation-category-top > span {
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #8A8A8A;
}

.instrumentation-category-card h3 {
    margin-bottom: 11px;
    font-family: "Manrope", sans-serif;
    font-size: 19px;
    color: var(--navy);
}

.instrumentation-category-card p {
    min-height: 76px;
    margin: 0 0 22px;
    font-size: 13px;
    line-height: 1.75;
    color: var(--muted);
}

.instrumentation-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    color: var(--blue);
}

.instrumentation-category-link span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.instrumentation-category-link i {
    font-size: 14px;
}


/* =========================================
   APPLICATION PARAMETERS
========================================= */

.instrumentation-parameters-section {
    padding: 100px 0;
    background: var(--white);
}

.instrumentation-parameters-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.instrumentation-parameters-content h2 {
    margin: 12px 0 20px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 3vw, 44px);
    line-height: 1.15;
    color: var(--navy);
}

.instrumentation-parameters-content h2 span {
    display: block;
    color: var(--blue);
}

.instrumentation-parameters-content p {
    max-width: 550px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.85;
    color: var(--muted);
}

.instrumentation-parameters-content .inner-primary-btn {
    margin-top: 12px;
}

.instrumentation-parameters-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.instrumentation-parameter-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 27px 23px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.instrumentation-parameter-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 160, 23, .08);
    color: var(--blue);
}

.instrumentation-parameter-item h3 {
    margin: 0 0 7px;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    color: var(--navy);
}

.instrumentation-parameter-item p {
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
    color: var(--muted);
}


/* =========================================
   INDUSTRIES
========================================= */

.instrumentation-industries-section {
    padding: 95px 0;
    background: var(--light);
}

.instrumentation-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    margin-top: 45px;
}

.instrumentation-industry-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 135px;
    padding: 25px 24px;
    background: var(--white);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: background .3s ease, transform .3s ease;
}

.instrumentation-industry-card:hover {
    background: var(--navy);
    transform: translateY(-3px);
}

.instrumentation-industry-card span {
    display: block;
    margin-bottom: 8px;
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--blue);
}

.instrumentation-industry-card h3 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    color: var(--navy);
}

.instrumentation-industry-card i {
    color: var(--blue);
    font-size: 16px;
    transition: transform .3s ease;
}

.instrumentation-industry-card:hover h3 {
    color: var(--white);
}

.instrumentation-industry-card:hover span {
    color: #E7C65A;
}

.instrumentation-industry-card:hover i {
    color: var(--white);
    transform: translate(3px, -3px);
}


/* =========================================
   REQUIREMENT CTA
========================================= */

.instrumentation-requirement-section {
    padding: 0 0 100px;
    background: var(--light);
}

.instrumentation-requirement-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 52px 60px;
    overflow: hidden;
    background: var(--navy);
}

.instrumentation-requirement-box::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -100px;
    top: -130px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}

.instrumentation-requirement-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.instrumentation-requirement-content .inner-section-eyebrow {
    color: #E7C65A;
}

.instrumentation-requirement-content h2 {
    margin: 10px 0 13px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    color: var(--white);
}

.instrumentation-requirement-content h2 span {
    color: #E7C65A;
}

.instrumentation-requirement-content p {
    max-width: 620px;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,.68);
}

.instrumentation-requirement-actions {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.instrumentation-requirement-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 23px;
    background: var(--white);
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: .3s ease;
}

.instrumentation-requirement-btn:hover {
    background: var(--blue);
    color: var(--white);
}

.instrumentation-requirement-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.7);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.instrumentation-requirement-link:hover {
    color: var(--white);
}
/* =========================================
   INDUSTRIES MASTER PAGE
========================================= */

.industries-intro-section {
    padding: 100px 0;
    background: var(--white);
}

.industries-intro-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 75px;
    align-items: center;
}

.industries-intro-content {
    max-width: 690px;
}

.industries-intro-content h2 {
    margin: 12px 0 24px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1.12;
    color: var(--navy);
}

.industries-intro-content h2 span {
    display: block;
    color: var(--blue);
}

.industries-intro-content p {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.85;
    color: var(--muted);
}

.industries-intro-content .industries-intro-lead {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text);
}

.industries-intro-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 30px;
}

.industries-intro-point {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    background: var(--light);
    border: 1px solid var(--border);
}

.industries-intro-point i {
    color: var(--blue);
    font-size: 17px;
}

.industries-intro-point span {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
}

.industries-intro-visual {
    position: relative;
}

.industries-intro-image {
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.industries-intro-image img {
    width: 100%;
    height: 520px;
    display: block;
    object-fit: cover;
}

.industries-intro-badge {
    position: absolute;
    left: 28px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 22px;
    min-width: 190px;
    background: rgba(0, 0, 0, .94);
    color: var(--white);
}

.industries-intro-badge strong {
    font-family: "Manrope", sans-serif;
    font-size: 34px;
    line-height: 1;
    color: #D4A017;
}

.industries-intro-badge span {
    font-size: 10px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 1.4px;
}


/* =========================================
   INDUSTRY PORTFOLIO
========================================= */

.industries-portfolio-section {
    padding: 95px 0;
    background: var(--light);
}

.industries-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 45px;
}

.industry-master-card {
    display: block;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
}

.industry-master-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(11, 11, 11, .10);
}

.industry-master-card-wide {
    grid-column: 1 / -1;
}

.industry-master-image {
    position: relative;
    height: 275px;
    overflow: hidden;
}

.industry-master-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.industry-master-card:hover .industry-master-image img {
    transform: scale(1.04);
}

.industry-master-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,.05) 20%,
        rgba(0,0,0,.62) 100%
    );
}

.industry-master-number {
    position: absolute;
    top: 20px;
    left: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,.94);
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
}

.industry-master-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 25px 27px;
}

.industry-master-eyebrow {
    display: block;
    margin-bottom: 7px;
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.industry-master-content h3 {
    margin: 0 0 9px;
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    color: var(--navy);
}

.industry-master-content p {
    max-width: 530px;
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: var(--muted);
}

.industry-master-arrow {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--blue);
    transition: .3s ease;
}

.industry-master-card:hover .industry-master-arrow {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}


/* =========================================
   CROSS INDUSTRY CAPABILITIES
========================================= */

.industries-capabilities-section {
    padding: 100px 0;
    background: var(--white);
}

.industries-capabilities-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.industries-capabilities-content h2 {
    margin: 12px 0 20px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 3vw, 44px);
    line-height: 1.15;
    color: var(--navy);
}

.industries-capabilities-content h2 span {
    display: block;
    color: var(--blue);
}

.industries-capabilities-content p {
    max-width: 560px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.85;
    color: var(--muted);
}

.industries-capabilities-content .inner-primary-btn {
    margin-top: 12px;
}

.industries-capabilities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.industries-capability-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 16px;
    padding: 28px 23px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.industries-capability-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,160,23,.08);
    color: var(--blue);
    font-size: 19px;
}

.industries-capability-item h3 {
    margin: 0 0 7px;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    color: var(--navy);
}

.industries-capability-item p {
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
    color: var(--muted);
}


/* =========================================
   REQUIREMENT CTA
========================================= */

.industries-requirement-section {
    padding: 0 0 100px;
    background: var(--white);
}

.industries-requirement-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 52px 60px;
    overflow: hidden;
    background: var(--navy);
}

.industries-requirement-box::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -100px;
    top: -130px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}

.industries-requirement-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.industries-requirement-content .inner-section-eyebrow {
    color: #E7C65A;
}

.industries-requirement-content h2 {
    margin: 10px 0 13px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    color: var(--white);
}

.industries-requirement-content h2 span {
    color: #E7C65A;
}

.industries-requirement-content p {
    max-width: 620px;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,.68);
}

.industries-requirement-actions {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.industries-requirement-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 23px;
    background: var(--white);
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: .3s ease;
}

.industries-requirement-btn:hover {
    background: var(--blue);
    color: var(--white);
}

.industries-requirement-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.7);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.industries-requirement-link:hover {
    color: var(--white);
}
/* =========================================
   INDUSTRY DETAIL PAGE
   OIL & GAS
========================================= */

.industry-detail-intro-section {
    padding: 100px 0;
    background: var(--white);
}

.industry-detail-intro-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 75px;
    align-items: center;
}

.industry-detail-intro-content {
    max-width: 690px;
}

.industry-detail-intro-content h2 {
    margin: 12px 0 24px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1.12;
    color: var(--navy);
}

.industry-detail-intro-content h2 span {
    display: block;
    color: var(--blue);
}

.industry-detail-intro-content p {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.85;
    color: var(--muted);
}

.industry-detail-intro-content .industry-detail-lead {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text);
}

.industry-detail-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 30px;
}

.industry-detail-point {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    background: var(--light);
    border: 1px solid var(--border);
}

.industry-detail-point i {
    color: var(--blue);
    font-size: 17px;
}

.industry-detail-point span {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
}

.industry-detail-intro-visual {
    position: relative;
}

.industry-detail-image-wrap {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.industry-detail-image-wrap img {
    width: 100%;
    height: 520px;
    display: block;
    object-fit: cover;
}

.industry-detail-image-card {
    position: absolute;
    left: 28px;
    bottom: 28px;
    min-width: 245px;
    padding: 20px 23px;
    background: rgba(0, 0, 0, .94);
}

.industry-detail-image-card span {
    display: block;
    margin-bottom: 5px;
    color: #E7C65A;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.industry-detail-image-card strong {
    display: block;
    margin-bottom: 5px;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: 22px;
}

.industry-detail-image-card small {
    display: block;
    color: rgba(255,255,255,.65);
    font-size: 11px;
}


/* =========================================
   KEY REQUIREMENTS
========================================= */

.industry-detail-requirements-section {
    padding: 95px 0;
    background: var(--light);
}

.industry-detail-requirements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 45px;
}

.industry-detail-requirement-card {
    position: relative;
    padding: 30px 27px 25px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: transform .3s ease, box-shadow .3s ease;
}

.industry-detail-requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(11, 11, 11, .08);
}

.industry-detail-requirement-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 25px;
}

.industry-detail-requirement-icon {
    width: 53px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 160, 23, .09);
    color: var(--blue);
    font-size: 21px;
}

.industry-detail-requirement-top > span {
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: #8A8A8A;
}

.industry-detail-requirement-card h3 {
    margin-bottom: 11px;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    color: var(--navy);
}

.industry-detail-requirement-card p {
    min-height: 75px;
    margin: 0 0 20px;
    font-size: 13px;
    line-height: 1.75;
    color: var(--muted);
}

.industry-detail-requirement-card > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

.industry-detail-requirement-card > a i {
    transition: transform .3s ease;
}

.industry-detail-requirement-card:hover > a i {
    transform: translateX(4px);
}


/* =========================================
   APPLICATIONS
========================================= */

.industry-detail-applications-section {
    padding: 100px 0;
    background: var(--white);
}

.industry-detail-applications-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.industry-detail-applications-content h2 {
    margin: 12px 0 20px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 3vw, 44px);
    line-height: 1.15;
    color: var(--navy);
}

.industry-detail-applications-content h2 span {
    display: block;
    color: var(--blue);
}

.industry-detail-applications-content p {
    max-width: 560px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.85;
    color: var(--muted);
}

.industry-detail-application-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.industry-detail-application-item {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 15px;
    padding: 28px 23px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.industry-detail-application-number {
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: var(--blue);
}

.industry-detail-application-item h3 {
    margin: 0 0 7px;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    color: var(--navy);
}

.industry-detail-application-item p {
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
    color: var(--muted);
}


/* =========================================
   SOLUTIONS
========================================= */

.industry-detail-solutions-section {
    padding: 95px 0;
    background: var(--light);
}

.industry-detail-solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 45px;
}

.industry-detail-solution-card {
    position: relative;
    display: grid;
    grid-template-columns: 55px 1fr 35px;
    gap: 18px;
    align-items: start;
    padding: 27px;
    background: var(--white);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
}

.industry-detail-solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(11, 11, 11, .08);
}

.industry-detail-solution-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,160,23,.09);
    color: var(--blue);
    font-size: 20px;
}

.industry-detail-solution-card span {
    display: block;
    margin-bottom: 5px;
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.industry-detail-solution-card h3 {
    margin: 0 0 8px;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    color: var(--navy);
}

.industry-detail-solution-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.7;
    color: var(--muted);
}

.industry-detail-solution-card > i {
    padding-top: 4px;
    color: var(--blue);
    font-size: 15px;
    transition: transform .3s ease;
}

.industry-detail-solution-card:hover > i {
    transform: translate(3px, -3px);
}


/* =========================================
   REQUIREMENT CTA
========================================= */

.industry-detail-requirement-section {
    padding: 0 0 100px;
    background: var(--light);
}

.industry-detail-requirement-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 52px 60px;
    overflow: hidden;
    background: var(--navy);
}

.industry-detail-requirement-box::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -100px;
    top: -130px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}

.industry-detail-requirement-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.industry-detail-requirement-content .inner-section-eyebrow {
    color: #E7C65A;
}

.industry-detail-requirement-content h2 {
    margin: 10px 0 13px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    color: var(--white);
}

.industry-detail-requirement-content h2 span {
    color: #E7C65A;
}

.industry-detail-requirement-content p {
    max-width: 620px;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,.68);
}

.industry-detail-requirement-actions {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.industry-detail-requirement-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 23px;
    background: var(--white);
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: .3s ease;
}

.industry-detail-requirement-btn:hover {
    background: var(--blue);
    color: var(--white);
}

.industry-detail-requirement-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.7);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.industry-detail-requirement-link:hover {
    color: var(--white);
}


/* =========================================
   OTHER INDUSTRIES
========================================= */

.industry-detail-other-section {
    padding: 90px 0;
    background: var(--white);
}

.industry-detail-other-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.industry-detail-other-head h2 {
    margin: 10px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: 36px;
    line-height: 1.15;
    color: var(--navy);
}

.industry-detail-other-head h2 span {
    color: var(--blue);
}

.industry-detail-other-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.industry-detail-other-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.industry-detail-other-grid a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 100px;
    padding: 20px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: background .3s ease;
}

.industry-detail-other-grid a:hover {
    background: var(--light);
}

.industry-detail-other-grid a > span {
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
}

.industry-detail-other-grid strong {
    flex: 1;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    color: var(--navy);
}

.industry-detail-other-grid i {
    color: var(--blue);
    font-size: 14px;
}
/* =========================================
   POWER & STEEL INDUSTRY
========================================= */

.industry-detail-intro-section {
    padding: 100px 0;
    background: var(--white);
}

.industry-detail-intro-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 75px;
    align-items: center;
}

.industry-detail-intro-content {
    max-width: 690px;
}

.industry-detail-intro-content h2 {
    margin: 12px 0 24px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1.12;
    color: var(--navy);
}

.industry-detail-intro-content h2 span {
    display: block;
    color: var(--blue);
}

.industry-detail-intro-content p {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.85;
    color: var(--muted);
}

.industry-detail-intro-content .industry-detail-lead {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text);
}

.industry-detail-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 30px;
}

.industry-detail-point {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    background: var(--light);
    border: 1px solid var(--border);
}

.industry-detail-point i {
    color: var(--blue);
    font-size: 17px;
}

.industry-detail-point span {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
}

.industry-detail-intro-visual {
    position: relative;
}

.industry-detail-image-wrap {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.industry-detail-image-wrap img {
    width: 100%;
    height: 520px;
    display: block;
    object-fit: cover;
}

.industry-detail-image-card {
    position: absolute;
    left: 28px;
    bottom: 28px;
    min-width: 245px;
    padding: 20px 23px;
    background: rgba(0, 0, 0, .94);
}

.industry-detail-image-card span {
    display: block;
    margin-bottom: 5px;
    color: #E7C65A;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.industry-detail-image-card strong {
    display: block;
    margin-bottom: 5px;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: 22px;
}

.industry-detail-image-card small {
    display: block;
    color: rgba(255,255,255,.65);
    font-size: 11px;
}


/* =========================================
   KEY REQUIREMENTS
========================================= */

.industry-detail-requirements-section {
    padding: 95px 0;
    background: var(--light);
}

.industry-detail-requirements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 45px;
}

.industry-detail-requirement-card {
    position: relative;
    padding: 30px 27px 25px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: transform .3s ease, box-shadow .3s ease;
}

.industry-detail-requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(11, 11, 11, .08);
}

.industry-detail-requirement-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 25px;
}

.industry-detail-requirement-icon {
    width: 53px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 160, 23, .09);
    color: var(--blue);
    font-size: 21px;
}

.industry-detail-requirement-top > span {
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: #8A8A8A;
}

.industry-detail-requirement-card h3 {
    margin-bottom: 11px;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    color: var(--navy);
}

.industry-detail-requirement-card p {
    min-height: 75px;
    margin: 0 0 20px;
    font-size: 13px;
    line-height: 1.75;
    color: var(--muted);
}

.industry-detail-requirement-card > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

.industry-detail-requirement-card > a i {
    transition: transform .3s ease;
}

.industry-detail-requirement-card:hover > a i {
    transform: translateX(4px);
}


/* =========================================
   APPLICATIONS
========================================= */

.industry-detail-applications-section {
    padding: 100px 0;
    background: var(--white);
}

.industry-detail-applications-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.industry-detail-applications-content h2 {
    margin: 12px 0 20px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 3vw, 44px);
    line-height: 1.15;
    color: var(--navy);
}

.industry-detail-applications-content h2 span {
    display: block;
    color: var(--blue);
}

.industry-detail-applications-content p {
    max-width: 560px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.85;
    color: var(--muted);
}

.industry-detail-application-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.industry-detail-application-item {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 15px;
    padding: 28px 23px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.industry-detail-application-number {
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: var(--blue);
}

.industry-detail-application-item h3 {
    margin: 0 0 7px;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    color: var(--navy);
}

.industry-detail-application-item p {
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
    color: var(--muted);
}


/* =========================================
   SOLUTIONS
========================================= */

.industry-detail-solutions-section {
    padding: 95px 0;
    background: var(--light);
}

.industry-detail-solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 45px;
}

.industry-detail-solution-card {
    position: relative;
    display: grid;
    grid-template-columns: 55px 1fr 35px;
    gap: 18px;
    align-items: start;
    padding: 27px;
    background: var(--white);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
}

.industry-detail-solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(11, 11, 11, .08);
}

.industry-detail-solution-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,160,23,.09);
    color: var(--blue);
    font-size: 20px;
}

.industry-detail-solution-card span {
    display: block;
    margin-bottom: 5px;
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.industry-detail-solution-card h3 {
    margin: 0 0 8px;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    color: var(--navy);
}

.industry-detail-solution-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.7;
    color: var(--muted);
}

.industry-detail-solution-card > i {
    padding-top: 4px;
    color: var(--blue);
    font-size: 15px;
    transition: transform .3s ease;
}

.industry-detail-solution-card:hover > i {
    transform: translate(3px, -3px);
}


/* =========================================
   REQUIREMENT CTA
========================================= */

.industry-detail-requirement-section {
    padding: 0 0 100px;
    background: var(--light);
}

.industry-detail-requirement-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 52px 60px;
    overflow: hidden;
    background: var(--navy);
}

.industry-detail-requirement-box::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -100px;
    top: -130px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}

.industry-detail-requirement-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.industry-detail-requirement-content .inner-section-eyebrow {
    color: #E7C65A;
}

.industry-detail-requirement-content h2 {
    margin: 10px 0 13px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    color: var(--white);
}

.industry-detail-requirement-content h2 span {
    color: #E7C65A;
}

.industry-detail-requirement-content p {
    max-width: 620px;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,.68);
}

.industry-detail-requirement-actions {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.industry-detail-requirement-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 23px;
    background: var(--white);
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: .3s ease;
}

.industry-detail-requirement-btn:hover {
    background: var(--blue);
    color: var(--white);
}

.industry-detail-requirement-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.7);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.industry-detail-requirement-link:hover {
    color: var(--white);
}


/* =========================================
   OTHER INDUSTRIES
========================================= */

.industry-detail-other-section {
    padding: 90px 0;
    background: var(--white);
}

.industry-detail-other-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.industry-detail-other-head h2 {
    margin: 10px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: 36px;
    line-height: 1.15;
    color: var(--navy);
}

.industry-detail-other-head h2 span {
    color: var(--blue);
}

.industry-detail-other-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.industry-detail-other-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.industry-detail-other-grid a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 100px;
    padding: 20px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: background .3s ease;
}

.industry-detail-other-grid a:hover {
    background: var(--light);
}

.industry-detail-other-grid a > span {
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
}

.industry-detail-other-grid strong {
    flex: 1;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    color: var(--navy);
}

.industry-detail-other-grid i {
    color: var(--blue);
    font-size: 14px;
}
/* =========================================
   TEXTILE & TYRE INDUSTRY
========================================= */

.industry-detail-intro-section {
    padding: 100px 0;
    background: var(--white);
}

.industry-detail-intro-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 75px;
    align-items: center;
}

.industry-detail-intro-content {
    max-width: 690px;
}

.industry-detail-intro-content h2 {
    margin: 12px 0 24px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1.12;
    color: var(--navy);
}

.industry-detail-intro-content h2 span {
    display: block;
    color: var(--blue);
}

.industry-detail-intro-content p {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.85;
    color: var(--muted);
}

.industry-detail-intro-content .industry-detail-lead {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text);
}

.industry-detail-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 30px;
}

.industry-detail-point {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    background: var(--light);
    border: 1px solid var(--border);
}

.industry-detail-point i {
    color: var(--blue);
    font-size: 17px;
}

.industry-detail-point span {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
}

.industry-detail-intro-visual {
    position: relative;
}

.industry-detail-image-wrap {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.industry-detail-image-wrap img {
    width: 100%;
    height: 520px;
    display: block;
    object-fit: cover;
}

.industry-detail-image-card {
    position: absolute;
    left: 28px;
    bottom: 28px;
    min-width: 245px;
    padding: 20px 23px;
    background: rgba(0, 0, 0, .94);
}

.industry-detail-image-card span {
    display: block;
    margin-bottom: 5px;
    color: #E7C65A;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.industry-detail-image-card strong {
    display: block;
    margin-bottom: 5px;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: 22px;
}

.industry-detail-image-card small {
    display: block;
    color: rgba(255,255,255,.65);
    font-size: 11px;
}


/* =========================================
   KEY REQUIREMENTS
========================================= */

.industry-detail-requirements-section {
    padding: 95px 0;
    background: var(--light);
}

.industry-detail-requirements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 45px;
}

.industry-detail-requirement-card {
    position: relative;
    padding: 30px 27px 25px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: transform .3s ease, box-shadow .3s ease;
}

.industry-detail-requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(11, 11, 11, .08);
}

.industry-detail-requirement-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 25px;
}

.industry-detail-requirement-icon {
    width: 53px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 160, 23, .09);
    color: var(--blue);
    font-size: 21px;
}

.industry-detail-requirement-top > span {
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: #8A8A8A;
}

.industry-detail-requirement-card h3 {
    margin-bottom: 11px;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    color: var(--navy);
}

.industry-detail-requirement-card p {
    min-height: 75px;
    margin: 0 0 20px;
    font-size: 13px;
    line-height: 1.75;
    color: var(--muted);
}

.industry-detail-requirement-card > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

.industry-detail-requirement-card > a i {
    transition: transform .3s ease;
}

.industry-detail-requirement-card:hover > a i {
    transform: translateX(4px);
}


/* =========================================
   APPLICATIONS
========================================= */

.industry-detail-applications-section {
    padding: 100px 0;
    background: var(--white);
}

.industry-detail-applications-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.industry-detail-applications-content h2 {
    margin: 12px 0 20px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 3vw, 44px);
    line-height: 1.15;
    color: var(--navy);
}

.industry-detail-applications-content h2 span {
    display: block;
    color: var(--blue);
}

.industry-detail-applications-content p {
    max-width: 560px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.85;
    color: var(--muted);
}

.industry-detail-application-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.industry-detail-application-item {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 15px;
    padding: 28px 23px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.industry-detail-application-number {
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: var(--blue);
}

.industry-detail-application-item h3 {
    margin: 0 0 7px;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    color: var(--navy);
}

.industry-detail-application-item p {
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
    color: var(--muted);
}


/* =========================================
   SOLUTIONS
========================================= */

.industry-detail-solutions-section {
    padding: 95px 0;
    background: var(--light);
}

.industry-detail-solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 45px;
}

.industry-detail-solution-card {
    position: relative;
    display: grid;
    grid-template-columns: 55px 1fr 35px;
    gap: 18px;
    align-items: start;
    padding: 27px;
    background: var(--white);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
}

.industry-detail-solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(11, 11, 11, .08);
}

.industry-detail-solution-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,160,23,.09);
    color: var(--blue);
    font-size: 20px;
}

.industry-detail-solution-card span {
    display: block;
    margin-bottom: 5px;
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.industry-detail-solution-card h3 {
    margin: 0 0 8px;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    color: var(--navy);
}

.industry-detail-solution-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.7;
    color: var(--muted);
}

.industry-detail-solution-card > i {
    padding-top: 4px;
    color: var(--blue);
    font-size: 15px;
    transition: transform .3s ease;
}

.industry-detail-solution-card:hover > i {
    transform: translate(3px, -3px);
}


/* =========================================
   REQUIREMENT CTA
========================================= */

.industry-detail-requirement-section {
    padding: 0 0 100px;
    background: var(--light);
}

.industry-detail-requirement-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 52px 60px;
    overflow: hidden;
    background: var(--navy);
}

.industry-detail-requirement-box::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -100px;
    top: -130px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}

.industry-detail-requirement-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.industry-detail-requirement-content .inner-section-eyebrow {
    color: #E7C65A;
}

.industry-detail-requirement-content h2 {
    margin: 10px 0 13px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    color: var(--white);
}

.industry-detail-requirement-content h2 span {
    color: #E7C65A;
}

.industry-detail-requirement-content p {
    max-width: 620px;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,.68);
}

.industry-detail-requirement-actions {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.industry-detail-requirement-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 23px;
    background: var(--white);
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: .3s ease;
}

.industry-detail-requirement-btn:hover {
    background: var(--blue);
    color: var(--white);
}

.industry-detail-requirement-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.7);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.industry-detail-requirement-link:hover {
    color: var(--white);
}


/* =========================================
   OTHER INDUSTRIES
========================================= */

.industry-detail-other-section {
    padding: 90px 0;
    background: var(--white);
}

.industry-detail-other-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.industry-detail-other-head h2 {
    margin: 10px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: 36px;
    line-height: 1.15;
    color: var(--navy);
}

.industry-detail-other-head h2 span {
    color: var(--blue);
}

.industry-detail-other-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.industry-detail-other-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.industry-detail-other-grid a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 100px;
    padding: 20px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: background .3s ease;
}

.industry-detail-other-grid a:hover {
    background: var(--light);
}

.industry-detail-other-grid a > span {
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
}

.industry-detail-other-grid strong {
    flex: 1;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    color: var(--navy);
}

.industry-detail-other-grid i {
    color: var(--blue);
    font-size: 14px;
}
/* =========================================================
   CHEMICAL & PHARMA / INDUSTRY DETAIL PAGES
   ========================================================= */

/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.industry-detail-hero {
    min-height: 470px;
}

.industry-detail-hero .inner-page-hero-content {
    max-width: 850px;
}

.industry-detail-hero .inner-page-hero-content h1 span {
    color: var(--blue);
}


/* ---------------------------------------------------------
   INTRO SECTION
   --------------------------------------------------------- */

.industry-detail-intro-section {
    background: var(--white);
}

.industry-detail-intro-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}

.industry-detail-intro-content {
    max-width: 680px;
}

.industry-detail-intro-content .section-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
}

.industry-detail-intro-content h2 {
    margin: 0 0 22px;
    font-family: 'Manrope', sans-serif;
    font-size: 42px;
    line-height: 1.16;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -1.2px;
}

.industry-detail-intro-content h2 span {
    color: var(--blue);
}

.industry-detail-intro-content .lead {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 18px;
}

.industry-detail-intro-content p {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--muted);
    margin-bottom: 16px;
}


/* Intro Points */

.industry-detail-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
    margin-top: 30px;
}

.industry-detail-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.industry-detail-point > i {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 18px;
    margin-top: 2px;
}

.industry-detail-point strong {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.industry-detail-point span {
    display: block;
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
}


/* Intro Image */

.industry-detail-intro-visual {
    position: relative;
}

.industry-detail-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: var(--light);
    box-shadow: 0 22px 55px rgba(11, 11, 11, .12);
}

.industry-detail-image-wrap > img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.industry-detail-image-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 20px 22px;
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.12);
}

.industry-detail-image-card span {
    display: block;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.6px;
    color: rgba(255,255,255,.65);
    margin-bottom: 8px;
}

.industry-detail-image-card strong {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--white);
}


/* ---------------------------------------------------------
   REQUIREMENTS
   --------------------------------------------------------- */

.industry-detail-requirements-section {
    background: var(--light);
}

.industry-detail-requirements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 45px;
}

.industry-detail-requirement-card {
    position: relative;
    padding: 28px 25px 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all .3s ease;
}

.industry-detail-requirement-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,160,23,.25);
    box-shadow: 0 18px 40px rgba(11,11,11,.09);
}

.industry-detail-requirement-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.industry-detail-requirement-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(212,160,23,.08);
    color: var(--blue);
    font-size: 22px;
}

.industry-detail-requirement-top > span {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #888888;
}

.industry-detail-requirement-card h3 {
    margin: 0 0 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 750;
    color: var(--navy);
}

.industry-detail-requirement-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: var(--muted);
}


/* ---------------------------------------------------------
   APPLICATIONS
   --------------------------------------------------------- */

.industry-detail-applications-section {
    background: var(--white);
}

.industry-detail-applications-grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 75px;
    align-items: center;
}

.industry-detail-applications-content {
    max-width: 690px;
}

.industry-detail-applications-content h2 {
    margin: 0 0 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 40px;
    line-height: 1.18;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -1px;
}

.industry-detail-applications-content h2 span {
    color: var(--blue);
}

.industry-detail-applications-content > p {
    margin: 0 0 30px;
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--muted);
}


/* Application List */

.industry-detail-application-list {
    border-top: 1px solid var(--border);
}

.industry-detail-application-item {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.industry-detail-application-number {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
}

.industry-detail-application-item h4 {
    margin: 0 0 5px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--navy);
}

.industry-detail-application-item p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--muted);
}


/* ---------------------------------------------------------
   SOLUTIONS
   --------------------------------------------------------- */

.industry-detail-solutions-section {
    background: var(--light);
}

.industry-detail-solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 45px;
}

.industry-detail-solution-card {
    padding: 30px 27px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all .3s ease;
}

.industry-detail-solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(11,11,11,.10);
    border-color: rgba(212,160,23,.25);
}

.industry-detail-solution-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 12px;
    background: var(--navy);
    color: var(--white);
    font-size: 21px;
}

.industry-detail-solution-card h3 {
    margin: 0 0 11px;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 750;
    color: var(--navy);
}

.industry-detail-solution-card p {
    min-height: 74px;
    margin: 0 0 20px;
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--muted);
}

.industry-detail-solution-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: gap .25s ease;
}

.industry-detail-solution-card a i {
    font-size: 14px;
}

.industry-detail-solution-card a:hover {
    gap: 12px;
    color: var(--blue-dark);
}


/* ---------------------------------------------------------
   REQUIREMENT CTA
   --------------------------------------------------------- */

.industry-detail-requirement-section {
    background: var(--white);
}

.industry-detail-requirement-box {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 48px 55px;
    background: linear-gradient(
        115deg,
        var(--navy-dark) 0%,
        var(--navy) 65%,
        #8A6508 100%
    );
    border-radius: 18px;
    box-shadow: 0 22px 50px rgba(0,0,0,.15);
}

.industry-detail-requirement-box::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -100px;
    top: -130px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    pointer-events: none;
}

.industry-detail-requirement-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.industry-detail-requirement-content .section-eyebrow {
    color: rgba(255,255,255,.62);
    margin-bottom: 12px;
}

.industry-detail-requirement-content h2 {
    margin: 0 0 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
    color: var(--white);
}

.industry-detail-requirement-content h2 span {
    color: #E7C65A;
}

.industry-detail-requirement-content p {
    max-width: 650px;
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255,255,255,.72);
}

.industry-detail-requirement-actions {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}


/* CTA Buttons */

.industry-detail-requirement-actions .btn-primary,
.industry-detail-requirement-actions .btn-outline {
    min-height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s ease;
}

.industry-detail-requirement-actions .btn-primary {
    background: var(--blue);
    color: var(--white);
    border: 1px solid var(--blue);
}

.industry-detail-requirement-actions .btn-primary:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.industry-detail-requirement-actions .btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,.35);
}

.industry-detail-requirement-actions .btn-outline:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.65);
}


/* ---------------------------------------------------------
   OTHER INDUSTRIES
   --------------------------------------------------------- */

.industry-detail-other-section {
    background: var(--light);
}

.industry-detail-other-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.industry-detail-other-head h2 {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--navy);
}

.industry-detail-other-head h2 span {
    color: var(--blue);
}

.industry-detail-other-head .text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.industry-detail-other-head .text-link:hover {
    color: var(--blue-dark);
}

.industry-detail-other-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


/* Reuse master industry card */

.industry-detail-other-grid .industry-master-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 230px;
    border-radius: 13px;
    background: var(--navy);
    text-decoration: none;
}

.industry-detail-other-grid .industry-master-image {
    position: absolute;
    inset: 0;
}

.industry-detail-other-grid .industry-master-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.industry-detail-other-grid .industry-master-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,.08) 15%,
        rgba(0,0,0,.82) 100%
    );
}

.industry-detail-other-grid .industry-master-card:hover img {
    transform: scale(1.06);
}

.industry-detail-other-grid .industry-master-content {
    position: absolute;
    z-index: 2;
    left: 20px;
    right: 20px;
    bottom: 18px;
}

.industry-detail-other-grid .industry-master-content span {
    display: block;
    margin-bottom: 5px;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,.58);
    letter-spacing: 1px;
}

.industry-detail-other-grid .industry-master-content h3 {
    margin: 0;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 750;
}

.industry-detail-other-grid .industry-master-content i {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    color: var(--white);
    font-size: 14px;
    transition: all .25s ease;
}

.industry-detail-other-grid .industry-master-card:hover .industry-master-content i {
    background: var(--blue);
    transform: rotate(45deg);
}
/* =========================================================
   CHEMICAL & PHARMA / INDUSTRY DETAIL PAGES
   ========================================================= */

/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.industry-detail-hero {
    min-height: 470px;
}

.industry-detail-hero .inner-page-hero-content {
    max-width: 850px;
}

.industry-detail-hero .inner-page-hero-content h1 span {
    color: var(--blue);
}


/* ---------------------------------------------------------
   INTRO SECTION
   --------------------------------------------------------- */

.industry-detail-intro-section {
    background: var(--white);
}

.industry-detail-intro-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}

.industry-detail-intro-content {
    max-width: 680px;
}

.industry-detail-intro-content .section-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
}

.industry-detail-intro-content h2 {
    margin: 0 0 22px;
    font-family: 'Manrope', sans-serif;
    font-size: 42px;
    line-height: 1.16;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -1.2px;
}

.industry-detail-intro-content h2 span {
    color: var(--blue);
}

.industry-detail-intro-content .lead {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 18px;
}

.industry-detail-intro-content p {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--muted);
    margin-bottom: 16px;
}


/* Intro Points */

.industry-detail-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
    margin-top: 30px;
}

.industry-detail-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.industry-detail-point > i {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 18px;
    margin-top: 2px;
}

.industry-detail-point strong {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.industry-detail-point span {
    display: block;
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
}


/* Intro Image */

.industry-detail-intro-visual {
    position: relative;
}

.industry-detail-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: var(--light);
    box-shadow: 0 22px 55px rgba(11, 11, 11, .12);
}

.industry-detail-image-wrap > img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.industry-detail-image-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 20px 22px;
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.12);
}

.industry-detail-image-card span {
    display: block;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.6px;
    color: rgba(255,255,255,.65);
    margin-bottom: 8px;
}

.industry-detail-image-card strong {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--white);
}


/* ---------------------------------------------------------
   REQUIREMENTS
   --------------------------------------------------------- */

.industry-detail-requirements-section {
    background: var(--light);
}

.industry-detail-requirements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 45px;
}

.industry-detail-requirement-card {
    position: relative;
    padding: 28px 25px 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all .3s ease;
}

.industry-detail-requirement-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,160,23,.25);
    box-shadow: 0 18px 40px rgba(11,11,11,.09);
}

.industry-detail-requirement-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.industry-detail-requirement-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(212,160,23,.08);
    color: var(--blue);
    font-size: 22px;
}

.industry-detail-requirement-top > span {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #888888;
}

.industry-detail-requirement-card h3 {
    margin: 0 0 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 750;
    color: var(--navy);
}

.industry-detail-requirement-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: var(--muted);
}


/* ---------------------------------------------------------
   APPLICATIONS
   --------------------------------------------------------- */

.industry-detail-applications-section {
    background: var(--white);
}

.industry-detail-applications-grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 75px;
    align-items: center;
}

.industry-detail-applications-content {
    max-width: 690px;
}

.industry-detail-applications-content h2 {
    margin: 0 0 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 40px;
    line-height: 1.18;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -1px;
}

.industry-detail-applications-content h2 span {
    color: var(--blue);
}

.industry-detail-applications-content > p {
    margin: 0 0 30px;
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--muted);
}


/* Application List */

.industry-detail-application-list {
    border-top: 1px solid var(--border);
}

.industry-detail-application-item {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.industry-detail-application-number {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
}

.industry-detail-application-item h4 {
    margin: 0 0 5px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--navy);
}

.industry-detail-application-item p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--muted);
}


/* ---------------------------------------------------------
   SOLUTIONS
   --------------------------------------------------------- */

.industry-detail-solutions-section {
    background: var(--light);
}

.industry-detail-solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 45px;
}

.industry-detail-solution-card {
    padding: 30px 27px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all .3s ease;
}

.industry-detail-solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(11,11,11,.10);
    border-color: rgba(212,160,23,.25);
}

.industry-detail-solution-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 12px;
    background: var(--navy);
    color: var(--white);
    font-size: 21px;
}

.industry-detail-solution-card h3 {
    margin: 0 0 11px;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 750;
    color: var(--navy);
}

.industry-detail-solution-card p {
    min-height: 74px;
    margin: 0 0 20px;
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--muted);
}

.industry-detail-solution-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: gap .25s ease;
}

.industry-detail-solution-card a i {
    font-size: 14px;
}

.industry-detail-solution-card a:hover {
    gap: 12px;
    color: var(--blue-dark);
}


/* ---------------------------------------------------------
   REQUIREMENT CTA
   --------------------------------------------------------- */

.industry-detail-requirement-section {
    background: var(--white);
}

.industry-detail-requirement-box {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 48px 55px;
    background: linear-gradient(
        115deg,
        var(--navy-dark) 0%,
        var(--navy) 65%,
        #8A6508 100%
    );
    border-radius: 18px;
    box-shadow: 0 22px 50px rgba(0,0,0,.15);
}

.industry-detail-requirement-box::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -100px;
    top: -130px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    pointer-events: none;
}

.industry-detail-requirement-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.industry-detail-requirement-content .section-eyebrow {
    color: rgba(255,255,255,.62);
    margin-bottom: 12px;
}

.industry-detail-requirement-content h2 {
    margin: 0 0 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
    color: var(--white);
}

.industry-detail-requirement-content h2 span {
    color: #E7C65A;
}

.industry-detail-requirement-content p {
    max-width: 650px;
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255,255,255,.72);
}

.industry-detail-requirement-actions {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}


/* CTA Buttons */

.industry-detail-requirement-actions .btn-primary,
.industry-detail-requirement-actions .btn-outline {
    min-height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s ease;
}

.industry-detail-requirement-actions .btn-primary {
    background: var(--blue);
    color: var(--white);
    border: 1px solid var(--blue);
}

.industry-detail-requirement-actions .btn-primary:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.industry-detail-requirement-actions .btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,.35);
}

.industry-detail-requirement-actions .btn-outline:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.65);
}


/* ---------------------------------------------------------
   OTHER INDUSTRIES
   --------------------------------------------------------- */

.industry-detail-other-section {
    background: var(--light);
}

.industry-detail-other-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.industry-detail-other-head h2 {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--navy);
}

.industry-detail-other-head h2 span {
    color: var(--blue);
}

.industry-detail-other-head .text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.industry-detail-other-head .text-link:hover {
    color: var(--blue-dark);
}

.industry-detail-other-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


/* Reuse master industry card */

.industry-detail-other-grid .industry-master-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 230px;
    border-radius: 13px;
    background: var(--navy);
    text-decoration: none;
}

.industry-detail-other-grid .industry-master-image {
    position: absolute;
    inset: 0;
}

.industry-detail-other-grid .industry-master-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.industry-detail-other-grid .industry-master-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,.08) 15%,
        rgba(0,0,0,.82) 100%
    );
}

.industry-detail-other-grid .industry-master-card:hover img {
    transform: scale(1.06);
}

.industry-detail-other-grid .industry-master-content {
    position: absolute;
    z-index: 2;
    left: 20px;
    right: 20px;
    bottom: 18px;
}

.industry-detail-other-grid .industry-master-content span {
    display: block;
    margin-bottom: 5px;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,.58);
    letter-spacing: 1px;
}

.industry-detail-other-grid .industry-master-content h3 {
    margin: 0;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 750;
}

.industry-detail-other-grid .industry-master-content i {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    color: var(--white);
    font-size: 14px;
    transition: all .25s ease;
}

.industry-detail-other-grid .industry-master-card:hover .industry-master-content i {
    background: var(--blue);
    transform: rotate(45deg);
}
/* =========================================================
   SEMICONDUCTOR INDUSTRY PAGE
   ========================================================= */

.semiconductor-hero {
    min-height: 470px;
}

.semiconductor-hero .inner-page-hero-content {
    max-width: 850px;
}

.semiconductor-hero .inner-page-hero-content h1 span {
    color: var(--blue);
}


/* ---------------------------------------------------------
   SEMICONDUCTOR INTRO
   --------------------------------------------------------- */

.semiconductor-intro {
    background: var(--white);
}

.semiconductor-intro .industry-detail-intro-content h2 {
    max-width: 650px;
}

.semiconductor-intro .industry-detail-intro-content h2 span {
    color: var(--blue);
}

.semiconductor-image-wrap {
    box-shadow: 0 24px 60px rgba(11, 11, 11, .13);
}


/* ---------------------------------------------------------
   SEMICONDUCTOR REQUIREMENT CARDS
   --------------------------------------------------------- */

.semiconductor-intro
.industry-detail-point > i {
    color: var(--blue);
}


/* ---------------------------------------------------------
   PRECISION ACCENT
   --------------------------------------------------------- */

.semiconductor-intro .industry-detail-image-card {
    background: rgba(0, 0, 0, .94);
}

.semiconductor-intro .industry-detail-image-card strong {
    color: var(--white);
}


/* ---------------------------------------------------------
   SEMICONDUCTOR APPLICATION SECTION
   --------------------------------------------------------- */

.semiconductor-application-accent {
    position: relative;
}

.semiconductor-application-accent::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--blue);
}


/* ---------------------------------------------------------
   SEMICONDUCTOR SOLUTION ICON
   --------------------------------------------------------- */

.industry-detail-solutions-section
.industry-detail-solution-card:hover
.industry-detail-solution-icon {
    background: var(--blue);
}


/* ---------------------------------------------------------
   SEMICONDUCTOR CTA
   --------------------------------------------------------- */

.industry-detail-requirement-box {
    isolation: isolate;
}

.industry-detail-requirement-box::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: 120px;
    bottom: -110px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 50%;
    pointer-events: none;
}


/* ---------------------------------------------------------
   OTHER INDUSTRIES
   --------------------------------------------------------- */

.industry-detail-other-grid
.industry-master-card {
    transition: transform .3s ease, box-shadow .3s ease;
}

.industry-detail-other-grid
.industry-master-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(11,11,11,.12);
}
/* =========================================================
   FOOD & COSMETICS INDUSTRY PAGE
   ========================================================= */

.food-cosmetics-hero {
    min-height: 470px;
}

.food-cosmetics-hero .inner-page-hero-content {
    max-width: 850px;
}

.food-cosmetics-hero .inner-page-hero-content h1 span {
    color: var(--blue);
}


/* =========================================================
   INTRO
   ========================================================= */

.food-cosmetics-intro {
    background: var(--white);
}

.food-cosmetics-intro
.industry-detail-intro-content h2 {
    max-width: 650px;
}

.food-cosmetics-intro
.industry-detail-intro-content h2 span {
    color: var(--blue);
}

.food-cosmetics-image-wrap {
    box-shadow: 0 24px 60px rgba(11, 11, 11, .13);
}


/* =========================================================
   HYGIENIC ACCENT
   ========================================================= */

.food-cosmetics-intro
.industry-detail-point > i {
    color: var(--blue);
}


/* =========================================================
   REQUIREMENT CARDS
   ========================================================= */

.industry-detail-requirements-section
.industry-detail-requirement-card {
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.industry-detail-requirements-section
.industry-detail-requirement-card:hover {
    border-color: rgba(212,160,23,.28);
}


/* =========================================================
   SOLUTION CARDS
   ========================================================= */

.industry-detail-solutions-section
.industry-detail-solution-card {
    position: relative;
    overflow: hidden;
}

.industry-detail-solutions-section
.industry-detail-solution-card::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    right: -45px;
    top: -45px;
    border-radius: 50%;
    border: 1px solid rgba(212,160,23,.08);
    pointer-events: none;
}

.industry-detail-solutions-section
.industry-detail-solution-card:hover
.industry-detail-solution-icon {
    background: var(--blue);
}


/* =========================================================
   CTA
   ========================================================= */

.food-cosmetics-hero + .industry-detail-intro-section {
    position: relative;
}

.industry-detail-requirement-box {
    isolation: isolate;
}


/* =========================================================
   OTHER INDUSTRIES
   ========================================================= */

.industry-detail-other-grid
.industry-master-card {
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.industry-detail-other-grid
.industry-master-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(11,11,11,.12);
}
/* =========================================================
   MINING & SHIPPING INDUSTRY PAGE
   ========================================================= */


/* =========================================================
   HERO
   ========================================================= */

.mining-shipping-hero {
    min-height: 470px;
}

.mining-shipping-hero .inner-page-hero-content {
    max-width: 850px;
}

.mining-shipping-hero .inner-page-hero-content h1 span {
    color: var(--blue);
}


/* =========================================================
   INTRO
   ========================================================= */

.mining-shipping-intro {
    background: var(--white);
}

.mining-shipping-intro
.industry-detail-intro-content h2 {
    max-width: 660px;
}

.mining-shipping-intro
.industry-detail-intro-content h2 span {
    color: var(--blue);
}

.mining-shipping-image-wrap {
    box-shadow: 0 24px 60px rgba(11, 11, 11, .14);
}


/* =========================================================
   INTRO POINTS
   ========================================================= */

.mining-shipping-intro
.industry-detail-point > i {
    color: var(--blue);
}


/* =========================================================
   REQUIREMENT CARDS
   ========================================================= */

.industry-detail-requirements-section
.industry-detail-requirement-card {
    position: relative;
    overflow: hidden;
}

.industry-detail-requirements-section
.industry-detail-requirement-card::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    right: -45px;
    bottom: -45px;
    border: 1px solid rgba(212,160,23,.07);
    border-radius: 50%;
    pointer-events: none;
}

.industry-detail-requirements-section
.industry-detail-requirement-card:hover {
    border-color: rgba(212,160,23,.28);
}


/* =========================================================
   SOLUTION CARDS
   ========================================================= */

.industry-detail-solutions-section
.industry-detail-solution-card {
    position: relative;
    overflow: hidden;
}

.industry-detail-solutions-section
.industry-detail-solution-card::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    right: -50px;
    top: -50px;
    border: 1px solid rgba(212,160,23,.08);
    border-radius: 50%;
    pointer-events: none;
}

.industry-detail-solutions-section
.industry-detail-solution-card:hover
.industry-detail-solution-icon {
    background: var(--blue);
}


/* =========================================================
   CTA
   ========================================================= */

.industry-detail-requirement-box {
    isolation: isolate;
}

.industry-detail-requirement-box::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: 120px;
    bottom: -110px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 50%;
    pointer-events: none;
}


/* =========================================================
   OTHER INDUSTRIES
   ========================================================= */

.industry-detail-other-grid
.industry-master-card {
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.industry-detail-other-grid
.industry-master-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(11,11,11,.12);
}

/* =========================================================
   BIOTECH & SEMICONDUCTORS
   INDUSTRY PAGE
   ========================================================= */


/* =========================================================
   HERO
   ========================================================= */

.biotech-semiconductors-hero {
    min-height: 470px;
}

.biotech-semiconductors-hero .inner-page-hero-content {
    max-width: 880px;
}

.biotech-semiconductors-hero
.inner-page-hero-content h1 span {
    color: var(--blue);
}


/* =========================================================
   INTRO
   ========================================================= */

.biotech-semiconductors-intro {
    background: var(--white);
}

.biotech-semiconductors-intro
.industry-detail-intro-content h2 {
    max-width: 680px;
}

.biotech-semiconductors-intro
.industry-detail-intro-content h2 span {
    color: var(--blue);
}

.biotech-semiconductors-image-wrap {
    box-shadow: 0 24px 60px rgba(11, 11, 11, .14);
}


/* =========================================================
   INTRO POINTS
   ========================================================= */

.biotech-semiconductors-intro
.industry-detail-point > i {
    color: var(--blue);
}


/* =========================================================
   REQUIREMENT CARDS
   ========================================================= */

.industry-detail-requirements-section
.industry-detail-requirement-card {
    position: relative;
    overflow: hidden;
}

.industry-detail-requirements-section
.industry-detail-requirement-card::after {
    content: "";
    position: absolute;
    width: 95px;
    height: 95px;
    right: -48px;
    bottom: -48px;
    border: 1px solid rgba(212,160,23,.07);
    border-radius: 50%;
    pointer-events: none;
}

.industry-detail-requirements-section
.industry-detail-requirement-card:hover {
    border-color: rgba(212,160,23,.28);
}


/* =========================================================
   SOLUTION CARDS
   ========================================================= */

.industry-detail-solutions-section
.industry-detail-solution-card {
    position: relative;
    overflow: hidden;
}

.industry-detail-solutions-section
.industry-detail-solution-card::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    right: -50px;
    top: -50px;
    border: 1px solid rgba(212,160,23,.08);
    border-radius: 50%;
    pointer-events: none;
}

.industry-detail-solutions-section
.industry-detail-solution-card:hover
.industry-detail-solution-icon {
    background: var(--blue);
}


/* =========================================================
   CTA
   ========================================================= */

.industry-detail-requirement-box {
    isolation: isolate;
}

.industry-detail-requirement-box::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: 120px;
    bottom: -110px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 50%;
    pointer-events: none;
}


/* =========================================================
   OTHER INDUSTRIES
   ========================================================= */

.industry-detail-other-grid
.industry-master-card {
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.industry-detail-other-grid
.industry-master-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(11,11,11,.12);
}
/* =========================================================
   BLOG PAGE
========================================================= */

.blog-hero {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .94) 0%, rgba(11, 11, 11, .82) 48%, rgba(11, 11, 11, .58) 100%),
        url("../images/home/insight-process.png") center/cover no-repeat;
}

.blog-intro-section {
    padding: 100px 0;
    background: var(--white);
}

.blog-intro-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 80px;
    align-items: center;
}

.blog-intro-content {
    max-width: 760px;
}

.blog-intro-content h2 {
    margin: 14px 0 22px;
    font-family: "Manrope", sans-serif;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--navy-dark);
}

.blog-intro-content h2 span {
    color: var(--blue);
}

.blog-intro-content p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.blog-intro-highlight {
    position: relative;
    overflow: hidden;
    padding: 42px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 18px;
}

.blog-intro-highlight::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -70px;
    bottom: -70px;
    border: 25px solid rgba(212, 160, 23, .08);
    border-radius: 50%;
}

.blog-highlight-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--white);
    border-radius: 12px;
    font-size: 25px;
}

.blog-intro-highlight > span {
    display: block;
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.blog-intro-highlight h3 {
    max-width: 390px;
    margin: 0 0 15px;
    color: var(--navy-dark);
    font-family: "Manrope", sans-serif;
    font-size: 27px;
    line-height: 1.35;
    font-weight: 700;
}

.blog-intro-highlight h3 strong {
    color: var(--blue);
}

.blog-intro-highlight p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}


/* =========================================================
   FEATURED ARTICLE
========================================================= */

.blog-featured-section {
    padding: 100px 0;
    background: var(--light);
}

.blog-featured-section .section-heading-row {
    margin-bottom: 35px;
}

.blog-featured-section .section-heading-row h2 {
    margin: 10px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--navy-dark);
}

.blog-featured-section .section-heading-row h2 span {
    color: var(--blue);
}

.blog-featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .07);
}

.blog-featured-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.blog-featured-card:hover .blog-featured-image img {
    transform: scale(1.04);
}

.blog-category-badge {
    position: absolute;
    left: 28px;
    top: 28px;
    padding: 9px 15px;
    background: var(--white);
    color: var(--navy);
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .12);
}

.blog-featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 65px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.blog-meta i {
    color: var(--blue);
}

.blog-featured-content h3 {
    max-width: 570px;
    margin: 0 0 20px;
    font-family: "Manrope", sans-serif;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 800;
    color: var(--navy-dark);
}

.blog-featured-content p {
    max-width: 570px;
    margin: 0 0 30px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    width: fit-content;
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.blog-read-more i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    transition: .3s ease;
}

.blog-read-more:hover {
    color: var(--blue);
}

.blog-read-more:hover i {
    transform: translateX(4px);
}


/* =========================================================
   BLOG CATEGORIES
========================================================= */

.blog-categories-section {
    padding: 28px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.blog-category-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-category-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 19px;
    border: 1px solid var(--border);
    border-radius: 30px;
    color: var(--muted);
    background: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
}

.blog-category-nav a i {
    color: var(--blue);
}

.blog-category-nav a:hover,
.blog-category-nav a.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.blog-category-nav a:hover i,
.blog-category-nav a.active i {
    color: var(--white);
}


/* =========================================================
   BLOG GRID
========================================================= */

.blog-grid-section {
    padding: 95px 0 105px;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all .35s ease;
}

.blog-card:hover {
    transform: translateY(-7px);
    border-color: rgba(212, 160, 23, .25);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .10);
}

.blog-card-image {
    position: relative;
    height: 235px;
    overflow: hidden;
    background: var(--light);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 7px 12px;
    background: var(--white);
    color: var(--navy);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .5px;
}

.blog-card-content {
    padding: 28px;
}

.blog-card-meta {
    margin-bottom: 13px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.blog-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.blog-card-content h3 {
    min-height: 68px;
    margin: 0 0 14px;
    color: var(--navy-dark);
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 800;
}

.blog-card-content p {
    min-height: 78px;
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.blog-card-content > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: .3s ease;
}

.blog-card-content > a i {
    color: var(--blue);
    transition: .3s ease;
}

.blog-card-content > a:hover {
    color: var(--blue);
}

.blog-card-content > a:hover i {
    transform: translate(3px, -3px);
}


/* =========================================================
   BLOG CTA
========================================================= */

.blog-insight-cta-section {
    padding: 0 0 100px;
    background: var(--white);
}

.blog-insight-cta {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 55px 65px;
    background: var(--navy-dark);
    border-radius: 20px;
}

.blog-insight-cta::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -110px;
    top: -160px;
    border: 70px solid rgba(212, 160, 23, .15);
    border-radius: 50%;
}

.blog-insight-cta-content {
    position: relative;
    z-index: 2;
}

.blog-insight-cta-content .section-eyebrow {
    color: #E7C65A;
}

.blog-insight-cta-content h2 {
    margin: 10px 0 12px;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
}

.blog-insight-cta-content h2 span {
    color: #E7C65A;
}

.blog-insight-cta-content p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.7;
}

.blog-insight-cta-action {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.blog-insight-cta-action a {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 15px 22px;
    background: var(--blue);
    color: var(--white);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: all .3s ease;
}

.blog-insight-cta-action a i {
    font-size: 17px;
    transition: transform .3s ease;
}

.blog-insight-cta-action a:hover {
    background: var(--blue-dark);
}

.blog-insight-cta-action a:hover i {
    transform: translateX(4px);
}
/* =========================================================
   BLOG DETAILS / ARTICLE PAGE
========================================================= */

.article-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .97) 0%, rgba(11, 11, 11, .90) 48%, rgba(11, 11, 11, .62) 100%),
        url("../images/home/insight-process.png") center/cover no-repeat;
}

.article-hero-content {
    max-width: 900px;
    padding: 80px 0;
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
}

.article-breadcrumb a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
}

.article-breadcrumb a:hover {
    color: var(--white);
}

.article-breadcrumb i {
    font-size: 10px;
    opacity: .6;
}

.article-eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: #E7C65A;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.article-hero h1 {
    max-width: 900px;
    margin: 0 0 22px;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: 48px;
    line-height: 1.16;
    font-weight: 800;
}

.article-hero-text {
    max-width: 760px;
    margin: 0 0 25px;
    color: rgba(255, 255, 255, .76);
    font-size: 16px;
    line-height: 1.8;
}

.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 600;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.article-meta i {
    color: #E7C65A;
}


/* =========================================================
   ARTICLE LAYOUT
========================================================= */

.article-content-section {
    padding: 95px 0 105px;
    background: var(--white);
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 70px;
    align-items: start;
}

.article-main {
    min-width: 0;
}

.article-featured-image {
    height: 490px;
    overflow: hidden;
    margin-bottom: 50px;
    border-radius: 18px;
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body {
    max-width: 850px;
}

.article-lead {
    margin: 0 0 38px;
    color: var(--navy-dark);
    font-family: "Manrope", sans-serif;
    font-size: 21px;
    line-height: 1.7;
    font-weight: 600;
}

.article-body h2 {
    margin: 50px 0 20px;
    color: var(--navy-dark);
    font-family: "Manrope", sans-serif;
    font-size: 31px;
    line-height: 1.25;
    font-weight: 800;
}

.article-body h2 span {
    color: var(--blue);
}

.article-body h3 {
    margin: 32px 0 12px;
    color: var(--navy-dark);
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 800;
}

.article-body p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   ARTICLE HIGHLIGHT
========================================================= */

.article-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 35px 0 45px;
    padding: 27px 30px;
    background: var(--light);
    border-left: 4px solid var(--blue);
    border-radius: 8px;
}

.article-highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--white);
    border-radius: 9px;
    font-size: 20px;
}

.article-highlight-box strong {
    display: block;
    margin: 2px 0 5px;
    color: var(--navy-dark);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 800;
}

.article-highlight-box p {
    margin: 0;
    font-size: 13px;
}


/* =========================================================
   NUMBER CARDS
========================================================= */

.article-number-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 35px 0 50px;
}

.article-number-card {
    padding: 25px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.article-number-card span {
    display: block;
    margin-bottom: 15px;
    color: var(--blue);
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    font-weight: 800;
}

.article-number-card h4 {
    margin: 0 0 8px;
    color: var(--navy-dark);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 800;
}

.article-number-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   ARTICLE CONCLUSION
========================================================= */

.article-conclusion {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
    padding: 38px 40px;
    background: var(--navy-dark);
    border-radius: 14px;
}

.article-conclusion::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -90px;
    top: -90px;
    border: 35px solid rgba(212, 160, 23, .14);
    border-radius: 50%;
}

.article-conclusion-label {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 12px;
    color: #E7C65A;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.article-conclusion h3 {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 0 12px;
    color: var(--white);
    font-size: 24px;
}

.article-conclusion p {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, .70);
}


/* =========================================================
   SHARE
========================================================= */

.article-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.article-share > span {
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.article-share-links {
    display: flex;
    gap: 8px;
}

.article-share-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    color: var(--navy);
    border-radius: 50%;
    text-decoration: none;
    transition: .3s ease;
}

.article-share-links a:hover {
    background: var(--navy);
    color: var(--white);
}


/* =========================================================
   ARTICLE SIDEBAR
========================================================= */

.article-sidebar {
    position: sticky;
    top: 145px;
}

.article-sidebar-box {
    margin-bottom: 22px;
    padding: 28px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.article-sidebar-label {
    display: block;
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.article-sidebar-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.article-sidebar-box ul li {
    border-bottom: 1px solid var(--border);
}

.article-sidebar-box ul li:last-child {
    border-bottom: 0;
}

.article-sidebar-box ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 13px 0;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    transition: .25s ease;
}

.article-sidebar-box ul li a::after {
    content: "\F135";
    font-family: bootstrap-icons;
    color: var(--blue);
    font-size: 12px;
}

.article-sidebar-box ul li a:hover {
    color: var(--blue);
}


/* SIDEBAR CONTACT */

.article-sidebar-contact {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
}

.article-sidebar-contact-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 160, 23, .18);
    color: #E7C65A;
    border-radius: 9px;
    font-size: 20px;
}

.article-sidebar-contact .article-sidebar-label {
    color: #E7C65A;
}

.article-sidebar-contact h3 {
    margin: 0 0 12px;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 800;
}

.article-sidebar-contact p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, .66);
    font-size: 13px;
    line-height: 1.7;
}

.article-sidebar-contact > a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.article-sidebar-contact > a i {
    color: #E7C65A;
    transition: .3s ease;
}

.article-sidebar-contact > a:hover i {
    transform: translateX(4px);
}


/* =========================================================
   RELATED ARTICLES
========================================================= */

.related-articles-section {
    padding: 95px 0 105px;
    background: var(--light);
}

.related-articles-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.related-articles-heading h2 {
    margin: 10px 0 0;
    color: var(--navy-dark);
    font-family: "Manrope", sans-serif;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
}

.related-articles-heading h2 span {
    color: var(--blue);
}

.related-all-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.related-all-link i {
    color: var(--blue);
    transition: .3s ease;
}

.related-all-link:hover {
    color: var(--blue);
}

.related-all-link:hover i {
    transform: translateX(4px);
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.related-article-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 15px;
    transition: .35s ease;
}

.related-article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .09);
}

.related-article-image {
    height: 220px;
    overflow: hidden;
}

.related-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.related-article-card:hover .related-article-image img {
    transform: scale(1.05);
}

.related-article-content {
    padding: 26px;
}

.related-article-content > span {
    display: block;
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.related-article-content h3 {
    min-height: 60px;
    margin: 0 0 20px;
    color: var(--navy-dark);
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 800;
}

.related-article-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.related-article-content a i {
    color: var(--blue);
    transition: .3s ease;
}

.related-article-content a:hover {
    color: var(--blue);
}

.related-article-content a:hover i {
    transform: translate(3px, -3px);
}
/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-hero {
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .96) 0%,
            rgba(11, 11, 11, .88) 50%,
            rgba(11, 11, 11, .62) 100%
        ),
        url("../images/home/insight-process.png") center/cover no-repeat;
}


/* =========================================================
   CONTACT INTRO
========================================================= */

.contact-intro-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-intro-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 75px;
    align-items: center;
}

.contact-intro-content h2 {
    margin: 13px 0 22px;
    color: var(--navy-dark);
    font-family: "Manrope", sans-serif;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
}

.contact-intro-content h2 span {
    color: var(--blue);
}

.contact-intro-content p {
    max-width: 760px;
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
}

.contact-intro-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 25px;
    margin-top: 28px;
}

.contact-intro-point {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
}

.contact-intro-point i {
    color: var(--blue);
    font-size: 17px;
}


/* INTRO CARD */

.contact-intro-card {
    position: relative;
    overflow: hidden;
    padding: 45px;
    background: var(--navy-dark);
    border-radius: 18px;
}

.contact-intro-card::after {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    right: -100px;
    bottom: -100px;
    border: 45px solid rgba(212, 160, 23, .15);
    border-radius: 50%;
}

.contact-intro-card-icon {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 160, 23, .18);
    color: #E7C65A;
    border-radius: 11px;
    font-size: 24px;
}

.contact-intro-card > span {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 12px;
    color: #E7C65A;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.contact-intro-card h3 {
    position: relative;
    z-index: 2;
    max-width: 420px;
    margin: 0 0 15px;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: 26px;
    line-height: 1.35;
    font-weight: 800;
}

.contact-intro-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 27px;
    color: rgba(255, 255, 255, .67);
    font-size: 14px;
    line-height: 1.7;
}

.contact-intro-card a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 13px 18px;
    background: var(--blue);
    color: var(--white);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: .3s ease;
}

.contact-intro-card a:hover {
    background: var(--blue-dark);
}


/* =========================================================
   CONTACT INFO
========================================================= */

.contact-info-section {
    padding: 95px 0;
    background: var(--light);
}

.contact-section-heading {
    max-width: 720px;
    margin-bottom: 40px;
}

.contact-section-heading h2 {
    margin: 11px 0 13px;
    color: var(--navy-dark);
    font-family: "Manrope", sans-serif;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
}

.contact-section-heading h2 span {
    color: var(--blue);
}

.contact-section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    min-height: 155px;
    padding: 25px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 13px;
    transition: .3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 160, 23, .25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .07);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 160, 23, .09);
    color: var(--blue);
    border-radius: 8px;
    font-size: 18px;
}

.contact-info-card span {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.contact-info-card h3 {
    margin: 0 0 13px;
    color: var(--navy-dark);
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
    word-break: break-word;
}

.contact-info-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}

.contact-info-card a i {
    transition: .3s ease;
}

.contact-info-card a:hover i {
    transform: translate(2px, -2px);
}


/* =========================================================
   MAIN ENQUIRY AREA
========================================================= */

.contact-main-section {
    padding: 105px 0;
    background: var(--white);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 75px;
    align-items: start;
}

.contact-main-content {
    padding-top: 12px;
}

.contact-main-content h2 {
    margin: 12px 0 20px;
    color: var(--navy-dark);
    font-family: "Manrope", sans-serif;
    font-size: 40px;
    line-height: 1.18;
    font-weight: 800;
}

.contact-main-content h2 span {
    color: var(--blue);
}

.contact-main-content > p {
    max-width: 580px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
}


/* ENQUIRY LIST */

.contact-enquiry-list {
    margin-top: 35px;
}

.contact-enquiry-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.contact-enquiry-item:first-child {
    border-top: 1px solid var(--border);
}

.contact-enquiry-number {
    flex-shrink: 0;
    color: var(--blue);
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 800;
}

.contact-enquiry-item h4 {
    margin: 0 0 6px;
    color: var(--navy-dark);
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 800;
}

.contact-enquiry-item p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}


/* DIRECT CONTACT */

.contact-direct-box {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: 32px;
    padding: 20px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 11px;
}

.contact-direct-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--white);
    border-radius: 8px;
    font-size: 19px;
}

.contact-direct-box span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.contact-direct-box strong {
    display: block;
    margin-bottom: 5px;
    color: var(--navy-dark);
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 800;
}

.contact-direct-box a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}

.contact-direct-box a i {
    transition: .3s ease;
}

.contact-direct-box a:hover i {
    transform: translateX(4px);
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-wrap {
    padding: 42px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 17px;
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-header > span {
    display: block;
    margin-bottom: 9px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.contact-form-header h3 {
    margin: 0 0 10px;
    color: var(--navy-dark);
    font-family: "Manrope", sans-serif;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 800;
}

.contact-form-header p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form-group {
    margin-bottom: 19px;
}

.contact-form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--navy-dark);
    font-size: 11px;
    font-weight: 800;
}

.contact-form-group label span {
    color: #d33a3a;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;
    padding: 13px 14px;
    background: var(--white);
    border: 1px solid #dce4eb;
    border-radius: 6px;
    color: var(--navy-dark);
    font-family: "Inter", sans-serif;
    font-size: 13px;
    outline: none;
    transition: .25s ease;
}

.contact-form-group input,
.contact-form-group select {
    height: 46px;
}

.contact-form-group textarea {
    min-height: 145px;
    resize: vertical;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: #777777;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, .08);
}

.contact-form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 5px;
}

.contact-form-bottom p {
    max-width: 330px;
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.5;
}

.contact-form-bottom p i {
    margin-right: 5px;
    color: var(--blue);
}

.contact-submit-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 14px 20px;
    background: var(--navy);
    border: 0;
    border-radius: 6px;
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: .3s ease;
}

.contact-submit-btn i {
    font-size: 16px;
    transition: .3s ease;
}

.contact-submit-btn:hover {
    background: var(--blue);
}

.contact-submit-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   LOCATION
========================================================= */

.contact-location-section {
    padding: 100px 0;
    background: var(--light);
}

.contact-location-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 65px;
    align-items: stretch;
}

.contact-location-content h2 {
    margin: 12px 0 20px;
    color: var(--navy-dark);
    font-family: "Manrope", sans-serif;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
}

.contact-location-content h2 span {
    color: var(--blue);
}

.contact-location-content > p {
    max-width: 560px;
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.contact-address {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 23px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 11px;
}

.contact-address-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 160, 23, .09);
    color: var(--blue);
    border-radius: 8px;
    font-size: 18px;
}

.contact-address span {
    display: block;
    margin-bottom: 8px;
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.contact-address p {
    margin: 0;
    color: var(--navy);
    font-size: 13px;
    line-height: 1.7;
    font-weight: 600;
}

.contact-location-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 25px;
    margin-top: 22px;
}

.contact-location-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.contact-location-links a i {
    color: var(--blue);
}

.contact-location-links a:hover {
    color: var(--blue);
}


/* MAP */

.contact-map {
    min-height: 430px;
    overflow: hidden;
    position: relative;
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, .97),
            rgba(21, 21, 21, .94)
        );
}

.contact-map::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );
    background-size: 45px 45px;
}

.contact-map::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -110px;
    top: -110px;
    border: 55px solid rgba(212, 160, 23, .15);
    border-radius: 50%;
}

.contact-map-placeholder {
    position: relative;
    z-index: 2;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 40px;
}

.contact-map-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    font-size: 25px;
    box-shadow: 0 12px 35px rgba(0,0,0,.2);
}

.contact-map-placeholder > span {
    margin-bottom: 8px;
    color: #E7C65A;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.contact-map-placeholder h3 {
    margin: 0 0 10px;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-weight: 800;
}

.contact-map-placeholder p {
    margin: 0 0 22px;
    color: rgba(255,255,255,.67);
    font-size: 13px;
    line-height: 1.7;
}

.contact-map-placeholder a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 17px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 6px;
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    transition: .3s ease;
}

.contact-map-placeholder a:hover {
    background: var(--white);
    color: var(--navy);
}


/* =========================================================
   SUPPORT STRIP
========================================================= */

.contact-support-section {
    padding: 0;
    background: var(--navy);
}

.contact-support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.contact-support-item {
    display: flex;
    align-items: center;
    gap: 17px;
    min-height: 105px;
    padding: 22px 30px;
    border-right: 1px solid rgba(255,255,255,.10);
}

.contact-support-item:last-child {
    border-right: 0;
}

.contact-support-item > i {
    color: #E7C65A;
    font-size: 23px;
}

.contact-support-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.contact-support-item span {
    display: block;
    color: rgba(255,255,255,.58);
    font-size: 11px;
}
/* =========================================
   PREMIUM PRIMARY BUTTON
========================================= */

.btn.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    padding: 14px 22px;

    background: linear-gradient(
        135deg,
        #D4A017 0%,
        #B8860B 100%
    );

    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 6px;

    color: #ffffff !important;

    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    text-decoration: none !important;

    box-shadow:
        0 8px 20px rgba(184, 134, 11, .20),
        inset 0 1px 0 rgba(255, 255, 255, .16);

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}


/* Shine effect */

.btn.btn-primary::before {
    content: "";
    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, .16),
        transparent
    );

    transform: skewX(-20deg);

    transition: left .6s ease;
}


/* Text + Icon above shine */

.btn.btn-primary {
    isolation: isolate;
}

.btn.btn-primary i,
.btn.btn-primary {
    z-index: 1;
}


/* Arrow */

.btn.btn-primary i {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;

    transition:
        transform .3s ease;
}


/* Hover */

.btn.btn-primary:hover {
    background: linear-gradient(
        135deg,
        #E7C65A 0%,
        #D4A017 100%
    );

    transform: translateY(-2px);

    box-shadow:
        0 13px 28px rgba(184, 134, 11, .28),
        inset 0 1px 0 rgba(255, 255, 255, .18);
}


.btn.btn-primary:hover::before {
    left: 140%;
}


.btn.btn-primary:hover i {
    transform: translateX(5px);
}


/* Active */

.btn.btn-primary:active {
    transform: translateY(0);
    box-shadow:
        0 6px 14px rgba(184, 134, 11, .18);
}


/* =========================================================
   PHARMA & SANITARY PAGE - PREMIUM VERSION
========================================================= */

/* HERO */
.pharma-page-hero {
    position: relative;
    min-height: 510px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.97) 0%,
            rgba(0,0,0,.91) 35%,
            rgba(0,0,0,.60) 68%,
            rgba(0,0,0,.28) 100%
        ),
        url('../images/home/product-pharma-sanitary.png') center center / cover no-repeat;
}

.pharma-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(212,160,23,.20),
            transparent 48%
        );
}

.pharma-page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(212,160,23,.20),
            transparent 35%
        );
}

.pharma-page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 95px 0;
}

.pharma-page-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
    color: rgba(255,255,255,.62);
    font-size: 11px;
}

.pharma-page-breadcrumb a {
    color: rgba(255,255,255,.72);
    text-decoration: none;
    transition: color .25s ease;
}

.pharma-page-breadcrumb a:hover {
    color: #E7C65A;
}

.pharma-page-breadcrumb i {
    color: rgba(255,255,255,.35);
    font-size: 10px;
}

.pharma-page-breadcrumb span {
    color: #E7C65A;
}

.pharma-page-eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #E7C65A;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.pharma-page-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: #E7C65A;
}

.pharma-page-hero h1 {
    margin: 16px 0 21px;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 55px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.8px;
}

.pharma-page-hero h1 span {
    display: block;
    color: #E7C65A;
}

.pharma-page-hero p {
    max-width: 690px;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 16px;
    line-height: 1.8;
}

.pharma-page-hero-actions {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 31px;
}

.pharma-page-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 46px;
    padding: 0 21px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 6px;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all .3s ease;
}

.pharma-page-outline-btn:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(255,255,255,.52);
    transform: translateY(-2px);
}

.pharma-page-outline-btn i {
    transition: transform .3s ease;
}

.pharma-page-outline-btn:hover i {
    transform: translate(3px,-3px);
}


/* =========================================================
   OVERVIEW
========================================================= */

.pharma-overview-section {
    background: #fff;
}

.pharma-overview-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 78px;
    align-items: center;
}

.pharma-overview-image {
    position: relative;
}

.pharma-overview-image-wrap {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 22px 55px rgba(0,0,0,.14);
}

.pharma-overview-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(0,0,0,.28) 100%
        );
}

.pharma-overview-image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.pharma-overview-tag {
    position: absolute;
    right: -20px;
    bottom: 30px;
    z-index: 3;
    min-width: 155px;
    padding: 18px 21px;
    background: var(--navy);
    border-left: 4px solid var(--blue);
    border-radius: 7px;
    box-shadow: 0 15px 35px rgba(0,0,0,.22);
}

.pharma-overview-tag span,
.pharma-overview-tag small {
    display: block;
    color: rgba(255,255,255,.56);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.pharma-overview-tag strong {
    display: block;
    margin: 2px 0;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.pharma-overview-content h2 {
    margin: 13px 0 22px;
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 43px;
    line-height: 1.13;
    font-weight: 800;
    letter-spacing: -1px;
}

.pharma-overview-content h2 span {
    color: var(--blue);
}

.pharma-overview-content p {
    margin-bottom: 17px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.pharma-overview-content .pharma-overview-lead {
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
}

.pharma-overview-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 28px;
    margin-top: 28px;
}

.pharma-overview-points > div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
}

.pharma-overview-points i {
    color: var(--blue);
    font-size: 16px;
}


/* =========================================================
   PORTFOLIO
========================================================= */

.pharma-portfolio-section {
    background: var(--light);
}

.pharma-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 45px;
    margin-bottom: 38px;
}

.pharma-section-head h2 {
    margin: 12px 0 0;
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}

.pharma-section-head h2 span {
    color: var(--blue);
}

.pharma-section-head > p {
    max-width: 500px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.pharma-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.pharma-product-item {
    position: relative;
    min-height: 220px;
    padding: 27px 27px 25px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.pharma-product-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--blue);
    transition: height .3s ease;
}

.pharma-product-item:hover {
    transform: translateY(-6px);
    border-color: rgba(212,160,23,.28);
    box-shadow: 0 18px 38px rgba(0,0,0,.10);
}

.pharma-product-item:hover::before {
    height: 100%;
}

.pharma-product-no {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #E7E7E5;
    font-family: "Manrope", sans-serif;
    font-size: 26px;
    font-weight: 800;
}

.pharma-product-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 8px;
    background: rgba(212,160,23,.08);
    color: var(--blue);
    font-size: 19px;
}

.pharma-product-item h3 {
    margin: 0 30px 10px 0;
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 800;
}

.pharma-product-item p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.72;
}


/* =========================================================
   PROCESS
========================================================= */

.pharma-process-section {
    background: #fff;
}

.pharma-process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    align-items: center;
}

.pharma-process-content h2 {
    margin: 12px 0 22px;
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}

.pharma-process-content h2 span {
    color: var(--blue);
}

.pharma-process-content p {
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.pharma-process-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 25px;
    margin: 27px 0 29px;
}

.pharma-process-points > div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
}

.pharma-process-points i {
    color: var(--blue);
    font-size: 14px;
}

.pharma-dark-btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 14px 21px;
    border-radius: 6px;
    background: var(--navy);
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all .3s ease;
}

.pharma-dark-btn:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

.pharma-dark-btn i {
    transition: transform .3s ease;
}

.pharma-dark-btn:hover i {
    transform: translateX(5px);
}

.pharma-process-visual {
    position: relative;
}

.pharma-process-image {
    height: 490px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 22px 55px rgba(0,0,0,.14);
}

.pharma-process-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.pharma-process-card {
    position: absolute;
    left: -25px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 245px;
    padding: 15px 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 14px 35px rgba(0,0,0,.15);
}

.pharma-process-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    border-radius: 50%;
    background: rgba(212,160,23,.08);
    color: var(--blue);
}

.pharma-process-card strong {
    display: block;
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.pharma-process-card span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 10px;
}


/* =========================================================
   APPLICATIONS
========================================================= */

.pharma-applications-section {
    background: var(--light);
}

.pharma-application-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.pharma-application-card {
    position: relative;
    min-height: 245px;
    padding: 28px 25px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: all .3s ease;
}

.pharma-application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 17px 35px rgba(0,0,0,.09);
}

.pharma-application-card > span {
    position: absolute;
    top: 17px;
    right: 19px;
    color: #E5E5E3;
    font-family: "Manrope", sans-serif;
    font-size: 25px;
    font-weight: 800;
}

.pharma-application-card > i {
    display: block;
    margin-bottom: 20px;
    color: var(--blue);
    font-size: 26px;
}

.pharma-application-card h3 {
    margin: 0 20px 11px 0;
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
}

.pharma-application-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   FINAL CTA
========================================================= */

.pharma-final-section {
    background: #fff;
}

.pharma-final-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px 55px;
    background:
        radial-gradient(
            circle at 92% 15%,
            rgba(212,160,23,.22),
            transparent 33%
        ),
        var(--navy);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.14);
}

.pharma-final-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--blue);
}

.pharma-final-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.pharma-final-content > span {
    display: block;
    margin-bottom: 9px;
    color: #E7C65A;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.pharma-final-content h2 {
    margin: 0 0 10px;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 31px;
    line-height: 1.2;
    font-weight: 800;
}

.pharma-final-content h2 strong {
    color: #E7C65A;
}

.pharma-final-content p {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.67);
    font-size: 12px;
    line-height: 1.75;
}

.pharma-final-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    flex: 0 0 auto;
    padding: 14px 21px;
    border-radius: 6px;
    background: var(--blue);
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all .3s ease;
}

.pharma-final-btn:hover {
    background: #E7C65A;
    transform: translateY(-2px);
}

.pharma-final-btn i {
    transition: transform .3s ease;
}

.pharma-final-btn:hover i {
    transform: translate(3px,-3px);
}