*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;
    background:#F8FAFC;

}

.academic-section{

    padding:90px 8%;

}

.container{

    max-width:900px;
    margin:auto;
}

.heading{

    text-align:center;
    margin-bottom:60px;

}

.heading span{

    color:#2563EB;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;

}

.heading h1{

    font-size:60px;
    font-weight:800;
    color:#0F172A;
    margin:15px 0;

}

.heading .blue{

    color:#2563EB;

}

.heading h3{

    font-size:34px;
    margin-bottom:15px;
    color:#1E293B;

}

.heading p{

    max-width:850px;
    margin:auto;
    color:#64748B;
    font-size:18px;
    line-height:32px;

}

.academic-content{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:45px;
    align-items:center;

}

.left-column{

    position:relative;

}

.left-column img{

   width:100%;
    height:700px;
    object-fit:cover;
    border-radius:20px;

}

.overlay{

    position:absolute;
    left:25px;
    right:25px;
    bottom:25px;

    display:flex;
    align-items:center;
    gap:20px;

    padding:20px;

    background:linear-gradient(135deg,#2563EB,#1D4ED8);

    color:#fff;

    border-radius:16px;

}

.overlay-icon{

    width:65px;
    height:65px;

    background:#fff;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:30px;

}

.overlay h4{

    font-size:22px;

}

.overlay p{

    font-size:15px;
    margin-top:5px;

}

.right-column{

    display:flex;
    flex-direction:column;
    gap:12px;

}

.college-card{
display:flex;
    align-items:center;
    gap:16px;

    background:#fff;
    padding:16px 20px;

    border-radius:14px;
    border-left:4px solid #2563EB;

    box-shadow:0 8px 20px rgba(15,23,42,.08);

    transition:.3s;

    min-height:80px;

}

.college-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(37,99,235,.20);

}

.icon{
width:50px;
    height:50px;

    border-radius:50%;
    background:#EEF4FF;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:22px;

    flex-shrink:0;
}

.college-card h4{

    font-size:18px;
    font-weight:600;
    line-height:1.35;
    color:#0F172A;

}

@media(max-width:992px){

.academic-content{
display:grid;
    grid-template-columns:55% 45%;
    gap:40px;
    align-items:flex-start;

}

.heading h1{

font-size:42px;

}

.heading h3{

font-size:28px;

}

}