.transformation-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.transformation-section .container {
    max-width: 1400px;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.case-study-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

center {
    display: block;
    text-align: -webkit-center;
    unicode-bidi: isolate;
}

.case-study-logo {
    max-width: 200px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    text-align: center;
}

.transformation-section .section-title {
    margin-bottom: 0;
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #333;
    position: relative;
    flex-direction: column;
}

.transformation-section .section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background-color: #333;
    margin: 20px auto;
}

.charts-section .section-subtitle {
    margin-bottom: 0px;
}

 .section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
    width: 100%;
}



.metrics-grid-updated {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.metric-card-updated {
    background: rgba(255, 255, 255, 0.445);
    backdrop-filter: blur(12px);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid #ee2e2e;
    transition: all 0.3s ease;
}

.metric-value-updated {
    font-size: 3rem;
    font-weight: 700;
    color: #ee2e2e;
    margin-bottom: 10px;
    text-shadow: 0 0 20px #ee2e2e5e;
}

.metric-label-updated {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.4;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.start-column {
    background-color: #fff;
}

.stats-column {
    flex: 1;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #ee2e2e;
}

.start-column .column-title {
    color: #333;
}

.column-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.transformation-section .start-column .stat-value {
    color: #333;
}

.transformation-section .stat-value {
    font-size: 24px;
    font-weight: 700;
}

.arrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
}

.end-column {
    background-color: #fff;
}

.end-column .column-title {
    color: #333;
}

.arrow {
    width: 100%;
    height: 50px;
    animation: moveArrow 2s ease-in-out infinite;
}

@keyframes moveArrow {

0%, 100% {
    transform: translateX(0);
}
50% {
    transform: translateX(10px);
}
}

@media (max-width: 968px) {
    .stat-label {
        font-size: 14px;
    }
    

    .transformation-section .stat-value {
        font-size: 19px;
    }

    .stats-container {
        flex-direction: column;
        gap: 30px;
    }
    

    .stats-column {
        width: 100%;
        padding: 30px 20px;
    }

    .arrow-container {
        transform: rotate(90deg);
    }
}


@media (max-width: 480px) {
    .transformation-section .section-title {
        font-size: 28px;
    }

     .section-subtitle {
        font-size: 15px;
    }

    .transformation-section .metric-value-updated {
        font-size: 1.8rem;
    }

    .metric-value-updated {
        font-size: 1.8rem;
    }

    .metric-label-updated {
        font-size: 0.85rem;
    }

    .metric-card-updated {
        padding: 20px 10px;
    }

    .stats-container {
        flex-direction: column;
        gap: 30px;
    }

    .stats-column {
        width: 100%;
        padding: 30px 20px;
    }

    .transformation-section .column-title {
        font-size: 18px;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }


}