.universities{
    padding:80px 8%;
    background:#f7f9fc;
}

.container{
    max-width:1300px;
    margin:auto;
}

.section-heading{
    text-align:center;
    margin-bottom:55px;
}

.section-heading span{
    color:#0056b3;
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;
}

.section-heading h2{
    font-size:42px;
    margin:15px 0;
    color:#1d3557;
}

.section-heading p{
    max-width:800px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.university-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.info{
    padding:22px;
}

.country{
    display:inline-block;
    background:#0056b3;
    color:#fff;
    padding:6px 15px;
    border-radius:25px;
    font-size:13px;
    margin-bottom:15px;
}

.info h3{
    color:#1d3557;
    font-size:22px;
    margin-bottom:10px;
}

.info p{
    color:#666;
    margin-bottom:20px;
    line-height:1.6;
}

.info a{
    text-decoration:none;
    color:#0056b3;
    font-weight:600;
}

.info a:hover{
    color:#ff6600;
}