*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#111;
color:white;
}

/* HEADER */

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:20px 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(0,0,0,0.7);
backdrop-filter:blur(10px);
z-index:1000;
}

.logo{
font-size:32px;
font-weight:700;
}

header.sticky{
background:#000;
padding:15px 8%;
box-shadow:0 5px 20px rgba(0,0,0,0.5);
}

nav{
display:flex;
align-items:center;
}

nav a{
color:white;
text-decoration:none;
margin-left:20px;
transition:0.3s;
}

nav a:hover{
color:#f0b90b;
}

.menu-btn{
display:none;
font-size:32px;
cursor:pointer;
}

/* HERO */

.hero{
position:relative;
height:100vh;
overflow:hidden;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
}

.slider{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:0;
overflow:hidden;
}

.slide{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
opacity:0;
transition:opacity 1s ease;
}

.slide.active{
opacity:1;
}

.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
z-index:1;
}

.hero-content{
position:relative;
z-index:2;
padding:20px;
max-width:900px;
}

.welcome{
font-size:20px;
margin-bottom:15px;
color:#f0b90b;
animation:fadeDown 1s ease;
}

.hero h2{
font-size:60px;
margin-bottom:20px;
animation:fadeUp 1.2s ease;
}

.hero p{
font-size:20px;
margin-bottom:30px;
animation:fadeUp 1.4s ease;
}

.btn{
display:inline-block;
padding:14px 35px;
background:#f0b90b;
color:black;
font-weight:bold;
text-decoration:none;
border-radius:30px;
transition:0.3s;
animation:fadeUp 1.6s ease;
}

.btn:hover{
transform:scale(1.05);
}

/* SECTIONS */

section{
padding:100px 8%;
}

.section-title{
text-align:center;
font-size:40px;
margin-bottom:50px;
}

/* SERVICES */

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

.card{
background:#1b1b1b;
padding:40px;
text-align:center;
border-radius:20px;
transition:0.4s;
}

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

.card i{
font-size:45px;
margin-bottom:20px;
color:#f0b90b;
}

/* GALLERY */

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

.gallery img{
width:100%;
height:300px;
object-fit:cover;
border-radius:20px;
transition:0.4s;
cursor:pointer;
}

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

.hidden{
display:none;
}

.gallery-btn{
text-align:center;
margin-top:40px;
}

.gallery-btn button{
padding:15px 35px;
border:none;
background:#f0b90b;
font-size:18px;
font-weight:bold;
border-radius:30px;
cursor:pointer;
transition:0.3s;
}

.gallery-btn button:hover{
transform:scale(1.05);
}

/* POPUP */

#popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
display:none;
justify-content:center;
align-items:center;
z-index:5000;
}

#popup img{
max-width:90%;
max-height:90%;
border-radius:20px;
transform:scale(0.9);
transition:0.3s;
}

#popup.show img{
transform:scale(1);
}

#popup span{
position:absolute;
top:30px;
right:40px;
font-size:50px;
color:white;
cursor:pointer;
}

/* ABOUT */

.about-text{
max-width:800px;
margin:auto;
text-align:center;
font-size:20px;
line-height:1.8;
}

/* CONTACT */

#contact{
text-align:center;
background:#1a1a1a;
}

#contact p{
margin:20px 0;
font-size:20px;
}

/* WHATSAPP */

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
width:65px;
height:65px;
background:#25d366;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
font-size:35px;
color:white;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
z-index:999;
}

/* FOOTER */

footer{
background:#000;
padding:25px;
text-align:center;
font-size:15px;
}

/* SCROLL ANIMATION */

.reveal{
opacity:0;
transform:translateY(50px);
transition:all 0.8s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

/* ANIMATIONS */

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
transform:translateY(0);
}
}

@keyframes fadeDown{
from{
opacity:0;
transform:translateY(-40px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* MOBILE */

@media(max-width:768px){

.menu-btn{
display:block;
z-index:2000;
}

header{
padding:20px;
}

.logo{
font-size:28px;
}

nav{
position:fixed;
top:0;
right:-100%;
width:260px;
height:100vh;
background:#111;
display:flex;
flex-direction:column;
padding-top:100px;
transition:0.4s;
z-index:1500;
}

nav.active{
right:0;
}

nav a{
margin:20px;
font-size:20px;
}

.hero h2{
font-size:42px;
}

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

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

.gallery{
grid-template-columns:1fr;
}

}

.top-btn{
position:fixed;
bottom:100px;
right:25px;
width:55px;
height:55px;
background:#f0b90b;
color:black;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
text-decoration:none;
font-size:22px;
opacity:0;
pointer-events:none;
transition:0.3s;
z-index:999;
}

.top-btn:hover{
transform:translateY(-4px);
}

.map-container{
margin-top:30px;
border-radius:20px;
overflow:hidden;
}

.about-features{
margin-top:30px;
text-align:center;
}

.about-features p{
margin:12px 0;
font-size:20px;
}