/*==================================
MENTORS SECTION
==================================*/

.mentors{

    background:#f8fbff;

    position:relative;

    overflow:hidden;

    padding:80px 0;

}



/*==================================
MENTOR GRID
==================================*/

.mentor-grid{
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 70px;
}



/*==================================
MENTOR CARD
==================================*/

.mentor-card{
    width: 450px;
    max-width: 100%;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    transition: .4s;
}


.mentor-card:hover{

    transform:translateY(-15px);

    box-shadow:0 30px 60px rgba(0,0,0,.15);

}


/*==================================
MENTOR IMAGE
==================================*/

.mentor-image{
    width:100%;
    height:340px;
    display:flex;
    justify-content:center;
    align-items:flex-end;
    padding-bottom:25px;
    background:linear-gradient(135deg,#eef5ff,#ffffff);
}

.mentor-image img{
    width:190px;
    height:190px;
    border-radius:50%;
    object-fit:cover;
    object-position:center top;
    border:6px solid #fff;
    transition:.4s;
}

/* Yellow Border */
.mentor-card:first-child .mentor-image img{
    box-shadow:0 0 0 6px #2563EB;
}

/* Blue Border */
.mentor-card:nth-child(2) .mentor-image img{
    box-shadow:0 0 0 6px #2563EB;
}

.mentor-card:hover .mentor-image img{
    transform:scale(1.05);
}

/*==================================
MENTOR INFO
==================================*/


.mentor-info{

    padding:35px;

    text-align:center;

    display:flex;

    flex-direction:column;

    flex:1;

}



.mentor-info h3{

    font-size:28px;

    margin-bottom:8px;

    color:#0A3D91;

}



.mentor-info span{

    color:#0A3D91;

    font-weight:700;

    font-size:16px;

}



.mentor-info p{

    margin:20px 0;

    color:#666;

    line-height:1.8;

    flex-grow:1;

}



/*==================================
MENTOR TAGS
==================================*/


.mentor-tags{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:10px;

}



.mentor-tags small{

    background:#eaf2ff;

    color:#0A3D91;

    padding:8px 15px;

    border-radius:30px;

    font-weight:600;

    font-size:13px;

}



/*==================================
SOCIAL BUTTONS
==================================*/


.mentor-social{

    margin-top:30px;

    display:flex;

    justify-content:center;

    gap:15px;

}



.mentor-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:white;

    background:#0A3D91;

    text-decoration:none;

    transition:.3s;

    font-size:18px;

}



.mentor-social a:first-child{

    background:#25D366;

}



.mentor-social a:first-child:hover{

    background:#128C7E;

}



.mentor-social a:hover{

    transform:translateY(-5px);

    background:#2563EB;

}



/*==================================
QUOTE BOX
==================================*/


.mentor-quote{

    margin-top:80px;

    padding:60px;

    text-align:center;

    border-radius:35px;

    background:
    linear-gradient(
    135deg,
    #0A3D91,
    #2563EB
    );

    color:white;

}



.mentor-quote i{

    font-size:45px;

    margin-bottom:25px;

    opacity:.8;

}



.mentor-quote h3{

    max-width:900px;

    margin:auto;

    font-size:32px;

    line-height:1.6;

}



/*==================================
RESPONSIVE TABLET
==================================*/


@media(max-width:1100px){


.mentor-grid{

    grid-template-columns:repeat(2,1fr);

}


}



/*==================================
RESPONSIVE MOBILE
==================================*/


@media(max-width:768px){


.mentors{

    padding:60px 0;

}


.mentor-grid{

    grid-template-columns:1fr;

    gap:25px;

}


.mentor-image{

    height:260px;

}


.mentor-image img{

    width:160px;

    height:160px;

}


.mentor-info{

    padding:25px;

}


.mentor-info h3{

    font-size:24px;

}


.mentor-quote{

    margin-top:50px;

    padding:40px 25px;

}


.mentor-quote h3{

    font-size:23px;

}


}


.mentor-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(0,0,0,.15);
}

/*==================================
MENTOR CARD MOBILE RESPONSIVE
==================================*/

@media(max-width:768px){

    .mentor-grid{
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .mentor-card{
        width: 100%;
        max-width: 420px;
    }

}

    .mentor-image{

        height:230px;

    }


    .mentor-image img{

        width:150px;

        height:150px;

        border-width:6px;

    }


    .mentor-info{

        padding:25px 20px;

    }


    .mentor-info h3{

        font-size:22px;

        margin-bottom:6px;

    }


    .mentor-info span{

        font-size:14px;

    }


    .mentor-info p{

        font-size:14px;

        line-height:1.7;

        margin:15px 0;

    }


    .mentor-tags{

        gap:8px;

    }


    .mentor-tags small{

        padding:7px 12px;

        font-size:12px;

    }


    .mentor-social{

        margin-top:20px;

        gap:12px;

    }


    .mentor-social a{

        width:40px;

        height:40px;

        font-size:16px;

    }





/* Small Mobile Devices */

@media(max-width:480px){

    .mentor-grid{

        padding:0 10px;

        gap:20px;

    }


    .mentor-image{

        height:210px;

    }


    .mentor-image img{

        width:130px;

        height:130px;

    }


    .mentor-info{

        padding:20px 15px;

    }


    .mentor-info h3{

        font-size:20px;

    }


    .mentor-quote{

        padding:30px 20px;

        border-radius:25px;

    }


    .mentor-quote h3{

        font-size:20px;

    }

}

.mentor-card:first-child .mentor-image img{
    object-position:center 20%;
}

.mentor-card:nth-child(2) .mentor-image img{
    object-position:center 10%;
}