.why-choose-modern {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-modern::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('assets/img/tech-pattern.png') center/cover no-repeat;
    opacity: 0.05;
    top: 0;
    left: 0;
    z-index: 1;
}

.why-choose-modern .section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.why-choose-modern .section-title h2 {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(90deg, #ffd700, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInDown 1s ease-in-out;
}

.why-choose-modern .section-title p {
    font-size: 18px;
    color: #f0f0f0;
    max-width: 650px;
    margin: 20px auto 0;
    animation: fadeInUp 1s ease-in-out;
}

.why-choose-modern .card-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 50px 25px;
    transition: all 0.5s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    position: relative;
    z-index: 2;
}

.why-choose-modern .card-glass:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 50px rgba(0,0,0,0.35);
}

.why-choose-modern .card-glass .icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ff6a00, #ee0979);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.why-choose-modern .card-glass .icon-wrap img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.why-choose-modern .card-glass:hover .icon-wrap {
    transform: rotate(10deg) scale(1.1);
}

.why-choose-modern .card-glass h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-choose-modern .card-glass p {
    font-size: 16px;
    color: #e0e0e0;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
    .why-choose-modern .section-title h2 {
        font-size: 38px;
    }
    .why-choose-modern .card-glass {
        padding: 35px 20px;
    }
}

@media (max-width: 576px) {
    .why-choose-modern .section-title h2 {
        font-size: 32px;
    }
    .why-choose-modern .card-glass {
        padding: 25px 15px;
    }
}
