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

:root {
    /* Logo-aligned: primary blue #0066FF, cyan #00CCFF, dark blue/black */
    --navy: #001a33;
    --navy-dark: #000814;
    --navy-mid: #004080;
    --orange: #0066FF;
    --orange-dark: #0052CC;
    --white: #ffffff;
    --light-bg: #f4f6fb;
    --text-dark: #1a1f36;
    --text-mid: #4a5568;
    --text-light: #718096;
    --border: #e2e8f0;
    /* Aliases for sub-pages */
    --primary-color: #001a33;
    --primary-dark: #000814;
    --accent-color: #0066FF;
    --shadow-sm: 0 2px 4px rgba(0, 26, 51, 0.06);
    --shadow-md: 0 10px 30px rgba(0, 26, 51, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 26, 51, 0.12);
    --bg-light: #f4f6fb;
}

html {
    scroll-behavior: smooth;
}

/* Skip link – visible on focus for keyboard users */
.skip-link {
    position: absolute;
    top: -3rem;
    left: 1rem;
    z-index: 10000;
    padding: 0.6rem 1rem;
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 6px;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
    outline: 3px solid var(--orange);
    outline-offset: 2px;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Keyboard focus – visible outline, no outline on mouse click */
:focus {
    outline: 0;
}

:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
        overflow-x: hidden;
    }
}

/* ========== HEADER ========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: var(--navy);
    padding: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--orange) 20%, var(--orange) 50%, var(--orange) 80%, transparent 100%);
    opacity: 0.6;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 2rem;
    position: relative;
    z-index: 1;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.logo-wrap a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.6rem;
    transition: opacity 0.2s ease;
}

.logo-wrap a:hover {
    opacity: 0.9;
}

/* Mobile-only phone in header – hidden on desktop */
.header-mobile-phone {
    display: none;
}

.logo-wrap img {
    height: 44px;
    width: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.logo-text span {
    color: var(--orange);
    font-weight: 700;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.25rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.4px;
    transition: color 0.2s ease;
    text-transform: uppercase;
    position: relative;
    padding: 0.4rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    transition: width 0.25s ease;
}

nav a:hover {
    color: #00CCFF;
}

nav a:hover::after {
    width: 100%;
}

nav a.active {
    color: var(--white);
}

nav a.active::after {
    width: 100%;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

nav .nav-icon {
    font-size: 0.9em;
    width: 1em;
    text-align: center;
    opacity: 0.85;
}

nav a:hover .nav-icon,
nav a.active .nav-icon {
    opacity: 1;
}

/* Dropdown menus */
nav .has-dropdown {
    position: relative;
}

nav .has-dropdown>a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

nav .has-dropdown .dropdown-arrow {
    font-size: 0.65rem;
    transition: transform 0.25s ease;
}

nav .has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

nav .dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.97);
    min-width: 280px;
    max-width: 320px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 26, 51, 0.04), 0 20px 50px rgba(0, 26, 51, 0.12), 0 0 0 1px rgba(0, 26, 51, 0.06);
    list-style: none;
    margin: 0;
    padding: 0.5rem 0 0.2rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    z-index: 1001;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    overflow: hidden;
    border: 1px solid rgba(0, 26, 51, 0.08);
}

nav .dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-dark));
    border-radius: 16px 16px 0 0;
}

nav .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(6px) scale(1);
}

nav .dropdown li {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
    flex-shrink: 0;
    line-height: 1.2;
}

nav .dropdown a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.2rem 1.25rem;
    font-size: 0.925rem;
    font-weight: 500;
    color: var(--navy);
    text-transform: none;
    letter-spacing: 0.01em;
    border: none;
    box-sizing: border-box;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    position: relative;
    border-left: 3px solid transparent;
    line-height: 1.2;
}

nav .dropdown .drop-icon {
    font-size: 0.95rem;
    width: 1.25em;
    text-align: center;
    color: var(--orange);
    flex-shrink: 0;
}

nav .dropdown a::after {
    display: none;
}

nav .dropdown a:hover {
    background: linear-gradient(90deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 102, 255, 0.04) 100%);
    color: var(--orange-dark);
    padding-left: 1.5rem;
    border-left-color: var(--orange);
}

nav .dropdown a i.fa-arrow-right {
    margin-left: auto;
    font-size: 0.75rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

nav .dropdown a:hover i.fa-arrow-right {
    opacity: 1;
    transform: translateX(0);
}

nav .dropdown-all {
    border-top: 1px solid rgba(0, 26, 51, 0.08);
    margin: 0.4rem 0.5rem 0;
    padding: 0.5rem 0.85rem 0;
}

nav .dropdown-all a {
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    border-left: none;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.3);
}

nav .dropdown-all a:hover {
    background: linear-gradient(135deg, var(--orange-dark) 0%, #c47a1a 100%);
    padding-left: 1.25rem;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

nav .dropdown-all a i.fa-arrow-right {
    opacity: 1;
    transform: none;
    margin-left: 0;
}

nav .dropdown-all a:hover i.fa-arrow-right {
    transform: translateX(3px);
}

.header-right .btn-orange {
    padding: 0.65rem 1.5rem;
    font-size: 0.85rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 102, 255, 0.25);
}

.header-right .btn-orange:hover {
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.btn-orange,
.btn-primary {
    background: var(--orange);
    color: var(--white) !important;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.2s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-orange:hover,
.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--navy);
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.2s;
    border: 2px solid var(--navy);
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

#nav.open+.header-right .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

#nav.open+.header-right .menu-toggle span:nth-child(2) {
    opacity: 0;
}

#nav.open+.header-right .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Standard Button Reset */
button,
.btn {
    font-family: 'Outfit', sans-serif;
}

/* ========== HERO (HOMEPAGE) ========== */
.hero {
    background: linear-gradient(165deg, var(--navy) 0%, var(--navy-dark) 50%, #0a1335 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 1rem 50px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(0, 102, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    max-width: 1280px;
    width: 100%;
    display: grid;
    grid-template-columns: 320px 1fr 320px;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-img-wrap {
    display: flex;
    justify-content: center;
}

.arch-img {
    width: 280px;
    height: 360px;
    object-fit: cover;
    border-radius: 200px 200px 0 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-img-wrap.right .arch-img {
    border-radius: 0 0 200px 200px;
}

.hero-center {
    text-align: center;
}

.hero-badge-region {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 0.85rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.95) 0%, rgba(0, 82, 204, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
    text-transform: uppercase;
}

.hero-badge-region i {
    color: var(--white);
    opacity: 0.95;
}

.hero-eyebrow {
    display: inline-block;
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-eyebrow i {
    color: var(--orange);
}

.hero h1 {
    font-size: clamp(2.6rem, 4.5vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

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

.hero-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 1.75rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.btn-hero {
    display: inline-block;
    background: var(--orange);
    color: var(--white) !important;
    font-weight: 700;
    padding: 1rem 2.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-hero:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.35);
}

.btn-hero-outline {
    display: inline-block;
    background: transparent;
    color: var(--white) !important;
    font-weight: 600;
    padding: 1rem 2.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.2s;
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.btn-hero-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white) !important;
}

.hero-inner-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-center .hero-contact a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
}

.hero-contact {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

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

.hero-contact a i:first-child {
    color: var(--orange);
}

.hero-center .hero-contact a:hover {
    color: var(--white);
}

.hero-stats {
    max-width: 1280px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: clamp(2.5rem, 6vw, 5rem);
    margin-top: 4rem;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.75rem;
}

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

.hero-stat-num {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.4rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ========== SUB-PAGE HERO ========== */
.sub-hero {
    background: var(--navy);
    padding: 140px 2rem 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sub-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.sub-hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.sub-hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sub-hero p a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.sub-hero p a:hover {
    color: var(--orange);
}

.sub-hero .container {
    position: relative;
    z-index: 1;
}

.sub-hero-icon {
    margin-right: 0.5rem;
    color: var(--orange);
    font-size: 0.85em;
    vertical-align: middle;
}

/* Contact page: same as other sub-pages (no large bg image) */
.sub-hero-contact {
    background: var(--navy);
}

.sub-hero-contact::before {
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
}

.sub-hero-breadcrumb {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.sub-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* ========== SECTION BASE ========== */
section {
    padding: 5.5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.85rem, 2.5vw, 2.35rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.65;
    max-width: 640px;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2.5rem;
}

.section-intro {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto 2rem;
    text-align: center;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 26, 51, 0.08);
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 26, 51, 0.1);
}

.section-title {
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--orange);
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

/* ========== WHO WE SERVE (JOB SEEKERS & EMPLOYERS) ========== */
.audience-section {
    padding: 3rem 2rem;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f9 50%, #f4f6fb 100%);
    position: relative;
    overflow: hidden;
}

.audience-section .audience-section-header .section-sub {
    margin-bottom: 1.5rem;
}

.audience-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.audience-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(0, 26, 51, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.audience-section .section-header {
    text-align: center;
    position: relative;
    z-index: 1;
}

.audience-section .section-tag {
    background: var(--orange);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.audience-card {
    padding: 1.5rem 1.75rem;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0, 26, 51, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.audience-card-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(0, 102, 255, 0.12);
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    margin-bottom: 0.6rem;
}

.audience-card-badge-navy {
    color: var(--navy);
    background: rgba(0, 26, 51, 0.08);
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
    transition: height 0.3s ease;
}

.audience-jobseekers::before {
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-dark) 100%);
}

.audience-employers::before {
    background: linear-gradient(90deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.audience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 26, 51, 0.12);
    border-color: rgba(0, 26, 51, 0.12);
}

.audience-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.audience-card:hover .audience-icon {
    transform: scale(1.05);
}

.audience-jobseekers .audience-icon {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.18) 0%, rgba(0, 102, 255, 0.08) 100%);
    color: var(--orange);
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.2);
}

.audience-employers .audience-icon {
    background: linear-gradient(135deg, rgba(0, 26, 51, 0.12) 0%, rgba(0, 26, 51, 0.05) 100%);
    color: var(--navy);
    box-shadow: 0 4px 16px rgba(0, 26, 51, 0.12);
}

.audience-card h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.audience-card p {
    color: var(--text-mid);
    font-size: 0.9rem;
    margin-bottom: 0.9rem;
    line-height: 1.5;
}

.audience-list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

.audience-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    font-weight: 500;
}

.audience-list li i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.2);
    color: var(--orange);
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.audience-card .btn-orange,
.audience-card .btn-secondary {
    display: inline-block;
    text-align: center;
    padding: 0.6rem 1.25rem;
    font-size: 0.88rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.audience-card .btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.35);
}

.audience-card .btn-secondary {
    border: 2px solid var(--navy);
    color: var(--navy);
    background: var(--white);
}

.audience-card .btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.2);
}

.audience-trust-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.audience-trust-line span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-mid);
}

.audience-trust-line span i {
    color: var(--orange);
    font-size: 0.85rem;
}

/* ========== PLACEMENT TYPES STRIP ========== */
.placement-types-strip {
    background: linear-gradient(135deg, var(--navy) 0%, #0a1442 50%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.placement-types-strip::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.placement-types-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 1;
}

.placement-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.placement-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.placement-type-card:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(0, 102, 255, 0.4);
    transform: translateY(-4px);
}

.placement-type-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.35) 0%, rgba(0, 102, 255, 0.15) 100%);
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.placement-type-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    letter-spacing: 0.02em;
}

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

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

@media (max-width: 480px) {
    .placement-types-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== SERVICES GRID (HOMEPAGE & PAGE) ========== */
.services-section {
    background: #f8fafc;
    padding: 5.5rem 2rem;
}

.services-section .section-tag {
    display: inline-block;
    text-align: center;
    margin: 0 auto 1rem;
    background: var(--orange);
    color: var(--white);
    border-color: transparent;
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.services-section .section-header {
    text-align: center;
    margin-bottom: 0;
}

.services-section .section-header .section-sub {
    margin-bottom: 2.5rem;
}

/* Section header: centered on services, testimonials, industries */
.services-section .section-header,
.testimonials-section .section-header,
.industries-section .section-header {
    text-align: center;
}

.services-section .section-header .section-tag,
.testimonials-section .section-header .section-tag,
.training-section .section-header .section-tag {
    display: inline-block;
}

/* Orange pill tag for light-background sections (homepage) */
.about-section .section-tag,
.training-section .section-tag,
.testimonials-section .section-tag {
    background: var(--orange);
    color: var(--white);
    border-color: transparent;
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.services-section .section-header .section-tag {
    display: inline-block;
}

.services-section .section-title {
    text-align: center;
    margin-top: 0.5rem;
}

.services-section .section-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.services-grid,
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 0;
    align-items: stretch;
}

@media (max-width: 992px) {

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

@media (max-width: 576px) {

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

.svc-card,
.service-card-page {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(0, 26, 51, 0.08);
    transition: all 0.25s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 26, 51, 0.04);
}

.svc-card:hover,
.service-card-page:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 26, 51, 0.1);
    border-color: rgba(0, 102, 255, 0.3);
}

.svc-icon,
.service-card-icon {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.12);
    color: var(--orange);
    border-radius: 12px;
}

.svc-card.svc-card-featured .svc-icon {
    background: rgba(0, 102, 255, 0.18);
    color: var(--orange);
}

.svc-card-featured {
    border: 2px solid var(--orange);
    position: relative;
}

.svc-card-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
}

.svc-card h3,
.service-card-page h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.svc-card p,
.service-card-page p {
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.svc-link,
.service-card-link {
    color: var(--orange);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    margin-top: auto;
}

.svc-link:hover,
.service-card-link:hover {
    color: var(--orange-dark);
    gap: 0.75rem;
}

.svc-link i,
.service-card-link i {
    font-size: 0.9em;
}

/* ========== SERVICES PAGE (listing with image cards) ========== */
.services-page-intro {
    text-align: center;
    margin-bottom: 0;
}

.services-page-intro h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.5rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
}

.services-page-intro p {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* Service cards with image on top (services listing) */
.services-page-grid .service-card-page {
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

.service-card-image-wrapper {
    position: relative;
    height: 160px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--light-bg);
}

.service-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card-page:hover .service-card-image-wrapper img {
    transform: scale(1.05);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 26, 51, 0.4), transparent 50%);
    pointer-events: none;
}

.service-card-content {
    padding: 1.25rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    text-align: left;
}

.services-page-grid .service-card-page h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.services-page-grid .service-card-page p {
    margin: 0 0 0.75rem 0;
    flex-grow: 1;
    font-size: 0.9rem;
    line-height: 1.55;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--orange);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    margin-top: auto;
    margin-bottom: 0;
    transition: gap 0.2s;
}

.service-card-link span {
    transition: transform 0.2s;
}

.service-card-page:hover .service-card-link span {
    transform: translateX(4px);
}

.service-card-featured {
    border-color: var(--orange);
    border-width: 2px;
}

.featured-badge-service {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--orange);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
}

/* ========== INTERNAL SERVICE PAGES (detail layout) ========== */
.service-hero {
    background: var(--navy);
    padding: 2rem 2rem 3rem;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.service-hero .container {
    position: relative;
    z-index: 1;
}

/* Service detail: single hero (hide duplicate sub-hero) */
.service-detail-page .sub-hero {
    display: none;
}

.service-detail-page .service-hero {
    padding-top: 7rem;
}

/* Training detail: single hero (hide duplicate sub-hero) */
.training-detail-page .sub-hero {
    display: none;
}

.training-detail-page .service-hero {
    padding-top: 7rem;
}

.service-hero .breadcrumb,
.service-hero .service-hero-breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-hero .breadcrumb a,
.service-hero .service-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

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

.service-hero .breadcrumb span,
.service-hero .service-hero-breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

.service-hero-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.service-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1;
    color: var(--orange);
    background: rgba(0, 102, 255, 0.15);
    border-radius: 16px;
}

.service-hero-icon i,
.service-hero-icon .fas,
.service-hero-icon .fab {
    font-size: 1.75rem;
}

.service-hero-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.service-hero-content h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--orange);
    display: inline-block;
}

.service-hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    line-height: 1.5;
    margin: 0;
}

.popular-badge-hero {
    display: inline-block;
    margin-top: 1.25rem;
    background: var(--orange);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.service-detail-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 4rem;
    align-items: start;
}

.service-detail-main h2 {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.service-detail-main h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
    margin: 2.5rem 0 1rem;
}

.service-detail-main p {
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.highlight-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.12);
    border-radius: 12px;
}

.highlight-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.highlight-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.training-programs-list,
.program-item {
    margin: 1.5rem 0;
}

.program-item {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
}

.program-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.program-item p {
    font-size: 0.95rem;
    color: var(--text-mid);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.program-item ul {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.program-item li {
    margin-bottom: 0.35rem;
}

/* Interview Preparation Process (interview support page) */
.interview-process-section {
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
}

.interview-process-section .process-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 0.5rem;
}

.interview-process-section .process-section-intro {
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-steps .step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}

.process-steps .step-item:last-child {
    border-bottom: none;
}

.process-steps .step-marker {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.process-steps .step-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 26, 51, 0.08);
    color: var(--navy);
    border-radius: 12px;
    font-size: 1.25rem;
}

.process-steps .step-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.process-steps .step-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.5rem;
}

.process-steps .step-content p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin: 0;
}

@media (min-width: 768px) {
    .process-steps .step-item {
        padding: 1.5rem 1.25rem;
        margin: 0 -1.25rem;
        border-radius: 12px;
    }

    .process-steps .step-item:hover {
        background: var(--light-bg);
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.feature-box {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: rgba(0, 102, 255, 0.4);
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.06);
}

.feature-box h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.feature-box p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin: 0;
}

.cta-section {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--navy);
    border-radius: 20px;
    text-align: center;
    color: var(--white);
}

.cta-section h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.cta-section .btn-primary {
    margin: 0;
}

/* Service detail sidebar */
.service-detail-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.sidebar-card p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.quick-facts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-facts li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-mid);
}

.quick-facts li:last-child {
    border-bottom: none;
}

.related-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-services li {
    margin-bottom: 0.75rem;
}

.related-services a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.related-services a:hover {
    color: var(--orange);
}

.success-stat {
    text-align: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

.success-stat:last-child {
    margin-bottom: 0;
}

.success-stat .stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--orange);
}

.success-stat .stat-label {
    font-size: 0.85rem;
    color: var(--text-mid);
    text-transform: none;
}

.about-section {
    padding: 5.5rem 2rem;
    background: var(--white);
}

.about-section .section-tag {
    margin-bottom: 0.75rem;
}

.about-section .about-content .section-sub {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    max-width: 100%;
}

.about-section .section-header .section-sub {
    margin-bottom: 1.75rem;
}

/* ========== ABOUT CONTENT ========== */
/* Fix for hidden sections */
section[style*="display: none"],
section[style*="display:none"] {
    display: block !important;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-section .about-img-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(0, 26, 51, 0.12);
}

/* About page only: content as 2-column grid (image | text) - .about-content is direct child of .container */
.container>.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img-main,
.about-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 26, 51, 0.15);
    object-fit: cover;
    display: block;
}

.about-img-wrap {
    position: relative;
}

.about-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--orange);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
}

.about-badge-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.25rem;
    line-height: 1.3;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(0, 102, 255, 0.12);
    color: var(--orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
}

.benefit-icon {
    font-size: 1.5rem;
    color: var(--orange);
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--navy);
}

.benefit-content p {
    font-size: 0.9rem;
    color: var(--text-mid);
}

.business-profile-section,
.business-overview-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.business-profile-section .section-header,
.business-profile-section h2,
.business-overview-section h2 {
    text-align: center;
}

.business-profile-section .section-header .section-title,
.business-profile-section h2,
.business-overview-section h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
}

.business-profile-section .section-header .section-sub {
    margin-bottom: 2rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* Profile overview block (Company Overview) */
.profile-overview-block {
    margin-top: 2rem;
}

.business-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.profile-overview-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 26, 51, 0.12);
}

.profile-overview-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    vertical-align: middle;
}

.profile-overview-content {
    padding: 0;
    min-width: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.profile-overview-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
}

.profile-overview-title i {
    color: var(--orange);
}

.profile-overview-text {
    color: var(--text-mid);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
}

.profile-stats-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: stretch;
}

.profile-stat-card {
    background: var(--white);
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 26, 51, 0.06);
    border: 1px solid var(--border);
    min-width: 120px;
    flex: 1 1 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.profile-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.profile-stat-label {
    font-size: 0.9rem;
    color: var(--text-mid);
}

/* Mission, Vision, Values – redesigned */
.mission-vision-values {
    margin-top: 3rem;
}

.about-section-margin {
    margin-top: 3rem;
}

.mission-vision-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

@media (max-width: 992px) {
    .mission-vision-values-grid {
        grid-template-columns: 1fr;
    }
}

.mvv-card {
    background: var(--white);
    padding: 2.5rem 1.75rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 26, 51, 0.08);
    border-top: 4px solid var(--navy);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mvv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 26, 51, 0.1);
}

.mvv-mission {
    border-top-color: var(--navy);
}

.mvv-mission .mvv-icon {
    color: var(--navy);
}

.mvv-vision {
    border-top-color: var(--orange);
}

.mvv-vision .mvv-icon {
    color: var(--orange);
}

.mvv-values {
    border-top-color: var(--navy-dark);
}

.mvv-values .mvv-icon {
    color: var(--navy-dark);
}

.mvv-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 26, 51, 0.06);
    border-radius: 14px;
    font-size: 1.5rem;
}

.mvv-vision .mvv-icon {
    background: rgba(0, 102, 255, 0.12);
}

.mvv-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.mvv-card p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin: 0;
}

/* Our Core Values – full redesign */
.core-values-section {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: var(--light-bg);
    border-radius: 24px;
    border-top: 3px solid var(--orange);
}

.core-values-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.core-values-header .section-tag {
    display: inline-block;
}

.core-values-header .section-title {
    font-size: clamp(1.5rem, 2vw, 1.85rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.core-values-sub {
    font-size: 1rem;
    color: var(--text-mid);
    margin: 0;
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.core-value-card {
    background: var(--white);
    padding: 2rem 1.75rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 26, 51, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.core-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0, 26, 51, 0.1);
}

.core-value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.5rem;
}

.core-value-1 .core-value-icon {
    background: rgba(0, 26, 51, 0.08);
    color: var(--navy);
}

.core-value-1:hover {
    border-color: rgba(0, 26, 51, 0.2);
}

.core-value-2 .core-value-icon {
    background: rgba(0, 102, 255, 0.15);
    color: var(--orange);
}

.core-value-2:hover {
    border-color: rgba(0, 102, 255, 0.4);
}

.core-value-3 .core-value-icon {
    background: rgba(0, 26, 51, 0.08);
    color: var(--navy-mid);
}

.core-value-3:hover {
    border-color: rgba(17, 32, 96, 0.25);
}

.core-value-4 .core-value-icon {
    background: rgba(0, 102, 255, 0.15);
    color: var(--orange-dark);
}

.core-value-4:hover {
    border-color: rgba(0, 82, 204, 0.4);
}

.core-value-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.core-value-card p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin: 0;
}

/* Legacy grid class for any other use */
.core-values-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* Business metrics header */
.metrics-header {
    text-align: center;
    margin-bottom: 2rem;
}

.metrics-header .section-tag {
    display: inline-block;
}

.metrics-header .section-title {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 800;
    color: var(--navy);
}

.company-stats-visual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.presence-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 800;
}

/* ========== ABOUT PAGE SPECIFIC ========== */
#about {
    background: var(--light-bg);
    padding: 5rem 2rem 5rem;
}

#about .container>h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    margin-bottom: 1rem;
}

#about .section-intro {
    margin-bottom: 2.5rem;
}

/* About page: first section styling */
.about-page-section {
    background: var(--light-bg);
}

#about .section-header {
    text-align: center;
    margin-bottom: 0;
}

#about .section-header .section-tag {
    display: inline-block;
}

#about .section-header .section-intro {
    margin-bottom: 2rem;
}

#about .stats-grid {
    margin: 2.5rem 0 4rem;
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.about-description {
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Core values detailed grid */
.core-values-detailed {
    margin-top: 4rem;
}

.core-values-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.about-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.about-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 102, 255, 0.3);
}

.about-card-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.about-card-info p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Business statistics / performance metrics */
.business-statistics-card {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: var(--light-bg);
    border-radius: 24px;
}

.performance-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.metric-item {
    text-align: center;
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.metric-visual {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
}

.metric-visual svg {
    display: block;
    width: 100%;
    height: 100%;
}

.metric-visual .metric-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
}

.metric-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.metric-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Our Global Presence – redesigned */
.global-presence-section {
    margin-top: 4rem;
}

.global-presence-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.global-presence-header .section-tag {
    display: inline-block;
}

.global-presence-header .section-title {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.global-presence-header .section-sub {
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 520px;
    margin: 0 auto;
}

.global-presence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.global-presence-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.presence-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.presence-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 26, 51, 0.06);
    border-left: 4px solid var(--navy);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.presence-card:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 28px rgba(0, 26, 51, 0.1);
}

.presence-card-navy {
    border-left-color: var(--navy);
}

.presence-card-navy .presence-card-icon {
    color: var(--navy);
}

.presence-card-orange {
    border-left-color: var(--orange);
}

.presence-card-orange .presence-card-icon {
    color: var(--orange);
}

.presence-card-uk {
    border-left-color: #C8102E;
}

.presence-card-uk .presence-card-icon {
    color: #C8102E;
}

.presence-card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 26, 51, 0.06);
    border-radius: 12px;
    font-size: 1.35rem;
}

.presence-card-orange .presence-card-icon {
    background: rgba(0, 102, 255, 0.12);
}

.presence-card-uk .presence-card-icon {
    background: rgba(200, 16, 46, 0.1);
}

.presence-card-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.presence-card-body p {
    font-size: 0.9rem;
    color: var(--text-mid);
    margin: 0;
}

.service-coverage-box {
    background: var(--white);
    padding: 1.5rem 1.75rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 26, 51, 0.06);
    border: 1px solid var(--border);
}

.service-coverage-box h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-coverage-box h4 i {
    color: var(--orange);
}

.service-coverage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.service-coverage-tags span {
    background: var(--light-bg);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
}

.global-presence-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 26, 51, 0.12);
}

.global-presence-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Legacy: keep .service-areas for any other use */
.service-areas {
    margin-top: 4rem;
}

/* Benefits grid on about: make icons consistent box */
#about .benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.12);
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

#about .cta-buttons {
    margin-top: 2rem;
}

#about .cta-buttons .btn-primary {
    text-decoration: none;
}

/* ========== STATS BLOCK ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 4rem 0;
    text-align: center;
}

.stat-card {
    background: var(--light-bg);
    padding: 3rem 1.5rem;
    border-radius: 20px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
}

/* ========== TRAINING PAGE SPECIFIC ========== */
.training-page-programs-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.training-page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.training-page-header h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
}

.training-page-intro {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
}

.training-page-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.training-page-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.training-page-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.training-page-card-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.training-page-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.training-page-card:hover .training-page-card-image-wrapper img {
    transform: scale(1.05);
}

.training-page-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 26, 51, 0.35), transparent 50%);
    pointer-events: none;
}

.training-page-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.training-page-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.training-page-card h3 {
    color: var(--navy);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.training-page-card p {
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.training-page-card-link {
    color: var(--orange);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    transition: gap 0.2s;
}

.training-page-card-link:hover {
    gap: 0.75rem;
}

.training-page-positions-section {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.training-page-positions-header {
    text-align: center;
    margin-bottom: 2rem;
}

.training-page-positions-header h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
}

.training-page-positions-intro {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 800px;
    margin: 0 auto;
}

.training-page-roles-section {
    margin-top: 2rem;
}

.training-page-roles-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 1.5rem;
}

.training-page-roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.training-page-role-icon-wrapper {
    margin-bottom: 1rem;
}

.training-page-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.training-page-btn-primary {
    display: inline-block;
    background: var(--orange);
    color: var(--white) !important;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.training-page-btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.training-page-role-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.training-page-role-item:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
    box-shadow: 0 10px 30px rgba(0, 26, 51, 0.05);
}

.training-page-role-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* ========== INDUSTRIES SECTION ========== */
.industries-section {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: white;
    padding: 5.5rem 2rem;
}

.industries-section .section-tag {
    display: inline-block;
    text-align: center;
    background: var(--orange);
    color: var(--white);
    border-color: transparent;
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.industries-section .section-title {
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.industries-section .section-sub-light,
.section-sub-light {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.industries-section .section-header .section-sub {
    margin-bottom: 2.5rem;
}

/* Industries page: reduce padding so content uses more of the viewport */
.industries-page .sub-hero {
    padding: 6rem 1rem 3rem;
}

.industries-content-section {
    padding: 4rem 1rem;
    background: var(--bg-light);
}

.industries-page .industries-content-section .container {
    max-width: 1200px;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 992px) {
    .industries-page .industries-content-section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .industries-page .industries-content-section .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

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

.industry-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    border-color: rgba(0, 102, 255, 0.5);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

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

.industry-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    line-height: 1.35;
}

/* ========== CAREER PAGE ========== */
.career-page .sub-hero {
    padding: 8rem 2rem 4rem;
}

.career-page-section {
    padding: 4rem 2rem 5rem;
    background: var(--light-bg);
}

.career-page-intro {
    margin-bottom: 3rem;
}

.career-page-intro h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.career-page-intro .section-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.65;
}

.career-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.career-card-page {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.career-card-page:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 26, 51, 0.12);
    border-color: rgba(0, 102, 255, 0.4);
}

.career-card-page.career-card-featured {
    border: 2px solid var(--orange);
    position: relative;
}

.career-card-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.career-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.career-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 26, 51, 0.7) 100%);
    pointer-events: none;
}

.career-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 2rem;
    z-index: 2;
}

.career-card-page .featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--orange);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    z-index: 2;
}

.career-card-content {
    padding: 1.75rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.career-card-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.career-card-content p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}

.career-features {
    list-style: none;
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
}

.career-features li {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    padding-left: 1.25rem;
    position: relative;
}

.career-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

.career-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.career-card-btn:hover {
    background: var(--navy-mid);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 26, 51, 0.25);
}

.career-card-btn span {
    transition: transform 0.2s;
}

.career-card-btn:hover span {
    transform: translateX(4px);
}

/* Why Join Us */
.why-join-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.why-join-section h2 {
    font-size: clamp(1.5rem, 2.2vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.why-join-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.why-join-item {
    background: var(--white);
    padding: 1.75rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.why-join-item:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.why-join-icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.why-join-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.why-join-item p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 768px) {
    .career-page .sub-hero {
        padding: 6rem 1rem 3rem;
    }

    .career-page-section {
        padding: 3rem 1rem 4rem;
    }

    .career-page-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .career-card-image-wrapper {
        height: 180px;
    }

    .career-features {
        grid-template-columns: 1fr;
    }

    .why-join-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== NEWS PAGE ========== */
.news-page .sub-hero {
    padding: 8rem 2rem 4rem;
}

.news-section {
    padding: 4rem 2rem 5rem;
    background: var(--light-bg);
}

.news-intro {
    margin-bottom: 3rem;
    text-align: center;
}

.news-intro h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.news-intro .section-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.65;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 26, 51, 0.12);
    border-color: rgba(0, 102, 255, 0.4);
}

.news-card-image-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.news-card:hover .news-card-image-wrap img {
    transform: scale(1.05);
}

.news-card-content {
    padding: 1.75rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.news-card-content p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--orange);
    text-decoration: none;
    transition: all 0.25s ease;
}

.news-card-link:hover {
    color: var(--orange-dark);
}

.news-card-link i {
    font-size: 0.8em;
    transition: transform 0.2s;
}

.news-card-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .news-page .sub-hero {
        padding: 6rem 1rem 3rem;
    }

    .news-section {
        padding: 3rem 1rem 4rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news-card-image-wrap {
        height: 200px;
    }
}

/* ========== NEWS DETAIL PAGE ========== */
.news-detail-page .sub-hero {
    padding: 10rem 2rem 6rem;
}

.blog-post-wrap {
    background: var(--light-bg);
    padding-bottom: 5rem;
}

.blog-post-container {
    max-width: 900px;
    margin: -4rem auto 0;
    position: relative;
    z-index: 5;
    padding: 0 1.5rem;
}

.blog-post-article {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 26, 51, 0.08);
    overflow: hidden;
    padding: 3rem 4rem;
}

.blog-post-header {
    margin-bottom: 3rem;
    text-align: center;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-meta i {
    color: var(--orange);
}

.blog-post-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 2rem;
}

.blog-post-featured {
    margin: 0 -4rem 3rem;
}

.blog-post-featured img {
    width: 100%;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.blog-post-content {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-mid);
}

.blog-post-content p {
    margin-bottom: 1.75rem;
}

.blog-post-content h2,
.blog-post-content h3 {
    color: var(--navy);
    margin: 2.5rem 0 1.25rem;
    font-weight: 700;
}

.blog-post-content h2 {
    font-size: 2rem;
}

.blog-post-content h3 {
    font-size: 1.5rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.blog-post-content li {
    margin-bottom: 0.75rem;
}

.blog-post-content blockquote {
    border-left: 4px solid var(--orange);
    padding: 1.5rem 2rem;
    background: rgba(0, 102, 255, 0.05);
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--navy);
    border-radius: 0 12px 12px 0;
}

.blog-post-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px dashed var(--border);
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .blog-post-article {
        padding: 2rem 1.5rem;
        border-radius: 0;
    }

    .blog-post-container {
        margin-top: -2rem;
        padding: 0;
    }

    .blog-post-featured {
        margin: 0 -1.5rem 2rem;
    }

    .blog-post-title {
        font-size: 1.75rem;
    }
}

/* ========== TRAINING SECTION (HOMEPAGE) ========== */
.training-section {
    background: #f8fafc;
    padding: 5.5rem 2rem;
    border-top: 3px solid var(--orange);
    border-bottom: 1px solid var(--border);
}

.training-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 3rem;
}

.training-section .section-sub {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    max-width: 100%;
}

.training-section .section-header .section-sub {
    margin-bottom: 0;
}

.training-roles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.role-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.role-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
    box-shadow: 0 15px 40px rgba(0, 26, 51, 0.08);
}

.role-emoji {
    font-size: 2.5rem;
    line-height: 1;
}

.role-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: white;
    padding: 5.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonials-section .section-tag {
    display: block;
    text-align: center;
    margin-bottom: 0.75rem;
}

.testimonials-section .section-title {
    color: white;
    text-align: center;
}

.testimonials-section .section-header .section-sub {
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.testi-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: all 0.35s ease;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 26, 51, 0.06);
    overflow: hidden;
}

.testi-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-radius: 4px 0 0 4px;
}

.testi-card:hover {
    box-shadow: 0 24px 56px rgba(0, 26, 51, 0.1);
    border-color: rgba(0, 102, 255, 0.3);
    transform: translateY(-4px);
}

.testi-quote {
    font-size: 3.5rem;
    color: var(--orange);
    opacity: 0.35;
    line-height: 1;
    margin-bottom: 0.75rem;
    font-family: Georgia, serif;
}

.testi-text {
    color: var(--text-dark);
    line-height: 1.75;
    margin-bottom: 1.75rem;
    font-size: 1rem;
    font-weight: 450;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.testi-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0, 102, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 26, 51, 0.08);
}

.testi-card:hover .testi-avatar {
    border-color: var(--orange);
}

.testi-avatar-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.12);
    border: 3px solid rgba(0, 102, 255, 0.3);
    color: var(--primary);
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(0, 26, 51, 0.08);
}

.testi-card:hover .testi-avatar-icon {
    border-color: var(--orange);
    color: var(--orange);
}

.testi-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    margin-right: 0.35rem;
}

.testi-stars i {
    color: var(--orange);
}

.testi-rating-num {
    font-weight: 600;
    color: var(--navy);
}

.testi-author h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.testi-author p {
    font-size: 0.9rem;
    color: var(--text-mid);
}

.testi-rating {
    font-size: 0.95rem;
    color: var(--orange);
    margin-top: 0.35rem;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(4, minmax(280px, 1fr));
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }

    .testi-card {
        scroll-snap-align: start;
        min-width: 280px;
    }
}

/* ========== CTA STRIP ========== */
.cta-strip {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 2rem;
}

.cta-strip h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.cta-strip p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.cta-strip .btn-orange {
    padding: 0.9rem 2.25rem;
    font-size: 1rem;
    border-radius: 8px;
}

/* ========== CERTIFICATIONS SECTION ========== */
.certifications-strip {
    background: var(--light-bg);
    padding: 4rem 2rem;
    border-top: 1px solid var(--border);
}

.certifications-strip .container {
    max-width: 1280px;
    margin: 0 auto;
}

.cert-flex,
.cert-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

section.certifications {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

section.certifications .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

section.certifications .section-title,
section.certifications h2 {
    font-size: clamp(1.5rem, 2vw, 1.75rem);
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    margin-bottom: 2rem;
}

.cert-badge {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.85rem 1.75rem;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--navy);
    letter-spacing: 0.3px;
}

.training-page-role-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.training-page-role-item h4 {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ========== CONTACT PAGE SPECIFIC ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.info-item {
    margin-bottom: 2.5rem;
}

.info-item h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item-icon {
    color: var(--orange);
    font-size: 1rem;
}

.contact-line-icon {
    color: var(--orange);
    width: 1.1em;
    margin-right: 0.35rem;
    font-size: 0.9rem;
}

.info-item p {
    color: var(--text-mid);
    line-height: 1.8;
}

.info-item a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
}

.contact-form-container {
    background: white;
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 26, 51, 0.08);
}

.form-status {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-status-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-status-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.contact-form .invalid-feedback {
    color: #b91c1c;
    font-size: 0.875rem;
    margin-top: 0.35rem;
    display: none;
}

.contact-form .invalid-feedback.d-block {
    display: block;
}

.contact-form .form-group input.is-invalid,
.contact-form .form-group select.is-invalid,
.contact-form .form-group textarea.is-invalid {
    border-color: #b91c1c;
}

#captcha-error {
    display: none;
    color: #b91c1c;
    font-size: 0.875rem;
    margin-top: 0.35rem;
}

#captcha-error.d-block {
    display: block;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--navy);
}

.contact-section {
    padding: 90px 2rem;
    background: var(--light-bg);
}

.contact-details-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-details-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 26, 51, 0.1);
}

.contact-details-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-details-heading-wrap {
    flex: 1;
    min-width: 0;
}

.contact-details-heading-wrap h2 {
    margin-bottom: 0.5rem;
}

.contact-details-intro {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.contact-details h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
}

.contact-details p {
    color: var(--text-mid);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.contact-info-block {
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 26, 51, 0.08);
    position: relative;
}

.map-container-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.map-container-label i {
    color: var(--orange);
}

.map-container iframe {
    display: block;
}

.contact-page .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-label-icon {
    color: var(--orange);
    font-size: 0.9rem;
    width: 1.1em;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-details-header {
        gap: 1rem;
    }

    .contact-details-image {
        width: 80px;
        height: 80px;
    }

    .talent-form-grid {
        grid-template-columns: 1fr;
    }

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

/* ========== FOOTER ========== */
footer {
    background: linear-gradient(180deg, #0a1628 0%, #071020 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange), var(--orange-dark), transparent);
    opacity: 0.9;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem 3rem;
    padding: 4rem 2rem 3.5rem;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1.25rem;
}

.footer-logo,
.footer-brand img {
    height: 44px;
    width: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
    transition: opacity 0.25s ease;
}

.footer-logo-link:hover .footer-logo,
.footer-brand a:hover img {
    opacity: 0.9;
}

.footer-tagline,
.footer-brand p {
    line-height: 1.75;
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-socials-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.75rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 1rem;
}

.social-icon:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.35);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col h4 .footer-col-icon {
    color: var(--orange);
    font-size: 0.95rem;
    width: 1.1em;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: var(--orange);
    border-radius: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-col a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col a i {
    color: var(--orange);
    opacity: 0.9;
    font-size: 0.85rem;
    width: 1.1em;
    text-align: center;
}

.footer-col a:hover {
    color: var(--orange);
    padding-left: 4px;
}

.footer-col a:hover i {
    opacity: 1;
}

.footer-legal-strip {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.12);
}

.footer-eeo {
    font-size: 0.8rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 1rem;
    max-width: 900px;
}

.footer-region {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 0;
    font-weight: 500;
}

.footer-region i {
    margin-right: 0.4rem;
    color: var(--orange);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.footer-copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-copyright i {
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-trust-badge,
.footer-trust span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    padding: 0.4rem 0.85rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-trust-badge i,
.footer-trust span i {
    color: var(--orange);
    opacity: 0.85;
    font-size: 0.8rem;
}

/* ========== MODAL ========== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 4rem;
    position: relative;
}

.modal-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-close-btn:hover {
    color: var(--navy);
}

.talent-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.talent-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.talent-form-group label {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.9rem;
}

.talent-form-group input,
.talent-form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.talent-form-group input:focus,
.talent-form-group select:focus {
    border-color: var(--navy);
}

.talent-form-group-full {
    grid-column: 1 / -1;
}

.talent-form-group .invalid-feedback,
.talent-form-consent .invalid-feedback {
    color: #b91c1c;
    font-size: 0.875rem;
    margin-top: 0.35rem;
    display: none;
}

.talent-form-group .invalid-feedback.d-block,
.talent-form-consent .invalid-feedback.d-block {
    display: block;
}

.talent-form-group input.is-invalid,
.talent-form-group select.is-invalid {
    border-color: #b91c1c;
}

.talent-form-status {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
}

.talent-status-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.talent-status-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

/* ========== STICKY CALL TO ACTION ========== */
.talent-pool-sticky-trigger {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    background: var(--navy);
    color: white;
    padding: 1rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.talent-pool-sticky-trigger:hover {
    transform: scale(1.05);
    background: var(--orange);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-img-wrap {
        display: none;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

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

    .about-grid,
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 0.75rem 1rem;
        flex-wrap: nowrap;
    }

    .header-mobile-phone {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.85rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.95);
        text-decoration: none;
        white-space: nowrap;
        margin-left: 0.5rem;
    }

    .header-mobile-phone i {
        color: #00CCFF;
        font-size: 1rem;
    }

    .header-mobile-phone:hover {
        color: #00CCFF;
    }

    .menu-toggle {
        display: flex;
        order: 1;
        z-index: 1002;
    }

    .header-right .btn-orange {
        display: none;
    }

    nav,
    #nav {
        flex: 0 0 0;
        min-width: 0;
        overflow: visible;
    }

    /* Only the top-level nav list is the full-screen overlay (avoid affecting dropdown uls) */
    nav>ul,
    #nav>ul {
        display: none;
        flex-direction: column;
        flex-wrap: nowrap;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        max-width: 100vw;
        min-height: 100vh;
        padding: 5rem 1.5rem 2rem;
        margin: 0;
        background: var(--white);
        border: none;
        z-index: 1000;
        box-shadow: none;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        align-items: stretch;
        align-content: flex-start;
        text-align: left;
        gap: 0;
        list-style: none;
        box-sizing: border-box;
    }

    /* Keep dropdown parent in flow so submenu stays inside overlay */
    nav.open>ul>li.has-dropdown {
        overflow: visible;
        position: relative;
    }

    #nav.open>ul,
    nav.open>ul {
        display: flex;
    }

    /* Main menu items only (direct children of the overlay ul) – full width, single column */
    nav.open>ul>li,
    #nav.open>ul>li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid var(--border);
        width: 100%;
        max-width: 100%;
        flex: 0 0 auto;
        min-width: 0;
        display: block;
    }

    nav.open>ul>li>a,
    #nav.open>ul>li>a {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 100%;
        padding: 1rem 1.25rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        font-size: 1rem;
        font-weight: 600;
        color: var(--navy);
        text-align: left;
        text-transform: none;
        letter-spacing: 0;
        box-sizing: border-box;
        gap: 0.65rem;
    }

    /* Consistent icon column so all labels align */
    nav.open>ul>li .nav-icon {
        min-width: 1.35em;
        width: 1.35em;
        text-align: center;
        flex-shrink: 0;
    }

    /* Dropdown arrow on the right, icon+text stay left */
    nav.open>ul>li .dropdown-arrow {
        margin-left: auto;
        flex-shrink: 0;
        font-size: 0.65rem;
        opacity: 0.8;
    }

    nav .has-dropdown {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        width: 100%;
        min-width: 0;
    }

    nav.open>ul>li.has-dropdown>a {
        padding: 1rem 1.25rem;
    }

    /* Submenu: force in-flow, full width inside overlay – no absolute positioning */
    nav.open .dropdown,
    nav .dropdown {
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        min-width: auto;
        max-width: none;
        width: 100% !important;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        margin: 0;
        background: rgba(0, 26, 51, 0.05);
        border-radius: 0 0 10px 10px;
        box-shadow: none;
        transition: max-height 0.35s ease;
        text-align: left;
        list-style: none;
        border: none;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        box-sizing: border-box;
    }

    nav.open .dropdown::before {
        display: none;
    }

    nav .has-dropdown.open .dropdown {
        max-height: 80vh;
        padding: 0.5rem 0 1rem;
        overflow-y: auto;
    }

    nav .has-dropdown.open .dropdown-arrow {
        transform: rotate(180deg);
    }

    nav .dropdown li {
        border-bottom: none;
        width: 100%;
        flex: 0 0 auto;
        min-width: 0;
    }

    nav .dropdown a {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        padding: 0.7rem 1rem 0.7rem 1.5rem;
        font-size: 0.9rem;
        font-weight: 500;
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    nav .dropdown a .drop-icon {
        flex-shrink: 0;
    }

    nav .dropdown-all {
        margin-top: 0.25rem;
        padding-top: 0.5rem;
        border-top: 1px dashed var(--border);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }

    .training-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .business-overview-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        align-items: stretch;
    }

    .profile-overview-image-wrap {
        order: 0;
    }

    .profile-overview-content {
        padding: 0;
        min-width: 0;
    }

    .profile-stats-row {
        justify-content: flex-start;
    }

    .profile-stat-card {
        flex: 1;
        min-width: 100px;
    }

    .core-values-section {
        padding: 2.5rem 1rem;
        border-radius: 20px;
    }

    .core-values-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

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

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

    #about .container>.about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    #about .benefits-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-sidebar {
        position: static;
    }

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

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

    .sub-hero h1 {
        font-size: 2.8rem;
    }

    /* Homepage: hero and sections mobile – beautified */
    .hero {
        padding: 100px 1.25rem 48px;
        min-height: auto;
    }

    .hero-inner-wrap {
        width: 100%;
    }

    .hero-center {
        padding: 0 0.25rem;
    }

    .hero-badge-region {
        font-size: 0.75rem;
        padding: 0.55rem 1.1rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
        box-shadow: 0 4px 16px rgba(0, 102, 255, 0.35);
    }

    .hero-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 2.2px;
        margin-bottom: 1rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.75rem);
        line-height: 1.12;
        margin-bottom: 1.25rem;
    }

    .hero-sub {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.85rem;
        margin-bottom: 1.25rem;
    }

    .hero-buttons .btn-hero,
    .hero-buttons .btn-hero-outline {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        min-height: 52px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        font-weight: 700;
        border-radius: 12px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .hero-buttons .btn-hero {
        box-shadow: 0 6px 20px rgba(0, 102, 255, 0.35);
    }

    .hero-buttons .btn-hero:active,
    .hero-buttons .btn-hero-outline:active {
        transform: scale(0.98);
    }

    .hero-buttons .btn-hero-outline {
        border-width: 2px;
        border-color: rgba(255, 255, 255, 0.6);
    }

    .hero-contact {
        flex-direction: column;
        gap: 0.65rem;
        margin-top: 1.5rem;
    }

    .hero-contact a {
        font-size: 0.9rem;
        padding: 0.65rem 1rem;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        max-width: 280px;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-contact a i {
        opacity: 0.95;
    }

    .hero-stats {
        gap: 0.85rem;
        padding-top: 2rem;
        margin-top: 2.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hero-stat {
        min-width: calc(50% - 0.5rem);
        background: rgba(255, 255, 255, 0.06);
        border-radius: 12px;
        padding: 1rem 0.75rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        text-align: center;
    }

    .hero-stat-num {
        font-size: 1.75rem;
        margin-bottom: 0.2rem;
    }

    .hero-stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
        opacity: 0.9;
    }

    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .section-tag {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.5rem;
    }

    .section-title {
        font-size: 1.6rem;
        line-height: 1.25;
        margin-bottom: 0.6rem;
    }

    .section-sub {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .audience-section .audience-grid {
        gap: 1.25rem;
    }

    .audience-card {
        padding: 1.75rem 1.25rem;
        border-radius: 16px;
    }

    .audience-card .btn-orange,
    .audience-card .btn-secondary {
        padding: 0.85rem 1.5rem;
        border-radius: 10px;
        min-height: 48px;
    }

    section {
        padding: 3rem 1rem;
    }

    .audience-section,
    .services-section,
    .about-section,
    .about-page-section,
    .business-profile-section,
    section.certifications {
        padding: 3rem 1rem;
    }

    .placement-types-strip {
        padding: 2rem 1rem;
    }

    .placement-types-grid {
        gap: 1rem;
    }

    .certifications-strip .cert-flex {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .cta-strip {
        padding: 3rem 1rem;
    }

    .cta-strip h2 {
        font-size: 1.5rem;
    }

    .talent-pool-sticky-trigger {
        display: none;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 92px 1rem 40px;
    }

    .hero h1 {
        font-size: 1.85rem;
        margin-bottom: 1rem;
    }

    .hero-badge-region {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }

    .hero-buttons .btn-hero,
    .hero-buttons .btn-hero-outline {
        min-height: 50px;
        padding: 0.95rem 1.25rem;
    }

    .hero-stat {
        min-width: 100%;
    }

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

    .section-title {
        font-size: 1.5rem;
    }

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

/* ========== TEAM PAGE STYLES ========== */
.team-page-section {
    padding: 80px 0 100px;
    background: #fff;
    position: relative;
}

.team-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.team-member-v-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 26, 51, 0.06);
    box-shadow: 0 4px 15px rgba(0, 26, 51, 0.03);
    transition: all 0.3s ease;
    height: 100%;
}

.team-member-v-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 26, 51, 0.08);
    border-color: rgba(0, 102, 255, 0.2);
}

.member-v-image {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    background: #fff;
}

.member-v-image img,
.member-v-photo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f1f5f9;
    box-shadow: 0 4px 12px rgba(0, 26, 51, 0.08);
    transition: all 0.3s ease;
}

.team-member-v-card:hover .member-v-image img {
    transform: scale(1.08);
    border-color: rgba(0, 102, 255, 0.3);
}

.member-v-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #cbd5e1;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.member-v-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.member-role-badge {
    color: var(--orange-dark);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 15px;
}

.member-v-social {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.social-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    background: #f1f5f9;
}

.social-btn i {
    color: var(--navy);
}

.social-btn:hover {
    transform: translateY(-2px);
    background: var(--navy);
}

.social-btn:hover i {
    color: #fff;
}

.social-btn.linkedin:hover {
    background: #0077b5;
}

.social-btn.twitter:hover {
    background: #1da1f2;
}

.social-btn.email:hover {
    background: var(--orange);
}

.member-v-bio {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.5;
    border-top: 1px solid rgba(0, 26, 51, 0.04);
    padding-top: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.member-v-bio p {
    margin: 0;
}

.empty-state-card {
    max-width: 400px;
    margin: 40px auto;
    text-align: center;
    padding: 40px 30px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px dashed var(--border);
}

.empty-state-icon {
    font-size: 3rem;
    color: #cbd5e1;
    margin-bottom: 15px;
}

.join-team-cta {
    background: #f1f5f9;
    padding: 50px 0;
}

.cta-inner {
    background: var(--navy);
    border-radius: 24px;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 26, 51, 0.15);
}

.cta-content h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 1200px) {
    .team-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .team-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-inner {
        padding: 40px;
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .team-grid-4 {
        grid-template-columns: 1fr;
    }

    .member-v-image {
        height: 280px;
    }
}