body{
font-family:Poppins;
background:#f5f7fb;
scroll-behavior:smooth;
}

/* Navbar */

.navbar{
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

/* Hero */

.hero{
background:linear-gradient(135deg,#1a1c3a,#1b5e20);
padding:120px 0 80px;
color:white;
text-align:center;
}

.hero h1{
font-weight:700;
}

.search-box{
background:white;
border-radius:40px;
padding:8px;
max-width:550px;
margin:auto;
display:flex;
}

.search-box input{
border:none;
flex:1;
padding:10px;
outline:none;
}

.search-box button{
border-radius:30px;
}

/* College Cards */

.college-card{
background:white;
border-radius:15px;
overflow:hidden;
box-shadow:0 6px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.college-card:hover{
transform:translateY(-8px);
}

.college-card img{
width:100%;
height:200px;
object-fit:cover;
}

.badge-course{
position:absolute;
top:15px;
left:15px;
background:#6c5ce7;
color:white;
padding:6px 12px;
border-radius:20px;
font-size:12px;
}

.card-body h5{
font-weight:600;
}

.card-footer{
background:none;
border-top:1px solid #eee;
}

.info-row{
display:flex;
justify-content:space-between;
font-size:14px;
}

.rating{
color:#ff9f1c;
}

/* Footer */

.footer{
background:#081229;
color:white;
padding:60px 0;
margin-top:80px;
}

.footer a{
color:#cfd6e6;
text-decoration:none;
display:block;
margin-bottom:8px;
}
