/* ============== Services: Training & Enablement (New Theme) ============== */
:root {
    --svc-primary: #29b6f6;
    --svc-deep: #04205F;
    --svc-ink: #101828;
    --svc-muted: #475467;
    --svc-bg: #f6f7fb;
    --svc-card: #ffffff;
    --svc-border: rgba(16, 24, 40, 0.10);
    --svc-shadow: 0 14px 46px rgba(16, 24, 40, 0.10);
}

.svc-hero {
    position: relative;
    padding: 120px 0 96px;
    color: #fff;
    overflow: hidden;
    background:
        radial-gradient(900px 500px at 70% 20%, rgba(41, 182, 246, 0.26), rgba(0, 0, 0, 0)),
        radial-gradient(900px 500px at 20% 30%, rgba(179, 136, 255, 0.22), rgba(0, 0, 0, 0)),
        linear-gradient(135deg, rgba(3, 18, 58, 1) 0%, rgba(4, 32, 95, 1) 55%, rgba(11, 59, 107, 1) 100%);
}

.svc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.35;
    mask-image: radial-gradient(circle at 35% 40%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.svc-hero .container {
    position: relative;
    z-index: 2;
}

.svc-hero h1 {
    font-size: 3.1rem;
    font-weight: 950;
    line-height: 1.12;
    margin: 0 0 14px 0;
    letter-spacing: 0.2px;
    color: #fff;
}

.svc-hero .subtitle {
    font-size: 1.25rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 300;
    margin: 0 0 22px 0;
    max-width: 820px;
}

.svc-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.svc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
}

.svc-badge i.material-symbols-outlined {
    font-size: 18px;
    color: var(--svc-primary);
}

.svc-hero .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.svc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    border: 0;
    transition: transform 0.2s ease, background 0.2s ease;
}

.svc-btn.primary {
    background: var(--svc-primary);
    color: #fff !important;
}

.svc-btn.primary:hover {
    background: #039be5;
    transform: translateY(-2px);
    text-decoration: none;
}

.svc-btn.secondary {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: #fff !important;
}

.svc-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
    text-decoration: none;
}

.svc-note {
    margin-top: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

/* split hero panel */
.svc-split {
    position: relative;
    border-radius: 18px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.svc-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.svc-split-card {
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    min-height: 150px;
}

.svc-split-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.85;
    filter: saturate(1.05) contrast(1.03);
}

.svc-split-card .cap {
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 900;
    font-size: 12px;
    backdrop-filter: blur(10px);
}

.svc-split-card .cap i.material-symbols-outlined {
    font-size: 18px;
    color: var(--svc-primary);
}

/* body */
.svc-wrap {
    background: var(--svc-bg);
    padding: 64px 0;
}

.svc-section-title h2 {
    color: var(--svc-deep);
    font-weight: 950;
    margin: 0 0 10px 0;
}

.svc-section-title p {
    margin: 0;
    color: var(--svc-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}
.svc-quote {
    margin-top: 16px;
    background: rgba(250, 94, 94, 0.1);
    border: 1px solid rgba(252, 35, 72, 0.2);
    padding: 14px 14px;
    border-radius: 14px;
    color: #0b3b6b;
    font-weight: 750;
    line-height: 1.8;
}

.svc-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 22px;
}

.svc-card {
    background: var(--svc-card);
    border: 1px solid var(--svc-border);
    border-radius: 18px;
    box-shadow: 0 8px 26px rgba(16, 24, 40, 0.08);
    padding: 22px;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, rgba(41, 182, 246, 0.9), rgba(4, 32, 95, 0.9));
    opacity: 0.65;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--svc-shadow);
    border-color: rgba(4, 32, 95, 0.18);
}

.svc-card .top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.svc-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(41, 182, 246, 0.12);
    border: 1px solid rgba(41, 182, 246, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.svc-icon i.material-symbols-outlined {
    font-size: 24px;
    color: var(--svc-deep);
}

.svc-card h3 {
    margin: 0;
    font-size: 1.18rem;
    font-weight: 950;
    color: var(--svc-deep);
    line-height: 1.3;
}

.svc-card .value {
    margin: 10px 0 0 0;
    color: #344054;
    line-height: 1.85;
    font-size: 1rem;
}

.svc-list {
    margin: 12px 0 0 0;
    padding-left: 1.05rem;
    color: #344054;
    line-height: 1.9;
}

.svc-list li { margin-bottom: 8px; }

/* methodology */
.svc-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 22px;
}

.svc-panel {
    background: #fff;
    border: 1px solid var(--svc-border);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
    padding: 22px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.svc-panel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, rgba(41, 182, 246, 0.9), rgba(4, 32, 95, 0.9));
    opacity: 0.55;
}

.svc-panel h3 {
    margin: 0 0 8px 0;
    font-weight: 950;
    color: var(--svc-deep);
    font-size: 1.22rem;
}

.svc-panel p {
    margin: 0 0 10px 0;
    color: var(--svc-muted);
    line-height: 1.9;
}

/* delivery models cards */
.svc-grid-3.small {
    grid-template-columns: repeat(3, 1fr);
}

.svc-card .chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(16, 24, 40, 0.05);
    border: 1px solid rgba(16, 24, 40, 0.08);
    color: #344054;
    font-weight: 850;
    font-size: 12px;
    margin-top: 12px;
}

/* footer CTA */
.svc-final {
    margin-top: 34px;
    background: linear-gradient(135deg, rgba(4, 32, 95, 1) 0%, rgba(41, 182, 246, 1) 150%);
    color: #fff;
    border-radius: 18px;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 18px 56px rgba(16, 24, 40, 0.18);
}

.svc-final .t {
    font-weight: 950;
    font-size: 1.18rem;
    margin-bottom: 6px;
}

.svc-final .d {
    opacity: 0.92;
    line-height: 1.7;
    margin: 0;
}

.svc-final .right {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.svc-final .right a {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff !important;
    border-radius: 999px;
    padding: 10px 14px;
    text-decoration: none;
    font-weight: 950;
    transition: transform 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.svc-final .right a.primary {
    background: #fff;
    color: var(--svc-deep) !important;
    border-color: rgba(255, 255, 255, 0.40);
}

.svc-final .right a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.20);
}

.svc-final .right a.primary:hover {
    background: rgba(255, 255, 255, 0.92);
}

@media (max-width: 992px) {
    .svc-hero h1 { font-size: 2.25rem; }
    .svc-grid-3 { grid-template-columns: 1fr; }
    .svc-two-col { grid-template-columns: 1fr; }
    .svc-split-grid { grid-template-columns: 1fr; }
    .svc-hero { padding: 105px 0 70px; }
}

@media (max-width: 768px) {
    .svc-hero { padding: 96px 0 56px; }
    .svc-hero .subtitle { font-size: 1.05rem; }
    .svc-final { flex-direction: column; align-items: flex-start; }
    .svc-final .right { justify-content: flex-start; }
}