﻿/* ==============================
   INNOVATIVE SERVICES PAGE STYLES
   ============================== */

.bio-banner__bg {
    position: absolute;
    inset: 0;
    background-image: url("./images/2026/06/Rectangle-1-2.webp");
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}

.bio-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
    color: var(--color-white);
    display: flex;
    align-items: end;
    min-height: 80vh;
}

/* TAB SECTION (Redesigned) */
.services-tabs-section {
    padding: 0;
    font-family: var(--font-primary);
    position: relative;
    overflow: visible !important;
}

.services-tabs-section .pin-spacer{
    top: 0px !important;
}

/* Full Width Tab Headers */
.services-tabs-nav {
    display: flex;
    width: 100%;
    background: #F4F5F1;
    border-bottom: 1px solid rgba(0, 104, 74, 0.15);
    position: sticky;
    top: 75px;
    z-index: 90;
    transition: top 0.3s ease;
}


.bio-header.header-hidden ~ * .services-tabs-nav,
body:has(.bio-header.header-hidden) .services-tabs-nav {
    top: 0px;
}

.services-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF;
    border: none;
    padding: 1.5rem 1rem;
    font-size: 1.1rem;
    font-family: var(--font-primary);
    color: #00684A;
    font-weight: 400;
    cursor: pointer;
    text-align: center;
    border-right: 1px solid rgba(0, 104, 74, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: background 0.3s, color 0.3s;
}

@media (min-width:768px){
    .services-tab-btn:nth-of-type(1) {
    background: #F4F5E8;
}
}

.services-tab-btn:last-child {
    border-right: none;
}

/* Progress bar fill background (Dark Green) for active tab */
.services-tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--progress, 0%);
    background: #00684A;
    z-index: 1;
    pointer-events: none;
}

/* Overlay white text revealed dynamically over dark green progress fill */
.services-tab-btn::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 400;
    font-size: 1.1rem;
    font-family: var(--font-primary);
    text-align: center;
    z-index: 2;
    pointer-events: none;
    padding: 1.5rem 1rem;
    clip-path: inset(0 calc(100% - var(--progress, 0%)) 0 0);
}

.services-tab-btn:hover:not(.active) {
    background: rgba(0, 104, 74, 0.08);
}

/* Tab Content */
.services-tabs-content {
    position: relative;
    padding: 0;
    overflow: visible;
}

/* Big swoop background */
.services-tabs-bg-swoop {
    position: absolute;
    top: 0%;
    right: -60px;
    width: clamp(400px, 45vw, 800px);
    height: 100%;
    background-image: url('./images/2026/08/Ribbon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    pointer-events: none;
    z-index: 0;
}

.services-tab-panel {
    display: block;
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 1;
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(0, 104, 74, 0.12);
}

.services-tab-panel:nth-of-type(1),
.services-tab-panel:nth-of-type(3) {
    background-color: #F4F5E8;
}

@media (min-width: 769px) {
    .services-tab-panel {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

.services-tab-panel:last-child {
    border-bottom: none;
}

/* Intro Text */
.services-tab-intro {
    /* max-width: 900px; */
    margin-bottom: 4rem;
}

.services-tab-intro__title {
    font-size:40px;
    color: #00684A; /* Dark Green */
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 1100px;
}

.services-tab-intro__text {
    font-size: clamp(18px, 1.56vw, 20px);
    color: #333;
    line-height: 1.4;
    max-width: 1100px;
}

/* Body / 2-columns */
.services-tab-body {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.services-tab-image {
    flex: 1;
    /* background: #E3E5D4; */
     /* Soft greenish-beige background for image */
    border-radius: 16px;
    aspect-ratio: 1;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.services-tab-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Steps (Right Column) */
.services-tab-steps-container {
    flex: 1.5;
    padding-top: 1rem;
}

.services-tab-steps__heading {
    font-size: 2.5rem;
    color: #222;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 3rem;
}

.services-tab-steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-left: 1.5rem;
}

.services-tab-steps::before {
    content: '';
    position: absolute;
    left: 4px; /* Align with dot */
    top: 8px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, #00684A 0%, rgba(204, 204, 204, 0.3) 100%);
    z-index: -1;
}

.services-tab-step {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0; /* Hidden until active */
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    min-height: 30vh; /* Adds scroll distance between steps */
}

.services-tab-step.active {
    opacity: 1;
    transform: translateY(0);
}

.step-indicator {
    position: absolute;
    left: -1.5rem; /* Push outside text area */
    top: 0.5rem;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    transform: translateX(-1px);
}

.services-tab-step.active .step-indicator {
    background: #00684A;
}

.step-num {
    font-size: 14px;
    color: #888;
    margin-bottom: 1rem;
    display: block;
}

.step-title {
    font-size: clamp(34px, 1.56vw, 40px);
    color: #00684A;
    font-weight: 400;
    margin-bottom: 1rem;
}

.services-tab-step:not(.active) .step-title {
    color: #A0B3AA; /* faded green/grey */
}

.step-desc {
    font-size: clamp(18px, 1.56vw, 20px);
    color: #333;
    line-height: 1.4;
    max-width: 400px;
}

.step-mobile-image {
    display: none;
    width: 100%;
    border-radius: 12px;
    margin-top: 1.5rem;
    aspect-ratio: 1;
    object-fit: cover;
    background: #E3E5D4;
}

/* Outcomes */
.services-tab-outcomes {
    margin-top: 2rem;
}

.outcomes-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.outcomes-tag .dot {
    width: 6px;
    height: 6px;
    background: #DCEB94; /* Lime green dot */
    border-radius: 50%;
}

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

.outcome-card {
    background: #E5E6D8; /* Light greenish-beige */
    border: 1px solid #D6D8C8;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: var(--font-size-sm);
    color: #111;
    font-weight: 400;
    line-height: 1.3;
}

.outcome-card .dot {
    width: 8px;
    height: 8px;
    background: #00684A; /* Dark green dot */
    border-radius: 50%;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .services-tab-panel {
        display: none;
        padding: 2.5rem 0 3.5rem 0;
        border-bottom: none;
    }

    .services-tab-panel.active {
        display: block;
        animation: tabFadeIn 0.35s ease forwards;
    }

    .services-tabs-nav {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .services-tabs-nav::-webkit-scrollbar {
        display: none;
    }

    .services-tab-btn {
        flex: 0 0 auto;
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
    }

    .services-tab-body {
        flex-direction: column;
        gap: 3rem;
    }
    
    .services-tab-image {
        max-width: 100%;
        width: 100%;
    }
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    .bio-banner {
        height: 520px;
    }

    .bio-banner .hero-title {
        font-size: clamp(46px, 6vw, 60px);
        line-height: 1.12;
    }

    .services-intro {
        padding: var(--space-xl) 0;
    }

    .services-intro__content {
        max-width: 860px;
    }

    .services-intro .bio-text--body-relaxed {
        font-size: var(--font-size-md);
    }

    .services-cards__heading {
        font-size: clamp(48px, 6vw, 58px);
        max-width: 860px;
    }

    .services-card {
        min-height: 520px;
    }

    .services-card__inner {
        min-height: 520px;
        padding: var(--space-lg-md);
    }

    .services-card__panel {
        max-width: 66%;
        padding: var(--space-md-lg);
    }

    .services-cta {
        min-height: 85vh;
        margin-bottom: 0;
    }

    .services-cta__heading {
        font-size: clamp(44px, 5.8vw, 58px);
    }
}

@media (max-width: 992px) {
    .bio-banner {
        height: 460px;
    }

    .bio-banner .hero-title {
        font-size: clamp(40px, 6.1.56vw, 52px);
        max-width: 640px;
    }

    .services-cards {
        padding-top: var(--space-xl);
    }

    .services-cards__eyebrow {
        margin-bottom: var(--space-md);
    }

    .services-cards__heading {
        font-size: clamp(40px, 6.4vw, 50px);
        max-width: 700px;
    }

    .services-cards__stack {
        padding-bottom: var(--space-xl) !important;
    }

    .services-card {
        min-height: 480px;
    }

    .services-card:nth-child(1) { top: 72px; }
    .services-card:nth-child(2) { top: calc(72px + 30px); }
    .services-card:nth-child(3) { top: calc(72px + 60px); }
    .services-card:nth-child(4) { top: calc(72px + 90px); }

    .services-card__inner {
        min-height: 480px;
        gap: var(--space-lg-md);
        padding: var(--space-md-lg);
    }

    .services-card__title {
        font-size: clamp(30px, 5vw, 40px);
    }

    .services-card__panel {
        max-width: 78%;
    }

    .services-card__panel .bio-text {
        font-size: var(--font-size-sm-md);
    }

    .services-cta {
        min-height: 68vh;
    }
}

@media (max-width: 768px) {
    .bio-banner {
        height: 420px;
    }

    .bio-banner .hero-title {
        font-size: clamp(34px, 9vw, 44px);
        max-width: 100%;
        line-height: 1.14;
    }

    .services-intro {
        padding: var(--space-lg) 0;
    }

    .services-intro .bio-text--body-relaxed {
        font-size: var(--font-size-base);
    }

    .services-cards__heading {
        font-size: clamp(26px, 7vw, 34px);
        margin-bottom: var(--space-md);
    }

    .services-card {
        position: relative;
        top: auto !important;
        min-height: 460px;
    }

    .services-card + .services-card {
        margin-top: var(--space-sm);
    }

    .services-card__inner {
        min-height: 460px;
        padding: var(--space-md);
        gap: var(--space-md);
    }

    .services-card__title {
        font-size: clamp(22px, 6vw, 28px);
    }

    .services-card__panel {
        align-self: stretch;
        max-width: 100%;
        padding: var(--space-md);
        gap: var(--space-sm);
    }

    .services-card__panel .bio-text {
        font-size: var(--font-size-sm);
        line-height: 1.5;
    }

    .services-cards__stack {
        gap: var(--space-md);
        padding-bottom: var(--space-xl);
    }

    .services-tabs-nav {
        /* top: 60px !important; */
        overflow-x: auto;
        white-space: nowrap;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .services-tab-btn {
        flex: 0 0 auto;
        min-width: 140px;
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }

    .services-tab-panel {
        display: none;
        padding: 2rem 0 3rem 0;
    }

    .services-tab-panel.active {
        display: block;
    }
}

/* CTA BANNER SECTION */
.services-cta {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: baseline;
    overflow: hidden;
    margin-bottom: -130px;
}

.services-cta__bg {
    position: absolute;
    inset: 0;
    background-image: url('./images/2026/07/Rectangle-110.webp');
    background-size: cover;
    background-position: center;
}

/* .services-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 10, 5, 0.65) 0%,
        rgba(0, 10, 5, 0.30) 55%,
        rgba(0, 10, 5, 0.05) 100%
    );
} */

.services-cta__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
    /* padding-top: 0px; */
}

@media (max-width: 768px){
.services-cta__inner{
        gap: var(--space-md);
}
}

.services-cta__heading {
    font-size: clamp(44px, 4.8vw, 60px);
    font-weight: 300;
    line-height: var(--line-height-tight);
    color: #1a1a1a;
}

.services-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: var(--space-md-sm) var(--space-md);
    background: #fff;
    border: 1px solid #1a1a1a;
    border-radius: var(--radius-sm);
    color: #118563;
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: all 0.5s ease-in-out;
}

.services-cta__btn:hover {
    border-color: #0d6b4f;
}

.services-cta__btn:hover svg{
	transform: translateX(5px);
	transition: all .5s ease-in-out;
}

@media (max-width: 768px) {
    /* Responsive Tabs */
    .services-tabs-nav {
        flex-wrap: wrap;
    }

    .services-tab-btn {
        flex: 0 0 50%;
        border-bottom: 1px solid #00684a26;
        padding: 1rem 0.5rem;
        font-size: 1rem;
    }

    .services-tab-btn:nth-child(2n) {
        border-right: none;
    }

    .services-tab-btn:nth-child(n+3) {
        border-bottom: none;
    }

    /* Timeline and Content responsive */
    .services-tab-body {
        flex-direction: column;
        gap: 2rem;
    }

    .services-tab-image {
        display: none !important; /* Hide the single side image completely on mobile */
    }

    .step-mobile-image {
        display: block;
    }

    .services-tab-step {
        min-height: auto;
        padding-bottom: 3rem; /* Tighter spacing on mobile */
        opacity: 1 !important;
        transform: none !important;
    }
    
    .services-tab-step .step-indicator {
        background: #00684A !important;
    }
    
    .services-tab-step .step-title {
        color: #00684A !important;
    }

    .services-cta {
        /* min-height: 360px; */
        margin-bottom: -150px;
    }

    .services-cta__heading {
        font-size: clamp(32px, 8vw, 42px);
        max-width: 100%;
    }

    .services-cta__btn {
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .bio-banner {
        height: 380px;
    }

    .bio-banner .hero-title {
        font-size: clamp(28px, 8.4vw, 34px);
    }

    .services-cards__eyebrow {
        margin-bottom: var(--space-sm);
    }

    .services-cards__heading {
        font-size: 34px;
        line-height: 1.15;
    }

    .services-card {
        min-height: 420px;
        border-radius: var(--radius-md-lg);
    }

    .services-card__inner {
        min-height: 420px;
    }

    .services-card__panel {
        border-radius: var(--radius-md);
    }

    .services-cta {
        min-height: 580px;
        padding: var(--space-md-lg) 0;
    }

    .services-cta__heading {
        font-size: 30px;
    }
}

/* ==============================
   TAB 1: CONCEPT IDEATION REDESIGN
   ============================== */

/* Expertise Block */
.expertise-block {
    margin-bottom: 4rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.expertise-title {
    font-size: var(--font-size-lg);
    color: #111;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (max-width: 1180px){
    .expertise-title{
        font-size: 28px;
    }
}

.expertise-desc {
    font-size: var(--font-size-md-lg);
    color: #555;
    line-height: 1.2;
}

.expertise-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.expertise-card {
    background-color: #f3f3f3;
    border-radius: 20px;
    padding: 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* .expertise-left{
    max-width: 400px;
} */

.expertise-left-one{
    max-width: 45% !important;
    width: 100%;
}   
.expertise-left-one .expertise-title, .expertise-left-one .expertise-desc{
    max-width: 430px !important;
}

@media(max-width: 768px){
    .expertise-left-one .expertise-title, .expertise-left-one .expertise-desc{
        max-width: 100% !important;
    }
    .expertise-left-one{
        width: 100% !important;
        max-width: 100% !important;
    }
}


.expertise-item {
    font-size: var(--font-size-md-lg);
    color: #1A3323;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 400;
}

.expertise-item .green-dot {
    color: #00684A;
    font-size: 30px;
}

/* Focus Areas Card */
.focus-areas-card {
    background: url('./images/2026/08/Milestone-02.png') center/cover no-repeat;
    border: none;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    gap: var(--space-section);
    position: relative;
    overflow: hidden;
}

.services-tab-panel:nth-of-type(2) .focus-areas-card,
.services-tab-panel:nth-of-type(4) .focus-areas-card {
    background-image: url('./images/2026/08/Gradient-01.webp');
}

@media (max-width: 768px){
    .focus-areas-card{
        gap: 1rem;
        padding: var(--space-lg-md) var(--space-md);
    }
}

.focus-areas-card .timeline-tag {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.focus-areas-card .timeline-tag .dot {
    background-color: #ffffff;
}

.focus-areas-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2.5rem 1.2rem;
    align-items: flex-start;
}

.focus-areas-row-7 {
    grid-template-columns: repeat(7, 1fr);
}

.focus-area-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    opacity: 0;
    transform: translateY(25px) scale(0.92);
    transition: opacity 0.55s cubic-bezier(0.25, 1, 0.5, 1), transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.focus-areas-card.in-view .focus-area-item,
.focus-area-item.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.focus-areas-card.in-view .focus-area-item:nth-child(1), .focus-area-item.in-view:nth-child(1) { transition-delay: 0.05s; }
.focus-areas-card.in-view .focus-area-item:nth-child(2), .focus-area-item.in-view:nth-child(2) { transition-delay: 0.12s; }
.focus-areas-card.in-view .focus-area-item:nth-child(3), .focus-area-item.in-view:nth-child(3) { transition-delay: 0.19s; }
.focus-areas-card.in-view .focus-area-item:nth-child(4), .focus-area-item.in-view:nth-child(4) { transition-delay: 0.26s; }
.focus-areas-card.in-view .focus-area-item:nth-child(5), .focus-area-item.in-view:nth-child(5) { transition-delay: 0.33s; }
.focus-areas-card.in-view .focus-area-item:nth-child(6), .focus-area-item.in-view:nth-child(6) { transition-delay: 0.40s; }
.focus-areas-card.in-view .focus-area-item:nth-child(7), .focus-area-item.in-view:nth-child(7) { transition-delay: 0.47s; }
.focus-areas-card.in-view .focus-area-item:nth-child(8), .focus-area-item.in-view:nth-child(8) { transition-delay: 0.54s; }
.focus-areas-card.in-view .focus-area-item:nth-child(9), .focus-area-item.in-view:nth-child(9) { transition-delay: 0.61s; }
.focus-areas-card.in-view .focus-area-item:nth-child(10), .focus-area-item.in-view:nth-child(10) { transition-delay: 0.68s; }
.focus-areas-card.in-view .focus-area-item:nth-child(11), .focus-area-item.in-view:nth-child(11) { transition-delay: 0.75s; }
.focus-areas-card.in-view .focus-area-item:nth-child(12), .focus-area-item.in-view:nth-child(12) { transition-delay: 0.82s; }

.focus-area-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.focus-area-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.focus-area-item:hover .focus-area-icon {
    transform: translateY(-4px);
}

.focus-area-label {
    font-size: var(--font-size-md-lg);
    font-weight: 300;
    color: #ffffff;
    line-height: 1.2;
}

/* Outcomes Block */
.outcomes-block {
    margin-bottom: 3rem;
}

.outcomes-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.outcomes-image-card {
    width: 35%;
    height: 390px;
    background-color: #E2E6D6;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.outcomes-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.outcomes-list {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.outcome-row {
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--color-primary);
    font-size: 20px;
    color: #1A3323;
    font-weight: 400;
    will-change: opacity, transform;
    transition: color 0.3s ease;
}

.outcomes-block.in-view .outcome-row,
.outcomes-list.in-view .outcome-row,
.outcome-row.in-view {
    opacity: 1;
    transform: translateX(0);
}

.outcome-row:first-child {
    padding-top: 0;
}

.lipid-cta__text {
    font-size: clamp(18px, 1.56vw, 20px);
    color: #1a1a1a;
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 650px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .expertise-list {
        grid-template-columns: 1fr;
    }
    .focus-areas-row,
    .focus-areas-row-7 {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem 1rem;
    }
    .outcomes-layout {
        flex-direction: column;
        align-items: stretch;
    }
    .outcomes-image-card {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .focus-areas-row,
    .focus-areas-row-7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==============================
   CASE STUDY BANNER COMPONENT
   ============================== */
.case-study-banner {
    position: relative;
    background-color: #FFF;
    border-radius: 16px;
    padding: 60px 40px;
    margin-top: 20px;
    margin-bottom: 60px;
    overflow: hidden;
}

.case-study-banner__header {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 10;
}

.case-study-banner__meta {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #555;
    text-transform: uppercase;
}

.case-study-banner__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.case-study-banner__challenge {
    flex: 1;
    max-width: 334px;
    align-self: flex-start;
}

.case-study-banner__role {
    flex: 1;
    max-width: 400px;
    align-self: flex-end;
    margin-top: 60px;
}

.case-study-banner__text {
    font-size: 1.1rem;
    line-height: 1.2;
    color: #222;
    margin-top: 20px;
}

.case-study-banner__text--role {
    font-size: 1rem;
}

.case-study-banner__image-wrapper {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.case-study-banner__image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
}

.case-study-banner__tags {
    margin-top: 24px;
    display: flex;
    gap: 12px;
}

.case-study-banner__pill {
    border: 1px solid #C4D3AF;
    background-color: transparent;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.85rem;
    color: #333;
}

.case-study-banner__format {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.case-study-banner__format-label {
    font-size: 0.75rem;
    color: #666;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.case-study-banner__format-value {
    font-size: 0.9rem;
    color: #222;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .case-study-banner {
        padding: 40px 24px;
    }
    .case-study-banner__header {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    .case-study-banner__content {
        flex-direction: column;
        gap: 40px;
        margin-top: 0;
    }
    .case-study-banner__challenge,
    .case-study-banner__role {
        max-width: 100%;
        align-self: center;
        margin-top: 0;
    }
    .case-study-banner__role {
        margin-top: 20px;
    }
}

/* ==============================
   TRANSFORMATION CASE STUDY
   ============================== */
.transformation-case-study {
    padding: 60px 0;
    position: relative;
    background: #F2F0F0;
}

.transformation-case-study .bio-container{
    padding-top: 0px;
    padding-bottom: 0px;
}


.transformation-header {
    text-align: left;
    margin-bottom: 60px;
}

.transformation-title {
    font-size: 2.2rem;
    color: #118563;
    font-weight: 400;
    margin-bottom: 12px;
    max-width: 750PX;
}

.transformation-subtitle {
    font-size: 1.1rem;
    color: #444;
}

.transformation-layout {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.transformation-bg-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 235, 148, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.transformation-center-img {
    position: absolute;
    z-index: 5;
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.transformation-center-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.transformation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 350px; /* Space in the middle for image */
    z-index: 10;
    width: 100%;
    position: relative;
}

.t-card {
    background: #F4F5E9;
    border: 1px solid #E0E0E0;
    border-radius: 16px;
    padding:20px 15px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.t-card-num {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 44px;
    height: 44px;
    background: #118563;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    box-sizing: content-box;
}

.t-card-tag {
    display: inline-block;
    border: 1px solid #118563;
    color: #118563;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.8rem;
    margin-bottom: 16px;
}

.t-card-title {
    font-size: 18px;
    color: #222;
    font-weight: 400;
    margin-bottom: 20px;
}

.t-card-section {
    margin-bottom: 16px;
}

.t-card-subtitle {
    font-size: 0.95rem;
    color: #118563;
    font-weight: 400;
    margin-bottom: 6px;
}

.t-card-text {
    font-size: 12px !important;
    color: #555;
    line-height: 1.2;
}

.t-card-2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.t-card-2-item-title {
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
}

.t-card-2-item-desc {
    font-size: 12px !important;
    color: #333;
    line-height: 1.3;
}

.t-card-role {
    margin-top: 20px;
}

.t-role-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 2px;
}

.t-role-tags span {
    background: #118563;
    color: #FFF;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
}

@media (max-width: 1200px) {
    .transformation-grid {
        gap: 50px 250px;
    }
}

@media (max-width: 991px) {
    .transformation-layout {
        flex-direction: column;
    }
    .transformation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .transformation-center-img {
        position: relative;
        margin: 40px 0;
    }
    .transformation-bg-glow {
        top: 50%;
        transform: translateY(-50%);
    }
}
