.features::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(101.4% 61.3% at 86.6% 0%, var(--blue) -173%, rgb(93 130 255 / 0%) 86.29293355855856%, rgb(235 239 255 / 0%) 200%);
    z-index: -1;

}


.features .card {
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    gap: 10px;
    flex-shrink: 1;
    position: relative;
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    height: 100%;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
}

.features .card:hover .feature-icon i {
    transform: rotate(5deg) scale(1.2);
}


.features .card .feature-icon {
    width: 50px;
    height: 50px;
    /* background-color:#ECD444 ; */
    display: flex;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
    color:var(--white);
    font-size: 22px;

}

.features .card .feature-icon i {
    transition: all 0.2s ease-in-out;
    background: -webkit-linear-gradient(#ffffff, var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;


}

.features .card .feature-title {
    color: var(--white);
    text-align: center;
    font-weight: bold;
    min-height: 48px;
}

.features .card .feature-subtitle {
    font-style: italic;
    margin-bottom: 0px;
}

.features .reason {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;

}

.features .reason i {
    font-size: 52px;
}

.features .reason h3 {
    margin: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

.features .reason p {
    margin: 0;
    padding: 0;
}

.features .comparisation {
    display: flex;
    gap: 10px;
    margin-top: 10%;
    /* flex-wrap: wrap; */

}

.features .comparisation .antivirus,
.features .comparisation .box,
.features .comparisation .firewall {
    min-height: 500px;
    /* width: 400px; */
    /* min-width: 400px; */
    width: 100%;
    border-radius: 15px;
    position: relative;
    padding: 10px;
}




.features .comparisation .antivirus {
    z-index: 1;
}

.features .comparisation .box {
    z-index: 3;
}

.features .comparisation .firewall {
    z-index: 2;
}

.features .comparisation .antivirus::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -10%;
    right: -5%;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(30, 40, 50, 0.8), rgba(20, 30, 40, 0.9));
    z-index: -1;
    border-radius: 40px 20px 20px 40px;
    transform: rotate(-2deg);
    transition: background 0.3s ease;

}


.features .comparisation .antivirus {
    padding-right:60px ;
}
.features .comparisation .firewall {
    padding-left:40px ;
}
.features .comparisation .box::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -10%;
    right: -10%;
    bottom: -60px;
    z-index: -1;
    transition: background 0.3s ease;
    background: linear-gradient(135deg, #d1dcff00, #0832bd70);
    box-shadow: 0 10px 50px #f0a10293;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px 40px 40px 20px;
    /* transform: rotate(2deg); */
}

.features .comparisation .firewall::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -5%;
    right: -10%;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(30, 40, 50, 0.8), rgba(20, 30, 40, 0.9));
    z-index: -1;
    border-radius: 40px 20px 20px 40px;
    transform: rotate(2deg);
    transition: background 0.3s ease;
}
/*
.features .comparisation .box *{
    transform: translateY(-30px);
} */
.features .comparisation .comparisation-title {
    text-align: center;
    font-weight: bold;
    font-size: 32px;

}

.features .comparisation .feature-list li {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 8px;
    font-size: 18px;
}

.features .comparisation .feature-list li .feature-value {
    font-weight: 600;
    color: var(--red);
    text-align: right;
}

.features .comparisation .box .feature-list li .feature-value {
    font-weight: 600;
    color: var(--yellow);


}
.features .comparisation ul {
    padding-left: 0;
}

@media only screen and (max-width:991px) {
    .features .comparisation {
        flex-wrap: wrap;
        justify-content: center;
    }

    .features .comparisation .antivirus,
    .features .comparisation .box,
    .features .comparisation .firewall {
        width: 400px;
    }


    .features .card .feature-title {
        min-height: unset;
    }
    .features .card .feature-icon {
        font-size: 38px;
    }

    .features .reason i {
        font-size: 38px;
    }
    .features .reason h3 {
        font-size: 18px;
    }
    .features .reason p{
        font-size: 16px;
        margin-bottom: 0;
    }
    .features .comparisation .comparisation-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .features .comparisation .antivirus {padding-right: 10px;}
    .features .comparisation .firewall {padding-left: 10px;}
    .features .comparisation .feature-list li{
        font-size: 16px;
    }
    .features .comparisation .box::before {
        top:-20px;
        bottom:-20px;
    }
}