body{
font-family:Poppins;
margin:0;
background:#f4f4f4;
}


header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 40px;
background:#0a2c5a;
color:white;
}


.logo-area{
display:flex;
align-items:center;
gap:10px;
}


.logo-area img{
height:45px;
}


nav a{
color:white;
margin-left:20px;
text-decoration:none;
font-weight:500;
}


.hero{
height:90vh;
background:url('images/global-logistics-shipping.jpg') center/cover;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}


.hero h1{
font-size:50px;
}


.btn{
background:#ff6600;
padding:12px 30px;
color:white;
text-decoration:none;
border-radius:5px;
}


section{
padding:60px 10%;
text-align:center;
}


.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}


.card{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}


.card img{
width:100%;
border-radius:8px;
}


.founder-card{
max-width:500px;
margin:auto;
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}


.founder-card img{
width:150px;
border-radius:50%;
margin-bottom:15px;
}


footer{
background:#0a2c5a;
color:white;
text-align:center;
padding:20px;
}
#about img{
max-width:100%;
height:auto;
margin-top:30px;
border-radius:8px;
}