.engineering-guidance{
    background:#f8fbff;
}

.engineering-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:50px;
}

.engineering-card{
    background:#fff;
    padding:35px 30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    text-align:center;
}

.engineering-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.engineering-card i{
    width:70px;
    height:70px;
    line-height:70px;
    border-radius:50%;
    background:#0056b3;
    color:#fff;
    font-size:28px;
    margin-bottom:20px;
}

.engineering-card h3{
    font-size:22px;
    color:#1d3557;
    margin-bottom:15px;
}

.engineering-card p{
    color:#666;
    line-height:1.8;
}
.private-engineering{
    padding:80px 8%;
    background:#f8fbff;
}

.college-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:50px;
}

.college-card{
    background:#fff;
    padding:25px;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    border-left:4px solid #0056b3;
    transition:.3s;
}

.college-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.college-card h3{
    color:#1d3557;
    margin-bottom:8px;
    font-size:18px;
}

.college-card p{
    color:#666;
    font-size:14px;
}