*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#ffffff;
color:#222;
line-height:1.6;
}

/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 8%;
background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
position:sticky;
top:0;
z-index:1000;
}

.logo-section img{
height:70px;
}

.nav-links{
display:flex;
gap:30px;
list-style:none;
}

.nav-links a{
text-decoration:none;
color:#003366;
font-weight:600;
transition:.3s;
}

.nav-links a:hover{
color:#00a9b5;
}

/* HERO */

.hero{
height:90vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
background:linear-gradient(
135deg,
#f5fcfd,
#ffffff
);
}

.hero-content{
max-width:900px;
}

.hero h1{
font-size:3.5rem;
color:#003366;
margin-bottom:20px;
}

.hero p{
font-size:1.2rem;
color:#555;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.btn-primary{
background:#00a9b5;
color:#fff;
padding:14px 28px;
border-radius:40px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn-primary:hover{
background:#008e98;
}

.btn-secondary{
background:#003366;
color:#fff;
padding:14px 28px;
border-radius:40px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn-secondary:hover{
background:#00254d;
}

/* FEATURES */

.features{
padding:80px 8%;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
background:#f9f9f9;
}

.feature-card{
background:#fff;
padding:35px;
text-align:center;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:.3s;
}

.feature-card:hover{
transform:translateY(-8px);
}

.feature-card i{
font-size:40px;
color:#00a9b5;
margin-bottom:15px;
}

.feature-card h3{
margin-bottom:10px;
color:#003366;
}

/* SECTIONS */

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.about,
.products,
.quote,
.contact{
padding:90px 0;
}

.about h2,
.products h2,
.quote h2,
.contact h2{
text-align:center;
margin-bottom:25px;
font-size:2.3rem;
color:#003366;
}

.about p{
text-align:center;
max-width:900px;
margin:auto;
color:#555;
}

.mission-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
margin-top:40px;
}

.box{
padding:30px;
background:#fff;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
text-align:center;
}

.box h3{
color:#00a9b5;
margin-bottom:10px;
}

/* PRODUCTS */

.coming{
text-align:center;
margin-bottom:30px;
color:#00a9b5;
font-weight:600;
}

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.product-card{
background:#fff;
padding:35px;
text-align:center;
border-radius:15px;
font-weight:600;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:.3s;
}

.product-card:hover{
transform:translateY(-8px);
background:#00a9b5;
color:#fff;
}

/* FORM */

form{
max-width:700px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

form input,
form textarea{
padding:15px;
border:1px solid #ddd;
border-radius:10px;
outline:none;
font-size:15px;
}

form button{
background:#00a9b5;
color:#fff;
padding:15px;
border:none;
border-radius:10px;
cursor:pointer;
font-size:16px;
font-weight:600;
transition:.3s;
}

form button:hover{
background:#008e98;
}

/* CONTACT */

.contact-box{
max-width:700px;
margin:auto;
background:#fff;
padding:35px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.contact-box p{
margin-bottom:15px;
}

/* FOOTER */

footer{
background:#003366;
color:#fff;
text-align:center;
padding:40px 20px;
}

footer h3{
margin-bottom:10px;
}

footer p{
margin-bottom:8px;
}

/* MOBILE */

@media(max-width:768px){

.navbar{
flex-direction:column;
}

.nav-links{
margin-top:15px;
flex-wrap:wrap;
justify-content:center;
}

.hero h1{
font-size:2.2rem;
}

.hero p{
font-size:1rem;
}

}