@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&display=swap');
body{
margin:0;
font-family: 'Noto Sans', sans-serif;
background:#F9F9F9;
}
h1, h2, h3, h4{
font-family: 'Cal Sans', sans-serif;
}

/* header section */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
background:#141D44;
}

.logo{
width:120px;
}

nav ul{
display:flex;
list-style:none;
gap:30px;
margin:0px;
}

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

/* hero section */

.hero{
background-image:url("../image/hero-img.jpg");
background-size:cover;
background-position:center;
height:350px;

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;

color:white;
text-align:center;
}

.hero h1{
font-size:57px;
margin-left:-50%;
margin-bottom: -2%;
color:#BC002D;
}

.tagline{
font-size:40px;
color:#BC002D;
margin-left:-55%;
margin-bottom:13% ;
}

/* feature cards section */

.features{
display:flex;
justify-content:center;
gap:10%;
padding:4% 0%;
}

.card{
width:300px;
height:300px;
background:white;
border-radius:10px;
box-shadow:0 3px 10px rgba(0,0,0,0.2);

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:10px;
}

.card img{
width:100%;
border-radius:8px;
}

/* information section */

.info{
display:flex;
align-items:center;
gap:40px;
padding:50px;
position:relative;
}

.info-img img{
width:400px;
border-radius:10px;
}

.info-text{
background:white;
padding:20px;
border-radius:10px;
max-width:500px;
box-shadow:0 3px 10px rgba(0,0,0,0.2);
/* Adjust the margin to overlap the image */
margin-left:-100px;   
position:relative;
z-index:1;
font-family: 'Cal Sans', sans-serif;
}

/* footer section */

footer{
background:#141D44;
color:white;
text-align:center;
padding:15px;
}