.why-choose-section {
    padding: 8rem 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, var(--primary-color) 25%, transparent 25%),
        linear-gradient(-45deg, var(--primary-color) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--primary-color) 75%),
        linear-gradient(-45deg, transparent 75%, var(--primary-color) 75%);
    background-size: 20px 20px;
    opacity: 0.02;
    z-index: 1;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.why-choose-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    height: 70%;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.why-choose-image:hover img {
    transform: scale(1.05);
}

.stats-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(40, 76, 98, 0.95), transparent);
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-choose-content {
    padding-right: 2rem;
}

.why-choose-features {
    display: grid;
    gap: 2.5rem;
}

.why-choose-feature {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.why-choose-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1.8rem;
    color: #ffc700;
}

.why-choose-feature:hover .feature-icon {
    background: var(--primary-color);
    transform: rotate(10deg);
}

.feature-content h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-content p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 1.1rem;
}

@media (max-width: 1200px) {
    .why-choose-grid {
        gap: 4rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .why-choose-content {
        padding-right: 0;
    }
    
    .why-choose-image {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .why-choose-feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 1.5rem;
    }
    
    .feature-icon {
        margin-bottom: 1rem;
    }
    
    .stats-overlay {
        flex-direction: column;
        gap: 1.5rem;
    }

    .why-choose-image {
     display: none;
    }
}

.why-choose-section .section-title {
    font-family: var(--heading-font);
    font-weight: var(--bold);
}

.why-choose-text p {
    font-family: var(--body-font);
    font-weight: var(--regular);
}

.feature-card h3 {
    font-family: var(--heading-font);
    font-weight: var(--semibold);
}

.feature-card p {
    font-family: var(--body-font);
    font-weight: var(--regular);
} 