.why-choose-section {
    padding: 80px 0;
    background-color: #ffffff;
}
/* --- Left Column: Feature List --- */
.why-choose-section .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-section .feature-list li {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eaeaea;
}

/* Remove border from last item */
.why-choose-section .feature-list li:last-child {
    border-bottom: none;
}

.why-choose-section .feature-icon-wrapper {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.feature-icon-wrapper i {
    font-size: 32px;
    color: var(--color-2);
}
.why-choose-section .feature-icon-wrapper img{
  width: 60px;
  height: auto;
}
.why-choose-section .feature-text {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    font-family: var(--font-02);
}

/* --- Right Column: Image & Stats Composition --- */

.why-choose-section .composition-wrapper {
    padding-left: 20px;
}

.why-choose-section .image-card {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.why-choose-section .img-tall {
    height: 380px;
}

.why-choose-section .img-short {
    height: 380px;
}

/* Stats Box Styling */
.why-choose-section .stat-box {
    background-color: #f6f5ef;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    width: 100%;
}

.why-choose-section .stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*margin-bottom: 12px;*/
}

.why-choose-section .stat-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    font-family: var(--font-01);
}

.why-choose-section .stat-percent {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    font-family: var(--font-01);
}

/* Custom Progress Bar */
.why-choose-section .custom-progress {
    height: 4px;
    background-color: #e5e5e5;
    border-radius: 10px;
    overflow: visible; /* Allows the dot to show if added */
    margin: 0;
}

.why-choose-section .custom-progress-bar {
    background-color: var(--color-2);
    border-radius: 10px;
    position: relative;
}

/* Optional: Adding a little circle at the end of the progress bar */
.why-choose-section .custom-progress-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--color-2);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(242, 116, 33, 0.2);
}

/* Staggered Offset for the second column of images */
.why-choose-section .stagger-offset {
    /*margin-top: 50px; */
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .why-choose-section .composition-wrapper {
        padding-left: 0;
        margin-top: 50px;
    }
    .why-choose-section .img-tall {
        height: 250px;
    }
    .why-choose-section .img-short {
        height: 250px;
    }
}

@media (max-width: 575px) {
    .why-choose-section .stagger-offset {
        margin-top: 30px;
    }
}