/*=========================================================
    REFO Partners Section
=========================================================*/

.partner-card {

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 200px;

    padding: 30px;

    background: #ffffff;

    border-radius: 12px;

    border: 1px solid #e9ecef;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}

.partner-card:hover {

    transform: translateY(-5px);

    border-color: #2E7D32;

    box-shadow: 0 12px 28px rgba(46, 125, 50, 0.18);

}

.partner-logo {

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

}

.partner-logo img {

    max-width: 100%;

    max-height: 100px;

    width: auto;

    height: auto;

    object-fit: contain;

}
/*=========================================================
REFO Focus Areas
=========================================================*/

.focus-area-section{
    padding:120px 0;
    background:#ffffff;
}

.focus-area-section .section-title{
    margin-bottom:70px;
}

.focus-area-card{

    background:#fff;

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

    margin-bottom:35px;

    height:100%;
}

.focus-area-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.focus-image{

    height:240px;

    overflow:hidden;

}

.focus-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.focus-area-card:hover .focus-image img{

    transform:scale(1.08);

}

.focus-icon{

    width:80px;

    height:80px;

    background:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:-40px auto 25px;

    position:relative;

    z-index:2;

    box-shadow:0 8px 20px rgba(0,0,0,.12);

}

.focus-icon img{

    width:42px;

}

.focus-area-card h3{

    font-size:24px;

    text-align:center;

    margin-bottom:18px;

    padding:0 25px;

}

.focus-area-card p{

    padding:0 30px 35px;

    text-align:center;

    line-height:1.8;

    color:#666;

}