/* AK-inspired public site layout — ORE navy + orange */

:root {
    --ore-navy: #001b3a;
    --ore-navy-deep: #001229;
    --ore-orange: #fda12b;
    --ore-orange-hot: #e8921a;
    --ore-muted: #5f6670;
    --ore-line: #e8ebf0;
    --ore-shadow-sm: 0 2px 6px rgba(0, 27, 58, .1), 0 8px 20px rgba(0, 27, 58, .08);
    --ore-shadow-md: 0 6px 14px rgba(0, 27, 58, .12), 0 18px 38px rgba(0, 27, 58, .12);
    --ore-shadow-lg: 0 12px 24px rgba(0, 27, 58, .16), 0 28px 60px rgba(0, 27, 58, .18);
}

.ore-site {
    font-family: "Montserrat", sans-serif;
    color: var(--ore-navy);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ore-site h1,
.ore-site h2,
.ore-site h3,
.ore-site h4,
.ore-site h5 {
    font-family: "Oswald", "Montserrat", sans-serif;
    font-weight: 600;
    letter-spacing: .035em;
    color: var(--ore-navy);
}

.ore-site .btn-primary {
    background: linear-gradient(180deg, #ffb554 0%, var(--ore-orange) 45%, var(--ore-orange-hot) 100%);
    border: none;
    border-bottom: 3px solid #c67812;
    color: #fff;
    border-radius: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    box-shadow: 0 6px 16px rgba(253, 161, 43, .35), 0 2px 4px rgba(0, 27, 58, .15);
    text-shadow: 0 1px 2px rgba(0, 27, 58, .25);
    transition: transform .2s ease, box-shadow .2s ease;
}

.ore-site .btn-primary:hover,
.ore-site .btn-primary:focus {
    background: linear-gradient(180deg, #ffc06b 0%, var(--ore-orange) 55%, var(--ore-orange-hot) 100%);
    border-bottom-color: #c67812;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(253, 161, 43, .45), 0 4px 8px rgba(0, 27, 58, .18);
}

.ore-site .btn-primary:active {
    transform: translateY(1px);
    border-bottom-width: 1px;
    box-shadow: 0 3px 8px rgba(253, 161, 43, .3);
}

.ore-site .btn-outline-primary {
    color: var(--ore-navy);
    border: 2px solid var(--ore-navy);
    border-radius: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    box-shadow: var(--ore-shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.ore-site .btn-outline-primary:hover,
.ore-site .btn-outline-primary:focus {
    background: var(--ore-navy);
    border-color: var(--ore-navy);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--ore-shadow-md);
}


/* Top bar */
.ore-topbar {
    background: linear-gradient(180deg, #002448 0%, var(--ore-navy) 60%, var(--ore-navy-deep) 100%);
    color: rgba(255, 255, 255, .9);
    padding: .55rem 0;
    font-size: .78rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .08);
}

.ore-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ore-topbar-tagline {
    font-weight: 600;
}

.ore-topbar-tagline i,
.ore-topbar-values i {
    color: var(--ore-orange);
}

.ore-topbar-values {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
}

.ore-topbar-values span {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 600;
}

.ore-topbar-login {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: color .2s ease;
}

.ore-topbar-login i {
    color: var(--ore-orange);
}

.ore-topbar-login:hover {
    color: var(--ore-orange);
}

.ore-topbar-sep {
    opacity: .35;
}

/* Navbar */
.ore-navbar {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 2px 4px rgba(0, 27, 58, .06), 0 12px 32px rgba(0, 27, 58, .12);
    padding-top: .85rem;
    padding-bottom: .85rem;
    top: 0;
}

.ore-navbar.sticky-top {
    top: 0;
}

.ore-brand {
    display: flex;
    align-items: center;
    gap: .85rem;
    text-decoration: none;
    color: var(--ore-navy);
    flex-shrink: 0;
}

.ore-brand-text {
    white-space: nowrap;
}

.ore-brand img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: var(--ore-shadow-sm);
}

.ore-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.ore-brand-text strong {
    font-family: "Oswald", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 rgba(0, 27, 58, .12);
}

.ore-brand-dot {
    color: var(--ore-orange);
}

.ore-brand-text strong .ore-brand-alt {
    color: var(--ore-navy);
}

.ore-brand-text strong {
    color: var(--ore-orange);
}

.ore-brand-text small {
    margin-top: .2rem;
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ore-muted);
}

.ore-navbar .nav-link {
    font-weight: 700;
    font-size: .76rem;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: var(--ore-navy) !important;
    padding: .75rem .65rem !important;
    position: relative;
    white-space: nowrap;
}

.ore-navbar .nav-link.active,
.ore-navbar .nav-link:hover,
.ore-navbar .dropdown-toggle.show {
    color: var(--ore-orange) !important;
}

.ore-navbar .nav-link.active::after {
    content: "";
    position: absolute;
    left: .7rem;
    right: .7rem;
    bottom: .35rem;
    height: 2px;
    background: var(--ore-orange);
}

.ore-dropdown {
    border: none;
    border-top: 3px solid var(--ore-orange);
    box-shadow: var(--ore-shadow-lg);
    border-radius: 0;
    padding: .75rem;
    min-width: 580px;
}

.ore-dropdown.show {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .1rem .75rem;
}

@media (min-width: 992px) {
    .ore-navbar .nav-item .ore-dropdown {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: .1rem .75rem;
    }
}

.ore-dropdown li:first-child,
.ore-dropdown li:nth-child(2) {
    grid-column: 1 / -1;
}

.ore-dropdown .dropdown-item {
    white-space: nowrap;
    padding: .6rem .9rem;
    font-size: .88rem;
    font-weight: 600;
    color: var(--ore-navy);
}

.ore-dropdown .dropdown-item:hover {
    background: rgba(253, 161, 43, .12);
    color: var(--ore-navy);
}

.ore-quote-btn {
    font-weight: 700;
    border-radius: 0;
    padding: .85rem 1.2rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: .76rem;
    white-space: nowrap;
}

/* Homepage hero */
.ore-hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    background: var(--ore-navy) url('../img/home/main_image.jpg') center/cover no-repeat;
    overflow: hidden;
}

.ore-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(0, 27, 58, .92) 0%, rgba(0, 27, 58, .72) 48%, rgba(0, 27, 58, .35) 100%);
}

.ore-hero .container {
    position: relative;
    z-index: 2;
}

.ore-hero-kicker {
    color: var(--ore-orange);
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    letter-spacing: .28em;
    font-weight: 500;
    font-size: .95rem;
    margin-bottom: .85rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .5);
}

.ore-hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    font-weight: 700;
    line-height: 1.02;
    text-transform: uppercase;
    letter-spacing: .04em;
    max-width: 720px;
    margin-bottom: 1.25rem;
    background: linear-gradient(180deg, #ffffff 0%, #e8eef6 55%, #aebfd4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 0 rgba(0, 10, 23, .85)) drop-shadow(0 5px 0 rgba(0, 10, 23, .35)) drop-shadow(0 14px 24px rgba(0, 0, 0, .5));
}

.ore-hero p {
    color: rgba(255, 255, 255, .88);
    max-width: 560px;
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
}

.ore-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
    margin-bottom: 2rem;
}

.ore-hero-feature {
    display: inline-flex;
    align-items: flex-start;
    gap: .65rem;
    color: #fff;
    max-width: 200px;
}

.ore-hero-feature i {
    color: var(--ore-orange);
    font-size: 1.35rem;
    margin-top: .1rem;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, .4));
}

.ore-hero-feature strong {
    display: block;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.ore-hero-feature small {
    display: block;
    color: rgba(255, 255, 255, .75);
    font-size: .74rem;
    line-height: 1.35;
    margin-top: .15rem;
}

.ore-hero-actions .btn-primary {
    padding: 1rem 1.6rem;
}

.ore-hero-badge {
    background: linear-gradient(160deg, rgba(0, 36, 72, .85) 0%, rgba(0, 18, 41, .9) 100%);
    border: 1px solid rgba(253, 161, 43, .35);
    border-top: 3px solid var(--ore-orange);
    padding: 1.75rem;
    color: #fff;
    backdrop-filter: blur(6px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .12);
    transform: perspective(900px) rotateY(-4deg);
}

.ore-hero-badge h3 {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .6rem;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .4), 0 6px 12px rgba(0, 0, 0, .4);
}

.ore-hero-badge-sub {
    color: rgba(255, 255, 255, .75);
    font-size: .8rem;
    margin-bottom: 1.35rem;
}

.ore-hero-badge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
    margin-bottom: 1.5rem;
}

.ore-hero-badge-grid > div {
    padding: .5rem .25rem;
}

.ore-hero-badge-grid > div + div {
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.ore-hero-badge-grid strong {
    display: block;
    font-family: "Oswald", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: .3rem;
    background: linear-gradient(180deg, #ffcf8a 0%, var(--ore-orange) 55%, #d07f10 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 0 rgba(0, 10, 23, .7)) drop-shadow(0 5px 10px rgba(0, 0, 0, .4));
}

.ore-hero-badge-grid em {
    display: block;
    font-style: normal;
    color: #fff;
    font-size: .74rem;
    font-weight: 700;
    line-height: 1.25;
}

.ore-hero-badge-grid span {
    display: block;
    color: rgba(255, 255, 255, .65);
    font-size: .7rem;
    line-height: 1.25;
    margin-top: .1rem;
}

.ore-hero-badge-logo {
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 1.15rem;
}

.ore-hero-badge-logo img {
    height: 52px;
    border-radius: 4px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .4);
}

.ore-cidb-mark {
    display: block;
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1;
    margin-bottom: .35rem;
    text-shadow: 0 3px 8px rgba(0, 0, 0, .35);
}

.ore-hero-badge-logo small {
    display: block;
    color: rgba(255, 255, 255, .65);
    font-size: .68rem;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* Sections */
.ore-section {
    padding: 5rem 0;
}

.ore-section-alt {
    background: #f5f7fa;
}

.ore-section-label {
    color: var(--ore-orange);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700;
    font-size: .78rem;
    margin-bottom: .75rem;
}

.ore-section-heading h2 {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .85rem;
    text-shadow: 1px 1px 0 rgba(253, 161, 43, .45), 2px 2px 0 rgba(253, 161, 43, .25), 0 10px 20px rgba(0, 27, 58, .18);
}

.ore-section-heading h2 span {
    display: inline-block;
    width: 48px;
    height: 2px;
    background: var(--ore-orange);
}

.ore-section-heading p {
    color: var(--ore-muted);
    max-width: 640px;
    margin: 0 auto;
}

.ore-section h2 {
    font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1.25rem;
}

/* Industry / service photo cards */
.ore-industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
}

.ore-industry-card {
    position: relative;
    display: block;
    min-height: 280px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    box-shadow: var(--ore-shadow-sm);
    transition: transform .35s ease, box-shadow .35s ease;
}

.ore-industry-card-wide {
    grid-column: span 2;
}

.ore-industry-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.ore-industry-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 27, 58, .15) 20%, rgba(0, 27, 58, .88) 100%);
}

.ore-industry-card-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.25rem;
}

.ore-industry-card h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: .4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .35), 0 6px 12px rgba(0, 0, 0, .4);
}

.ore-industry-card h3 i {
    color: var(--ore-orange);
    font-size: .85rem;
}

.ore-industry-card p {
    color: rgba(255, 255, 255, .82);
    font-size: .84rem;
    margin: 0;
}

.ore-industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ore-shadow-lg);
}

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

/* Commitment */
.ore-commitment {
    background: #fff;
    border-top: 1px solid var(--ore-line);
    border-bottom: 1px solid var(--ore-line);
    padding: 3.5rem 0;
}

.ore-commitment-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.ore-commitment-item {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: .75rem 1.5rem;
    transition: transform .25s ease;
}

.ore-commitment-item + .ore-commitment-item {
    border-left: 1px solid var(--ore-line);
}

.ore-commitment-item:hover {
    transform: translateY(-4px);
}

.ore-commitment-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--ore-navy);
    color: var(--ore-navy);
    font-size: 1.25rem;
    background: linear-gradient(180deg, #ffffff 0%, #f2f5f9 100%);
    box-shadow: var(--ore-shadow-sm);
}

.ore-commitment-item h3 {
    font-size: .85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: .2rem;
}

.ore-commitment-item p {
    color: var(--ore-muted);
    margin: 0;
    font-size: .82rem;
}

/* Stats */
.ore-stats {
    background: var(--ore-navy) url('../img/facts/fact-1.jpg') center/cover no-repeat;
    position: relative;
    padding: 4.5rem 0;
}

.ore-stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 27, 58, .92);
}

.ore-stats .container {
    position: relative;
    z-index: 2;
}

.ore-section-heading-dark h2 {
    color: #fff;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .45), 0 4px 0 rgba(0, 0, 0, .25), 1px 1px 0 rgba(253, 161, 43, .35), 0 12px 24px rgba(0, 0, 0, .5);
}

.ore-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.ore-stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: .75rem 1.25rem;
    text-align: left;
    transition: transform .25s ease;
}

.ore-stat-item + .ore-stat-item {
    border-left: 1px solid rgba(255, 255, 255, .18);
}

.ore-stat-item:hover {
    transform: translateY(-4px);
}

.ore-stat-item i {
    color: var(--ore-orange);
    font-size: 2.1rem;
    filter: drop-shadow(0 4px 8px rgba(253, 161, 43, .4));
}

.ore-stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: .15rem;
    background: linear-gradient(180deg, #ffcf8a 0%, var(--ore-orange) 55%, #d07f10 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 0 rgba(0, 10, 23, .7)) drop-shadow(0 6px 12px rgba(0, 0, 0, .4));
}

.ore-stat-item p {
    color: rgba(255, 255, 255, .78);
    margin: 0;
    font-size: .84rem;
}

/* Partners */
.ore-partner-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

.ore-partner-marquee {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.ore-partner-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: ore-partner-scroll 28s linear infinite;
}

.ore-partner-track .ore-partner-logo {
    margin-right: 4rem;
    flex-shrink: 0;
}

.ore-partner-marquee:hover .ore-partner-track {
    animation-play-state: paused;
}

@keyframes ore-partner-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ore-partner-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: auto;
    }
}

.ore-partner-logo {
    width: 150px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(1);
    opacity: .8;
    transition: .25s ease;
}

.ore-partner-logo:hover {
    filter: none;
    opacity: 1;
    transform: translateY(-4px);
}

.ore-partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* White-artwork logos need a dark tile to stay visible */
.ore-partner-logo-dark {
    background: var(--ore-navy);
    padding: .6rem .9rem;
}

.ore-partner-text {
    font-weight: 800;
    font-size: 1.05rem;
    color: #3a4350;
    white-space: nowrap;
    width: auto;
    padding: 0 .5rem;
}

/* CTA banner */
.ore-cta-banner {
    background: linear-gradient(180deg, #ffb554 0%, var(--ore-orange) 55%, var(--ore-orange-hot) 100%);
    padding: 2.75rem 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), inset 0 -8px 20px rgba(198, 120, 18, .35);
}

.ore-cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ore-cta-banner h2 {
    color: var(--ore-navy);
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .35rem;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .45), 0 3px 6px rgba(150, 90, 10, .35);
}

.ore-cta-banner p {
    color: rgba(0, 27, 58, .8);
    margin: 0;
}

.ore-cta-btn {
    background: linear-gradient(180deg, #003058 0%, var(--ore-navy) 55%, var(--ore-navy-deep) 100%);
    color: #fff;
    border-radius: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 1rem 1.5rem;
    border: none;
    border-bottom: 3px solid #000a17;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0, 18, 41, .4);
    transition: transform .2s ease, box-shadow .2s ease;
}

.ore-cta-btn:hover {
    background: linear-gradient(180deg, #003a6b 0%, var(--ore-navy) 60%, var(--ore-navy-deep) 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 18, 41, .5);
}

.ore-cta-btn:active {
    transform: translateY(1px);
    border-bottom-width: 1px;
}

/* Legacy helpers kept for inner pages */
.ore-hiring-bar {
    background: var(--ore-navy-deep);
    color: #fff;
    text-align: center;
    padding: .9rem 1rem;
    font-size: .95rem;
}

.ore-hiring-bar a {
    color: var(--ore-orange);
    font-weight: 700;
    text-decoration: none;
}

.ore-mission-box {
    background: linear-gradient(180deg, #f8f9fb 0%, #eef1f5 100%);
    padding: 2rem;
    height: 100%;
    border-left: 4px solid var(--ore-orange);
    box-shadow: var(--ore-shadow-sm);
}

.ore-mission-box h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.ore-video-band {
    position: relative;
    min-height: 420px;
    background: var(--ore-navy) url('../img/services/welder.png') center/cover no-repeat;
}

.ore-video-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 27, 58, .45);
}

.ore-play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--ore-orange);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 16px 40px rgba(253, 161, 43, .35);
}

.ore-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.ore-service-thumb {
    margin: -2rem -1.5rem 1.25rem;
    height: 180px;
    overflow: hidden;
}

.ore-service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ore-application-card {
    border: 1px solid var(--ore-line);
    box-shadow: 0 18px 40px rgba(0, 27, 58, .08);
    border-radius: 0;
}

.ore-application-card .card-header {
    background: var(--ore-orange);
    color: #fff;
    border-radius: 0;
    font-weight: 700;
}

.ore-success-panel {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.ore-success-panel .ore-success-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(253, 161, 43, .15);
    color: var(--ore-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.ore-service-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--ore-line);
    padding: 2rem 1.5rem;
    height: 100%;
    transition: .25s ease;
    position: relative;
    box-shadow: var(--ore-shadow-sm);
}

.ore-service-card-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.ore-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ore-shadow-lg);
    border-color: transparent;
}

.ore-service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(180deg, #002448 0%, var(--ore-navy) 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 18px rgba(0, 27, 58, .3), inset 0 1px 0 rgba(255, 255, 255, .18);
}

.ore-service-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: .85rem;
}

.ore-service-card p {
    color: var(--ore-muted);
    margin-bottom: 1.25rem;
}

.ore-service-card a,
.ore-service-readmore {
    color: var(--ore-navy);
    font-weight: 700;
    text-decoration: none;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    font-size: .82rem;
    letter-spacing: .04em;
}

.ore-service-card a i,
.ore-service-readmore i {
    color: var(--ore-orange);
}

/* Inner page hero */
.ore-page-hero {
    background: linear-gradient(rgba(0, 27, 58, .82), rgba(0, 27, 58, .82)), url('../img/carousel/carosel._resized.jpg') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    min-height: 260px;
    display: flex;
    align-items: flex-end;
}

.ore-page-hero h1 {
    font-weight: 700;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .75rem;
    background: linear-gradient(180deg, #ffffff 0%, #e8eef6 55%, #aebfd4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 0 rgba(0, 10, 23, .8)) drop-shadow(0 10px 18px rgba(0, 0, 0, .45));
}

.ore-page-hero-intro {
    max-width: 720px;
    color: rgba(255, 255, 255, .88);
    font-size: 1.05rem;
    margin: 0;
}

.ore-breadcrumb .breadcrumb-item,
.ore-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, .85);
}

.ore-breadcrumb .breadcrumb-item.active {
    color: var(--ore-orange);
}

.ore-page-content {
    padding: 4rem 0;
}

/* Footer */
.ore-footer {
    background: var(--ore-navy);
    color: rgba(255, 255, 255, .82);
}

.ore-footer h5 {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: .92rem;
    margin-bottom: 1.1rem;
}

.ore-footer-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
}

.ore-footer-brand img {
    width: 48px;
    height: 48px;
    border-radius: 4px;
}

.ore-footer-tagline {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    line-height: 1.6;
}

.ore-footer-links {
    display: grid;
    gap: .55rem;
}

.ore-footer-links a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    font-size: .92rem;
}

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

.ore-footer-contact p {
    display: flex;
    gap: .75rem;
    margin-bottom: .75rem;
}

.ore-footer-contact i {
    color: var(--ore-orange);
    margin-top: .2rem;
}

.ore-contact-details {
    color: var(--ore-navy);
}

.ore-contact-details a {
    color: var(--ore-navy);
    text-decoration: none;
}

.ore-contact-details a:hover {
    color: var(--ore-orange);
}

.ore-contact-map {
    margin-top: 1rem;
    box-shadow: var(--ore-shadow-md);
    overflow: hidden;
}

.ore-contact-map iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

.ore-footer-certs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .55rem;
}

.ore-footer-certs li {
    display: flex;
    gap: .65rem;
    align-items: flex-start;
    font-size: .9rem;
}

.ore-footer-certs i {
    color: var(--ore-orange);
    margin-top: .2rem;
}

.ore-footer-social {
    display: flex;
    gap: .55rem;
}

.ore-footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.ore-footer-social a {
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.ore-footer-social a:hover {
    background: var(--ore-orange);
    border-color: var(--ore-orange);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(253, 161, 43, .35);
}

.ore-footer-bottom {
    background: var(--ore-navy-deep);
    color: rgba(255, 255, 255, .65);
    font-size: .88rem;
}

.ore-footer-legal {
    display: inline-flex;
    gap: .65rem;
    align-items: center;
}

.ore-footer-legal a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
}

.ore-footer-legal a:hover {
    color: var(--ore-orange);
}

/* Cookie popup */
.ore-cookie-popup {
    position: fixed;
    left: 1.5rem;
    bottom: 1.5rem;
    z-index: 1080;
    max-width: 380px;
    padding: 1.75rem;
    background: linear-gradient(160deg, #002448 0%, var(--ore-navy) 60%, var(--ore-navy-deep) 100%);
    border: 1px solid rgba(253, 161, 43, .35);
    border-top: 3px solid var(--ore-orange);
    color: rgba(255, 255, 255, .85);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px);
    transition: opacity .45s ease, transform .45s ease, visibility .45s;
}

.ore-cookie-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ore-cookie-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffb554 0%, var(--ore-orange) 55%, var(--ore-orange-hot) 100%);
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 18px rgba(253, 161, 43, .4), inset 0 1px 0 rgba(255, 255, 255, .3);
}

.ore-cookie-popup h4 {
    color: #fff;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .6rem;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .35);
}

.ore-cookie-popup p {
    font-size: .85rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.ore-cookie-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.ore-cookie-accept {
    font-size: .78rem;
    padding: .7rem 1.3rem;
}

.ore-cookie-decline {
    color: rgba(255, 255, 255, .75);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 0;
    font-weight: 700;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .03em;
    padding: .7rem 1.3rem;
    transition: .2s ease;
}

.ore-cookie-decline:hover {
    color: #fff;
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
}

@media (max-width: 575.98px) {
    .ore-cookie-popup {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
    }
}

@media (max-width: 1499.98px) {
    .ore-brand-text small {
        display: none;
    }

    .ore-navbar .nav-link {
        padding: .7rem .5rem !important;
        font-size: .72rem;
    }

    .ore-quote-btn {
        padding: .75rem 1rem;
        font-size: .72rem;
    }
}

@media (max-width: 1199.98px) {
    .ore-industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ore-navbar .nav-link {
        padding: .65rem .4rem !important;
        font-size: .68rem;
        letter-spacing: .02em;
    }

    .ore-brand img {
        width: 44px;
        height: 44px;
    }

    .ore-brand-text strong {
        font-size: 1.1rem;
    }
}

@media (max-width: 991.98px) {
    .ore-hero {
        min-height: 560px;
    }

    .ore-dropdown {
        min-width: 0;
        border-top: none;
        box-shadow: none;
    }

    .ore-dropdown.show {
        display: block;
    }

    .ore-dropdown .dropdown-item {
        white-space: normal;
    }

    .ore-hero-badge {
        transform: none;
    }

    .ore-commitment-row,
    .ore-stats-row {
        grid-template-columns: 1fr 1fr;
        row-gap: 1.5rem;
    }

    .ore-commitment-item:nth-child(3),
    .ore-stat-item:nth-child(3) {
        border-left: none;
    }

    .ore-brand-text small {
        display: none;
    }

    .ore-navbar .nav-link.active::after {
        display: none;
    }

    .ore-industry-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767.98px) {
    .ore-section {
        padding: 3.5rem 0;
    }

    .ore-industry-grid {
        grid-template-columns: 1fr;
    }

    .ore-industry-card-wide {
        grid-column: span 1;
    }

    .ore-quote-btn {
        width: 100%;
        margin-top: .5rem;
    }

    .ore-section-heading h2 span {
        display: none;
    }

    .ore-cta-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .ore-commitment-row,
    .ore-stats-row {
        grid-template-columns: 1fr;
    }

    .ore-commitment-item,
    .ore-stat-item {
        border-left: none !important;
        justify-content: flex-start;
    }
}

/* Industry detail pages */
.ore-industry-bar {
    background: var(--ore-navy-deep);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    position: sticky;
    top: 72px;
    z-index: 1020;
}

.ore-industry-bar-track {
    display: flex;
    gap: .25rem;
    overflow-x: auto;
    padding: .65rem 0;
    scrollbar-width: thin;
}

.ore-industry-bar-item {
    flex: 0 0 auto;
    min-width: 118px;
    max-width: 140px;
    text-align: center;
    text-decoration: none;
    color: rgba(255, 255, 255, .72);
    padding: .55rem .45rem .7rem;
    border-bottom: 3px solid transparent;
    transition: .2s ease;
}

.ore-industry-bar-item:hover,
.ore-industry-bar-item.is-active {
    color: #fff;
}

.ore-industry-bar-item.is-active {
    color: var(--ore-orange);
    border-bottom-color: var(--ore-orange);
}

.ore-industry-bar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 auto .4rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    font-size: .95rem;
}

.ore-industry-bar-item.is-active .ore-industry-bar-icon {
    background: rgba(253, 161, 43, .18);
    color: var(--ore-orange);
}

.ore-industry-bar-label {
    display: block;
    font-size: .68rem;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.ore-industry-sidebar h3 {
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .04em;
    margin-bottom: 1rem;
}

.ore-industry-side-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    border: 1px solid var(--ore-line);
}

.ore-industry-side-nav a {
    display: block;
    padding: .85rem 1rem;
    color: var(--ore-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    border-bottom: 1px solid var(--ore-line);
}

.ore-industry-side-nav li:last-child a {
    border-bottom: none;
}

.ore-industry-side-nav a:hover,
.ore-industry-side-nav a.is-active {
    background: var(--ore-orange);
    color: #fff;
}

.ore-industry-brochure {
    background: linear-gradient(180deg, #002448 0%, var(--ore-navy) 100%);
    color: #fff;
    padding: 1.5rem 1.25rem;
    text-align: center;
}

.ore-industry-brochure-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto .85rem;
    border-radius: 50%;
    background: rgba(253, 161, 43, .18);
    color: var(--ore-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.ore-industry-brochure p {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: 1rem;
}

.ore-industry-callout small {
    display: block;
    color: rgba(255, 255, 255, .75);
    font-size: .78rem;
    line-height: 1.4;
}

.ore-value-props {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: .75rem;
    margin: 2rem 0 0;
    background: linear-gradient(180deg, #002448 0%, var(--ore-navy) 100%);
    padding: 1.15rem .9rem;
}

.ore-value-prop {
    text-align: center;
    color: #fff;
}

.ore-value-prop-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto .55rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ore-orange);
}

.ore-value-prop strong {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    line-height: 1.3;
}

.ore-industry-services-intro,
.ore-industry-overview p,
.ore-industry-panel p {
    color: var(--ore-muted);
}

.ore-industry-service-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
}

.ore-industry-service-row {
    display: grid;
    grid-template-columns: 140px 56px 1fr 40px;
    gap: 1.25rem;
    align-items: start;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--ore-line);
}

.ore-industry-service-media {
    width: 140px;
    height: 100px;
    overflow: hidden;
    background: #eef2f6;
}

.ore-industry-service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ore-industry-service-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(180deg, #002448 0%, var(--ore-navy) 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: .35rem;
    box-shadow: 0 8px 18px rgba(0, 27, 58, .28);
}

.ore-industry-service-body h3 {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .03em;
    margin-bottom: .4rem;
}

.ore-industry-service-body > p {
    color: var(--ore-muted);
    margin-bottom: .85rem;
    font-size: .92rem;
}

.ore-industry-subservices {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .35rem 1.25rem;
}

.ore-industry-subservices li {
    position: relative;
    padding-left: 1rem;
    font-size: .86rem;
    color: var(--ore-navy);
}

.ore-industry-subservices li a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease;
}

.ore-industry-subservices li a:hover {
    color: var(--ore-orange);
}

.ore-industry-service-body h3 a {
    color: inherit;
    text-decoration: none;
}

.ore-industry-service-body h3 a:hover {
    color: var(--ore-orange);
}

.ore-industry-service-media,
.ore-industry-service-icon {
    text-decoration: none;
    color: inherit;
}

.ore-hcd-service-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.ore-hcd-service-link:hover h3 {
    color: var(--ore-orange);
}

.ore-solution-item {
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease;
}

.ore-solution-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--ore-shadow-sm);
}

.ore-solution-item:hover h3 {
    color: var(--ore-orange);
}

.ore-service-screen-head {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.ore-service-screen-num {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ore-navy);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.ore-service-screen-head h2 {
    margin-bottom: .4rem;
}

.ore-service-screen-head p {
    margin: 0;
    color: var(--ore-muted);
}

.ore-service-screen-media {
    height: 280px;
    overflow: hidden;
    margin-bottom: 1.75rem;
    background: #eef2f6;
}

.ore-service-screen-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ore-subservice-link-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: grid;
    gap: .75rem;
}

.ore-subservice-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.2fr);
    gap: 1.25rem;
    margin-top: 1.25rem;
    align-items: start;
}

.ore-subservice-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .65rem;
}

.ore-subservice-menu a,
.ore-subservice-link-list a {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--ore-line);
    background: #fff;
    color: var(--ore-navy);
    text-decoration: none;
    transition: .2s ease;
}

.ore-subservice-menu a:hover,
.ore-subservice-menu a.is-active,
.ore-subservice-link-list a:hover {
    border-color: var(--ore-orange);
    box-shadow: var(--ore-shadow-sm);
    transform: translateX(4px);
}

.ore-subservice-menu a.is-active {
    background: rgba(253, 161, 43, .08);
}

.ore-subservice-detail {
    border: 1px solid var(--ore-line);
    background: #fff;
    padding: 1.35rem 1.4rem;
    box-shadow: var(--ore-shadow-sm);
    min-height: 100%;
}

.ore-subservice-detail h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: .75rem;
}

.ore-subservice-detail p {
    color: var(--ore-muted);
    margin-bottom: 1.25rem;
    line-height: 1.65;
}

.ore-subservice-link-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(253, 161, 43, .15);
    color: var(--ore-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 800;
}

.ore-subservice-link-label {
    flex: 1;
    font-weight: 600;
}

.ore-subservice-link-list i {
    color: var(--ore-orange);
}

.ore-service-screen-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.75rem;
}

.ore-service-screen-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--ore-line);
}

.ore-service-screen-nav a {
    color: var(--ore-navy);
    font-weight: 700;
    text-decoration: none;
}

.ore-service-screen-nav a:hover {
    color: var(--ore-orange);
}

.ore-enquiry-banner {
    background: rgba(253, 161, 43, .12);
    border-left: 4px solid var(--ore-orange);
    padding: 1rem 1.1rem;
}

.ore-enquiry-banner strong {
    display: block;
    margin-bottom: .35rem;
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: .04em;
}

.ore-enquiry-banner p {
    margin: 0;
    color: var(--ore-navy);
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .ore-service-screen-media {
        height: 200px;
    }

    .ore-service-screen-nav {
        flex-direction: column;
    }
}

.ore-industry-subservices li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ore-orange);
}

.ore-industry-service-arrow {
    width: 36px;
    height: 36px;
    margin-top: .35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--ore-orange);
    text-decoration: none;
    transition: .2s ease;
}

.ore-industry-service-arrow:hover {
    background: var(--ore-orange-hot);
    color: #fff;
    transform: translateX(3px);
}

.ore-industry-panel {
    padding-top: 1rem;
    border-top: 1px solid var(--ore-line);
}

.ore-industry-capability-list {
    padding-left: 1.1rem;
    color: var(--ore-muted);
}

.ore-industry-capability-list li {
    margin-bottom: .45rem;
}

@media (max-width: 991.98px) {
    .ore-industry-bar {
        top: 0;
    }

    .ore-industry-service-row {
        grid-template-columns: 100px 1fr 36px;
        grid-template-areas:
            "media body arrow"
            "media icon arrow";
    }

    .ore-industry-service-media { grid-area: media; width: 100px; height: 80px; }
    .ore-industry-service-icon { grid-area: icon; width: 40px; height: 40px; }
    .ore-industry-service-body { grid-area: body; }
    .ore-industry-service-arrow { grid-area: arrow; }

    .ore-industry-subservices {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .ore-industry-service-row {
        grid-template-columns: 1fr 36px;
        grid-template-areas:
            "media arrow"
            "icon arrow"
            "body body";
    }

    .ore-industry-service-media {
        width: 100%;
        height: 140px;
    }
}

/* Human Capital Development grid layout */
.ore-hcd-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.ore-hcd-service-card {
    border: 1px solid var(--ore-line);
    background: #fff;
    padding: 1.15rem;
    box-shadow: var(--ore-shadow-sm);
    height: 100%;
}

.ore-hcd-service-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .85rem;
}

.ore-hcd-service-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--ore-navy);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .85rem;
}

.ore-hcd-service-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(253, 161, 43, .15);
    color: var(--ore-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ore-hcd-service-media {
    height: 120px;
    overflow: hidden;
    margin-bottom: .9rem;
    background: #eef2f6;
}

.ore-hcd-service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ore-hcd-service-card h3 {
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: .02em;
    margin-bottom: .75rem;
    min-height: 2.4em;
}

.ore-hcd-subservices {
    grid-template-columns: 1fr;
}

.ore-solution-group {
    margin-top: 2.5rem;
}

.ore-solution-group-head {
    background: linear-gradient(180deg, #002448 0%, var(--ore-navy) 100%);
    color: #fff;
    padding: 1rem 1.25rem;
}

.ore-solution-group-head h2 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    letter-spacing: .04em;
}

.ore-solution-group-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid var(--ore-line);
    border-top: none;
    background: #f8fafc;
}

.ore-solution-item {
    display: flex;
    gap: .85rem;
    background: #fff;
    border: 1px solid var(--ore-line);
    padding: 1rem;
}

.ore-solution-num {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--ore-orange);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 800;
}

.ore-solution-item h3 {
    font-size: .92rem;
    font-weight: 800;
    margin-bottom: .35rem;
}

.ore-solution-item p {
    margin: 0;
    color: var(--ore-muted);
    font-size: .86rem;
}

.ore-accreditation-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.25rem;
}

.ore-accreditation-badge {
    min-width: 120px;
    height: 70px;
    padding: .6rem .9rem;
    border: 1px solid var(--ore-line);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--ore-shadow-sm);
}

.ore-accreditation-badge img {
    max-width: 100%;
    max-height: 48px;
    object-fit: contain;
    filter: grayscale(1);
}

.ore-accreditation-badge span {
    font-weight: 800;
    font-size: .82rem;
    color: var(--ore-navy);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.ore-industry-cta {
    background: linear-gradient(180deg, #002448 0%, var(--ore-navy) 100%);
    color: #fff;
    padding: 2.75rem 0;
}

.ore-industry-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.ore-industry-cta h2 {
    color: #fff;
    font-size: clamp(1.3rem, 2.4vw, 1.85rem);
    margin-bottom: .45rem;
}

.ore-industry-cta p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
}

@media (max-width: 991.98px) {
    .ore-hcd-service-grid,
    .ore-solution-group-grid,
    .ore-subservice-layout {
        grid-template-columns: 1fr;
    }

    .ore-value-props {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ore-industry-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
