*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#f5f7fa;
color:#222;
line-height:1.7;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* HEADER */

.header{
position:fixed;
top:0;
left:0;
width:100%;
background:rgba(10,18,32,.96);
backdrop-filter:blur(10px);
z-index:1000;
box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.header .container{
height:80px;
display:flex;
align-items:center;
justify-content:space-between;
}

.logo{
font-size:22px;
font-weight:700;
color:#fff;
}

nav{
display:flex;
gap:25px;
}

nav a{
text-decoration:none;
color:#fff;
font-weight:500;
transition:.3s;
}

nav a:hover{
color:#25D366;
}

.phone{
color:#fff;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.phone:hover{
color:#25D366;
}

/* HERO */

.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,.60),rgba(0,0,0,.60)),
url("hero.jpeg");
background-size:cover;
background-position:right center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:20px;
}

.hero-content{
max-width:900px;
color:white;
}

.hero h1{
font-size:64px;
font-weight:700;
margin-bottom:20px;
line-height:1.2;
}

.hero p{
font-size:22px;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.btn{
padding:15px 30px;
border-radius:8px;
text-decoration:none;
font-weight:600;
transition:.3s;
display:inline-block;
}

.primary{
background:#0f4c81;
color:white;
}

.primary:hover{
background:#0b3d68;
transform:translateY(-3px);
}

.whatsapp{
background:#25D366;
color:white;
}

.whatsapp:hover{
transform:translateY(-3px);
}

/* SECTION */

.section{
padding:100px 0;
}

.section h2{
text-align:center;
font-size:40px;
margin-bottom:40px;
color:#0f172a;
}

.gray{
background:#eef2f6;
}

/* ABOUT */

.section p{
max-width:900px;
margin:0 auto 20px;
text-align:center;
}

/* GALLERY */

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:20px;
}

.gallery img{
width:100%;
height:260px;
object-fit:cover;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,.12);
transition:.4s;
cursor:pointer;
}

.gallery img:hover{
transform:scale(1.03);
}

/* SERVICES */

.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:25px;
}

.card{
background:white;
padding:30px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.card:hover{
transform:translateY(-6px);
}

.card h3{
margin-bottom:15px;
color:#0f172a;
font-size:20px;
}

.card p{
text-align:left;
margin:0;
color:#555;
line-height:1.8;
}

/* CONTACT */

.contact{
background:#0f172a;
color:white;
padding:100px 0;
text-align:center;
}

.contact h2{
font-size:40px;
margin-bottom:25px;
}

.contact p{
margin-bottom:10px;
}

.contact .btn{
margin:10px 5px;
}

.status{
display:inline-block;
margin-top:20px;
background:#198754;
padding:10px 18px;
border-radius:30px;
font-weight:600;
}

/* FOOTER */

footer{
background:#08101f;
color:#aaa;
text-align:center;
padding:20px;
}

/* MOBILE */

@media(max-width:768px){

.header .container{
flex-direction:column;
height:auto;
padding:15px 0;
}

.logo{
font-size:18px;
text-align:center;
margin-bottom:10px;
}

nav{
flex-wrap:wrap;
justify-content:center;
gap:12px;
margin-bottom:10px;
}

.hero h1{
font-size:38px;
}

.hero p{
font-size:18px;
}

.section h2{
font-size:30px;
}

.gallery img{
height:220px;
}

.hero-buttons{
flex-direction:column;
align-items:center;
}

.btn{
width:250px;
text-align:center;
}
}
