/*=========================================================
OUR INSTITUTIONS
=========================================================*/

.institutions-section{

    padding:100px 0;
    background:#f7f9fc;

}

/*==========================
Section Heading
==========================*/

.section-badge{

    display:inline-block;
    padding:10px 25px;
    background:#213166;
    color:#fff;
    border-radius:50px;
    font-weight:600;
    letter-spacing:.5px;

}

.section-heading{

    font-size:46px;
    font-weight:800;
    color:#213166;
    margin-bottom:20px;

}

.section-heading span{

    color:#0d6efd;

}

.section-text{

    max-width:720px;
    margin:auto;
    color:#6c757d;
    line-height:1.8;

}

/*==========================
Institution Card
==========================*/

.institution-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    height:100%;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.4s;

    border:1px solid #eef2f7;

}

.institution-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(33,49,102,.18);

}

/*==========================
Image Area
==========================*/

.institution-image{

    position:relative;

    height:220px;

    background:#ffffff;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:25px;

    overflow:hidden;

}

/* Logo */

.institution-image img{

    width:170px;

    height:170px;

    object-fit:contain;

    transition:.45s;

}

.institution-card:hover .institution-image img{

    transform:scale(1.08);

}

/*==========================
Overlay
==========================*/

.card-overlay{

    position:absolute;

    top:0;
    left:0;
    width:100%;
    height:100%;

    background:rgba(33,49,102,.88);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.4s;

}

.institution-card:hover .card-overlay{

    opacity:1;

}

.visit-btn{

    display:inline-block;

    padding:13px 28px;

    background:#ffc107;

    color:#213166;

    font-weight:700;

    text-decoration:none;

    border-radius:40px;

    transition:.3s;

}

.visit-btn:hover{

    background:#fff;

    color:#213166;

}

/*==========================
Content
==========================*/

.institution-content{

    padding:28px 25px;

    text-align:center;

}

.institution-content h4{

    font-size:26px;

    font-weight:700;

    color:#213166;

    margin-bottom:10px;

}

.institution-content small{

    display:block;

    min-height:55px;

    color:#6c757d;

    font-size:15px;

    line-height:1.6;

    margin-bottom:22px;

}

/*==========================
Course Tags
==========================*/

.course-list{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:10px;

}

.course-list span{

    background:#eef4ff;

    color:#213166;

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    transition:.35s;

    border:1px solid #d8e6ff;

}

.course-list span:hover{

    background:#213166;

    color:#fff;

}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

.section-heading{

    font-size:38px;

}

.institution-image{

    height:190px;

}

.institution-image img{

    width:140px;

    height:140px;

}

}

@media(max-width:576px){

.institutions-section{

    padding:70px 0;

}

.section-heading{

    font-size:30px;

}

.institution-image{

    height:170px;

}

.institution-image img{

    width:120px;

    height:120px;

}

.institution-content{

    padding:22px;

}

}
/*====================================================
APPROVALS
====================================================*/

.recognition-section{

padding:100px 0;

background:#fff;

}

.approval-card{

background:#fff;

padding:40px 30px;

text-align:center;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

height:100%;

position:relative;

overflow:hidden;

}

.approval-card::before{

content:"";

position:absolute;

left:0;

top:0;

height:4px;

width:100%;

background:linear-gradient(90deg,#213166,#0d6efd,#ffc107);

}

.approval-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.approval-card img{

height:90px;

margin-bottom:25px;

transition:.4s;

}

.approval-card:hover img{

transform:scale(1.1);

}

.approval-card h5{

font-weight:700;

color:#213166;

margin-bottom:15px;

}

.approval-card p{

color:#6c757d;

margin:0;

line-height:1.7;

}

/*====================================================
RECRUITERS
====================================================*/

.recruiters-section{

background:#f8f9fa;

padding:100px 0;

overflow:hidden;

}

.logo-slider{

position:relative;

overflow:hidden;

}

.logo-track{

display:flex;

width:max-content;

animation:scrollLogo 35s linear infinite;

}

.logo-track img{

height:70px;

margin:0 40px;

background:#fff;

padding:15px;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

}

.logo-track img:hover{

transform:translateY(-8px);

}

@keyframes scrollLogo{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

}

@media(max-width:768px){

.logo-track img{

height:55px;

margin:0 20px;

}

}