/* MBBS ABOUT */

.mbbs-about{
    padding:90px 8%;
    background:#f8fbff;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-heading{
    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:60px;
}

.tag{
    display:inline-block;
    background:green;
    color:white;
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:18px;
    font-size:14px;
}

.section-heading h2{
    font-size:42px;
    color:#0a3d62;
    margin-bottom:20px;
}

.section-heading p{
    color:#666;
    line-height:1.8;
    font-size:17px;
}

.mbbs-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.mbbs-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.mbbs-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.mbbs-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.mbbs-card h3{
    padding:20px 20px 10px;
    color:#0a3d62;
}

.mbbs-card p{
    padding:0 20px 25px;
    color:#666;
    line-height:1.7;
}

@media(max-width:768px){

.section-heading h2{
    font-size:30px;
}

.mbbs-grid{
    grid-template-columns:1fr;
}

}
.college-btn{
    display:block;
    width:calc(100% - 40px);
    margin:20px;
    padding:15px;
    text-align:center;
    background:#f39c12;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    border-radius:10px;
    transition:.3s;
    box-shadow:none;
    border:none;
}

.college-btn:hover{
    background:#d68910;
    transform:translateY(-4px);
}
.career-guidance{
 
    background:#f8fbff;
}

.guidance-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:50px;
}

.guidance-card{
    background:#fff;
    padding:35px 30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
    text-align:center;
}

.guidance-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.guidance-card i{
    width:70px;
    height:70px;
    line-height:70px;
    border-radius:50%;
    background:#0056b3;
    color:#fff;
    font-size:28px;
    margin-bottom:20px;
}

.guidance-card h3{
    color:#1d3557;
    margin-bottom:15px;
    font-size:22px;
}

.guidance-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}