width: 85px;
height: 85px; /* ─── FONT FAMILY ─── */
@font-face {
    font-family: 'inter';
    src: url('../fonts/inter.ttf') format('truetype');
}

@font-face {
    font-family: 'barlow';
    src: url('../fonts/barlow.ttf') format('truetype');
}
/* ─── CSS VARIABLES ─── */
:root {
    --font-body: 'inter', sans-serif;
    --font-head: 'barlow', sans-serif;
    --navy: #1A2B4A;
    --orange: #E8701A;
    --orange-light: #F5832E;
    --light-bg: #F5F7FA;
    --dark-bg: #0D1B2A;
    --text-light: #2D3748;
    --text-dark: #E2E8F0;
    --white: #FFFFFF;
    --mid-grey: #8899AA;
    --card-bg: #FFFFFF;
    --theme-bg: #FFFFFF;
    --border: #E2E8F0;
    --shadow: 0 4px 24px rgba(26,43,74,0.10);
    --nav-bg: rgba(26,43,74,0.97);
    --section-alt: #EEF2F7;
    --orange-muted: rgba(232,112,26,0.12);
}

[data-theme="dark"] {
    --light-bg: #0D1B2A;
    --text-light: #E2E8F0;
    --card-bg: #1A2B4A;
    --theme-bg: #0D1B2A;
    --border: #2D3E55;
    --shadow: 0 4px 24px rgba(0,0,0,0.2);
    --section-alt: #112035;
    --orange-muted: rgba(232,112,26,0.18);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    transition: background 0.3s, color 0.3s;
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

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

img {
    max-width: 100%;
}

ul {
    list-style: none;
}

/* ─── NAVIGATION ─── */
.main-nav {
    background-color: var(--white);
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--orange);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 68px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .nav-logo img {
        height: 66px;
        width: auto;
        margin: 5px 0px 0px 0px;
    }

[data-theme="dark"] .nav-logo img {
    filter: brightness(0) invert(1);
}

.nav-logo-text {
    color: var(--navy);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.2;
}

    .nav-logo-text span {
        color: var(--orange);
        font-size: 0.75rem;
        font-weight: 400;
        display: block;
        letter-spacing: 0.06em;
    }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-item {
    position: relative;
}

    .nav-item > a {
        color: var(--navy);
        font-size: 0.9rem;
        font-weight: 500;
        padding: 0.5rem 0.85rem;
        display: block;
        border-radius: 4px;
        transition: color 0.2s, background 0.2s;
        letter-spacing: 0.02em;
    }

        .nav-item > a:hover, .nav-item > a.active {
            color: var(--orange);
        }

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #1A2B4A;
    border-top: 3px solid var(--orange);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: all 0.2s ease;
    z-index: 100;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    color: #DDEEFF;
    font-size: 0.875rem;
    padding: 0.65rem 1.2rem;
    transition: background 0.15s, color 0.15s;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

    .dropdown a:hover {
        background: rgba(232,112,26,0.15);
        color: var(--orange);
    }

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-nav-cta {
    background: var(--orange);
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    transition: background 0.2s, transform 0.15s;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

    .btn-nav-cta:hover {
        background: var(--orange-light);
        transform: translateY(-1px);
    }

/* ─── THEME TOGGLE SWITCH ─── */
.theme-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.theme-icon {
    font-size: 0.85rem;
    line-height: 1;
    transition: color 0.3s;
}

.theme-icon-light {
    color: var(--navy);
}

.theme-icon-dark {
    color: var(--mid-grey);
}

[data-theme="dark"] .theme-icon-light {
    color: var(--mid-grey);
}

[data-theme="dark"] .theme-icon-dark {
    color: #FFFFFF;
}

.theme-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    cursor: pointer;
}

    .theme-switch input {
        opacity: 0;
        width: 0;
        height: 0;
        position: absolute;
    }

.theme-slider {
    position: absolute;
    inset: 0;
    background: var(--border);
    border-radius: 24px;
    transition: background 0.3s;
    border: 1px solid rgba(0,0,0,0.10);
}

    .theme-slider::before {
        content: '';
        position: absolute;
        width: 18px;
        height: 18px;
        left: 2px;
        top: 50%;
        transform: translateY(-50%);
        background: var(--navy);
        border-radius: 50%;
        transition: transform 0.3s, background 0.3s;
        box-shadow: 0 1px 4px rgba(0,0,0,0.18);
    }

.theme-switch input:checked + .theme-slider {
    background: var(--navy);
    border-color: var(--navy);
}

    .theme-switch input:checked + .theme-slider::before {
        transform: translateY(-50%) translateX(20px);
        background: var(--orange);
    }

.theme-switch input:focus-visible + .theme-slider {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--navy);
        border-radius: 2px;
        transition: all 0.3s;
    }

.theme-bg {
    background-color: var(--theme-bg);
}
/* ─── HERO ─── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 740px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 68px;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none; /* allow clicks to reach arrows/dots above */
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

    .hero-slide.active {
        opacity: 1;
    }

    .hero-slide:nth-child(1) {
        background: linear-gradient(135deg, #1A2B4A 0%, #0D3A6E 40%, #1A2B4A 100%);
    }

    .hero-slide:nth-child(2) {
        background: linear-gradient(135deg, #0D3A6E 0%, #1A4A7A 50%, #0D1B2A 100%);
    }

    .hero-slide:nth-child(3) {
        background: linear-gradient(135deg, #112040 0%, #1A3560 40%, #0D2845 100%);
    }

    .hero-slide:nth-child(4) {
        background: linear-gradient(135deg, #0A1F3A 0%, #1A2B4A 60%, #152038 100%);
    }

    .hero-slide:nth-child(5) {
        background: linear-gradient(135deg, #1A2B4A 0%, #0F2540 50%, #1A3055 100%);
    }

.hero-pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: repeating-linear-gradient(90deg, rgba(232,112,26,0.04) 0px, rgba(232,112,26,0.04) 1px, transparent 1px, transparent 60px), repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 60px);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(13,27,42,0.82) 0%, rgba(13,27,42,0.5) 60%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem 2rem; /* bottom padding keeps stats above the dot nav */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* push stats to bottom of available space */
    height: 100%; /* fill hero flex height so justify-content works */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,112,26,0.18);
    border: 1px solid rgba(232,112,26,0.4);
    color: var(--orange-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero h1 {
    color: #FFFFFF;
    font-size: clamp(2rem, 5vw, 3.8rem);
    margin-bottom: 1.25rem;
}

    .hero h1 span {
        color: var(--orange);
    }

.hero-sub {
    color: rgba(255,255,255,0.82);
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 560px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    border: 2px solid var(--orange);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-body);
    display: inline-block;
}

    .btn-primary:hover {
        background: var(--orange-light);
        border-color: var(--orange-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(232,112,26,0.3);
    }

.btn-outline {
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-body);
    display: inline-block;
}

    .btn-outline:hover {
        border-color: #fff;
        background: rgba(255,255,255,0.08);
        transform: translateY(-2px);
    }

.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: left;
}

.hero-stat-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
}

.hero-stat-label {
    color: rgba(255,255,255,0.65);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-stat-sep {
    width: 1px;
    background: rgba(255,255,255,0.15);
    align-self: stretch;
}

.hero-nav {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

    .hero-dot.active {
        background: var(--orange);
        width: 24px;
        border-radius: 4px;
    }

.hero-arrow {
    position: absolute;
    top: 67%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

    .hero-arrow:hover {
        background: rgba(232,112,26,0.5);
    }

    .hero-arrow.prev {
        left: 2rem;
    }

    .hero-arrow.next {
        right: 2rem;
    }

/* ─── SECTION COMMONS ─── */
section {
    padding: 5rem 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.75rem;
}

    .section-label::before {
        content: '';
        width: 28px;
        height: 2px;
        background: var(--orange);
    }

.section-title {
    color: var(--navy);
    margin-bottom: 1rem;
}

[data-theme="dark"] .section-title {
    color: var(--text-dark);
}

.section-sub {
    color: var(--mid-grey);
    max-width: 540px;
    font-size: 1.05rem;
}

.section-header {
    margin-bottom: 3.5rem;
}

    .section-header.center {
        text-align: center;
    }

        .section-header.center .section-label {
            justify-content: center;
        }

            .section-header.center .section-label::before {
                display: none;
            }

        .section-header.center .section-sub {
            margin: 0 auto;
        }

/* ─── ABOUT SNAPSHOT ─── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text p {
    color: var(--mid-grey);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.visat-acronym {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 2rem 0;
}

.visat-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.visat-letter {
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--orange);
    border-radius: 8px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

[data-theme="dark"] .visat-letter {
    background: rgba(232,112,26,0.15);
}

.visat-meaning {
    font-size: 0.95rem;
    color: var(--text-light);
}

    .visat-meaning strong {
        color: var(--navy);
        font-weight: 600;
    }

[data-theme="dark"] .visat-meaning strong {
    color: var(--orange);
}

.about-visual {
    position: relative;
}

.about-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.about-card-header {
    background: var(--navy);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

    .about-card-header::after {
        content: '';
        position: absolute;
        bottom: -30px;
        right: -30px;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: rgba(232,112,26,0.15);
    }

.about-card-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin-bottom: 1.25rem;
}

.about-card-header h3 {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.about-card-header p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.about-card-body {
    padding: 2rem 2.5rem;
}

.about-stat-row {
    display: flex;
    gap: 2rem;
}

.about-stat {
    text-align: center;
    flex: 1;
}

.about-stat-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
}

.about-stat-label {
    font-size: 0.78rem;
    color: var(--mid-grey);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.about-since {
    background: var(--orange-muted);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-since-year {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange);
}

.about-since-text {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ─── SERVICES ─── */
.services-bg {
    background: var(--section-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--orange);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s;
    }

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(26,43,74,0.15);
        border-color: var(--orange);
    }

        .service-card:hover::before {
            transform: scaleX(1);
        }

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--orange-muted);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.6rem;
}

.service-card h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

[data-theme="dark"] .service-card h3 {
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.88rem;
    color: var(--mid-grey);
    line-height: 1.7;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1.25rem;
    transition: gap 0.2s;
}

.service-card:hover .service-card-link {
    gap: 10px;
}

/* ─── WHY CHOOSE US ─── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-illustration {
    position: relative;
    padding: 2rem;
}

.why-bg-circle {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    /*background: linear-gradient(135deg, var(--navy) 0%, #2D4A7A 100%);*/
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url(../images/general/robot-bird.jpg);
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

    .why-bg-circle::after {
        content: '';
        position: absolute;
        inset: -16px;
        border-radius: 50%;
        border: 2px dashed rgba(232,112,26,0.25);
    }

.why-center-icon {
    font-size: 0rem;
}

.why-float-badge {
    position: absolute;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    border: 1px solid var(--border);
}

[data-theme="dark"] .why-float-badge {
    color: var(--text-dark);
}

.why-float-badge .badge-icon {
    font-size: 1.2rem;
}

.badge-1 {
    top: 10%;
    left: -10%;
}

.badge-2 {
    top: 10%;
    right: -8%;
}

.badge-3 {
    bottom: 15%;
    left: -5%;
}

.badge-4 {
    bottom: 15%;
    right: -10%;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.why-feature {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .why-feature:hover {
        border-color: var(--orange);
        box-shadow: 0 4px 16px rgba(232,112,26,0.12);
    }

.why-feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.why-feature-text h3 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

[data-theme="dark"] .why-feature-text h3 {
    color: var(--text-dark);
}

.why-feature-text p {
    font-size: 0.875rem;
    color: var(--mid-grey);
}

/* ─── INDUSTRIES ─── */
.industries-bg {
    background: var(--section-alt);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
}

.industry-tile {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem 1.25rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.25s;
    cursor: default;
}

    .industry-tile:hover {
        background: var(--navy);
        border-color: var(--navy);
        transform: translateY(-4px);
    }

        .industry-tile:hover .industry-icon {
            background: rgba(232,112,26,0.2);
        }

        .industry-tile:hover .industry-name {
            color: #fff;
        }

        .industry-tile:hover .industry-desc {
            color: rgba(255,255,255,0.65);
        }

.industry-icon {
    width: 60px;
    height: 60px;
    background: var(--orange-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
    transition: background 0.25s;
}

.industry-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.4rem;
    transition: color 0.25s;
}

[data-theme="dark"] .industry-name {
    color: var(--text-dark);
}

.industry-desc {
    font-size: 0.75rem;
    color: var(--mid-grey);
    transition: color 0.25s;
    line-height: 1.5;
}

/* ─── CAPABILITIES STRIP ─── */
.capabilities-strip {
    background: var(--navy);
    padding: 4rem 0;
}

.cap-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.cap-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s;
}

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

    .cap-item:hover {
        background: rgba(232,112,26,0.1);
    }

.cap-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.cap-num {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--orange);
    display: block;
    margin-bottom: 0.25rem;
}

.cap-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.cap-sub {
    color: rgba(255,255,255,0.45);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* ─── CUSTOMERS ─── */
.customers-track-wrap {
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
}

    .customers-track-wrap::before, .customers-track-wrap::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100px;
        z-index: 2;
    }

    .customers-track-wrap::before {
        left: 0;
        background: linear-gradient(to right, var(--light-bg), transparent);
    }

    .customers-track-wrap::after {
        right: 0;
        background: linear-gradient(to left, var(--light-bg), transparent);
    }

.customers-track {
    display: flex;
    gap: 2rem;
    animation: scroll-customers 28s linear infinite;
    width: max-content;
}

.customers-track-wrap:hover .customers-track {
    animation-play-state: paused;
}

@keyframes scroll-customers {
    from {
        transform: translateX(0);
    }

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

.customer-logo {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 85px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
    transition: border-color 0.2s;
}

[data-theme="dark"] .customer-logo {
    color: var(--text-dark);
    background: #fff;
}

.customer-logo:hover {
    border-color: var(--orange);
}

.customer-logo img {
    width: 125px;
}

@media (max-width: 767px) {
    .customer-logo {
        min-width: 150px;
    }

        .customer-logo img {
            width: 100px;
        }
}


/* ─── CTA BANNER ─── */
.cta-banner {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.5)), url(../images/general/cta-banner.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-banner::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
    }

    .cta-banner::after {
        content: '';
        position: absolute;
        bottom: -40px;
        left: -40px;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(255,255,255,0.06);
    }

    .cta-banner h2 {
        color: #fff;
        font-size: 2.4rem;
        margin-bottom: 0.75rem;
        position: relative;
        z-index: 1;
    }

    .cta-banner p {
        color: rgba(255,255,255,0.85);
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        position: relative;
        z-index: 1;
    }

.cta-banner-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.btn-white {
    background: #fff;
    color: var(--orange);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    border: 2px solid #fff;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-body);
    display: inline-block;
}

    .btn-white:hover {
        background: transparent;
        color: #fff;
        transform: translateY(-2px);
    }

.btn-outline-white {
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-body);
    display: inline-block;
}

    .btn-outline-white:hover {
        border-color: #fff;
        background: rgba(255,255,255,0.1);
        transform: translateY(-2px);
    }

/* ─── FOOTER ─── */
footer {
    background: var(--dark-bg);
    color: var(--text-dark);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo {
    height: 65px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    transition: all 0.2s;
}

    .social-link:hover {
        background: var(--orange);
        border-color: var(--orange);
        color: #fff;
    }

.footer-col h4 {
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

    .footer-col ul li a {
        color: rgba(255,255,255,0.55);
        font-size: 13px;
        transition: color 0.2s;
    }

        .footer-col ul li a:hover {
            color: var(--orange);
        }

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-contact-icon {
    color: var(--orange);
    font-size: 14px;
    flex-shrink: 0;
}

.footer-contact-text {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: gap;
}

.footer-bottom-copy {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

    .footer-bottom-links a {
        color: rgba(255,255,255,0.4);
        font-size: 0.8rem;
        transition: color 0.2s;
    }

        .footer-bottom-links a:hover {
            color: var(--orange);
        }

/* ─── LEADERSHIP (About sub) ─── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.team-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .team-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
    }

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), #2D4A7A);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
}

.team-card h3 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

[data-theme="dark"] .team-card h3 {
    color: var(--text-dark);
}

.team-card .team-role {
    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 600;
}

.team-card .team-desc {
    color: var(--mid-grey);
    font-size: 0.82rem;
    margin-top: 0.75rem;
    line-height: 1.6;
}

/* ─── CONTACT ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrap {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.25rem;
}

    .form-group label {
        display: block;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 0.5rem;
    }

[data-theme="dark"] .form-group label {
    color: var(--text-dark);
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-light);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

    .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
        border-color: var(--orange);
        box-shadow: 0 0 0 3px rgba(232,112,26,0.12);
    }

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .contact-info h3 {
    color: var(--text-dark);
}

.contact-info p {
    color: var(--mid-grey);
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--orange-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail-text h4 {
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

[data-theme="dark"] .contact-detail-text h4 {
    color: var(--text-dark);
}

.contact-detail-text p {
    font-size: 0.875rem;
    color: var(--mid-grey);
}

.contact-map-placeholder {
    margin-top: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--mid-grey);
    font-size: 0.9rem;
    flex-direction: column;
    gap: 0.5rem;
}

/* ─── PAGE SECTIONS TOGGLE ─── */
.page-section {
    display: none;
}

    .page-section.active {
        display: block;
    }

#home-section {
    display: block;
}

/* ─── MOBILE ─── */
@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cap-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .cap-item {
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--border);
        padding: 1rem;
        gap: 0;
    }

    .about-grid, .why-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat-num {
        font-size: 1.5rem;
    }

    .why-bg-circle {
        width: 260px;
        height: 260px;
    }

    .badge-1, .badge-2, .badge-3, .badge-4 {
        display: none;
    }

    .cta-banner-btns {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

/* ─── QUALITY / EHS SECTIONS ─── */
.policy-box {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    margin-bottom: 2rem;
}

    .policy-box h3 {
        color: var(--navy);
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

[data-theme="dark"] .policy-box h3 {
    color: var(--text-dark);
}

.policy-box p, .policy-box li {
    color: var(--mid-grey);
    font-size: 0.9rem;
    line-height: 1.8;
}

.policy-box ul {
    padding-left: 1.25rem;
    list-style: disc;
}

.policy-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.policy-pill {
    background: var(--orange-muted);
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
}

/* ─── CSR SECTION ─── */
.csr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.csr-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border);
    text-align: center;
}

.csr-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.csr-card h3 {
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

[data-theme="dark"] .csr-card h3 {
    color: var(--text-dark);
}

.csr-card p {
    color: var(--mid-grey);
    font-size: 0.875rem;
}

/* ─── GALLERY ─── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--section-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 1px solid var(--border);
    transition: transform 0.2s;
    cursor: pointer;
}

    .gallery-item:hover {
        transform: scale(1.03);
    }

/* ─── ACTIVE NAV ─── */
.nav-item > a.active-page {
    color: var(--orange);
}


/* ═══════════════════════════════════════════════════
   HERO PANEL SYSTEM (text content per slide)
   ═══════════════════════════════════════════════════ */

/* Each slide background covers the full hero */
.hero-slide.s1 {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../images/general/hero-1.jpg);
    background-position: center;
    background-size: cover;
}

.hero-slide.s2 {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../images/general/hero-2.jpg);
    background-position: center;
    background-size: cover;
}

.hero-slide.s3 {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../images/general/hero-3.jpg);
    background-position: center;
    background-size: cover;
}

.hero-slide.s4 {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../images/general/hero-4.jpg);
    background-position: center;
    background-size: cover;
}

.hero-slide.s5 {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../images/general/hero-5.jpg);
    background-position: center;
    background-size: cover;
}

/* Text panels — hidden by default */
.hero-panel {
    display: none;
    margin-bottom: 2.5rem;
    animation: heroPanelIn 0.55s ease forwards;
}

    .hero-panel.active {
        display: block;
    }

@keyframes heroPanelIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Spacing inside each panel */
.hero-panel .hero-badge {
    margin-bottom: 1.25rem;
}

.hero-panel h1 {
    margin-bottom: 1.25rem;
}

.hero-panel .hero-sub {
    margin-bottom: 2rem;
}

/* Arrow button pointer-events fix */
.hero-arrow {
    pointer-events: auto;
    z-index: 6;
}

/* Nav chevron */
.nav-chevron {
    font-size: 0.7rem;
    margin-left: 3px;
    vertical-align: middle;
    opacity: 0.75;
}

/* Dark mode nav */
[data-theme="dark"] .main-nav {
    background-color: var(--dark-bg);
}

[data-theme="dark"] .nav-item > a {
    color: var(--text-dark);
}

    [data-theme="dark"] .nav-item > a:hover,
    [data-theme="dark"] .nav-item > a.active-page {
        color: var(--orange);
    }

[data-theme="dark"] .hamburger span {
    background: #fff;
}

/* Icon colours inside service/industry/capability tiles */
.service-icon i {
    color: var(--orange);
    font-size: 1.5rem;
}

.industry-icon i {
    color: var(--orange);
    font-size: 1.6rem;
}

.cap-icon i {
    color: var(--orange);
    font-size: 2rem;
}

.why-feature-icon i {
    color: #fff;
    font-size: 1.3rem;
}

.why-center-icon i {
    color: #fff;
    font-size: 3rem;
}

.badge-icon i {
    color: var(--navy);
}

.service-3d-icon img {
    width: 100px;
}
/* Mobile hero adjustments */
@media (max-width: 768px) {
    .hero-arrow.prev {
        left: 0.75rem;
    }

    .hero-arrow.next {
        right: 0.75rem;
    }

    .hero-content {
        padding: 0 1.25rem 5rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT US SUBPAGE STYLES — Append to end of css/site.css
   ═══════════════════════════════════════════════════════════════════ */


/* ─── PAGE BANNER ──────────────────────────────────────────────── */
.page-banner {
    position: relative;
    height: 280px;
    display: flex;
    align-items: flex-end;
    margin-top: 68px; /* clears fixed nav */
    overflow: hidden;
}

.page-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 6s ease;
}

.page-banner:hover .page-banner-bg {
    transform: scale(1.0);
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13,27,42,0.85) 0%, rgba(13,27,42,0.55) 60%, rgba(26,43,74,0.4) 100%);
}

.page-banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 2.5rem;
}

.breadcrumb-nav {
    display: contents;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

    .breadcrumb-nav a {
        color: rgba(255,255,255,0.65);
        font-size: 0.7rem;
        transition: color 0.2s;
    }

        .breadcrumb-nav a:hover {
            color: var(--orange);
        }

.breadcrumb-sep {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
}

.breadcrumb-current {
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 600;
}

.page-banner-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.15;
}

.page-banner-sub {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.01em;
}


/* ─── 70/30 SUBPAGE LAYOUT ─────────────────────────────────────── */
.subpage-layout {
    padding: 4rem 0 5rem;
    background: var(--light-bg);
}

.subpage-grid {
    display: grid;
    grid-template-columns: 70fr 30fr;
    gap: 3rem;
    align-items: start;
}

.subpage-content {
    min-width: 0;
}

.subpage-sidebar {
    position: sticky;
    top: 88px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}


/* ─── SIDEBAR COMPONENTS ────────────────────────────────────────── */
.sidebar-nav-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.sidebar-nav-title {
    background: var(--navy);
    color: #ffffff;
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.9rem 1.25rem;
}

.sidebar-nav-list {
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

    .sidebar-nav-list li a {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        padding: 0.7rem 1.25rem;
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--text-light);
        border-left: 3px solid transparent;
        transition: all 0.18s;
        text-decoration: none;
    }

        .sidebar-nav-list li a i {
            color: var(--mid-grey);
            font-size: 0.75rem;
            transition: color 0.18s;
        }

        .sidebar-nav-list li a:hover {
            background: var(--orange-muted);
            color: var(--orange);
            border-left-color: var(--orange);
        }

            .sidebar-nav-list li a:hover i {
                color: var(--orange);
            }

    .sidebar-nav-list li + li a {
        border-top: 1px solid var(--border);
    }

    .sidebar-nav-list li.sidebar-nav-active a {
        background: var(--orange-muted);
        color: var(--orange);
        border-left-color: var(--orange);
        font-weight: 600;
    }

        .sidebar-nav-list li.sidebar-nav-active a i {
            color: var(--orange);
        }

.sidebar-stat-card {
    background: var(--navy);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-stat {
    display: flex;
    flex-direction: column;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

    .sidebar-stat:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

.sidebar-stat-num {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.sidebar-stat-label {
    color: rgba(255,255,255,0.65);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.sidebar-cta-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 0 0 1.5rem;
}

.sidebar-cta-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    margin-bottom: 1.25rem;
}

.sidebar-cta-card h4 {
    font-size: 1rem;
    color: var(--navy);
    padding: 0 1.25rem;
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .sidebar-cta-card h4 {
    color: var(--text-dark);
}

.sidebar-cta-card p {
    font-size: 0.82rem;
    color: var(--mid-grey);
    padding: 0 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.sidebar-cta-card .btn-primary {
    margin: 0 1.25rem;
    font-size: 0.85rem;
    padding: 0.65rem 1.25rem;
}

.sidebar-highlight-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.sidebar-highlight-icon {
    width: 44px;
    height: 44px;
    background: var(--orange-muted);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--orange);
    margin-bottom: 1rem;
}

.sidebar-highlight-card h4 {
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

[data-theme="dark"] .sidebar-highlight-card h4 {
    color: var(--text-dark);
}

.sidebar-highlight-card p {
    font-size: 0.82rem;
    color: var(--mid-grey);
    line-height: 1.65;
}

.sidebar-industries-list {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.sidebar-ind-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
    transition: background 0.18s, color 0.18s;
}

    .sidebar-ind-item:last-child {
        border-bottom: none;
    }

    .sidebar-ind-item i {
        color: var(--orange);
        width: 16px;
        text-align: center;
    }

    .sidebar-ind-item:hover {
        background: var(--orange-muted);
        color: var(--orange);
    }

.sidebar-why-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .sidebar-why-list li {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.82rem;
        color: var(--mid-grey);
    }

        .sidebar-why-list li i {
            color: var(--orange);
            font-size: 0.8rem;
            flex-shrink: 0;
        }


/* ─── SHARED SUBPAGE ELEMENTS ───────────────────────────────────── */
.sp-section-head {
    margin-bottom: 2rem;
}

    .sp-section-head .section-label {
        margin-bottom: 0.5rem;
    }

    .sp-section-head p {
        color: var(--mid-grey);
        font-size: 0.95rem;
        margin-top: 0.5rem;
        line-height: 1.7;
    }

.sp-bottom-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.btn-sp-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
}

    .btn-sp-link:hover {
        gap: 10px;
    }

.sp-callout-strip {
    background: linear-gradient(135deg, var(--navy) 0%, #1E3A6A 100%);
    border-radius: 12px;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin: 2rem 0;
}

.sp-callout-icon {
    color: var(--orange);
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
    opacity: 0.8;
}

.sp-callout-strip p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

    .sp-callout-strip p strong {
        color: var(--orange);
        font-style: normal;
    }


/* ─── WHO WE ARE — intro split ──────────────────────────────────── */
.sp-intro-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.sp-intro-text p {
    color: var(--mid-grey);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.sp-intro-visual {
    position: relative;
}

.sp-intro-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.sp-intro-badge {
    position: absolute;
    bottom: -1rem;
    left: 1.25rem;
    background: var(--orange);
    border-radius: 10px;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(232,112,26,0.35);
}

.sp-badge-year {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.sp-badge-text {
    color: rgba(255,255,255,0.9);
    font-size: 0.78rem;
    font-weight: 500;
    max-width: 100px;
    line-height: 1.35;
}

.sp-numbered-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.sp-num-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

    .sp-num-card:hover {
        border-color: var(--orange);
        box-shadow: 0 6px 20px rgba(232,112,26,0.12);
        transform: translateY(-3px);
    }

.sp-num-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.sp-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    opacity: 0.25;
    line-height: 1;
}

.sp-num-icon {
    width: 40px;
    height: 40px;
    background: var(--orange-muted);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.1rem;
}

.sp-num-card h3 {
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .sp-num-card h3 {
    color: var(--text-dark);
}

.sp-num-card p {
    font-size: 0.85rem;
    color: var(--mid-grey);
    line-height: 1.65;
}

.sp-checklist-box {
    background: var(--section-alt);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border);
    margin-bottom: 2rem;
}

.sp-checklist-heading {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.sp-cert-img {
    width: 85px;
    height: 85px;
    object-fit: contain;
    border-radius: 8px;
}

.sp-checklist-heading h3 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

[data-theme="dark"] .sp-checklist-heading h3 {
    color: var(--text-dark);
}

.sp-checklist-heading p {
    font-size: 0.82rem;
    color: var(--mid-grey);
}

.sp-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .sp-checklist li {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.875rem;
        color: var(--text-light);
    }

        .sp-checklist li i {
            color: var(--orange);
            font-size: 0.85rem;
            flex-shrink: 0;
        }

.sp-cert-awards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.sp-cert-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sp-cert-icon-wrap {
    width: 44px;
    height: 44px;
    background: var(--orange-muted);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.2rem;
}

.sp-cert-icon-award {
    background: rgba(232,175,26,0.12);
    color: #C89B0A;
}

.sp-cert-card h4 {
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 0.1rem;
}

[data-theme="dark"] .sp-cert-card h4 {
    color: var(--text-dark);
}

.sp-cert-card p {
    font-size: 0.8rem;
    color: var(--mid-grey);
    line-height: 1.6;
}

.sp-cert-placeholder {
    margin-top: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
    background: var(--section-alt);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .sp-cert-placeholder img {
        width: 100%;
    }


/* ─── VISION & MISSION ──────────────────────────────────────────── */
.vm-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.vm-card {
    border-radius: 14px;
    padding: 2rem;
    border: 1px solid var(--border);
    background: var(--card-bg);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vm-vision {
    border-top: 4px solid var(--orange);
}

.vm-mission {
    background: var(--navy);
    border-color: var(--navy);
}

.vm-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.vm-vision .vm-card-icon {
    background: var(--orange-muted);
    color: var(--orange);
}

.vm-mission .vm-card-icon {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.vm-card-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vm-vision .vm-card-label {
    color: var(--orange);
}

.vm-mission .vm-card-label {
    color: rgba(255,255,255,0.55);
}

.vm-vision h2 {
    font-size: 1.2rem;
    color: var(--navy);
    margin: 0;
}

[data-theme="dark"] .vm-vision h2 {
    color: var(--text-dark);
}

.vm-mission h2 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
}

.vm-vision p {
    font-size: 0.9rem;
    color: var(--mid-grey);
    line-height: 1.75;
}

.vm-card-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: auto;
}

.vm-mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

    .vm-mission-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        font-size: 0.875rem;
        color: rgba(255,255,255,0.8);
        line-height: 1.55;
    }

        .vm-mission-list li i {
            color: var(--orange);
            font-size: 0.85rem;
            flex-shrink: 0;
            margin-top: 3px;
        }

.vm-values-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2.5rem;
}

.vm-value-row {
    display: grid;
    grid-template-columns: 52px 32px 1fr auto;
    gap: 0 1.25rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

    .vm-value-row:last-child {
        border-bottom: none;
    }

.vm-value-row-alt {
    grid-template-columns: auto 1fr 32px 52px;
}

.vm-value-letter {
    width: 52px;
    height: 52px;
    background: var(--navy);
    color: var(--orange);
    border-radius: 10px;
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

[data-theme="dark"] .vm-value-letter {
    background: rgba(232,112,26,0.18);
}

.vm-value-connector {
    width: 2px;
    height: 40px;
    background: var(--border);
    margin: 0 auto;
}

.vm-value-body h3 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

[data-theme="dark"] .vm-value-body h3 {
    color: var(--text-dark);
}

.vm-value-body p {
    font-size: 0.85rem;
    color: var(--mid-grey);
    line-height: 1.65;
}

.vm-value-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.vm-commitment-block {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--section-alt);
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--orange);
    margin-bottom: 1.5rem;
}

.vm-commitment-icon {
    width: 48px;
    height: 48px;
    background: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.vm-commitment-text h3 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

[data-theme="dark"] .vm-commitment-text h3 {
    color: var(--text-dark);
}

.vm-commitment-text p {
    font-size: 0.9rem;
    color: var(--mid-grey);
    line-height: 1.75;
}


/* ─── LEADERSHIP TEAM ───────────────────────────────────────────── */
.lt-featured-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.lt-featured-photo {
    position: relative;
    background: var(--section-alt);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .lt-featured-photo img {
        width: 100%;
        height: 100%;
        min-height: 280px;
        object-fit: cover;
        object-position: top;
        display: block;
    }

    .lt-featured-photo i {
        color: #ccc;
        font-size: 5rem;
    }

.lt-featured-exp-badge {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.04em;
}

.lt-featured-body {
    padding: 2rem 2rem 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lt-featured-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
}

.lt-featured-name {
    font-size: 1.5rem;
    color: var(--navy);
    margin: 0;
}

[data-theme="dark"] .lt-featured-name {
    color: var(--text-dark);
}

.lt-featured-body p {
    font-size: 0.875rem;
    color: var(--mid-grey);
    line-height: 1.75;
}

.lt-featured-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

    .lt-featured-tags span {
        background: var(--orange-muted);
        color: var(--orange);
        font-size: 0.75rem;
        font-weight: 600;
        padding: 0.3rem 0.75rem;
        border-radius: 20px;
    }

.lt-team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.lt-team-grid-01 {
    grid-template-columns: 1fr;
    margin-bottom: 1.5rem;
}

.lt-team-card {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .lt-team-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
        border-color: var(--orange);
    }

.lt-team-photo {
    height: 65px;
    background: linear-gradient(135deg, var(--navy) 0%, #2D4A7A 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .lt-team-photo i {
        font-size: 2rem;
        color: var(--card-bg);
    }

.lt-team-photo-f {
    background: linear-gradient(135deg, #3A1A4A 0%, #5A2D7A 100%);
}

.lt-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.lt-team-body {
    padding: 1.25rem;
}

    .lt-team-body h3 {
        font-size: 0.95rem;
        color: var(--navy);
        margin-bottom: 0.2rem;
    }

[data-theme="dark"] .lt-team-body h3 {
    color: var(--text-dark);
}

.lt-team-role {
    font-size: 0.78rem;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.lt-team-body p {
    font-size: 0.82rem;
    color: var(--mid-grey);
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

.lt-team-dept {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--mid-grey);
    background: var(--section-alt);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    width: fit-content;
}

    .lt-team-dept i {
        color: var(--orange);
    }


/* ─── INDUSTRIES WE SERVE ───────────────────────────────────────── */
.ind-feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.ind-feature-img {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--section-alt);
}

    .ind-feature-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s;
    }

.ind-feature-card:hover .ind-feature-img img {
    transform: scale(1.05);
}

.ind-feature-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--orange);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ind-feature-body {
    background: var(--card-bg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.85rem;
}

    .ind-feature-body h3 {
        font-size: 1.2rem;
        color: var(--navy);
    }

[data-theme="dark"] .ind-feature-body h3 {
    color: var(--text-dark);
}

.ind-feature-body p {
    font-size: 0.875rem;
    color: var(--mid-grey);
    line-height: 1.75;
}

.ind-feature-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .ind-feature-points li {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.85rem;
        color: var(--text-light);
    }

        .ind-feature-points li i {
            color: var(--orange);
            font-size: 0.75rem;
            flex-shrink: 0;
        }

.ind-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.ind-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card-bg);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .ind-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
    }

.ind-card-img {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: var(--section-alt);
}

    .ind-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.35s;
    }

.ind-card:hover .ind-card-img img {
    transform: scale(1.06);
}

.ind-card-icon {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    background: var(--orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

.ind-card-body {
    padding: 1.25rem;
}

    .ind-card-body h3 {
        font-size: 0.95rem;
        color: var(--navy);
        margin-bottom: 0.5rem;
    }

[data-theme="dark"] .ind-card-body h3 {
    color: var(--text-dark);
}

.ind-card-body p {
    font-size: 0.82rem;
    color: var(--mid-grey);
    line-height: 1.65;
}

.ind-agri-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--section-alt);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.ind-agri-img {
    height: 200px;
    overflow: hidden;
}

    .ind-agri-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.ind-agri-body {
    padding: 1.5rem 1.5rem 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ind-card-icon-agri {
    position: static;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(34,139,34,0.15);
    color: #228B22;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.ind-agri-body h3 {
    font-size: 1.05rem;
    color: var(--navy);
}

[data-theme="dark"] .ind-agri-body h3 {
    color: var(--text-dark);
}

.ind-agri-body p {
    font-size: 0.875rem;
    color: var(--mid-grey);
    line-height: 1.7;
}


/* ─── OUR CUSTOMERS ─────────────────────────────────────────────── */
.cust-trust-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--navy);
    border-radius: 12px;
    padding: 1.75rem 2rem;
    margin-bottom: 3rem;
    gap: 1rem;
}

.cust-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    flex: 1;
}

.cust-trust-num {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.cust-trust-label {
    color: rgba(255,255,255,0.65);
    font-size: 0.75rem;
    text-align: center;
    letter-spacing: 0.04em;
}

.cust-trust-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

.cust-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.cust-logo-grid-sm {
    grid-template-columns: repeat(3, 1fr);
}

.cust-logo-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

    .cust-logo-card:hover {
        border-color: var(--orange);
        box-shadow: 0 4px 16px rgba(232,112,26,0.12);
        transform: translateY(-3px);
    }

    .cust-logo-card img {
        height: 85px;
        object-fit: contain;
        width: auto;
        max-width: 100%;
        transition: filter 0.2s, opacity 0.2s;
    }

    .cust-logo-card:hover img {
        filter: grayscale(0);
        opacity: 1;
    }

    .cust-logo-card span {
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--mid-grey);
        text-align: center;
    }

.cust-partner-block {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--section-alt);
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--orange);
    margin-top: 2.5rem;
}

.cust-partner-icon {
    width: 48px;
    height: 48px;
    background: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.cust-partner-text h3 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

[data-theme="dark"] .cust-partner-text h3 {
    color: var(--text-dark);
}

.cust-partner-text p {
    font-size: 0.9rem;
    color: var(--mid-grey);
    line-height: 1.75;
}


/* ─── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .subpage-grid {
        grid-template-columns: 65fr 35fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 220px;
    }

    .subpage-grid {
        grid-template-columns: 1fr;
    }

    .subpage-sidebar {
        position: static;
        order: -1;
    }

    .sidebar-nav-card {
        display: none; /* hidden on mobile — nav is in top menu */
    }

    .sp-intro-block,
    .vm-split,
    .sp-cert-awards-row,
    .sp-numbered-grid,
    .lt-team-grid,
    .ind-card-grid,
    .ind-feature-card {
        grid-template-columns: 1fr;
    }

    .vm-value-row,
    .vm-value-row-alt {
        grid-template-columns: 52px 1fr;
    }

    .vm-value-connector,
    .vm-value-img {
        display: none;
    }

    .lt-featured-card {
        grid-template-columns: 1fr;
    }

    .lt-featured-photo {
        height: 220px;
    }

    .lt-featured-body {
        padding: 1.5rem;
    }

    .ind-agri-row {
        grid-template-columns: 1fr;
    }

    .cust-trust-strip {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cust-trust-divider {
        display: none;
    }

    .cust-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-checklist {
        grid-template-columns: 1fr;
    }
}


.sp-section-head-spacer {
    margin-top: 3rem;
}

/* ═══════════════════════════════════════════════════════════════════
   SERVICES SUBPAGE STYLES — Append to end of css/site.css
   (after the About Us additions block)
   ═══════════════════════════════════════════════════════════════════ */


/* ─── SIDEBAR: QUOTE CTA ────────────────────────────────────────── */
.sidebar-quote-cta {
    background: linear-gradient(135deg, var(--navy) 0%, #1E3A6A 100%);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.sidebar-quote-icon {
    width: 48px;
    height: 48px;
    background: rgba(232,112,26,0.2);
    border: 1px solid rgba(232,112,26,0.35);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.3rem;
}

.sidebar-quote-cta h4 {
    font-size: 1rem;
    font-family: var(--font-head);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.sidebar-quote-cta p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    margin: 0;
}

.sidebar-quote-cta .btn-primary {
    width: 100%;
    text-align: center;
    font-size: 0.875rem;
    padding: 0.7rem 1rem;
}

/* ─── SIDEBAR: NPD DOC LIST ─────────────────────────────────────── */
.sidebar-npd-docs {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow);
}

    .sidebar-npd-docs .sidebar-nav-title {
        background: var(--navy);
        color: #fff;
        font-family: var(--font-head);
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 0.9rem 1.25rem;
    }

.sidebar-doc-list {
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

    .sidebar-doc-list li {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
        color: var(--text-light);
        border-bottom: 1px solid var(--border);
    }

        .sidebar-doc-list li:last-child {
            border-bottom: none;
        }

        .sidebar-doc-list li i {
            color: var(--orange);
            font-size: 0.85rem;
            flex-shrink: 0;
        }


/* ─── DESIGN & PROTOTYPING ──────────────────────────────────────── */
.svc-hero-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.svc-hero-img-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.svc-hero-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.svc-hero-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(13,27,42,0.82);
    border: 1px solid rgba(232,112,26,0.4);
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.04em;
}

.svc-hero-intro p {
    color: var(--mid-grey);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.svc-hero-intro h2 {
    margin-bottom: 0.75rem;
}

.svc-process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 3rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}

.svc-step {
    flex: 1;
    padding: 1.75rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    border-right: 1px solid var(--border);
    position: relative;
}

    .svc-step:last-child {
        border-right: none;
    }

    .svc-step:hover {
        background: var(--orange-muted);
    }

.svc-step-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    opacity: 0.18;
    line-height: 1;
}

.svc-step-icon {
    width: 40px;
    height: 40px;
    background: var(--orange-muted);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.05rem;
}

.svc-step h3 {
    font-size: 0.9rem;
    color: var(--navy);
    line-height: 1.3;
}

[data-theme="dark"] .svc-step h3 {
    color: var(--text-dark);
}

.svc-step p {
    font-size: 0.8rem;
    color: var(--mid-grey);
    line-height: 1.6;
}

.svc-step-arrow {
    display: none; /* hidden — visual flow is horizontal via border */
}

.svc-split-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin: 2rem 0;
}

.svc-split-img {
    border-radius: 12px;
    overflow: hidden;
}

    .svc-split-img img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        display: block;
        transition: transform 0.4s;
    }

    .svc-split-img:hover img {
        transform: scale(1.04);
    }

.svc-split-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .svc-split-content h3 {
        font-size: 1.25rem;
        color: var(--navy);
    }

[data-theme="dark"] .svc-split-content h3 {
    color: var(--text-dark);
}

.svc-split-content p {
    color: var(--mid-grey);
    font-size: 0.9rem;
    line-height: 1.75;
}

.svc-feature-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

    .svc-feature-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        font-size: 0.875rem;
        color: var(--text-light);
        line-height: 1.5;
    }

        .svc-feature-list li i {
            color: var(--orange);
            font-size: 0.9rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

.svc-app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

    .svc-app-tags span {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 0.55rem 1rem;
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--text-light);
        transition: border-color 0.2s, color 0.2s, background 0.2s;
    }

        .svc-app-tags span i {
            color: var(--orange);
            font-size: 0.85rem;
        }

        .svc-app-tags span:hover {
            border-color: var(--orange);
            color: var(--orange);
            background: var(--orange-muted);
        }


/* ─── NEW PRODUCT DEVELOPMENT ───────────────────────────────────── */
.svc-gate-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.svc-gate {
    background: var(--card-bg);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    position: relative;
    transition: background 0.2s;
}

    .svc-gate:hover {
        background: var(--orange-muted);
    }

.svc-gate-final {
    background: var(--orange-muted);
}

.svc-gate-icon {
    width: 40px;
    height: 40px;
    background: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.05rem;
    flex-shrink: 0;
}

.svc-gate-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
}

.svc-gate h3 {
    font-size: 0.85rem;
    color: var(--navy);
    line-height: 1.3;
}

[data-theme="dark"] .svc-gate h3 {
    color: var(--text-dark);
}

.svc-gate p {
    font-size: 0.78rem;
    color: var(--mid-grey);
    line-height: 1.6;
}

.svc-included-block {
    background: var(--section-alt);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border);
    margin-bottom: 2rem;
}

.svc-included-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

    .svc-included-header h3 {
        font-size: 1.05rem;
        color: var(--navy);
    }

[data-theme="dark"] .svc-included-header h3 {
    color: var(--text-dark);
}

.svc-included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.svc-included-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

    .svc-included-item i {
        color: var(--orange);
        font-size: 0.9rem;
        flex-shrink: 0;
    }

.svc-img-trio {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.svc-trio-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

    .svc-trio-main img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        display: block;
    }

.svc-trio-stack {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.svc-trio-sm {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
}

    .svc-trio-sm img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        min-height: 118px;
    }

.svc-trio-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13,27,42,0.85), transparent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.75rem 0.85rem 0.5rem;
    letter-spacing: 0.04em;
}


/* ─── TOOL & DIE MAKING ─────────────────────────────────────────── */
.svc-fullbanner {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.svc-fullbanner-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.svc-fullbanner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13,27,42,0.95) 0%, rgba(13,27,42,0.6) 60%, transparent 100%);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: flex-end;
    gap: 3rem;
}

.svc-fullbanner-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.svc-fb-num {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.svc-fb-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
}

.svc-cap-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.svc-cap-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card-bg);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .svc-cap-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
        border-color: var(--orange);
    }

.svc-cap-img {
    height: 140px;
    overflow: hidden;
    background: var(--section-alt);
}

    .svc-cap-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.35s;
    }

.svc-cap-card:hover .svc-cap-img img {
    transform: scale(1.06);
}

.svc-cap-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.svc-cap-icon {
    width: 36px;
    height: 36px;
    background: var(--orange-muted);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.svc-cap-body h3 {
    font-size: 0.9rem;
    color: var(--navy);
}

[data-theme="dark"] .svc-cap-body h3 {
    color: var(--text-dark);
}

.svc-cap-body p {
    font-size: 0.8rem;
    color: var(--mid-grey);
    line-height: 1.6;
}

.svc-materials-strip {
    background: var(--navy);
    border-radius: 10px;
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.svc-materials-label {
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

    .svc-materials-label i {
        color: var(--orange);
    }

.svc-materials-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

    .svc-materials-tags span {
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.18);
        color: rgba(255,255,255,0.85);
        font-size: 0.78rem;
        font-weight: 500;
        padding: 0.3rem 0.8rem;
        border-radius: 20px;
        transition: background 0.2s, border-color 0.2s;
    }

        .svc-materials-tags span:hover {
            background: rgba(232,112,26,0.25);
            border-color: var(--orange);
            color: #fff;
        }


/* ─── PRECISION INJECTION MOULDING ─────────────────────────────── */
.svc-machine-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.svc-machine-img {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

    .svc-machine-img img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        display: block;
    }

.svc-machine-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    background: var(--orange);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 16px rgba(232,112,26,0.4);
}

.svc-machine-specs {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

    .svc-machine-specs p {
        color: var(--mid-grey);
        font-size: 0.9rem;
        line-height: 1.75;
    }

.svc-machine-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.svc-machine-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.65rem 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--text-light);
    transition: background 0.18s;
}

    .svc-machine-item:last-child {
        border-bottom: none;
    }

    .svc-machine-item:hover {
        background: var(--orange-muted);
    }

.svc-machine-ton {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 800;
    color: var(--orange);
    min-width: 44px;
}

.svc-types-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.svc-type-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card-bg);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .svc-type-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
        border-color: var(--orange);
    }

    .svc-type-card img {
        width: 100%;
        height: 170px;
        object-fit: cover;
        display: block;
    }

.svc-type-body {
    padding: 1.25rem;
}

    .svc-type-body h3 {
        font-size: 0.95rem;
        color: var(--navy);
        margin-bottom: 0.5rem;
    }

[data-theme="dark"] .svc-type-body h3 {
    color: var(--text-dark);
}

.svc-type-body p {
    font-size: 0.82rem;
    color: var(--mid-grey);
    line-height: 1.65;
}

.svc-materials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.svc-mat-item {
    background: var(--card-bg);
    padding: 1.25rem 1rem;
    text-align: center;
    transition: background 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

    .svc-mat-item:hover {
        background: var(--orange-muted);
    }

.svc-mat-code {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--orange);
}

.svc-mat-name {
    font-size: 0.75rem;
    color: var(--mid-grey);
    line-height: 1.4;
    text-align: center;
}


/* ─── PRESS TOOLS & COMPONENTS ──────────────────────────────────── */
.svc-ptypes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.svc-ptype-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

    .svc-ptype-card:hover {
        border-color: var(--orange);
        box-shadow: 0 6px 20px rgba(232,112,26,0.12);
        transform: translateY(-3px);
    }

.svc-ptype-icon {
    width: 46px;
    height: 46px;
    background: var(--orange-muted);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.2rem;
}

.svc-ptype-card h3 {
    font-size: 0.95rem;
    color: var(--navy);
}

[data-theme="dark"] .svc-ptype-card h3 {
    color: var(--text-dark);
}

.svc-ptype-card p {
    font-size: 0.85rem;
    color: var(--mid-grey);
    line-height: 1.65;
}

.svc-app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.svc-app-item {
    background: var(--card-bg);
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
    transition: background 0.2s;
}

    .svc-app-item:hover {
        background: var(--orange-muted);
    }

    .svc-app-item i {
        font-size: 1.5rem;
        color: var(--orange);
    }

    .svc-app-item h4 {
        font-size: 0.82rem;
        color: var(--navy);
        font-weight: 600;
        line-height: 1.3;
    }

[data-theme="dark"] .svc-app-item h4 {
    color: var(--text-dark);
}


/* ─── CONTRACT MANUFACTURING ────────────────────────────────────── */
.svc-chain {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 3rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}

.svc-chain-item {
    flex: 1;
    padding: 1.75rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border-right: 1px solid var(--border);
    transition: background 0.2s;
}

    .svc-chain-item:hover {
        background: var(--orange-muted);
    }

.svc-chain-last {
    border-right: none;
    background: var(--orange-muted);
}

.svc-chain-arrow {
    display: none;
}

.svc-chain-icon {
    width: 40px;
    height: 40px;
    background: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1rem;
    flex-shrink: 0;
}

.svc-chain-item h3 {
    font-size: 0.9rem;
    color: var(--navy);
}

[data-theme="dark"] .svc-chain-item h3 {
    color: var(--text-dark);
}

.svc-chain-item p {
    font-size: 0.8rem;
    color: var(--mid-grey);
    line-height: 1.6;
}

.svc-benefits-block {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 1.5rem;
}

.svc-benefits-header {
    border-radius: 12px;
    overflow: hidden;
}

.svc-benefits-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.svc-benefits-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .svc-benefits-content h3 {
        font-size: 1.2rem;
        color: var(--navy);
    }

[data-theme="dark"] .svc-benefits-content h3 {
    color: var(--text-dark);
}

.svc-benefit-rows {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.svc-benefit-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color 0.2s;
}

    .svc-benefit-row:hover {
        border-color: var(--orange);
    }

.svc-benefit-icon {
    width: 36px;
    height: 36px;
    background: var(--orange-muted);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1rem;
    flex-shrink: 0;
}

.svc-benefit-row h4 {
    font-size: 0.875rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

[data-theme="dark"] .svc-benefit-row h4 {
    color: var(--text-dark);
}

.svc-benefit-row p {
    font-size: 0.8rem;
    color: var(--mid-grey);
    line-height: 1.6;
}


/* ─── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .svc-gate-flow {
        grid-template-columns: repeat(3, 1fr);
    }

    .svc-materials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .svc-hero-block,
    .svc-machine-hero,
    .svc-split-block,
    .svc-benefits-block {
        grid-template-columns: 1fr;
    }

    .svc-process-steps {
        flex-direction: column;
    }

    .svc-step {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .svc-gate-flow {
        grid-template-columns: 1fr 1fr;
    }

    .svc-cap-cards,
    .svc-types-grid,
    .svc-ptypes-grid {
        grid-template-columns: 1fr;
    }

    .svc-materials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .svc-app-grid {
        grid-template-columns: 1fr 1fr;
    }

    .svc-chain {
        flex-direction: column;
    }

    .svc-chain-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .svc-img-trio {
        grid-template-columns: 1fr;
    }

    .svc-trio-stack {
        flex-direction: row;
    }

    .svc-fullbanner-overlay {
        gap: 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   POLICIES SUBPAGE STYLES — Append to end of css/site.css
   (after the Services additions block)
   ═══════════════════════════════════════════════════════════════════ */


/* ─── QUALITY POLICY ────────────────────────────────────────────── */

.pol-statement-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: linear-gradient(135deg, var(--navy) 0%, #1E3A6A 100%);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.pol-statement-icon {
    width: 64px;
    height: 64px;
    background: rgba(232,112,26,0.2);
    border: 2px solid rgba(232,112,26,0.4);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.pol-statement-body .section-label {
    color: rgba(255,255,255,0.6);
}

    .pol-statement-body .section-label::before {
        background: rgba(255,255,255,0.3);
    }

.pol-statement-body .section-title {
    color: #ffffff;
    margin-bottom: 1rem;
}

.pol-statement-body p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Three quality pillars */
.pol-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.pol-pillar {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card-bg);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .pol-pillar:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
    }

.pol-pillar-img {
    height: 150px;
    overflow: hidden;
    position: relative;
}

    .pol-pillar-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s;
    }

.pol-pillar:hover .pol-pillar-img img {
    transform: scale(1.06);
}

.pol-pillar-1 .pol-pillar-img::after,
.pol-pillar-2 .pol-pillar-img::after,
.pol-pillar-3 .pol-pillar-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,43,74,0.6), transparent);
}

.pol-pillar-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pol-pillar-num {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--orange);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -0.25rem;
}

.pol-pillar-body h3 {
    font-size: 1rem;
    color: var(--navy);
}

[data-theme="dark"] .pol-pillar-body h3 {
    color: var(--text-dark);
}

.pol-pillar-body p {
    font-size: 0.83rem;
    color: var(--mid-grey);
    line-height: 1.65;
}

/* Certification highlight */
.pol-cert-banner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    background: var(--section-alt);
    border-radius: 14px;
    padding: 2rem;
    border: 1px solid var(--border);
    border-left: 4px solid var(--orange);
    margin: 2.5rem 0;
}

.pol-cert-badge {
    width: 80px;
    flex-shrink: 0;
}

    .pol-cert-badge img {
        width: 100%;
        object-fit: contain;
    }

.pol-cert-text h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

[data-theme="dark"] .pol-cert-text h3 {
    color: var(--text-dark);
}

.pol-cert-text p {
    font-size: 0.875rem;
    color: var(--mid-grey);
    line-height: 1.75;
}

    .pol-cert-text p strong {
        color: var(--navy);
    }

[data-theme="dark"] .pol-cert-text p strong {
    color: var(--orange);
}

.pol-cert-doc {
    width: 100px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card-bg);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

    .pol-cert-doc img {
        max-height: 80px;
        object-fit: contain;
    }

/* Quality flow */
.pol-flow {
    display: flex;
    align-items: stretch;
    margin-bottom: 2.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}

.pol-flow-item {
    flex: 1;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-right: 1px solid var(--border);
    text-align: center;
    align-items: center;
    transition: background 0.2s;
}

    .pol-flow-item:hover {
        background: var(--orange-muted);
    }

.pol-flow-item-last {
    border-right: none;
    background: var(--orange-muted);
}

.pol-flow-connector {
    display: flex;
    align-items: center;
    color: var(--mid-grey);
    font-size: 0.9rem;
    padding: 0 0.25rem;
    flex-shrink: 0;
}

.pol-flow-icon {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pol-flow-item h4 {
    font-size: 0.82rem;
    color: var(--navy);
    font-weight: 600;
    line-height: 1.3;
}

[data-theme="dark"] .pol-flow-item h4 {
    color: var(--text-dark);
}

.pol-flow-item p {
    font-size: 0.75rem;
    color: var(--mid-grey);
    line-height: 1.5;
}

/* Checklist icon override for quality page */
.pol-chk-icon {
    width: 44px;
    height: 44px;
    background: var(--orange-muted);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Sidebar motto */
.pol-sidebar-motto {
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.6;
}


/* ─── EHS & SAFETY POLICY ───────────────────────────────────────── */

/* Banner green tint variant */
.page-banner-overlay-ehs {
    background: linear-gradient(to right, rgba(13,42,27,0.88) 0%, rgba(13,42,27,0.55) 60%, rgba(13,42,27,0.3) 100%);
}

/* Policy statement */
.pol-ehs-statement {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-left: 5px solid #2E7D32;
    border-radius: 14px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
}

.pol-ehs-statement-icon {
    width: 64px;
    height: 64px;
    background: rgba(46,125,50,0.12);
    border: 2px solid rgba(46,125,50,0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2E7D32;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.pol-ehs-statement-body p {
    color: var(--mid-grey);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

    .pol-ehs-statement-body p strong {
        color: #2E7D32;
    }

[data-theme="dark"] .pol-ehs-statement-body p strong {
    color: #4CAF50;
}

/* Mosaic image layout */
.pol-ehs-mosaic {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.pol-ehs-tile {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

    .pol-ehs-tile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s;
    }

    .pol-ehs-tile:hover img {
        transform: scale(1.05);
    }

.pol-ehs-tile-lg {
    min-height: 320px;
}

.pol-ehs-tile-stack {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pol-ehs-tile-sm {
    flex: 1;
    min-height: 148px;
}

.pol-ehs-tile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.5) 60%, transparent 100%);
    padding: 1.25rem;
    color: #fff;
    transition: padding 0.3s;
}

.pol-ehs-tile:hover .pol-ehs-tile-overlay {
    padding-bottom: 1.5rem;
}

.pol-ehs-tile-icon {
    width: 36px;
    height: 36px;
    background: rgba(232,112,26,0.2);
    border: 1px solid rgba(232,112,26,0.5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1rem;
    margin-bottom: 0.6rem;
}

.pol-ehs-tile-overlay h3 {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.35rem;
    font-family: var(--font-head);
}

.pol-ehs-tile-sm .pol-ehs-tile-overlay h3 {
    font-size: 0.85rem;
}

.pol-ehs-tile-overlay p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
}

.pol-ehs-tile-sm .pol-ehs-tile-overlay p {
    display: none;
}

.pol-ehs-tile-lg:hover .pol-ehs-tile-sm .pol-ehs-tile-overlay p {
    display: block;
}

/* Four commitment blocks */
.pol-ehs-commitments {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.pol-ehs-commit {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .pol-ehs-commit:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    }

.pol-ehs-commit-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.pol-ehs-commit-safe {
    background: rgba(232,112,26,0.12);
    color: var(--orange);
    border: 1px solid rgba(232,112,26,0.25);
}

.pol-ehs-commit-ppe {
    background: rgba(26,43,74,0.1);
    color: var(--navy);
    border: 1px solid rgba(26,43,74,0.2);
}

[data-theme="dark"] .pol-ehs-commit-ppe {
    background: rgba(255,255,255,0.08);
    color: var(--text-dark);
    border-color: var(--border);
}

.pol-ehs-commit-env {
    background: rgba(46,125,50,0.12);
    color: #2E7D32;
    border: 1px solid rgba(46,125,50,0.25);
}

[data-theme="dark"] .pol-ehs-commit-env {
    color: #4CAF50;
}

.pol-ehs-commit-improve {
    background: rgba(21,101,192,0.1);
    color: #1565C0;
    border: 1px solid rgba(21,101,192,0.2);
}

[data-theme="dark"] .pol-ehs-commit-improve {
    color: #64B5F6;
    background: rgba(21,101,192,0.15);
}

.pol-ehs-commit-body h3 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .pol-ehs-commit-body h3 {
    color: var(--text-dark);
}

.pol-ehs-commit-body > p {
    font-size: 0.875rem;
    color: var(--mid-grey);
    line-height: 1.7;
    margin-bottom: 0.85rem;
}

.pol-ehs-commit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
}

    .pol-ehs-commit-list li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.8rem;
        color: var(--text-light);
    }

        .pol-ehs-commit-list li i {
            color: var(--orange);
            font-size: 0.75rem;
            flex-shrink: 0;
        }

/* Zero targets strip */
.pol-zero-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    border-radius: 14px;
    padding: 2.5rem 2rem;
    margin: 2rem 0;
    gap: 1rem;
}

.pol-zero-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    flex: 1;
    text-align: center;
}

.pol-zero-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.pol-zero-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.pol-zero-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.pol-zero-sep {
    width: 1px;
    height: 64px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

/* Sidebar EHS targets */
.sidebar-ehs-targets {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.pol-ehs-target-list {
    padding: 0.5rem 0;
}

.pol-ehs-target {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border);
    transition: background 0.18s;
}

    .pol-ehs-target:last-child {
        border-bottom: none;
    }

    .pol-ehs-target:hover {
        background: var(--section-alt);
    }

.pol-ehs-target-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.pol-ehs-target-safe {
    background: rgba(232,112,26,0.12);
    color: var(--orange);
}

.pol-ehs-target-health {
    background: rgba(21,101,192,0.1);
    color: #1565C0;
}

[data-theme="dark"] .pol-ehs-target-health {
    color: #64B5F6;
}

.pol-ehs-target-env {
    background: rgba(46,125,50,0.12);
    color: #2E7D32;
}

[data-theme="dark"] .pol-ehs-target-env {
    color: #4CAF50;
}

.pol-ehs-target-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

    .pol-ehs-target-text strong {
        font-size: 0.875rem;
        color: var(--navy);
        font-weight: 600;
    }

[data-theme="dark"] .pol-ehs-target-text strong {
    color: var(--text-dark);
}

.pol-ehs-target-text span {
    font-size: 0.75rem;
    color: var(--mid-grey);
}

.pol-sidebar-motto-icon {
    background: rgba(46,125,50,0.12);
    color: #2E7D32;
}

[data-theme="dark"] .pol-sidebar-motto-icon {
    color: #4CAF50;
}


/* ─── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .pol-pillars {
        grid-template-columns: 1fr;
    }

    .pol-cert-banner {
        grid-template-columns: 1fr;
    }

    .pol-cert-doc {
        display: none;
    }

    .pol-flow {
        flex-direction: column;
    }

    .pol-flow-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
        text-align: left;
        align-items: flex-start;
        flex-direction: row;
        gap: 1rem;
    }

    .pol-flow-item-last {
        border-bottom: none;
    }

    .pol-flow-connector {
        display: none;
    }

    .pol-ehs-mosaic {
        grid-template-columns: 1fr;
    }

    .pol-ehs-tile-stack {
        flex-direction: row;
    }

    .pol-ehs-tile-lg {
        min-height: 220px;
    }

    .pol-ehs-tile-sm {
        min-height: 140px;
    }

        .pol-ehs-tile-sm .pol-ehs-tile-overlay p {
            display: block;
        }

    .pol-ehs-commit {
        flex-direction: column;
    }

    .pol-ehs-commit-list {
        grid-template-columns: 1fr;
    }

    .pol-zero-banner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .pol-zero-sep {
        display: none;
    }

    .pol-statement-card,
    .pol-ehs-statement {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .pol-pillars {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   OTHER PAGES CSS — Append to end of css/site.css
   Covers: Capabilities, Contact Us, CSR, Gallery, Sitemap,
           Privacy Policy, Terms of Use
   ═══════════════════════════════════════════════════════════════════ */


/* ─── SHARED UTILITIES ──────────────────────────────────────────── */
.page-banner-sm {
    height: 200px;
}

.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}


/* ─── CAPABILITIES ──────────────────────────────────────────────── */
.cap-intro-section {
    padding: 5rem 0 4rem;
}

.cap-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cap-intro-text p {
    color: var(--mid-grey);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cap-tagline-strip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

    .cap-tagline-strip span {
        font-family: var(--font-head);
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--navy);
    }

[data-theme="dark"] .cap-tagline-strip span {
    color: var(--text-dark);
}

.cap-tagline-strip i {
    color: var(--orange);
    font-size: 0.35rem;
    vertical-align: middle;
}

.cap-intro-visual {
    position: relative;
}

.cap-intro-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.cap-intro-stat-card {
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    border-radius: 12px;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 8px 32px rgba(13,27,42,0.35);
    white-space: nowrap;
}

.cap-intro-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.cap-intro-stat-num {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.cap-intro-stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cap-intro-stat-div {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
}

/* Machines section */
.cap-machines-section {
    background: var(--section-alt);
    padding: 5rem 0;
}

.cap-machines-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cap-machines-img {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

    .cap-machines-img img {
        width: 100%;
        height: 360px;
        object-fit: cover;
        display: block;
    }

.cap-machines-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    background: var(--orange);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cap-machine-row {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
}

    .cap-machine-row:last-child {
        border-bottom: none;
    }

.cap-machine-bar-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.cap-machine-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cap-machine-ton {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--orange);
}

.cap-machine-desc {
    font-size: 0.82rem;
    color: var(--mid-grey);
}

.cap-machine-bar {
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.cap-machine-fill {
    height: 100%;
    width: var(--fill);
    background: linear-gradient(90deg, var(--orange) 0%, #F5832E 100%);
    border-radius: 4px;
    transition: width 1s ease;
}

/* Four capability area cards */
.cap-areas-section {
    padding: 5rem 0;
}

.cap-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.cap-area-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card-bg);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .cap-area-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 32px rgba(26,43,74,0.15);
        border-color: var(--orange);
    }

.cap-area-img {
    height: 180px;
    overflow: hidden;
    position: relative;
}

    .cap-area-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s;
    }

.cap-area-card:hover .cap-area-img img {
    transform: scale(1.06);
}

.cap-area-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.cap-area-icon {
    width: 40px;
    height: 40px;
    background: var(--orange-muted);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.1rem;
}

.cap-area-body h3 {
    font-size: 0.95rem;
    color: var(--navy);
    line-height: 1.3;
}

[data-theme="dark"] .cap-area-body h3 {
    color: var(--text-dark);
}

.cap-area-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

    .cap-area-list li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.8rem;
        color: var(--mid-grey);
    }

        .cap-area-list li i {
            color: var(--orange);
            font-size: 0.7rem;
            flex-shrink: 0;
        }

.cap-area-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s;
}

    .cap-area-link:hover {
        gap: 10px;
    }

/* Excellence strip */
.cap-excellence-strip {
    background: linear-gradient(135deg, var(--navy) 0%, #1E3A6A 100%);
    padding: 4rem 0;
}

.cap-excellence-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cap-excellence-text h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.cap-excellence-text p {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
}


/* ─── CONTACT US ────────────────────────────────────────────────── */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-header {
    margin-bottom: 2rem;
}

    .contact-form-header p {
        color: var(--mid-grey);
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }

.contact-form-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.cform-group {
    margin-bottom: 1.25rem;
}

.cform-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .cform-label {
    color: var(--text-dark);
}

.cform-req {
    color: var(--orange);
}

.cform-select-wrap {
    position: relative;
}

.cform-select, .cform-input, .cform-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-light);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
}

.cform-captcha {
    padding: 0.56rem 1rem;
    user-select: none;
}

    .cform-captcha span {
        color: var(--adm-orange);
        letter-spacing: 1px;
    }

.cform-select-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--mid-grey);
    pointer-events: none;
    font-size: 0.9rem;
}

.cform-select:focus, .cform-input:focus, .cform-textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232,112,26,0.12);
}

.cform-textarea {
    resize: vertical;
    min-height: 120px;
}

.cform-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.cform-error {
    display: none;
    color: #D32F2F;
    font-size: 0.78rem;
    margin-top: 0.35rem;
}

.cform-footer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.cform-submit {
    font-family: var(--font-body);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.cform-success {
    color: #2E7D32;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Contact info col */
.contact-info-col {
    position: sticky;
    top: 88px;
}

    .contact-info-col h2 {
        margin-bottom: 0.5rem;
    }

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 2rem 0;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
    transition: background 0.18s;
}

    .contact-detail-item:last-child {
        border-bottom: none;
    }

    .contact-detail-item:hover {
        background: var(--section-alt);
    }

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: var(--orange-muted);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-detail-body h4 {
    font-size: 0.82rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

[data-theme="dark"] .contact-detail-body h4 {
    color: var(--text-dark);
}

.contact-detail-body p {
    font-size: 0.875rem;
    color: var(--mid-grey);
    line-height: 1.6;
}

    .contact-detail-body p a {
        color: var(--mid-grey);
        transition: color 0.2s;
    }

        .contact-detail-body p a:hover {
            color: var(--orange);
        }

.contact-map-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 600;
    margin-top: 0.4rem;
}

.contact-map-embed {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    height: 240px;
}

    .contact-map-embed iframe {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
    }


/* ─── CSR ───────────────────────────────────────────────────────── */
.csr-intro-section {
    padding: 5rem 0 4rem;
}

.csr-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.csr-intro-img {
    border-radius: 16px;
    overflow: hidden;
}

    .csr-intro-img img {
        width: 100%;
        height: 380px;
        object-fit: cover;
        display: block;
    }

.csr-intro-text p {
    color: var(--mid-grey);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.csr-intro-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

    .csr-intro-tags span {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--orange-muted);
        color: var(--orange);
        font-size: 0.85rem;
        font-weight: 600;
        padding: 0.45rem 1rem;
        border-radius: 20px;
    }

/* Internship section */
.csr-internship-section {
    background: var(--section-alt);
    padding: 5rem 0;
}

.csr-internship-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.csr-internship-body > p {
    color: var(--mid-grey);
    font-size: 0.925rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.csr-internship-modules {
    margin-top: 2rem;
}

    .csr-internship-modules .section-label {
        margin-bottom: 1rem;
    }

.csr-module-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.csr-module-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 0.5rem 0.75rem;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: border-color 0.2s, background 0.2s;
}

    .csr-module-item:hover {
        border-color: var(--orange);
        background: var(--orange-muted);
        color: var(--orange);
    }

    .csr-module-item i {
        color: var(--orange);
        font-size: 0.85rem;
        flex-shrink: 0;
        transition: color 0.2s;
    }

    .csr-module-item:hover i {
        color: var(--orange);
    }

.csr-internship-img-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.csr-internship-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.csr-internship-highlight {
    background: var(--navy);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

    .csr-internship-highlight i {
        color: var(--orange);
        font-size: 1.2rem;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .csr-internship-highlight p {
        color: rgba(255,255,255,0.82);
        font-size: 0.875rem;
        line-height: 1.65;
        margin: 0;
    }

        .csr-internship-highlight p strong {
            color: var(--orange);
        }

/* Community cards */
.csr-community-section {
    padding: 5rem 0;
}

.csr-community-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.csr-community-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card-bg);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .csr-community-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

.csr-community-img {
    height: 200px;
    overflow: hidden;
}

    .csr-community-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s;
    }

.csr-community-card:hover .csr-community-img img {
    transform: scale(1.06);
}

.csr-community-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.csr-community-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.csr-icon-edu {
    background: rgba(21,101,192,0.1);
    color: #1565C0;
}

[data-theme="dark"] .csr-icon-edu {
    color: #64B5F6;
}

.csr-icon-senior {
    background: rgba(232,112,26,0.12);
    color: var(--orange);
}

.csr-icon-child {
    background: rgba(46,125,50,0.12);
    color: #2E7D32;
}

[data-theme="dark"] .csr-icon-child {
    color: #4CAF50;
}

.csr-community-body h3 {
    font-size: 1rem;
    color: var(--navy);
}

[data-theme="dark"] .csr-community-body h3 {
    color: var(--text-dark);
}

.csr-community-body > p {
    font-size: 0.85rem;
    color: var(--mid-grey);
    line-height: 1.7;
}

.csr-community-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

    .csr-community-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.55rem;
        font-size: 0.8rem;
        color: var(--mid-grey);
        line-height: 1.5;
    }

        .csr-community-list li i {
            color: var(--orange);
            font-size: 0.8rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

/* Commitment strip */
.csr-commitment-strip {
    background: linear-gradient(135deg, var(--navy) 0%, #1E3A6A 100%);
    padding: 4rem 0;
}

.csr-commitment-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.csr-commitment-quote {
    font-size: 2rem;
    color: var(--orange);
    opacity: 0.5;
}

.csr-commitment-inner p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
}

.csr-commitment-sig {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

    .csr-commitment-sig strong {
        color: var(--orange);
        font-size: 0.9rem;
        font-weight: 700;
    }

    .csr-commitment-sig span {
        color: rgba(255,255,255,0.45);
        font-size: 0.78rem;
    }


/* ─── GALLERY ───────────────────────────────────────────────────── */
.gallery-section {
    padding: 3rem 0 5rem;
}

.gallery-filter-bar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.gallery-filter-btn {
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

    .gallery-filter-btn:hover {
        border-color: var(--orange);
        color: var(--orange);
    }

    .gallery-filter-btn.active {
        background: var(--orange);
        border-color: var(--orange);
        color: #fff;
    }

/* Masonry-style grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 0.75rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: var(--section-alt);
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,27,42,0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #fff;
    transition: background 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
    background: rgba(13,27,42,0.55);
}

.gallery-item-overlay i {
    font-size: 1.5rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s;
}

.gallery-item-overlay span {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--orange);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s 0.05s;
}

.gallery-item:hover .gallery-item-overlay i,
.gallery-item:hover .gallery-item-overlay span {
    opacity: 1;
    transform: none;
}

/* Lightbox */
.glb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5,10,18,0.96);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

    .glb-overlay.glb-active {
        opacity: 1;
        pointer-events: all;
    }

.glb-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

    .glb-content img {
        max-width: 90vw;
        max-height: 78vh;
        object-fit: contain;
        border-radius: 6px;
        display: block;
    }

.glb-caption {
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
    text-align: center;
    max-width: 600px;
}

.glb-counter {
    color: rgba(255,255,255,0.35);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

.glb-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10000;
}

    .glb-close:hover {
        background: rgba(232,112,26,0.5);
    }

.glb-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10000;
}

    .glb-nav:hover {
        background: rgba(232,112,26,0.5);
    }

.glb-prev {
    left: 1.5rem;
}

.glb-next {
    right: 1.5rem;
}


/* ─── SITEMAP ───────────────────────────────────────────────────── */
.sitemap-section {
    padding: 4rem 0 5rem;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.sitemap-group {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.sitemap-group-header {
    background: var(--navy);
    color: #fff;
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.9rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

    .sitemap-group-header i {
        color: var(--orange);
    }

.sitemap-list {
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

    .sitemap-list li a {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        padding: 0.65rem 1.25rem;
        font-size: 0.875rem;
        color: var(--text-light);
        border-left: 3px solid transparent;
        transition: all 0.18s;
        text-decoration: none;
    }

        .sitemap-list li a i {
            color: var(--mid-grey);
            font-size: 0.75rem;
            transition: color 0.18s;
        }

        .sitemap-list li a:hover {
            background: var(--orange-muted);
            color: var(--orange);
            border-left-color: var(--orange);
        }

            .sitemap-list li a:hover i {
                color: var(--orange);
            }

    .sitemap-list li + li a {
        border-top: 1px solid var(--border);
    }


/* ─── LEGAL (Privacy & Terms) ───────────────────────────────────── */
.legal-section {
    padding: 4rem 0 5rem;
}

.legal-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 3rem;
    align-items: start;
}

.legal-updated {
    font-size: 0.8rem;
    color: var(--mid-grey);
    background: var(--section-alt);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin-bottom: 2.5rem;
    display: inline-block;
}

.legal-block {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
}

    .legal-block:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .legal-block h2 {
        font-size: 1.15rem;
        color: var(--navy);
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.65rem;
        font-family: var(--font-head);
    }

[data-theme="dark"] .legal-block h2 {
    color: var(--text-dark);
}

.legal-block h2 i {
    color: var(--orange);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.legal-block p {
    color: var(--mid-grey);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 0.85rem;
}

    .legal-block p:last-child {
        margin-bottom: 0;
    }

    .legal-block p a {
        color: var(--orange);
        font-weight: 500;
    }

.legal-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .legal-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        font-size: 0.875rem;
        color: var(--mid-grey);
        line-height: 1.65;
        padding: 0.5rem 0.75rem;
        background: var(--section-alt);
        border-radius: 6px;
    }

        .legal-list li::before {
            content: '\f054';
            font-family: FontAwesome;
            color: var(--orange);
            font-size: 0.65rem;
            flex-shrink: 0;
            margin-top: 3px;
        }

.legal-contact-box {
    background: var(--section-alt);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

    .legal-contact-box div {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        font-size: 0.875rem;
        color: var(--text-light);
    }

        .legal-contact-box div i {
            color: var(--orange);
            width: 16px;
            text-align: center;
            flex-shrink: 0;
        }

        .legal-contact-box div a {
            color: var(--orange);
        }

/* Legal sidebar */
.legal-sidebar {
    position: sticky;
    top: 88px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.legal-toc-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.legal-toc-list {
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

    .legal-toc-list li a {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        padding: 0.55rem 1.25rem;
        font-size: 0.82rem;
        color: var(--text-light);
        text-decoration: none;
        border-left: 3px solid transparent;
        transition: all 0.18s;
    }

        .legal-toc-list li a i {
            color: var(--mid-grey);
            font-size: 0.7rem;
        }

        .legal-toc-list li a:hover {
            background: var(--orange-muted);
            color: var(--orange);
            border-left-color: var(--orange);
        }

    .legal-toc-list li + li a {
        border-top: 1px solid var(--border);
    }

.legal-cta-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .legal-cta-card h4 {
        font-size: 0.95rem;
        color: var(--navy);
    }

[data-theme="dark"] .legal-cta-card h4 {
    color: var(--text-dark);
}

.legal-cta-card p, .legal-cta-card .sidebar-highlight-card p {
    font-size: 0.82rem;
    color: var(--mid-grey);
    line-height: 1.6;
}

.legal-related-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

    .legal-related-list li a {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        color: var(--text-light);
        text-decoration: none;
        padding: 0.4rem 0;
        transition: color 0.18s;
    }

        .legal-related-list li a i {
            color: var(--orange);
            font-size: 0.75rem;
        }

        .legal-related-list li a:hover {
            color: var(--orange);
        }


/* ─── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .cap-areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .sitemap-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .cap-intro-grid,
    .cap-machines-layout,
    .contact-grid,
    .csr-intro-grid,
    .csr-internship-layout,
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .cap-intro-stat-card {
        position: static;
        transform: none;
        margin-top: 1.5rem;
    }

    .contact-info-col {
        position: static;
    }

    .legal-sidebar {
        position: static;
    }

    .cap-excellence-inner {
        flex-direction: column;
        text-align: center;
    }

    .csr-community-cards {
        grid-template-columns: 1fr;
    }

    .csr-module-grid {
        grid-template-columns: 1fr;
    }

    .cform-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-item-wide, .gallery-item-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .sitemap-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cap-areas-grid {
        grid-template-columns: 1fr;
    }

    .glb-prev {
        left: 0.5rem;
    }

    .glb-next {
        right: 0.5rem;
    }
}

.section-label-center {
    justify-content: center;
    text-align: center;
}

.section-title-center {
    text-align: center;
    margin-bottom: 3rem;
}
