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

body{
background:#0d0d0d;
color:#fff;
padding-top:0;  
margin:0;  
}

header{
position:sticky;
top:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
background:#000;
box-shadow:0 2px 15px rgba(255,215,0,.15);
z-index:999;
box-sizing:border-box;  
}

.logo{
display:flex;
align-items:center;
justify-content:center;
gap:18px;
font-size:30px;
font-weight:700;
color:#FFD700;
}

.logo img{
width:72px;
height:72px;
border-radius:50%;
object-fit:cover;
}

nav a{
color:#fff;
text-decoration:none;
margin-left:25px;
font-size:17px;
transition:.3s;
}

nav a:hover{
color:#FFD700;
}

.hero{
height:100vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
position:relative;
overflow:hidden;
}  
.hero h1{
font-size:52px;
color:#FFD700;
margin-bottom:20px;
}

.hero p{
font-size:20px;
max-width:850px;
line-height:1.8;
margin-bottom:35px;
}
.hero-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.25);
z-index:-1;
}

.hero-content{
position:relative;
z-index:2;
}

.btn{
display:inline-block;
padding:15px 35px;
background:#FFD700;
color:#000;
font-weight:bold;
text-decoration:none;
border-radius:50px;
transition:.3s;
margin:10px;
}

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

section{
padding:90px 8%;
}

h2{
font-size:38px;
text-align:center;
color:#FFD700;
margin-bottom:45px;
}
.service-box{
background:#181818;
padding:25px;
margin:20px 0;
border-left:5px solid #FFD700;
border-radius:10px;
transition:.3s;
}

.service-box:hover{
transform:translateY(-8px);
box-shadow:0 0 20px rgba(255,215,0,.35);
}

.gallery-box{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-top:30px;
}

.gallery-box p{
background:#181818;
padding:20px;
text-align:center;
border-radius:10px;
border:1px solid #FFD700;
}

.contact{
text-align:center;
}

.contact p{
font-size:18px;
margin:15px 0;
}

footer{
background:#000;
text-align:center;
padding:25px;
margin-top:40px;
border-top:1px solid #FFD700;
}

@media(max-width:768px){

header{
flex-direction:column;
padding:15px;
}

nav{
margin-top:10px;
}

nav a{
display:inline-block;
margin:8px;
}

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

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

h2{
font-size:28px;
}

.gallery-box img{
width:100%;
height:250px;
object-fit:cover;
border-radius:10px;
border:2px solid #FFD700;
transition:.3s;
}

.gallery-box img:hover{
transform:scale(1.05);
}
@media (max-width:768px){

header{
flex-direction:column;
padding:16px 5%;
}

.logo{
font-size:24px;
gap:14px;
}

.logo img{
width:72px;
height:72px;
}

nav{
margin-top:10px;
}

nav a{
display:inline-block;
margin:0 10px;
font-size:16px;
font-weight:600;
}

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

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

h2{
font-size:28px;
}

.gallery-box{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:10px;
}

.gallery-box img{
width:100%;
height:140px;
object-fit:cover;
border-radius:10px;
}
}
.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
width:60px;
height:60px;
background:#25D366;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
box-shadow:0 5px 15px rgba(0,0,0,.4);
z-index:999;
transition:.3s;
}

.whatsapp-float:hover{
transform:scale(1.1);
}

.whatsapp-float img{
width:35px;
height:35px;
  }  
.lightbox{
display:none;
position:fixed;
top:0;
left:0;
width:100vw;
height:100vh;
background:rgba(0,0,0,.9);
justify-content:center;
align-items:center;
z-index:999999;
}

.lightbox img{
max-width:90%;
max-height:90%;
border-radius:10px;
border:3px solid #FFD700;
}

.close{
position:absolute;
top:20px;
right:30px;
font-size:40px;
color:#fff;
cursor:pointer;
z-index:1000000;
}
  .reviews{
padding:60px 20px;
background:#111;
text-align:center;
}

.reviews h2{
color:#FFD700;
margin-bottom:30px;
}

.review-box{
background:#1d1d1d;
padding:20px;
margin:20px auto;
max-width:700px;
border-radius:12px;
box-shadow:0 0 10px rgba(255,215,0,.2);
}

.review-box h3{
color:#FFD700;
font-size:22px;
margin-bottom:10px;
}

.review-box p{
color:#fff;
line-height:1.6;
}

.review-box strong{
color:#FFD700;
}
