.advantages-section {
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.advantages-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 1;
}

.advantages-section .container {
    position: relative;
    z-index: 2;
}

.advantage-card {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    padding: 30px 25px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.05), transparent);
    z-index: -1;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.advantage-card__icon {
    margin-bottom: 20px;
    font-size: 42px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-card__icon i {
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.4));
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-card__icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.6));
}

.advantage-card__title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.advantage-card__desc {
    color: rgba(229, 231, 235, 0.8);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

.thm-btn--gradient.style-2 {
    background: linear-gradient(to right, #3b82f6, #6366f1);
    border: none;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.thm-btn--gradient.style-2:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

@media (max-width: 991px) {
    .advantage-card {
        padding: 25px 20px;
    }

    .advantage-card__icon {
        font-size: 36px;
        height: 60px;
        margin-bottom: 15px;
    }

    .advantage-card__title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .advantage-card__desc {
        font-size: 14px;
    }

}

@media (max-width: 767px) {
    .advantage-card {
        margin-bottom: 20px;
        padding: 20px 15px;
    }

    .advantage-card__icon {
        font-size: 32px;
        height: 50px;
        margin-bottom: 12px;
    }

    .advantage-card__title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .advantage-card__desc {
        font-size: 13px;
    }
}