/* GENERAL */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family: Arial, Helvetica, sans-serif;
line-height:1.6;
background:#ffffff;
color:#333;
}

/* HEADER */

header{
background:#0b3d91;
padding:15px 30px;
position:sticky;
top:0;
z-index:1000;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
max-width:1200px;
margin:auto;
}

.logo-area img{
height:55px;
}

nav ul{
list-style:none;
display:flex;
gap:25px;
}

nav ul li a{
color:white;
text-decoration:none;
font-weight:bold;
font-size:15px;
}

nav ul li a:hover{
color:#ff4d4d;
}


/* HERO SECTION */

.hero{
background:url("https://images.unsplash.com/photo-1556911220-bff31c812dba") center/cover no-repeat;
height:500px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
padding:20px;
}

.hero-content{
background:rgba(0,0,0,0.5);
padding:30px;
border-radius:8px;
}

.hero h1{
font-size:40px;
margin-bottom:20px;
}

.hero p{
max-width:600px;
margin:auto;
}

.btn{
display:inline-block;
margin-top:20px;
padding:12px 30px;
background:#e53935;
color:white;
text-decoration:none;
font-weight:bold;
border-radius:4px;
}

.btn:hover{
background:#c62828;
}


/* SECTION */

.section{
max-width:1200px;
margin:auto;
padding:80px 20px;
}

.section h2{
text-align:center;
margin-bottom:40px;
color:#0b3d91;
font-size:32px;
}


/* ABOUT */

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.about-grid img{
width:100%;
border-radius:10px;
}

.about-grid p{
margin-bottom:15px;
}


/* PRODUCTS */

.products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.product{
background:#f4f4f4;
padding:20px;
border-left:5px solid red;
border-radius:5px;
}

.product img{
width:100%;
height:180px;
object-fit:cover;
border-radius:5px;
margin-bottom:15px;
}

.product h3{
margin-bottom:10px;
color:#0b3d91;
}


/* WHY CHOOSE US */

.why-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:#f4f4f4;
padding:20px;
border-left:5px solid red;
border-radius:5px;
}

.card img{
width:100%;
height:160px;
object-fit:cover;
border-radius:5px;
margin-bottom:10px;
}

.card h3{
margin-bottom:10px;
color:#0b3d91;
}


/* CONNECT SECTION */

.connect{
background:#0b3d91;
color:white;
text-align:center;
padding:80px 20px;
}

.connect img{
width:100%;
max-width:800px;
margin-bottom:20px;
border-radius:10px;
}


/* CONTACT */

.contact{
background:#f9f9f9;
padding:80px 20px;
text-align:center;
}

.contact-details{
margin-bottom:30px;
font-size:16px;
}

.contact-details h3{
margin-bottom:10px;
color:#0b3d91;
}

form{
max-width:600px;
margin:auto;
}

form input,
form textarea{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ccc;
border-radius:4px;
}

button{
background:#e53935;
color:white;
border:none;
padding:12px 30px;
font-size:16px;
border-radius:4px;
cursor:pointer;
}

button:hover{
background:#c62828;
}


/* FOOTER */

footer{
background:#111;
color:white;
text-align:center;
padding:30px 20px;
}

footer p{
margin-bottom:10px;
}

footer a{
color:#ff4d4d;
text-decoration:none;
}

footer a:hover{
text-decoration:underline;
}


/* PRIVACY PAGE */

.privacy{
max-width:900px;
margin:auto;
padding:80px 20px;
}

.privacy h1{
color:#0b3d91;
margin-bottom:20px;
}

.privacy h2{
margin-top:25px;
margin-bottom:10px;
color:#0b3d91;
}


/* MOBILE RESPONSIVE */

@media(max-width:768px){

nav{
flex-direction:column;
gap:10px;
}

nav ul{
flex-direction:column;
align-items:center;
}

.hero{
height:auto;
padding:100px 20px;
}

.hero h1{
font-size:28px;
}

.about-grid{
grid-template-columns:1fr;
}

.products{
grid-template-columns:1fr;
}

.why-container{
grid-template-columns:1fr;
}

}