/* ===== GLOBAL RESET & TYPOGRAPHY ===== */
:root {
    --navy-primary: #06132d;
    --navy-dark: #040c1e;
    --navy-light: #0d1e40;
    --orange-primary: #f26522;
    --orange-hover: #e05310;
    --cyan-accent: #00a4e4;
    --text-dark: #06132d;
    --text-muted: #5f6e82;
    --text-light-slate: #94a3b8;
    --bg-gray: #f1f3f7;
    --border-card: #e2e8f0;
}

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ===== UTILITIES ===== */
.text-orange {
    color: var(--orange-primary) !important;
}

/* ===== HEADER & NAVBAR ===== */
.custom-navbar {
    background-color: var(--navy-primary);
    padding-top: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: baseline;
}

.logo-i {
    color: var(--cyan-accent);
    font-weight: 800;
    margin-right: 1px;
}

.logo-bold {
    font-weight: 800;
}

.logo-sub {
    font-size: 9.5px;
    color: var(--orange-primary);
    letter-spacing: 4px;
    font-weight: 600;
    text-transform: lowercase;
    margin-top: 3px;
}

.navbar-nav .nav-link {
    color: #cbd5e1;
    font-weight: 500;
    font-size: 14px;
    margin: 0 10px;
    padding: 6px 0;
    transition: color 0.2s ease;
}

    .navbar-nav .nav-link:hover {
        color: var(--orange-primary);
    }

.active-link {
    color: #ffffff !important;
    border-bottom: 2px solid var(--orange-primary);
    padding-bottom: 4px;
    font-weight: 600;
}

.header-phone-pill {
    display: inline-flex;
    align-items: center;
    background-color: #0c1c38;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 7px 18px;
    color: #ffffff;
    font-weight: 600;
    font-size: 13.5px;
    text-decoration: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

    .header-phone-pill:hover {
        border-color: var(--orange-primary);
        color: #ffffff;
    }

/* ===== BUTTONS ===== */
.btn-navy-hero {
    background-color: var(--navy-primary);
    color: #ffffff;
    border: 1px solid var(--navy-primary);
    border-radius: 4px;
    padding: 10px 22px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.25s ease;
}

    .btn-navy-hero:hover {
        background-color: var(--navy-light);
        color: #ffffff;
        border-color: var(--navy-light);
    }

.btn-outline-hero {
    background-color: #ffffff;
    color: var(--navy-primary);
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    padding: 10px 22px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.25s ease;
}

    .btn-outline-hero:hover {
        background-color: #f8fafc;
        color: var(--navy-primary);
        border-color: #94a3b8;
    }

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: stretch;
    min-height: 480px;
    width: 100%;
}

.hero-text-col {
    flex: 0 0 38%;
    max-width: 38%;
    position: relative;
    display: flex;
    align-items: center;
    padding: 40px 20px 50px 60px;
    z-index: 3;
}

.hero-dot-bg {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 180px;
    height: 140px;
    background-image: radial-gradient(#d1dbe6 1.8px, transparent 1.8px);
    background-size: 14px 14px;
    opacity: 0.8;
    z-index: 1;
    pointer-events: none;
}

.hero-text-inner {
    position: relative;
    z-index: 2;
}

.hero-tagline {
    color: var(--orange-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.hero-heading {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.18;
    color: var(--navy-primary);
    margin-bottom: 16px;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 440px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

.hero-image-col {
    flex: 0 0 38%;
    max-width: 38%;
    position: relative;
    overflow: hidden;
}

.hero-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% center;
    display: block;
}

.hero-feather-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.7) 40%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.hero-side-col {
    flex: 0 0 24%;
    max-width: 24%;
    position: relative;
    background-color: var(--navy-primary);
    display: flex;
    align-items: center;
    margin-left: auto;
    z-index: 4;
}

.hero-curve-svg {
    position: absolute;
    top: 0;
    left: -40px;
    width: 42px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-side-content {
    position: relative;
    z-index: 2;
    padding: 30px 30px 30px 10px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
}

.hero-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-icon {
    font-size: 22px;
    color: var(--orange-primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-text h6 {
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 2px;
}

.feature-text p {
    color: var(--text-light-slate);
    font-size: 11.5px;
    margin: 0;
    line-height: 1.35;
}

/* ===== FLOATING STATS BAR ===== */
.stats-bar-section {
    position: relative;
    margin-top: -42px;
    margin-bottom: 25px;
    z-index: 15;
}

.stats-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(6, 19, 45, 0.08);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 1080px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.stat-icon-wrap {
    font-size: 30px;
    color: var(--orange-primary);
    flex-shrink: 0;
}

.stat-text-wrap {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--navy-primary);
    line-height: 1.1;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

/* ===== SERVICES & PROCESS (50% / 50% SPLIT) ===== */
.services-process-section {
    width: 100%;
    overflow: hidden;
}

.services-process-container {
    display: flex;
    align-items: stretch;
    width: 100%;
}

/* LEFT: SERVICES */
.services-col {
    flex: 0 0 50%;
    max-width: 50%;
    background-color: #ffffff;
    padding: 35px 35px 35px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section-tag-orange {
    color: var(--orange-primary);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.services-main-heading {
    color: var(--navy-primary);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 22px;
}

.services-cards-grid {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.service-box {
    flex: 1;
    background-color: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: 6px;
    padding: 16px 10px;
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

    .service-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(6, 19, 45, 0.08);
        border-color: var(--orange-primary);
    }

.service-icon-box {
    font-size: 24px;
    color: var(--navy-primary);
    margin-bottom: 12px;
}

.service-box h5 {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 6px;
    line-height: 1.25;
}

.service-box p {
    font-size: 10.5px;
    color: var(--text-muted);
    line-height: 1.35;
    margin: 0;
}

.services-action-row {
    text-align: center;
}

/* RIGHT: PROCESS */
.process-col {
    flex: 0 0 50%;
    max-width: 50%;
    background-color: var(--navy-primary);
    padding: 35px 50px 35px 35px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.process-main-heading {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 35px;
}

.process-horizontal-row {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.process-connecting-line {
    position: absolute;
    top: 24px;
    left: 30px;
    right: 30px;
    height: 1px;
    border-top: 1px dashed rgba(255, 255, 255, 0.25);
    z-index: 1;
}

.process-step-node {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
    padding: 0 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-circle-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}

.process-circle-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--orange-primary);
    background-color: var(--navy-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.process-number-badge {
    position: absolute;
    bottom: -5px;
    right: -3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--orange-primary);
    color: var(--navy-primary);
    font-size: 10.5px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step-node h6 {
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 700;
    margin-bottom: 4px;
}

.process-step-node p {
    color: var(--text-light-slate);
    font-size: 10px;
    line-height: 1.35;
    margin: 0;
}

/* ===== INDUSTRIES & CTA (50% / 50% SPLIT) ===== */
.industries-cta-section {
    width: 100%;
}

.industries-cta-container {
    display: flex;
    align-items: stretch;
    width: 100%;
}

/* LEFT: INDUSTRIES */
.industries-col {
    flex: 0 0 50%;
    max-width: 50%;
    background-color: var(--bg-gray);
    padding: 24px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.industries-horizontal-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 8px;
}

.industry-item {
    text-align: center;
    flex: 1;
}

    .industry-item i {
        font-size: 22px;
        color: var(--navy-primary);
        margin-bottom: 6px;
        display: block;
    }

    .industry-item span {
        font-size: 11px;
        font-weight: 600;
        color: var(--navy-primary);
        display: block;
        white-space: nowrap;
    }

/* RIGHT: CTA BANNER */
.cta-col {
    flex: 0 0 50%;
    max-width: 50%;
    background-color: var(--orange-primary);
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cta-content-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-headset-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--navy-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.cta-text-info h5 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 2px;
}

.cta-text-info p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    margin: 0;
}

.cta-action-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

/* ===== SITE FOOTER ===== */
.site-footer {
    background-color: var(--navy-dark);
    color: var(--text-light-slate);
    padding: 16px 0;
    font-size: 12.5px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .hero-heading {
        font-size: 2.1rem;
    }

    .hero-text-col {
        padding-left: 30px;
    }

    .services-col {
        padding-left: 25px;
    }

    .process-col {
        padding-right: 25px;
    }
}

@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
    }

    .hero-text-col, .hero-image-col, .hero-side-col {
        flex: 0 0 100%;
        max-width: 100%;
        margin-left: 0;
    }

    .hero-curve-svg {
        display: none;
    }

    .hero-side-col {
        padding: 30px;
    }

    .stats-card {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        margin-top: 0;
    }

    .services-process-container, .industries-cta-container {
        flex-direction: column;
    }

    .services-col, .process-col, .industries-col, .cta-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 30px 20px;
    }

    .services-cards-grid {
        flex-wrap: wrap;
    }

    .service-box {
        flex: 0 0 calc(50% - 10px);
    }

    .process-horizontal-row {
        flex-direction: column;
        gap: 20px;
    }

    .process-connecting-line {
        display: none;
    }

    .process-step-node {
        flex-direction: row;
        gap: 16px;
        text-align: left;
    }

    .industries-horizontal-list {
        flex-wrap: wrap;
    }

    .industry-item {
        flex: 0 0 calc(33.33% - 8px);
        margin-bottom: 12px;
    }

    .cta-col {
        flex-direction: column;
        text-align: center;
    }

    .cta-content-wrapper {
        flex-direction: column;
    }
}
/* ===== CONTACT US PAGE ===== */
.contact-hero {
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.contact-hero-container {
    display: flex;
    align-items: stretch;
    min-height: 340px;
}

.contact-hero-text {
    flex: 0 0 42%;
    max-width: 42%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 20px 40px 60px;
    background-color: var(--navy-primary);
}

.contact-hero-heading {
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
}

.contact-hero .hero-desc {
    color: var(--text-light-slate);
}

.contact-hero-image-col {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.contact-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% center;
    display: block;
}

.contact-hero-curve {
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    height: 100%;
}

.contact-feather-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.7) 40%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.navy-feather-blend {
    position: absolute;
    top: 0;
    left: -2px;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, #06132d 0%, #06132d 15%, rgba(6,19,45,0.8) 45%, rgba(6,19,45,0) 100%);
    pointer-events: none;
    z-index: 1;
}

.careers-feather-blend {
    position: absolute;
    top: 0;
    left: -2px;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, var(--bg-gray) 0%, var(--bg-gray) 15%, rgba(241, 243, 247, 0.8) 45%, rgba(241, 243, 247, 0) 100%);
    pointer-events: none;
    z-index: 1;
}
    .contact-info-banner {
    background-color: var(--orange-primary);
    padding: 22px 0;
    margin-left: 5%;
    margin-right: 5%;
    border: 3px solid white;
    top: -40px;
    position: relative;
    border-radius: 10px;
    z-index: 50;
}

.contact-info-banner-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--navy-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    margin-right: 18px;
    margin-left: 5%;
    flex-shrink: 0;
}

.contact-info-banner-text {
    color: #fff;
    margin-right: 5%;
    font-size: 14px;
}

.contact-main-section {
    background-color: var(--bg-gray);
    padding: 20px 0;
}

.contact-grid {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.contact-form-card {
    flex: 0 0 58%;
    max-width: 58%;
    background-color: #fff;
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 6px 20px rgba(6,19,45,0.1);
}

.contact-form-title {
    color: var(--navy-primary);
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-form-underline {
    width: 45px;
    height: 3px;
    background-color: var(--orange-primary);
    margin-bottom: 16px;
}

.contact-form-subtitle {
    color: var(--text-muted);
    font-size: 13.5px;
    margin-bottom: 24px;
}

.form-group-custom {
    margin-bottom: 18px;
}

.form-label-custom {
    display: block;
    font-weight: 700;
    font-size: 13px;
    color: var(--navy-primary);
    margin-bottom: 6px;
}

.form-control-custom {
    width: 100%;
    border: 1px solid var(--border-card);
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 13.5px;
    color: var(--text-dark);
}

    .form-control-custom:focus {
        outline: none;
        border-color: var(--orange-primary);
    }

.contact-side-col {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card, .offices-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 28px;
    box-shadow: 0 6px 20px rgba(6,19,45,0.1);
}

.contact-info-title {
    color: var(--navy-primary);
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 17px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

    .info-item:last-child {
        margin-bottom: 0;
    }

.info-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--navy-primary);
    color: var(--orange-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.info-item h6 {
    font-weight: 700;
    color: var(--navy-primary);
    font-size: 13.5px;
    margin-bottom: 3px;
}

.info-item p {
    color: var(--text-muted);
    font-size: 12.5px;
    margin: 0;
}

.map-wrap {
    margin-top: 16px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-cta-banner {
    background-color: var(--orange-primary);
    padding: 28px 0;
    margin-left: 5%;
    margin-right: 5%;
    top: 1px;
    position: relative;
    border-radius: 10px 10px 0 0;
}

@media (max-width: 991px) {
    .contact-hero-container {
        flex-direction: column;
    }

    .contact-hero-text, .contact-hero-image-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .navy-feather-blend {
        top: -2px;
        left: 0;
        width: 100%;
        height: 50%;
        background: linear-gradient(180deg, #06132d 0%, #06132d 15%, rgba(6,19,45,0.8) 45%, rgba(6,19,45,0) 100%);
    }

    .careers-feather-blend {
        top: -2px;
        left: 0;
        width: 100%;
        height: 50%;
        background: linear-gradient(180deg, var(--bg-gray) 0%, var(--bg-gray) 15%, rgba(241, 243, 247, 0.8) 45%, rgba(241, 243, 247, 0) 100%);
    }

    .contact-grid {
        flex-direction: column;
    }

    .contact-form-card, .contact-side-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/* ===== LOGO FIX ===== */
.logo-bolt {
    font-weight: 800;
    color: #ffffff;
}

/* ===== RICH FOOTER ===== */
.site-footer-rich {
    background-color: var(--navy-dark);
    color: var(--text-light-slate);
    padding: 45px 0 15px;
}

.footer-grid-rich {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 25px;
}

.footer-tagline {
    font-size: 12.5px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-socials-rich {
    display: flex;
    gap: 10px;
}

    .footer-socials-rich a {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background-color: rgba(255,255,255,0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        font-size: 13px;
    }

        .footer-socials-rich a:hover {
            background-color: var(--orange-primary);
        }

.footer-heading-rich {
    color: #fff;
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-links-rich {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links-rich li {
        margin-bottom: 9px;
    }

    .footer-links-rich a {
        color: var(--text-light-slate);
        text-decoration: none;
        font-size: 12.5px;
    }

        .footer-links-rich a:hover {
            color: var(--orange-primary);
        }

.footer-contact-rich {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-contact-rich li {
        font-size: 12.5px;
        margin-bottom: 12px;
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }

.footer-divider-rich {
    border-color: rgba(255,255,255,0.1);
    margin: 25px 0 15px;
}

.footer-bottom-rich {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
}

.footer-bottom-links-rich {
    display: flex;
    gap: 18px;
}

    .footer-bottom-links-rich a {
        color: var(--text-light-slate);
        text-decoration: none;
    }

        .footer-bottom-links-rich a:hover {
            color: var(--orange-primary);
        }

@media (max-width: 991px) {
    .footer-grid-rich {
        grid-template-columns: 1fr 1fr;
    }
}
/* ===== CONSISTENT CONTAINER FOR ALIGNMENT ===== */
.contact-aligned-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
/* ===== CONTACT HERO - REUSE INDEX HERO STYLE ===== */
.contact-curve-position {
    position: absolute;
    top: 0;
    right: -110px;
    width: 220px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    margin-left: 80%;
}
/* ===== VERIFICATION PAGE ===== */
.verify-hero-text {
    background-color: var(--navy-primary);
}

.btn-orange-solid {
    background-color: var(--orange-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 22px;
    font-weight: 700;
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

    .btn-orange-solid:hover {
        background-color: var(--orange-hover);
        color: #fff;
    }

/* CARDS */
.verify-cards-section {
    background-color: #fafafa;
    padding: 50px 0;
}

.verify-cards-grid {
    display: flex;
    gap: 25px;
    position: relative;
    z-index: 10;
    transform: translateY(-90px);
    margin-bottom: -100px;
    align-items: stretch;
}

.verify-card {
    flex: 1;
    background-color: #fff;
    border-radius: 10px;
    padding: 28px;
    box-shadow: 0 6px 20px rgba(6,19,45,0.06);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.verify-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--orange-primary);
    color: var(--orange-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 16px;
}

.verify-card h5 {
    color: var(--navy-primary);
    font-weight: 800;
    margin-bottom: 10px;
    min-height: 48px;
}

.verify-card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(13px * 1.5 * 3);
}

.verify-card-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    height: 150px;
    background-color: #f8f9fb;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .verify-card-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

.verify-now-link {
    color: var(--orange-primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 13.5px;
    margin-top: auto;
}

    .verify-now-link i {
        margin-left: 6px;
    }

/* LOOKUP BOX */
.verify-lookup-section {
    padding: 0 0 50px;
}

.verify-lookup-card {
    background-color: var(--navy-primary);
    border-radius: 14px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.verify-lookup-text h3 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 10px;
}

.verify-lookup-desc {
    color: var(--text-light-slate);
    font-size: 13.5px;
    margin-bottom: 20px;
}

.verify-lookup-form {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.verify-input-wrap {
    flex: 1;
    background-color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 14px;
}

    .verify-input-wrap i {
        color: var(--text-muted);
        margin-right: 10px;
    }

    .verify-input-wrap input {
        border: none;
        outline: none;
        padding: 12px 0;
        width: 100%;
        font-size: 13.5px;
    }

.verify-help-text {
    color: var(--text-light-slate);
    font-size: 12.5px;
    margin: 0;
}

    .verify-help-text a {
        color: var(--orange-primary);
        text-decoration: none;
    }

.verify-lookup-visual {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* RESULT CARD */
.verify-result-section {
    padding-bottom: 50px;
}

.verify-result-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(6,19,45,0.15);
}

.verify-result-title {
    color: var(--navy-primary);
    font-weight: 800;
    margin-bottom: 20px;
}

.verify-result-grid {
    display: flex;
    gap: 40px;
}

.verify-result-status {
    flex: 0 0 35%;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.verify-status-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid #22c55e;
    color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.verify-status-label {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
}

.verify-result-status h5 {
    color: #22c55e;
    font-weight: 800;
    margin: 2px 0 6px;
}

.verify-result-status p {
    color: var(--text-muted);
    font-size: 12.5px;
    margin: 0;
}

.verify-result-details {
    flex: 1;
}

.verify-detail-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-card);
    font-size: 13px;
}

    .verify-detail-row:last-child {
        border-bottom: none;
    }

    .verify-detail-row i {
        color: var(--orange-primary);
        width: 18px;
    }

    .verify-detail-row span {
        color: var(--text-muted);
        flex: 1;
    }

    .verify-detail-row strong {
        color: var(--navy-primary);
    }

.verify-checked-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
    margin: 20px 0 0;
}

/* BADGES */
.verify-badges-section {
    padding-bottom: 50px;
}

.verify-badges-grid {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(6,19,45,0.06);
}

.verify-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .verify-badge-item i {
        font-size: 24px;
        color: var(--orange-primary);
    }

    .verify-badge-item h6 {
        color: var(--navy-primary);
        font-weight: 700;
        margin-bottom: 2px;
        font-size: 13.5px;
    }

    .verify-badge-item p {
        color: var(--text-muted);
        font-size: 11.5px;
        margin: 0;
    }

/* CONTACT STRIP */
.verify-contact-strip {
    background-color: var(--navy-primary);
    padding: 20px 0;
}

.verify-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.verify-strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 13px;
}

    .verify-strip-item i {
        color: var(--orange-primary);
        font-size: 18px;
    }

    .verify-strip-item small {
        color: var(--orange-primary);
        font-size: 11px;
    }

.verify-strip-btn {
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .verify-cards-grid {
        flex-direction: column;
    }

    .verify-lookup-card {
        flex-direction: column;
        text-align: center;
    }
    
    .verify-lookup-visual {
        margin-left: 0;
        margin-top: 20px;
    }

    .verify-lookup-form {
        flex-direction: column;
    }

    .verify-result-grid {
        flex-direction: column;
        gap: 20px;
    }

    .verify-badges-grid {
        flex-direction: column;
        gap: 16px;
    }

    .verify-strip-inner {
        flex-direction: column;
        text-align: center;
    }
}
/* ===== ABOUT US PAGE ===== */
.about-hero-buttons {
    display: flex;
    gap: 12px;
}

.about-outline-btn {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

    .about-outline-btn:hover {
        background-color: rgba(255,255,255,0.1);
        color: #fff;
        border-color: #fff;
    }

/* WHO WE ARE */
.who-we-are-section {
    padding: 60px 0;
}

.who-we-are-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

.who-we-are-text {
    flex: 0 0 48%;
    max-width: 48%;
}

.who-we-are-heading {
    color: var(--navy-primary);
    font-weight: 800;
    margin-bottom: 18px;
}

.who-we-are-text p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.who-we-are-image {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

    .who-we-are-image img {
        width: 100%;
        height: 340px;
        object-fit: cover;
        display: block;
    }

.who-we-are-caption {
    position: absolute;
    top: 30px;
    right: 30px;
    text-align: right;
}

    .who-we-are-caption p {
        color: #fff;
        font-weight: 800;
        font-size: 15px;
        margin: 0;
        line-height: 1.4;
        text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    }

.caption-underline {
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--orange-primary);
    margin-top: 8px;
    margin-left: auto;
}

/* MISSION / VISION / VALUES */
.mvv-section {
    padding-bottom: 60px;
}

.mvv-grid {
    display: flex;
    gap: 25px;
}

.mvv-card {
    flex: 1;
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(6,19,45,0.06);
}

.mvv-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: var(--orange-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}

.mvv-card h5 {
    color: var(--navy-primary);
    font-weight: 800;
    margin-bottom: 8px;
}

.mvv-underline {
    display: block;
    width: 35px;
    height: 3px;
    background-color: var(--orange-primary);
    margin-bottom: 16px;
}

.mvv-card p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.7;
    margin: 0;
}

.mvv-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .mvv-values-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--text-dark);
        font-size: 13.5px;
        margin-bottom: 12px;
    }

    .mvv-values-list i {
        color: var(--orange-primary);
    }

/* TEAM */
.team-section {
    padding-bottom: 60px;
}

.team-heading {
    color: var(--navy-primary);
    font-weight: 800;
    margin-bottom: 30px;
}

.team-grid {
    display: flex;
    gap: 25px;
}

.team-card {
    flex: 1;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(6,19,45,0.06);
    padding-bottom: 20px;
}

.team-photo-wrap {
    height: 200px;
    background-color: var(--bg-gray);
}

    .team-photo-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.team-card h6 {
    color: var(--navy-primary);
    font-weight: 800;
    margin: 16px 20px 4px;
}

.team-card p {
    color: var(--text-muted);
    font-size: 13px;
    margin: 0 20px 10px;
}

.team-underline {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--orange-primary);
    margin: 0 20px;
}

@media (max-width: 991px) {
    .who-we-are-grid {
        flex-direction: column;
    }

    .who-we-are-text, .who-we-are-image {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .mvv-grid, .team-grid {
        flex-direction: column;
    }
}

/* ===== SAUDI ARABIA CLICKABLE MAP ===== */
.saudi-map-svg {
    width: 100%;
    height: auto;
    display: block;
}

.map-pin-dot {
    cursor: pointer;
    transition: r 0.2s ease;
}

    .map-pin-dot:hover {
        r: 11;
    }

.map-city-label {
    font-size: 12px;
    font-weight: 700;
    fill: var(--navy-primary);
    text-anchor: middle;
    cursor: pointer;
}

.map-city-main {
    font-size: 13px;
}

.map-country-label {
    font-size: 10px;
    fill: #94a3b8;
    font-weight: 600;
    letter-spacing: 1px;
}

.map-sea-label {
    font-size: 10px;
    fill: #7fa8cc;
    font-weight: 600;
    letter-spacing: 1px;
}

.map-title-label {
    font-size: 16px;
    font-weight: 800;
    fill: var(--navy-primary);
    text-anchor: middle;
}

/* ===== NOT A ROBOT CHECKBOX ===== */
.captcha-box {
    display: flex;
    align-items: center;
    background-color: #f9f9fa;
    border: 1px solid var(--border-card);
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 20px;
    max-width: 220px;
}

.captcha-checkbox {
    display: none;
}

.captcha-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 13.5px;
    color: var(--text-dark);
    margin: 0;
}

.captcha-custom-box {
    width: 22px;
    height: 22px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    flex-shrink: 0;
}

    .captcha-custom-box i {
        font-size: 12px;
        color: #fff;
        display: none;
    }

.captcha-checkbox:checked + .captcha-label .captcha-custom-box {
    background-color: var(--orange-primary);
    border-color: var(--orange-primary);
}

    .captcha-checkbox:checked + .captcha-label .captcha-custom-box i {
        display: block;
    }

.btn-navy-hero:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
/* ===== LOCATION MAP IMAGE ===== */
.location-map-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* ===================================================================
   SERVICES LANDING PAGE (Views/Home/Services.cshtml)
   =================================================================== */

/* ---- HERO ---- */
.svc2-hero {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.svc2-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.svc2-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(90deg, var(--navy-primary) 0%, rgba(6,19,45,0.92) 35%, rgba(6,19,45,0.55) 60%, rgba(6,19,45,0.15) 100%);
}

.svc2-hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding-top: 60px;
    padding-bottom: 60px;
    text-align:left;
    margin:0;
}

.svc2-hero-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--orange-primary);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.svc2-hero-tag-bar {
    width: 22px;
    height: 2px;
    background: var(--orange-primary);
    display: inline-block;
}

.svc2-hero-title {
    color: #fff;
    font-weight: 800;
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 18px;
}

.svc2-hero-desc {
    color: var(--text-light-slate);
    font-size: 1.02rem;
    margin-bottom: 30px;
    max-width: 460px;
}

.svc2-hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.svc2-hero-footline {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light-slate);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin: 0;
}

.svc2-hero-footline-bar {
    width: 28px;
    height: 2px;
    background: var(--orange-primary);
    display: inline-block;
}

/* ---- SERVICES INCLUDES ---- */
.svc2-includes-section {
    padding: 70px 0 40px;
    text-align: center;
}

.svc2-includes-heading {
    color: var(--navy-primary);
    font-weight: 800;
    font-size: 2.1rem;
    margin-bottom: 14px;
}

.svc2-heading-underline {
    width: 60px;
    height: 3px;
    background: var(--orange-primary);
    margin-bottom: 40px;
}

.svc2-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    max-width: 1000px;
    margin: 0 auto 30px;
    text-align: left;
}

.svc2-card {
    display: block;
    text-decoration: none;
    border: 1px solid var(--border-card);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: 0.2s;
}

    .svc2-card:hover {
        box-shadow: 0 12px 26px rgba(0,0,0,0.08);
        transform: translateY(-2px);
    }

.svc2-card-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.svc2-card-body {
    padding: 22px 24px;
}

.svc2-card-bar {
    width: 32px;
    height: 3px;
    background: var(--orange-primary);
    margin-bottom: 14px;
}

.svc2-card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

    .svc2-card-title-row h5 {
        color: var(--navy-primary);
        font-weight: 700;
        font-size: 1.25rem;
        margin: 0;
    }

    .svc2-card-title-row i {
        color: var(--orange-primary);
        font-size: 18px;
    }

.svc2-card-body p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin: 0;
}

.svc2-info-strip {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-gray);
    border-radius: 8px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.92rem;
}

    .svc2-info-strip i {
        color: var(--navy-primary);
        font-size: 16px;
    }

.svc2-info-divider {
    width: 1px;
    height: 20px;
    background: #c7cddb;
    display: inline-block;
}

/* ---- CTA STRIP ---- */
.svc2-cta-strip {
    background-color: var(--navy-primary);
    padding: 34px 0;
}

.svc2-cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
}

.svc2-cta-strip-left {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.svc2-cta-strip-bar {
    width: 4px;
    align-self: stretch;
    background: var(--orange-primary);
    border-radius: 2px;
    flex-shrink: 0;
}

.svc2-cta-strip-left h5 {
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.svc2-cta-strip-left p {
    color: var(--text-light-slate);
    font-size: 0.88rem;
    margin: 0;
}

.svc2-cta-strip-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ---- FOOTER ---- */
.svc2-footer {
    background-color: var(--navy-primary);
    padding: 50px 0 24px;
}

.svc2-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.4fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 30px;
}

.svc2-footer-heading {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.svc2-footer-links-cols {
    display: flex;
    gap: 30px;
}

.svc2-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .svc2-footer-links li {
        margin-bottom: 10px;
    }

    .svc2-footer-links a {
        color: var(--text-light-slate);
        text-decoration: none;
        font-size: 0.9rem;
    }

        .svc2-footer-links a:hover,
        .svc2-footer-links a.active-link {
            color: var(--orange-primary);
        }

.svc2-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .svc2-footer-contact li {
        color: var(--text-light-slate);
        font-size: 0.9rem;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .svc2-footer-contact i {
        color: var(--orange-primary);
        width: 16px;
    }

.svc2-footer-badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

    .svc2-footer-badges span {
        color: #fff;
        font-weight: 700;
        font-size: 0.85rem;
        border: 1px solid rgba(255,255,255,0.25);
        border-radius: 6px;
        padding: 6px 12px;
    }

.svc2-footer-divider {
    border-color: rgba(255,255,255,0.12);
    margin: 0 0 20px;
}

.svc2-footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--text-light-slate);
    font-size: 0.8rem;
}

.svc2-footer-tagline {
    letter-spacing: 1.5px;
    color: var(--text-light-slate);
    margin: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .svc2-cards-grid {
        grid-template-columns: 1fr;
    }

    .svc2-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .svc2-hero-title {
        font-size: 2.2rem;
    }

    .svc2-hero-content {
        max-width: 100%;
    }

    .svc2-hero-overlay {
        background: linear-gradient(180deg, var(--navy-primary) 30%, rgba(6,19,45,0.85) 70%, rgba(6,19,45,0.55) 100%);
    }
}

@media (max-width: 576px) {
    .svc2-footer-grid {
        grid-template-columns: 1fr;
    }

    .svc2-footer-links-cols {
        flex-direction: column;
        gap: 4px;
    }
}
/* ===== SERVICES NAV DROPDOWN - OPEN ON HOVER ===== */
@media (min-width: 992px) {
    .nav-item-hover-dropdown .dropdown-menu {
        display: none;
        margin-top: 0;
        border: none;
        box-shadow: 0 10px 25px rgba(6,19,45,0.15);
        border-radius: 8px;
        padding: 8px;
    }

    .nav-item-hover-dropdown:hover .dropdown-menu {
        display: block;
    }

    .nav-item-hover-dropdown .dropdown-item {
        font-size: 13.5px;
        padding: 8px 14px;
        border-radius: 5px;
        color: var(--navy-primary);
        font-weight: 500;
    }

        .nav-item-hover-dropdown .dropdown-item:hover {
            background-color: var(--bg-gray);
            color: var(--orange-primary);
        }
}
/* ===== INSPECTION SERVICES PAGE ===== */

/* TRUST STRIP */
.inspection-trust-strip {
    background-color: var(--navy-primary);
    padding: 22px 0;
}

.inspection-trust-grid {
    display: flex;
    justify-content: space-between;
}

.inspection-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    padding: 0 15px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

    .inspection-trust-item:last-child {
        border-right: none;
    }

.inspection-trust-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--orange-primary);
    color: var(--orange-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.inspection-trust-item h6 {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 2px;
}

.inspection-trust-item p {
    color: var(--text-light-slate);
    font-size: 11px;
    margin: 0;
}

/* SERVICES GRID */
.inspection-services-section {
    padding: 60px 0;
}

.inspection-services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 35px;
}

.inspection-services-heading {
    color: var(--navy-primary);
    font-weight: 800;
    margin: 0;
}

.inspection-services-subtext {
    color: var(--text-muted);
    font-size: 13.5px;
    max-width: 320px;
    margin: 0;
}

.inspection-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.inspection-service-card {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(6,19,45,0.06);
}

.inspection-card-img {
    flex: 0 0 40%;
    max-width: 40%;
}

    .inspection-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.inspection-card-body {
    flex: 1;
    padding: 22px;
}

.inspection-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid var(--orange-primary);
    color: var(--orange-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 12px;
}

.inspection-card-body h5 {
    color: var(--navy-primary);
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 15px;
}

.inspection-card-body p {
    color: var(--text-muted);
    font-size: 12.5px;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* WORKFLOW */
.inspection-workflow-section {
    background-color: var(--navy-primary);
    padding: 55px 0;
}

.inspection-workflow-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 40px;
}

.inspection-workflow-subtext {
    color: var(--text-light-slate);
    font-size: 13.5px;
    max-width: 340px;
    margin: 0;
}

.inspection-workflow-row {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.inspection-workflow-connector {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    height: 1px;
    border-top: 1px dashed rgba(255,255,255,0.2);
}

.inspection-workflow-step {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
    padding: 0 10px;
}

.inspection-workflow-icon {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--orange-primary);
    background-color: var(--navy-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--orange-primary);
    margin: 0 auto 14px;
}

    .inspection-workflow-icon span {
        position: absolute;
        top: -20px;
        color: var(--orange-primary);
        font-weight: 800;
        font-size: 12px;
    }

.inspection-workflow-step h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 6px;
}

.inspection-workflow-step p {
    color: var(--text-light-slate);
    font-size: 11.5px;
    margin: 0;
}

/* WHY CHOOSE US */
.inspection-why-section {
    padding: 0;
}

.inspection-why-grid {
    display: flex;
    align-items: stretch;
}

.inspection-why-image {
    flex: 0 0 40%;
    max-width: 40%;
    position: relative;
}

    .inspection-why-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.inspection-why-caption {
    position: absolute;
    top: 30px;
    left: 25px;
}

    .inspection-why-caption p {
        color: #fff;
        font-weight: 800;
        font-size: 14px;
        margin: 0;
        line-height: 1.4;
        text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    }

.inspection-why-text {
    flex: 1;
    padding: 55px 50px;
}

.inspection-why-cards {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.inspection-why-card {
    flex: 1;
    background-color: var(--bg-gray);
    border-radius: 8px;
    padding: 20px;
}

    .inspection-why-card i {
        font-size: 22px;
        color: var(--orange-primary);
        margin-bottom: 12px;
        display: block;
    }

    .inspection-why-card h6 {
        color: var(--navy-primary);
        font-weight: 700;
        font-size: 13.5px;
        margin-bottom: 8px;
    }

    .inspection-why-card p {
        color: var(--text-muted);
        font-size: 12px;
        line-height: 1.6;
        margin: 0;
    }

/* CTA BANNER */
.inspection-cta-banner {
    background-image: linear-gradient(rgba(6,19,45,0.85), rgba(6,19,45,0.85)), url('/images/inspection-cta-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 70px 0;
}

    .inspection-cta-banner .cta-text-info h5 {
        color: #fff;
        font-weight: 800;
        margin-bottom: 4px;
    }

    .inspection-cta-banner .cta-text-info p {
        color: var(--text-light-slate);
        font-size: 13.5px;
        margin: 0;
    }

@media (max-width: 991px) {
    .inspection-trust-grid {
        flex-direction: column;
        gap: 16px;
    }

    .inspection-trust-item {
        border-right: none;
    }

    .inspection-services-header, .inspection-workflow-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .inspection-cards-grid {
        grid-template-columns: 1fr;
    }

    .inspection-service-card {
        flex-direction: column;
    }

    .inspection-card-img {
        flex: 0 0 100%;
        max-width: 100%;
        height: 180px;
    }

    .inspection-workflow-row {
        flex-direction: column;
        gap: 25px;
    }

    .inspection-workflow-connector {
        display: none;
    }

    .inspection-why-grid {
        flex-direction: column;
    }

    .inspection-why-image, .inspection-why-text {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .inspection-why-image {
        height: 250px;
    }

    .inspection-why-cards {
        flex-direction: column;
    }

    .inspection-cta-banner .contact-aligned-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}
/* ===== TRAINING SERVICES PAGE ===== */

/* STATS STRIP */
.training-stats-section {
    padding: 40px 0;
    background-color: var(--bg-gray);
}

.training-stats-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.training-stats-heading {
    color: var(--navy-primary);
    font-weight: 800;
    margin: 0;
}

.training-stats-numbers {
    display: flex;
    gap: 25px;
    align-items: center;
}

.training-stat-item {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid var(--border-card);
}

    .training-stat-item:last-child {
        border-right: none;
    }

    .training-stat-item i {
        font-size: 26px;
        color: var(--orange-primary);
        margin-bottom: 8px;
        display: block;
    }

    .training-stat-item h3 {
        color: var(--navy-primary);
        font-weight: 800;
        margin: 0 0 3px;
        font-size: 1.4rem;
    }

    .training-stat-item p {
        color: var(--text-muted);
        font-size: 12px;
        margin: 0;
    }

/* PROGRAMS GRID */
.training-view-all {
    color: var(--orange-primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 13.5px;
    white-space: nowrap;
}

.training-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.training-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(6,19,45,0.06);
}

.training-card-img {
    height: 140px;
}

    .training-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.training-card-body {
    padding: 20px;
}

    .training-card-body h5 {
        color: var(--navy-primary);
        font-weight: 800;
        margin-bottom: 8px;
        font-size: 14px;
    }

    .training-card-body p {
        color: var(--text-muted);
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 10px;
    }

/* WHY ROW - 4 items instead of 5, no numbers */
.training-why-row .inspection-workflow-icon span {
    display: none;
}

/* READY TO TRAIN SECTION */
.training-ready-section {
    padding: 0;
}

.training-ready-grid {
    display: flex;
    align-items: stretch;
}

.training-ready-image {
    flex: 0 0 42%;
    max-width: 42%;
}

    .training-ready-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.training-ready-text {
    flex: 1;
    background-color: var(--bg-gray);
    padding: 55px 50px;
    position: relative;
}

.training-ready-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.training-quote {
    margin-top: 30px;
    padding-left: 16px;
    border-left: 3px solid var(--orange-primary);
}

    .training-quote p {
        color: var(--text-dark);
        font-style: italic;
        font-size: 14px;
        margin: 0;
    }

@media (max-width: 991px) {
    .training-stats-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .training-stats-numbers {
        flex-wrap: wrap;
    }

    .training-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .training-ready-grid {
        flex-direction: column;
    }

    .training-ready-image, .training-ready-text {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .training-ready-image {
        height: 250px;
    }
}

@media (max-width: 600px) {
    .training-cards-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== GALLERY PAGE ===== */
.gallery-fullwidth-hero {
    position: relative;
    min-height: 500px;
    background-image: url('/images/gallery-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.gallery-fullwidth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 1;
}

.gallery-fullwidth-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    width: 100%;
    padding: 60px 40px 60px 60px;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.gallery-fw-heading {
    color: var(--navy-primary);
    font-weight: 900;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 12px;
}

.gallery-fw-desc {
    color: var(--navy-primary);
    font-weight: 600;
    font-size: 15px;
    margin: 0;
}

@media (max-width: 991px) {
    .gallery-fullwidth-hero {
        min-height: 280px;
    }

    .gallery-fullwidth-content {
        padding: 40px 25px;
        max-width: 100%;
    }

    .gallery-fw-heading {
        font-size: 2rem;
    }
}

/* FILTER TABS */
.gallery-filter-section {
    padding: 40px 0 10px;
}

.gallery-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    background-color: #fff;
    border: 1px solid var(--border-card);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 13px;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .gallery-filter-btn:hover {
        border-color: var(--orange-primary);
        color: var(--orange-primary);
    }

    .gallery-filter-btn.active {
        background-color: var(--navy-primary);
        border-color: var(--navy-primary);
        color: #fff;
    }

/* GALLERY GRID */
.gallery-grid-section {
    padding: 30px 0 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 220px;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }

.gallery-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: rgba(6,19,45,0.85);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 4px;
}

/* LOAD MORE */
.gallery-loadmore-row {
    text-align: center;
    margin-top: 35px;
}

.gallery-loadmore-btn {
    background-color: #fff;
    border: 1px solid var(--border-card);
    color: var(--navy-primary);
    font-weight: 700;
    font-size: 13.5px;
    padding: 10px 26px;
    border-radius: 6px;
    cursor: pointer;
}

    .gallery-loadmore-btn:hover {
        border-color: var(--orange-primary);
        color: var(--orange-primary);
    }

/* CTA BANNER */
.gallery-cta-banner {
    background-image: linear-gradient(rgba(6,19,45,0.85), rgba(6,19,45,0.85)), url('/images/gallery-cta-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 35px 0;
    margin-top: 40px;
}

    .gallery-cta-banner .cta-text-info h5 {
        color: #fff;
        font-weight: 800;
        margin: 0;
    }

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-filter-tabs {
        gap: 8px;
    }
}
/* ===== CAREERS PAGE ===== */
.careers-fullwidth-hero {
    position: relative;
    min-height: 560px;
    background-image: url('/images/career-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
    opacity: 0;
    animation: careersHeroFadeIn 1.6s ease-out forwards;
}

.careers-fullwidth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(6,19,45,0.85) 0%, rgba(6,19,45,0.55) 50%, rgba(6,19,45,0.25) 100%);
    z-index: 1;
}

.careers-fullwidth-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    width: 100%;
    padding: 60px 40px 60px 60px;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.careers-fw-heading {
    color: #fff;
    font-weight: 900;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 3px 12px rgba(0,0,0,0.35);
}

.careers-fw-desc {
    color: #ffffff;
    font-weight: 500;
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}

@keyframes careersHeroFadeIn {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.careers-hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.careers-video-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13.5px;
}

.careers-video-link-light {
    color: #fff;
    background-color: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.35);
    padding: 8px 18px 8px 8px;
    border-radius: 40px;
}

.careers-play-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--navy-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-primary);
    font-size: 12px;
    flex-shrink: 0;
}

.careers-play-icon-light {
    border-color: #fff;
    background-color: rgba(255,255,255,0.15);
    color: #fff;
}

.careers-video-link small {
    font-weight: 500;
    font-size: 11px;
}

.careers-video-link-light small {
    color: rgba(255,255,255,0.85);
}

.careers-fw-subline {
    color: #ffffff;
    font-weight: 700;
    border-top-color: var(--orange-primary);
}

@media (max-width: 991px) {
    .careers-fullwidth-hero {
        min-height: 480px;
    }

    .careers-fullwidth-content {
        padding: 40px 25px;
        max-width: 100%;
    }

    .careers-fw-heading {
        font-size: 2rem;
    }
}

/* WHY BOLT */
.why-bolt-section {
    position: relative;
    padding: 55px 0;
    background-color: var(--bg-gray);
    overflow: hidden;
}

.why-bolt-watermark {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--navy-primary);
    opacity: 0.06;
    line-height: 0.9;
    z-index: 1;
    pointer-events: none;
}

.why-bolt-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.why-bolt-grid {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.why-bolt-card {
    flex: 1;
    text-align: center;
}

.why-bolt-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid var(--orange-primary);
    color: var(--orange-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 14px;
}

.why-bolt-card h6 {
    color: var(--navy-primary);
    font-weight: 800;
    margin-bottom: 8px;
}

.why-bolt-card p {
    color: var(--text-muted);
    font-size: 12.5px;
    line-height: 1.6;
}

.why-bolt-quote {
    flex: 1;
    background-color: #fff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 6px 20px rgba(6,19,45,0.06);
}

    .why-bolt-quote i {
        color: var(--orange-primary);
        font-size: 20px;
        margin-bottom: 10px;
        display: block;
    }

    .why-bolt-quote p {
        color: var(--navy-primary);
        font-style: italic;
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

.why-bolt-quote-line {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--orange-primary);
    margin-bottom: 8px;
}

.why-bolt-quote small {
    color: var(--text-muted);
    font-size: 12px;
}

/* OPEN POSITIONS */
.open-positions-section {
    padding: 60px 0;
}

.open-positions-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.open-positions-subtext {
    color: var(--text-muted);
    font-size: 13.5px;
    max-width: 300px;
    flex: 1;
    margin: 8px 0 0;
}

.open-positions-grid {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.jobs-filter-card {
    flex: 0 0 26%;
    max-width: 26%;
    background-color: var(--navy-primary);
    border-radius: 10px;
    padding: 26px;
}

.jobs-filter-group {
    margin-bottom: 18px;
}

    .jobs-filter-group label {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #fff;
        font-size: 12.5px;
        font-weight: 600;
        margin-bottom: 8px;
    }

        .jobs-filter-group label i {
            color: var(--orange-primary);
        }

.jobs-filter-select {
    width: 100%;
    padding: 9px 12px;
    border-radius: 6px;
    border: none;
    font-size: 13px;
    color: var(--text-dark);
}

.jobs-search-btn {
    width: 100%;
    justify-content: center;
    border: none;
}

.jobs-list-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px 24px;
    box-shadow: 0 4px 16px rgba(6,19,45,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.job-card-info h5 {
    color: var(--navy-primary);
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 15px;
}

.job-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

    .job-meta span {
        color: var(--text-muted);
        font-size: 12px;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .job-meta i {
        color: var(--orange-primary);
    }

.job-card-info p {
    color: var(--text-muted);
    font-size: 12.5px;
    margin: 0;
}

.job-view-details {
    color: var(--orange-primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* IMPACT SECTION */
.careers-impact-section {
    background-color: var(--bg-gray);
    padding: 60px 0;
}

.careers-impact-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

.careers-impact-text {
    flex: 0 0 48%;
    max-width: 48%;
}

.careers-impact-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.careers-impact-visual {
    flex: 1;
    position: relative;
    text-align: center;
}

.careers-mountain-svg {
    width: 100%;
    max-width: 300px;
}

.careers-impact-labels {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: left;
    border-left: 2px solid var(--orange-primary);
    padding-left: 10px;
}

    .careers-impact-labels p {
        color: var(--navy-primary);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1px;
        margin: 0 0 4px;
    }

.careers-impact-script {
    font-family: 'Brush Script MT', cursive;
    color: var(--navy-primary);
    font-size: 20px;
    margin-top: 10px;
}

@media (max-width: 991px) {
    .why-bolt-grid {
        flex-direction: column;
    }

    .open-positions-grid {
        flex-direction: column;
    }

    .jobs-filter-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .job-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .careers-impact-grid {
        flex-direction: column;
    }

    .careers-impact-text, .careers-impact-visual {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/* ===== INDUSTRIES PAGE ===== */
.industries-hero {
    background-color: var(--navy-primary);
    padding: 55px 0 30px;
    overflow: hidden;
}

.industries-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr 0.7fr;
    gap: 25px;
    align-items: center;
}

.industries-hero-heading {
    color: #fff;
    font-weight: 900;
    font-size: 2.6rem;
    line-height: 1.15;
    margin-bottom: 16px;
}

.industries-hero-desc {
    color: var(--text-light-slate);
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 380px;
}

.industries-hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.industries-hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .industries-hero-stat i {
        color: var(--orange-primary);
        font-size: 18px;
    }

    .industries-hero-stat span {
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }

/* DIAGONAL SLICES - minimal gap, readable labels */
.industries-hero-slices {
    display: flex;
    height: 420px;
    gap: 0;
}

.industries-slice {
    position: relative;
    flex: 1;
    overflow: hidden;
    clip-path: polygon(25% 0, 100% 0, 75% 100%, 0 100%);
    margin-left: -18px;
}

    .industries-slice:first-child {
        clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
        margin-left: 0;
    }

    .industries-slice img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .industries-slice::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(6,19,45,0.75) 0%, rgba(6,19,45,0.15) 25%, rgba(6,19,45,0) 45%);
        pointer-events: none;
    }

.industries-slice-label {
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    z-index: 2;
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 2px 6px rgba(0,0,0,0.8);
    padding: 0 8px;
}

/* HERO SIDE LABELS */
.industries-hero-side {
    color: #fff;
    text-align: right;
}

.industries-side-trusted {
    color: var(--orange-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.4;
    margin-bottom: 30px;
}

    .industries-side-trusted span {
        color: #fff;
        font-weight: 600;
    }

.industries-side-tagline {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.6;
    color: #fff;
}

@media (max-width: 1200px) {
    .industries-hero-grid {
        grid-template-columns: 1fr;
    }

    .industries-hero-slices {
        height: 300px;
    }

    .industries-hero-side {
        display: none;
    }
}

/* SECTORS SECTION */
.sectors-section {
    padding: 60px 0;
}

.sectors-header {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.sectors-heading {
    color: var(--navy-primary);
    font-weight: 800;
    margin-bottom: 14px;
}

.sectors-subtext {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.7;
    max-width: 560px;
    margin: 0;
}

.sectors-side-label {
    flex-shrink: 0;
    display: flex;
    gap: 12px;
    align-items: center;
}

.sectors-side-bar {
    width: 3px;
    height: 55px;
    background-color: var(--orange-primary);
}

.sectors-side-label p {
    color: var(--navy-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.6;
    margin: 0;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.sector-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.sector-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

    .sector-card-img::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(6,19,45,0.97) 0%, rgba(6,19,45,0.75) 35%, rgba(6,19,45,0.1) 65%);
    }

    .sector-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.sector-card-icon {
    position: relative;
    z-index: 2;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--orange-primary);
    color: var(--navy-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin: auto 0 0 20px;
}

.sector-card-body {
    position: relative;
    z-index: 2;
    padding: 12px 20px 55px;
}

.sector-number {
    color: var(--orange-primary);
    font-weight: 800;
    font-size: 13px;
    margin-right: 6px;
}

.sector-card-body h5 {
    color: #fff;
    font-weight: 800;
    display: inline;
    font-size: 17px;
}

.sector-card-body p {
    color: var(--text-light-slate);
    font-size: 12.5px;
    line-height: 1.6;
    margin: 8px 0 0;
    max-width: 85%;
}

.sector-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 3;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    flex-shrink: 0;
}

    .sector-arrow:hover {
        background-color: var(--orange-primary);
        border-color: var(--orange-primary);
    }

@media (max-width: 991px) {
    .sectors-header {
        flex-direction: column;
    }

    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }
}