/* =========================
   CHOOSE SECTION
========================= */

.choose{
    padding: 50px 0;
    background: #e4e2e2;
}

/* Grid */
.feature-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

/* Feature Card */
.feature-box{
    background: #fff;
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.feature-box:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Top Border Animation */
.feature-box::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #62d5ce;
    transform: scaleX(0);
    transition: 0.4s;
}

.feature-box:hover::before{
    transform: scaleX(1);
}

/* Icon */
.feature-icon{
    width: 5px;
    height: 5px;
    background: #eefaf9;
    margin: auto;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;
}

/* Icon Style */
.feature-icon i{
    font-size: 25px;
    color: #010e0de5;
}

/* Heading */
.feature-box h3{
    font-size: 15px;
    color: #081b3a;
    margin-bottom: 18px;
    line-height: 1.4;
}

/* Responsive */
@media(max-width:992px){

    .feature-grid{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px){

    .feature-grid{
        grid-template-columns: 1fr;
    }

    .section-title h1{
        font-size: 34px;
    }
}