/* PARTNERS HERO */

.about-hero{
    position:relative;

    height:420px;

    background:url('../assets/images/ca_3.png');

    background-size:cover;
    background-position:center;

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

    text-align:center;
}

/* PARTNERS PAGE */

.team-section{
    padding:100px 0;

    background:#f8fafc;
}

/* GRID */

.team-grid{
    display:grid;

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

    gap:35px;
}

/* CARD */

.team-card{
    background:#fff;

    border-radius:14px;

    overflow:hidden;

    text-align:center;

    transition:0.4s;

    box-shadow:0 5px 25px rgba(0,0,0,0.06);
}

.team-card:hover{
    transform:translateY(-10px);

    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/* IMAGE */

.team-card img{
    width:100%;

    height:360px;

    object-fit:cover;
}

/* CONTENT */

.team-content{
    padding:10px 25px 35px;
}

.team-card h3{
    font-size:28px;

    color:#0b1f3a;

    margin-top:20px;
}

.team-card p{
    margin-top:15px;

    color:#666;

    line-height:30px;
}

/* READ MORE BUTTON */

.read-more-btn{
    display:inline-block;

    margin-top:20px;

    padding:12px 28px;

    background:#0b2c6b;

    color:#fff;

    text-decoration:none;

    border-radius:40px;

    font-size:15px;

    font-weight:600;

    transition:0.3s;
}

.read-more-btn:hover{
    background:#f4a100;

    transform:translateY(-3px);
}

/* BIO SECTION */

.partner-bio{
    display:none;

    margin-top:70px;

    background:#fff;

    padding:50px;

    border-radius:16px;

    box-shadow:0 5px 25px rgba(0,0,0,0.06);
}

/* SHOW BIO */

.partner-bio.show-bio{
    display:block;

    animation:fadeIn 0.5s ease;
}

.bio-content h2{
    font-size:38px;

    color:#0b1f3a;

    margin-bottom:25px;
}

.bio-content p{
    font-size:18px;

    line-height:34px;

    color:#555;

    margin-bottom:20px;
}

/* ANIMATION */

@keyframes fadeIn{

    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* RESPONSIVE */

@media(max-width:992px){

    .team-grid{
        grid-template-columns:1fr;
    }

    .footer{
        padding:80px 40px 30px;
    }

    .footer-grid{
        grid-template-columns:1fr;

        gap:40px;
    }

}

@media(max-width:768px){

    .partner-bio{
        padding:30px 25px;
    }

    .bio-content h2{
        font-size:30px;
    }

}

/* FOOTER */

.footer{
    background:#02163a;

    padding:90px 120px 30px;

    color:#fff;
}

.footer-grid{
    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;
}

.footer h2{
    font-size:34px;

    margin-bottom:35px;

    font-weight:700;
}

.footer p,
.footer a{
    color:#d1d5db;

    font-size:18px;

    line-height:2;
}

.footer-links ul{
    list-style:none;
}

.footer-links a{
    text-decoration:none;

    transition:0.3s;
}

.footer-links a:hover{
    color:#f4a100;
}

.footer-contact i{
    color:#f4a100;

    margin-right:12px;
}

.footer-bottom{
    margin-top:70px;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,0.1);

    text-align:center;
}

.footer-bottom p{
    color:#9ca3af;
}