/* ==============
   GENERAL
   ============== */

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Utility */
.services-section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.services-section-header p {
    max-width: 720px;
    margin: 0 auto;
    color: #4b5563;
    font-size: 1.05rem;
}

/* ==============
   HERO
   ============== */
.services-hero {
    position: relative;
    padding: 4rem 0 4.5rem;
    overflow: hidden;
    background: radial-gradient(circle at top left, #e0f2fe 0, #eff6ff 40%, #f9fafb 100%);
}

/* image layer behind the existing gradient */
.services-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url('../images/web-img4.png');  /* your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0.22;          /* increase for stronger image */
    mix-blend-mode: normal;
    z-index: 0;
    pointer-events: none;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.09), transparent 60%),
        radial-gradient(circle at 90% 90%, rgba(245, 158, 11, 0.08), transparent 55%);
    opacity: 0.9;
    z-index: 1;
}

.services-hero-inner,
.services-hero-split-inner {
    position: relative;
    z-index: 3;
}


.services-hero-row {
    position: relative;
    z-index: 5;
}

.services-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.2rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: #1d4ed8;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

.services-hero-label::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.25);
}

.services-hero-title {
    font-size: 2.75rem;
    line-height: 1.15;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.services-hero-title span {
    color: #2563eb;
}

.services-hero-subtitle {
    font-size: 1.05rem;
    color: #4b5563;
    max-width: 540px;
    margin-bottom: 1.75rem;
}

.services-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.btn.services-btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #f9fafb;
    font-weight: 600;
    padding: 0.75rem 1.9rem;
    border-radius: 999px;
    border: none;
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.services-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 50px rgba(37, 99, 235, 0.45);
}

.btn.services-btn-outline {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    border: 1px solid #d1d5db;
    color: #111827;
    font-weight: 600;
    padding: 0.75rem 1.6rem;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.btn.services-btn-outline:hover {
    background: #111827;
    color: #f9fafb;
    border-color: #111827;
}

/* HERO METRICS */

.services-hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.metric-item {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0.85rem;
    border: 1px solid #e5e7eb;
    min-width: 120px;
}

.metric-number {
    font-weight: 700;
    font-size: 1.35rem;
    color: #111827;
}

.metric-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7280;
}

/* HERO RIGHT CARD */

.services-hero-card {
    background: #0b1120;
    border-radius: 1.25rem;
    padding: 1.4rem 1.4rem 1.6rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.65);
    color: #e5e7eb;
    max-width: 390px;
    margin: 2rem auto 0;
}

.services-hero-card-header {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.services-hero-card-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #facc15; }
.dot-green { background: #22c55e; }

.services-hero-card-body h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.services-hero-card-body p {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.services-hero-card-body ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0.75rem;
}

.services-hero-card-body li {
    font-size: 0.85rem;
    color: #e5e7eb;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.services-hero-card-body li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #38bdf8;
}

.services-link {
    font-size: 0.85rem;
    color: #38bdf8;
    text-decoration: none;
}

.services-link:hover {
    text-decoration: underline;
}

/* ==============
   SOLUTIONS
   ============== */

.services-section {
    padding: 4.5rem 0;
    background: #ffffff;
}

.services-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.75rem;
}

.services-card {
    background: linear-gradient(
        135deg,
        #eef4ff 0%,     /* very light Airocode blue */
        #dbe8ff 40%,    /* soft pastel blue */
        #ffffff 100%    /* clean white fade */
    );
    border-radius: 1.2rem;
    padding: 1.6rem 1.6rem 1.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.services-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
    border-color: #c4b5fd;
}

.services-card-icon {
    margin-bottom: 0.9rem;
}

.icon-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, #2563eb, #a855f7);
    color: #f9fafb;
}

.services-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.4rem;
}

.services-card > p {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 0.8rem;
}

.services-card ul {
    padding-left: 1.1rem;
    margin-bottom: 0;
}

.services-card li {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.35rem;
}

/* ==============
   TECH STACK
   ============== */

.services-tech-section {
    padding: 4.5rem 0;
    background: radial-gradient(circle at top left, #eff6ff, #f9fafb 45%, #fefce8 100%);
}

.services-tech-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.tech-column {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 1.1rem;
    padding: 1.7rem 1.6rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.tech-column h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b21a8;
    margin-bottom: 0.9rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
}

.tech-tags span {
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: #eef2ff;
    font-size: 0.8rem;
    color: #4f46e5;
    border: 1px solid #e0e7ff;
}

.tech-note {
    font-size: 0.9rem;
    color: #4b5563;
}

/* ==============
   PROCESS
   ============== */
.services-process-section {
    padding: 4.5rem 0;
    background: radial-gradient(circle at top left, #1e3a8a 0%, #020617 55%, #020617 100%);
    color: #e5e7eb;
}

.services-process-section .services-section-header h2 {
    color: #f9fafb;
}

.services-process-section .services-section-header p {
    color: #9ca3af;
}

.process-timeline {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.6rem;
}

/* Card */
.process-step {
    position: relative;
    background: linear-gradient(
        145deg,
        rgba(15, 23, 42, 0.96),
        rgba(10, 19, 35, 0.98)
    );
    padding: 1.9rem 1.7rem 1.6rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(129, 140, 248, 0.45);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
    overflow: hidden;
}

/* subtle glow stripe at top */
.process-step::before {
    content: "";
    position: absolute;
    inset: 0;
    top: -40%;
    height: 70px;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.3), transparent 60%);
    opacity: 0.75;
    pointer-events: none;
}

/* Number badge */
.process-step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #22d3ee, #2563eb);
    font-size: 0.9rem;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 0.8rem;
    box-shadow: 0 0 16px rgba(37, 99, 235, 0.7);
}

/* Heading – make it readable */
.process-step h4 {
    font-size: 1.05rem;
    font-weight: 650;
    color: #e5f0ff;
    margin-bottom: 0.5rem;
}

/* Intro text */
.process-step > p {
    font-size: 0.9rem;
    color: #cbd5f5;
    margin-bottom: 0.8rem;
}

/* List */
.process-step ul {
    padding-left: 1.1rem;
    margin-bottom: 0;
}

.process-step li {
    font-size: 0.86rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

/* Put badge + heading on the same line */
.process-step span.process-step-badge + h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Now control the badge so it aligns nicely */
.process-step-badge {
    margin-bottom: 0 !important;  /* remove spacing from old layout */
    flex-shrink: 0;               /* prevents badge from squishing */
}

/* Remove extra heading margin */
.process-step h4 {
    margin: 0 0 0.6rem 0;
}

.process-step-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
}

.process-step-badge {
    margin-bottom: 0 !important;
    flex-shrink: 0;
}

.process-step h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 650;
    color: #e5f0ff;
}


/* ==============
   STATS STRIP
   ============== */

.services-stats-strip {
    padding: 1.5rem 0;
    background: linear-gradient(to right, #111827, #020617);
    color: #e5e7eb;
}

.services-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    align-items: center;
}

.stats-item {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.stats-number {
    font-weight: 700;
    font-size: 1rem;
}

.stats-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #9ca3af;
}

/* ==============
   WHY AIROCODE
   ============== */

.services-why-section {
    padding: 4.5rem 0;
    background: #f9fafb;
}

/* Make both columns act as flex containers so cards can stretch */
.services-why-section .col-lg-6 {
    display: flex;
}

/* Make both cards fill the column height */
.services-why-card,
.services-showcase {
    flex: 1;
    height: 100%;
}

.services-why-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 2.1rem 1.9rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.services-why-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.7rem;
}

.services-why-card > p {
    color: #4b5563;
    font-size: 0.98rem;
    margin-bottom: 1.4rem;
}

.services-why-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.services-why-item {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
}

.bullet-icon {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2563eb;
    color: #f9fafb;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.services-why-item h4 {
    font-size: 0.98rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.15rem;
}

.services-why-item p {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Showcase */

.services-showcase {
    position: relative;
    margin-top: 1.5rem;
}

/* On large screens, remove extra top margin so cards line up neatly */
@media (min-width: 992px) {
    .services-showcase {
        margin-top: 0;
    }
}

.showcase-window {
    background: #020617;
    border-radius: 1.3rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    padding: 1.4rem 1.4rem 1.7rem;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.8);
}

.showcase-header {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.showcase-header span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #4b5563;
}

.showcase-body .showcase-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #a5b4fc;
    margin-bottom: 0.4rem;
}

.showcase-body h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 0.4rem;
}

.showcase-body p {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 0.9rem;
}

.showcase-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.showcase-pill-row span {
    font-size: 0.78rem;
    padding: 0.28rem 0.75rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    color: #bfdbfe;
}

.showcase-badge {
    position: absolute;
    right: 0.5rem;
    bottom: -1.4rem;
    background: #f97316;
    color: #0b1120;
    border-radius: 1rem;
    padding: 0.7rem 1rem;
    max-width: 210px;
    box-shadow: 0 18px 40px rgba(249, 115, 22, 0.5);
}

.showcase-badge span {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.showcase-badge p {
    font-size: 0.8rem;
    margin: 0.15rem 0 0;
}

/* Make both columns equal height */
.services-why-section .row {
    display: flex;
    align-items: stretch;
}

/* Make each column act as a flex container */
.services-why-section .col-lg-6 {
    display: flex;
}

/* Make both cards fill the full available height */
.services-why-card,
.services-showcase {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Fix showcase window so it stretches inside parent */
.showcase-window {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Prevent the badge from breaking height */
.showcase-badge {
    position: absolute;
    bottom: -1.4rem;
}


/* ==============
   CTA SECTION
   ============== */

.services-cta-section {
    padding: 4.5rem 0 5rem;
    background: radial-gradient(circle at 0 0, #dbeafe, #0b1120 60%);
}

.services-cta-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.97));
    border-radius: 1.5rem;
    padding: 2.7rem 2.3rem;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.5);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.8rem;
    justify-content: space-between;
}

.services-cta-content h2 {
    color: #f9fafb;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.services-cta-content p {
    color: #e5e7eb;
    font-size: 0.98rem;
    max-width: 480px;
    margin-bottom: 0;
}

.services-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.btn.services-btn-outline-light {
    border-radius: 999px;
    border: 1px solid #9ca3af;
    padding: 0.75rem 1.7rem;
    font-weight: 600;
    color: #e5e7eb;
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn.services-btn-outline-light:hover {
    background: #f9fafb;
    color: #0f172a;
    border-color: #f9fafb;
}

/* ==============
   RESPONSIVE
   ============== */

@media (max-width: 991.98px) {
    .services-hero {
        padding-top: 2.5rem;
    }
    .services-hero-title {
        font-size: 2.1rem;
    }
    .services-hero-card {
        margin-top: 2rem;
    }
    .services-cta-card {
        padding: 2.3rem 1.8rem;
    }
}

@media (max-width: 767.98px) {
    .services-hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .services-hero-metrics {
        gap: 0.85rem;
    }
    .services-cta-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ---------------------------------------------------------
   SERVICES HOME PAGE – PAGE-SPECIFIC LAYOUT TWEAKS
------------------------------------------------------------ */

/* HERO LAYOUT (similar pattern to training, but for services) */
.services-hero-split-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.services-hero-left {
    text-align: left;
    max-width: 620px;
}

.services-hero-left .services-hero-subtitle {
    margin-left: 0;
}

.services-hero-right {
    display: flex;
    justify-content: flex-end;
}

.services-hero-card {
    border-radius: 1.2rem;
    padding: 1.7rem 1.6rem;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(191, 219, 254, 0.7);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.9);
    max-width: 360px;
}

.services-hero-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    color: #facc15;
}

.services-hero-card p {
    font-size: 0.9rem;
    color: #e5e7eb;
    margin-bottom: 0.8rem;
}

.services-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.services-pill {
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    border: 1px solid rgba(191, 219, 254, 0.7);
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.5);
    white-space: nowrap;
}

.services-duration-badge {
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    border: 1px solid rgba(251, 191, 36, 0.9);
    color: #111827;
    background: linear-gradient(135deg, #facc15, #f97316);
    white-space: nowrap;
    font-weight: 600;
}

/* Dark engagement strip (like duration strip in training) */
.services-engagement-strip {
    background: #020617;
    color: #e5e7eb;
    padding: 1.3rem 0;
}

.services-engagement-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.services-engagement-text {
    font-size: 0.98rem;
}

.services-engagement-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.services-engagement-pill {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: #0b1120;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Sections (mirroring training-section style but for services) */
.services-section {
    padding: 3.5rem 0;
    background: #ffffff;
}

.services-section-alt {
    background: #f9fafb;
}

.services-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.services-section-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.services-section-header p {
    max-width: 720px;
    margin: 0.3rem auto 0;
    color: #4b5563;
}

/* Gradient alt background for some sections */
.services-section-alt {
    background: linear-gradient(135deg,
            #cfe8ff 0%,
            #e4f1ff 35%,
            #fff3b0 100%);
    padding: 70px 0;
    color: white;
}

/* Overview grid */
.services-overview-grid {
    display: grid;
    gap: 1.8rem;
}

@media (min-width: 992px) {
    .services-overview-grid {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    }
}

.services-overview-text p {
    font-size: 0.96rem;
    color: #374151;
    margin-bottom: 0.9rem;
    text-align: justify;
}

.services-overview-stats {
    display: grid;
    gap: 0.9rem;
}

.services-stat-card {
    border-radius: 0.9rem;
    padding: 1rem 1rem;
    border: 1px solid #e5e7eb;
    background: radial-gradient(circle at top left, #eff6ff, #ffffff);
    font-size: 0.9rem;
    color: #111827;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.services-stat-card h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #1e3a8a;
}

/* Pillars / tracks grid */
.services-pillars-grid {
    display: grid;
    gap: 1.3rem;
}

@media (min-width: 992px) {
    .services-pillars-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.services-pillar-card {
    border-radius: 1.1rem;
    padding: 1.4rem 1.3rem;
    background: linear-gradient(135deg, #b3d5ff 0%, #9feaff 50%, #c8fff5 100%);
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.07);
}

.services-pillar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: #1e3a8a;
}

.services-pillar-card p {
    font-size: 0.9rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.services-pillar-card ul {
    padding-left: 1.15rem;
    margin: 0;
    font-size: 0.88rem;
}

/* Methodology / journey cards */
.services-journey-grid {
    display: grid;
    gap: 1.1rem;
}

@media (min-width: 992px) {
    .services-journey-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.services-journey-card {
    border-radius: 1rem;
    padding: 1.2rem 1rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
    font-size: 0.9rem;
}

.services-journey-card h4 {
    font-size: 1rem;
    margin-bottom: 0.45rem;
    color: #1d4ed8;
}

.services-journey-card ul {
    padding-left: 1.1rem;
    margin: 0;
    font-size: 0.88rem;
    color: #374151;
}

/* Format / who we work with */
.services-format-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .services-format-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.services-format-card {
    border-radius: 1rem;
    padding: 1.5rem 1.4rem;
    background: linear-gradient(135deg, #b3d5ff 0%, #9feaff 50%, #c8fff5 100%);
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.services-format-card h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.services-format-card ul {
    padding-left: 1.1rem;
    margin: 0;
    font-size: 0.9rem;
    color: #374151;
}

/* Outcomes / industries */
.services-outcome-grid {
    display: grid;
    gap: 1.4rem;
}

@media (min-width: 992px) {
    .services-outcome-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    }
}

.services-outcome-card {
    border-radius: 1rem;
    padding: 1.6rem 1.5rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
    font-size: 0.95rem;
    color: #111827;
}

.services-outcome-card h2 {
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
}

.services-outcome-card ul {
    padding-left: 1.1rem;
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
}

.services-outcome-highlight {
    background: radial-gradient(circle at top left, #eff6ff, #ffffff);
    border-color: #bfdbfe;
}

.services-outcome-actions {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.btn-services-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #f9fafb;
    border-radius: 999px;
    padding: 0.55rem 1.4rem;
    font-size: 0.9rem;
    border: none;
}

.btn-services-outline {
    border-radius: 999px;
    padding: 0.55rem 1.4rem;
    font-size: 0.9rem;
    border: 1px solid #2563eb;
    color: #1d4ed8;
    background: transparent;
}

/* Hero responsive stacking */
@media (max-width: 991px) {
    .services-hero-split-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .services-hero-left {
        text-align: center;
        margin: 0 auto;
    }

    .services-hero-left .services-hero-subtitle {
        margin: 0 auto 1.6rem;
    }

    .services-hero-right {
        justify-content: center;
    }
}
.services-hero-card-body h4 {
    color: #ffffff !important;
}