.why-choose-us-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.why-choose-us-section .section-title {
    margin-bottom: 50px;
    text-align: center;
}

.feature-card {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    opacity: 0.1;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    border-radius: 50%;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.feature-card .icon-box img {
    max-width: 30px;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}

.feature-card:hover .icon-box {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

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

.feature-card:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.4s ease;
}

.feature-card:hover h3 {
    color: var(--white-color);
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 0;
    transition: all 0.4s ease;
}

.feature-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991px) {
    .why-choose-us-section {
        padding: 70px 0;
    }
    
    .feature-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .why-choose-us-section {
        padding: 50px 0;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
}