body{
margin:0;
font-family:Arial;
background:#f5f5f5;
}

/* HEADER */

.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px;
background:#0A2A66;
color:white;
}

nav a{
margin:10px;
color:white;
text-decoration:none;
font-weight:bold;
}

nav a:hover{
color:#FF6A00;
}

/* HERO */

.hero{
position:relative;
}

.hero img{
width:100%;
height:60vh;
object-fit:cover;
}

.hero-text{
position:absolute;
top:40%;
left:50%;
transform:translate(-50%,-50%);
color:white;
text-align:center;
}

/* SEARCH BOX */

.search-box{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
display:flex;
gap:10px;
margin-top:20px;
}

.search-box input{
padding:10px;
border:1px solid #ccc;
border-radius:5px;
}

.search-box button{
background:#FF6A00;
border:none;
color:white;
padding:10px 20px;
border-radius:5px;
cursor:pointer;
}

/* SECTION */

.section{
padding:40px;
text-align:center;
}

/* CARDS */

.cards{
display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;
}

.card{
background:white;
border-radius:10px;
overflow:hidden;
width:250px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:0.3s;
}

.card img{
width:100%;
height:180px;
object-fit:cover;
transition:0.4s;
}

/* HOVER EFFECT */

.card:hover{
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.card:hover img{
transform:scale(1.05);
}

/* FOOTER */

.footer{
background:#0A2A66;
color:white;
text-align:center;
padding:20px;
margin-top:40px;
}
