/* Why Choose Modern Layout */
.why-choose-section {
    position: relative;
    background: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow: hidden;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles (kept for context, though user said not to change, styling ensures consistency) */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.section-badge {
    display: inline-block;
    background: rgba(222, 177, 34, 0.1);
    color: #deb122;
    font-weight: 700;
    font-size: 13px;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-title {
    font-size: 36px;
    color: #6B4226;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-description {
    color: #666;
    line-height: 1.6;
}

/* --- THE NEW LAYOUT --- */
.why-choose-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Row 1: Stats Counter Strip */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-box {
    background: #2e8bc0;
    /* Updated Blue */
    border: none;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 139, 192, 0.25);
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    /* Subtle white highlight */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.stat-box:hover::before {
    transform: scaleX(1);
}

.stat-number-wrapper {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    /* White Text */
    margin-bottom: 5px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.stat-suffix {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 2px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    /* White Text */
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Row 2: Core Strengths Grid */
.strengths-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.strength-card {
    background: #f58221;
    /* Orange Background */
    padding: 30px 25px;
    border-radius: 15px;
    color: #fff;
    /* White Text */
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
    border: 1px solid transparent;
}

/* Base style for icons in orange cards */
.strength-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Removed specific alternating styles to uniform color as requested */
.strength-card:hover {
    transform: translateY(-5px);
    background: #e07218;
    /* Slightly darker on hover */
}

.strength-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.strength-card:hover .strength-icon {
    transform: scale(1.1) rotate(5deg);
}

.strength-title {
    color:white !important;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

/* Decorative Background Icons */
.strength-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 100px;
    opacity: 0.05;
    pointer-events: none;
    transition: all 0.5s ease;
}

.strength-card:hover .strength-bg-icon {
    transform: scale(1.2) rotate(-10deg);
    opacity: 0.1;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {

    .stats-row,
    .strengths-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {

    .stats-row,
    .strengths-row {
        grid-template-columns: 1fr;
    }

    .why-choose-layout {
        gap: 30px;
    }
}