 .why-choose-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  color: var(--white);
  min-height: 600px;
  display: flex;
  align-items: center;
}


.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }
.feature-card:nth-child(7) { animation-delay: 0.7s; }
.feature-card:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: var(--primary);
}

.feature-card:focus-within {
    outline: 3px solid var(--theme-color);
    outline-offset: 2px;
}

.feature-card .icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: var(--theme-color);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    background: var(--white);
}

.feature-card i {
    font-size: 1.75rem;
    color: var(--white);
    transition: color 0.3s ease;
}

.feature-card:hover i {
    color: var(--primary);
}

.feature-card h5 {
    font-size: clamp(16px, 2.2vw, 18px);
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.feature-card:hover h5 {
    color: var(--white);
}

.feature-card p {
    font-size: clamp(13px, 1.6vw, 14px);
    color: var(--text);
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: var(--white);
}

.feature-card .btn {
    display: inline-block;
    padding: 8px 16px;
    background: var(--theme-color);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    font-size: clamp(12px, 1.5vw, 13px);
    margin-top: 1rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.feature-card:hover .btn {
    background: var(--white);
    color: var(--primary);
}

.feature-row {
    margin: -15px;
}

.feature-row > div {
    padding: 15px;
}

@media (max-width: 767px) {
    .why-choose-section .title {
        font-size: clamp(20px, 3.5vw, 24px);
    }

    .feature-card {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .feature-card .icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .feature-card i {
        font-size: 1.5rem;
    }

    .feature-card h5 {
        font-size: clamp(14px, 3vw, 16px);
    }

    .feature-card p {
        font-size: clamp(12px, 2vw, 13px);
    }
}

@media (max-width: 576px) {
    .feature-row {
        margin: -10px;
    }

    .feature-row > div {
        padding: 10px;
        flex: 0 0 100%;
        max-width: 100%;
    }
}