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);
color:white;
padding:100px 0;
text-align:center;
}

.hero h1{
font-weight:700;
}

/* Search */

.search-box{
background:white;
border-radius:40px;
padding:10px;
max-width:550px;
margin:auto;
display:flex;
}

.search-box input{
border:none;
flex:1;
padding:10px;
outline:none;
}

/* Country Card */

.country-card{

position:relative;
border-radius:15px;
overflow:hidden;
box-shadow:0 6px 20px rgba(0,0,0,0.08);
transition:0.3s;

}

.country-card:hover{
transform:translateY(-8px);
}

.country-card img{
width:100%;
height:220px;
object-fit:cover;
}

/* Overlay */

.country-overlay{

position:absolute;
bottom:0;
width:100%;
padding:20px;
color:white;
background:linear-gradient(transparent,rgba(0,0,0,0.9));

}

/* Footer */

.footer{
background:#081229;
color:white;
padding:60px 0;
margin-top:80px;
}

.footer a{
color:#cfd6e6;
text-decoration:none;
display:block;
margin-bottom:8px;
}
