/* ===============================
   Google Font
================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===============================
   Reset
================================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#f5f7fa;
color:#333;
line-height:1.6;
overflow-x:hidden;
}

/* ===============================
   Header
================================= */

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:6px 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:#eef8fb;
z-index:1000;
box-shadow:0 3px 14px rgba(8,28,61,.10);
}

.logo img{
height:66px;
}

nav{
display:none;
position:absolute;
top:100%;
right:8%;
min-width:200px;
padding:12px 0;
background:#eef8fb;
border-radius:0 0 12px 12px;
box-shadow:0 10px 24px rgba(8,28,61,.14);
}

nav.active{
display:block;
}

nav ul{
display:flex;
flex-direction:column;
list-style:none;
}

nav ul li{
margin:0;
}

nav ul li a{
display:block;
padding:10px 22px;
color:#081c3d;
text-decoration:none;
font-size:16px;
font-weight:500;
transition:.3s;
}

nav ul li a:hover{
color:#00b4d8;
}

.menu-btn{
display:flex;
align-items:center;
justify-content:center;
width:42px;
height:42px;
border:0;
background:transparent;
font-size:26px;
color:#081c3d;
cursor:pointer;
}

.menu-btn:hover{
color:#00b4d8;
}

/* ===============================
   Hero
================================= */

.hero{
height:100vh;
background:
linear-gradient(rgba(8,28,61,.75),rgba(8,28,61,.75)),
url("../images/home-page-cover.jpg");
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
color:#fff;
padding:20px;
}

.hero-content h1{
font-size:65px;
font-weight:700;
margin-bottom:20px;
}

.hero-content p{
font-size:22px;
margin-bottom:35px;
}

.btn{
display:inline-block;
padding:15px 35px;
background:#00b4d8;
color:#fff;
text-decoration:none;
border-radius:8px;
font-weight:600;
transition:.3s;
}

.btn:hover{
background:#0096c7;
transform:translateY(-3px);
}

/* ===============================
   Sections
================================= */

section{
padding:90px 8%;
}

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title h2{
font-size:40px;
color:#081c3d;
}

.section-title p{
color:#666;
}

/* ===============================
   Services
================================= */

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.card{
background:#fff;
border-radius:15px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,.08);
transition:.35s;
display:flex;
flex-direction:column;
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.card img{
width:100%;
height:220px;
object-fit:cover;
}

.card h3{
padding:20px 20px 10px;
font-size:24px;
color:#081c3d;
}

.card p{
padding:0 20px 20px;
color:#666;
font-size:15px;
}

.service-list{
margin:0;
padding:0 20px 20px 40px;
color:#666;
font-size:15px;
}

.service-list li{
margin:5px 0;
}

.card .btn{
align-self:flex-start;
margin: auto 20px 20px;
}

.card-btn{
display:block;
margin:0 20px 20px;
text-align:center;
padding:12px;
background:#00b4d8;
color:#fff;
text-decoration:none;
border-radius:6px;
font-weight:600;
transition:.3s;
}

.card-btn:hover{
background:#0096c7;
}
/*==============================
ABOUT
==============================*/

.about{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
gap:50px;
align-items:center;
}

.about-image img{
width:100%;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.about-content h2{
font-size:40px;
color:#081c3d;
margin-bottom:20px;
}

.about-content p{
color:#555;
margin-bottom:25px;
}

.about-list div{
margin:15px 0;
font-weight:500;
}

.about-list i{
color:#00b4d8;
margin-right:10px;
}

/*==============================
WHY CHOOSE US
==============================*/

.why-choose{
    background:transparent;
    padding:80px 8%;
    text-align:center;
}

.container{
    max-width:1200px;
    margin:auto;
}

.why-choose h2{
    color:#081c3d;
    font-size:40px;
    margin-bottom:50px;
    font-weight:700;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.why-box{
    background:#102b57;
    padding:35px 25px;
    border-radius:15px;
    transition:0.3s;
    box-shadow:0 5px 15px rgba(0,0,0,0.25);
}

.why-box:hover{
    transform:translateY(-10px);
    background:#0f356d;
}

.why-box i{
    font-size:50px;
    color:#00bcd4;
    margin-bottom:20px;
}

.why-box h3{
    color:#ffffff;
    font-size:24px;
    margin-bottom:15px;
}

.why-box p{
    color:#d9d9d9;
    font-size:16px;
    line-height:1.7;
}

@media(max-width:768px){

.why-choose{
    padding:60px 20px;
}

.why-choose h2{
    font-size:30px;
}

}

/*==============================
STATS
==============================*/

.stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
text-align:center;
}

.stat{
background:#fff;
padding:35px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.stat h2{
font-size:50px;
color:#00b4d8;
margin-bottom:10px;
}

/*==============================
GALLERY
==============================*/

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
}

.gallery img{
width:100%;
height:250px;
object-fit:cover;
border-radius:12px;
transition:.3s;
cursor:pointer;
}

.gallery img:hover{
transform:scale(1.05);
}

/*==============================
CONTACT
==============================*/

.contact-box{
background:#fff;
padding:40px;
border-radius:15px;
box-shadow:0 8px 25px rgba(0,0,0,.08);
max-width:900px;
margin:auto;
}

.contact-box h2{
margin-bottom:20px;
color:#081c3d;
}

.contact-box p{
margin-bottom:15px;
}

.contact-box i{
color:#00b4d8;
margin-right:10px;
}

.contact-box input,
.contact-box textarea{
width:100%;
padding:15px;
margin:12px 0;
border:1px solid #ddd;
border-radius:8px;
font-size:15px;
}

.contact-box button{
width:100%;
padding:15px;
background:#00b4d8;
color:#fff;
border:none;
border-radius:8px;
font-size:17px;
font-weight:600;
cursor:pointer;
transition:.3s;
}

.contact-box button:hover{
background:#0096c7;
}

/*==============================
FOOTER
==============================*/

footer{
background:#eef8fb;
color:#081c3d;
text-align:center;
padding:16px 20px;
}

footer img{
height:60px;
margin-bottom:8px;
}

/*==============================
WHATSAPP
==============================*/

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
width:60px;
height:60px;
background:#25D366;
color:#fff;
display:flex;
justify-content:center;
align-items:center;
font-size:32px;
border-radius:50%;
text-decoration:none;
box-shadow:0 5px 20px rgba(0,0,0,.3);
z-index:999;
animation:pulse 2s infinite;
}

/*==============================
SCROLL TOP
==============================*/

#topBtn{
position:fixed;
bottom:100px;
right:25px;
width:50px;
height:50px;
border:none;
background:#081c3d;
color:#fff;
border-radius:50%;
cursor:pointer;
display:none;
font-size:18px;
}

/*==============================
ANIMATION
==============================*/

@keyframes pulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.1);
}

100%{
transform:scale(1);
}

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:768px){

header{
padding:6px 5%;
}

.logo img{
height:56px;
}

nav{
display:none;
position:absolute;
top:100%;
right:5%;
min-width:200px;
padding:12px 0;
background:#eef8fb;
border-radius:0 0 12px 12px;
box-shadow:0 10px 24px rgba(8,28,61,.14);
}

nav.active{
display:block;
}

nav ul{
flex-direction:column;
}

nav ul li{
margin:0;
}

nav ul li a{
padding:10px 22px;
}

.menu-btn{
display:flex;
}

.hero-content h1{
font-size:42px;
}

.hero-content p{
font-size:18px;
}

.section-title h2{
font-size:32px;
}

.about{
grid-template-columns:1fr;
}

.stats{
grid-template-columns:1fr 1fr;
}

.gallery{
grid-template-columns:1fr;
}

}
