html{
scroll-behavior:smooth;
}
.call-button{
position:fixed;
bottom:20px;
left:20px;
background:#25D366;
color:white;
font-size:28px;
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
text-decoration:none;
box-shadow:0 5px 20px rgba(0,0,0,0.4);
z-index:1000;
transition:0.3s;
}

.call-button:hover{
background:white;
transform:scale(1.1);
}

body{
margin:0;
font-family:Arial;
background:#f5f5f5;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
background:#111;
color:white;
position:sticky;
top:0;
}

nav a{
color:white;
margin:15px;
text-decoration:none;
}


.hero{
height:500px;
background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
url("project2.\ jpg");
background-size:cover;
display:flex;
justify-content:center;
align-items:center;
color:white;
text-align:center;
}

.hero button{
padding:12px 30px;
background:orange;
border:none;
font-size:16px;
cursor:pointer;
}

button{
background:linear-gradient(45deg,#ff8c00,#ff3c00);
border:none;
padding:12px 30px;
color:white;
font-weight:bold;
border-radius:30px;
cursor:pointer;
transition:0.3s;
}

button:hover{
transform:scale(1.05);
}

.about{
padding:80px 10%;
background:#f4f4f4;
color:rgb(3, 3, 3);
text-align:center;
}

.about h2{
margin-bottom:40px;
color:#ff6b00;
}

.about-container{
display:flex;
align-items:center;
gap:50px;
flex-wrap:wrap;
justify-content:center;
}

.about-image img{
width:400px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

.about-content{
max-width:500px;
text-align:left;
}

.about-content h3{
margin-bottom:15px;
color:#ff6b00;
}

.about-stats{
display:flex;
gap:30px;
margin-top:30px;
}

.stat{
background:white;
padding:20px;
border-radius:8px;
text-align:center;
width:120px;
transition:0.3s;
}

.stat:hover{
transform:translateY(-8px);
background:white;
color:#ff6b00;
}

.why-section{
padding:80px 10%;
background:#020b1c;
text-align:center;
}

.why-title{
color:white;
font-size:34px;
margin-bottom:50px;
}

.why-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.why-card{
background:#0f1f3a;
padding:35px;
border-radius:15px;
transition:0.4s;
box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

.why-card:hover{
transform:translateY(-10px) scale(1.03);
box-shadow:0 20px 40px rgba(0,0,0,0.6);
}

.why-icon{
font-size:40px;
margin-bottom:15px;
}

.why-card h3{
color:#ff6b00;
margin-bottom:10px;
}

.why-card p{
color:#ccc;
line-height:1.6;
}

.services{
padding:80px 10%;
text-align:center;
background:#f4f4f4;
}

.service-container{
display:flex;
gap:30px;
flex-wrap:wrap;
justify-content:center;
margin-top:40px;
}

.service-box{
background:white;
padding:30px;
width:250px;
border-radius:10px;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
transition:0.3s;
}

.service-box:hover{
transform:translateY(-10px);
box-shadow:0 15px 30px rgba(0,0,0,0.2);
}

.service-container{
display:flex;
justify-content:center;
flex-wrap:wrap;
}

.service-card{
background:#f4f4f4;
padding:25px;
margin:10px;
width:220px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.process{
padding:80px 10%;
text-align:center;
background:#f4f4f4;
color:rgb(5, 0, 0);
}

.process-container{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
margin-top:40px;
}

.process-box{
background:white;  
width:250px;
padding:30px;
border-radius:10px;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
transition:0.3s;
}

.process-box:hover{
transform:translateY(-10px);
box-shadow:0 15px 30px rgba(0,0,0,0.2);   
background:rgb(253, 253, 253);
color:black;
}

.projects{
padding:80px 10%;
background:#f5f5f5;
text-align:center;
}

.projects-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.project-card{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
transition:0.3s;
}

.project-card img{
width:100%;
height:200px;
object-fit:cover;
}

.project-card h3{
margin-top:15px;
}

.project-card p{
padding:0 15px;
}

.project-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 30px rgba(0,0,0,0.2);
}

.gallery{
display:flex;
justify-content:center;
flex-wrap:wrap;
}

.gallery img{
width:100px;
height:100px;
object-fit:contain;
animation: zoomIn 6s forwards;
}
@keyframes zoomIn{
0%{
transform: scale(1);
}
100%{
transform: scale(1.1);
}
}

.video-gallery{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
}

.video-card{
width:360px;
background:#1a1a1a;
border-radius:12px;
overflow:hidden;
cursor:pointer;
transition:0.3s;
}

.video-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,0.5);
}

.video-card video{
width:100%;
height:200px;
object-fit:cover;
}

.video-info{
padding:15px;
text-align:center;
}

.video-info h3{
color:white;
font-size:18px;
}

.video-section{
padding:80px 10%;
background:#f5f5f5;
color:rgb(9, 9, 9);
text-align:center;
}

.video-gallery{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
}

.video-card{
width:300px;
cursor:pointer;
background:#1c1c1c;
border-radius:8px;
overflow:hidden;
transition:0.3s;
}

.video-card img{
width:100%;
}

.video-card:hover{
transform:scale(1.05);
}

.modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
justify-content:center;
align-items:center;
z-index:9999;
}

.modal-content{
max-width:900px;
text-align:center;
color:white;
}

.modal video{
width:100%;
border-radius:8px;
}

.close{
position:absolute;
top:20px;
right:40px;
font-size:40px;
color:white;
cursor:pointer;
}

.reviews{
padding:60px;
background:#f5f5f5;
text-align:center;
}

.review-container{
display:flex;
justify-content:center;
flex-wrap:wrap;
}

.review{
background:#f4f4f4;
padding:20px;
margin:10px;
width:250px;
border-radius:10px;
}

.cost-calculator{
padding:80px 10%;
background:#0f172a;
color:white;
text-align:center;
}

.calculator-box{
background:#1e293b;
padding:40px;
border-radius:15px;
max-width:450px;
margin:auto;
box-shadow:0 20px 50px rgba(0,0,0,0.4);
}

.calculator-box input,
.calculator-box select{
width:100%;
padding:12px;
margin:10px 0;
border:none;
border-radius:8px;
}

.calculator-box button{
background:#ff6b00;
color:white;
padding:12px 25px;
border:none;
border-radius:8px;
cursor:pointer;
font-size:16px;
}

.calculator-box button:hover{
background:#ff8c42;
}

.brochure{
padding:80px 10%;
text-align:center;
background:#0f172a;
color:white;
}

.download-btn{
background:#ff6b00;
padding:15px 30px;
color:white;
text-decoration:none;
border-radius:10px;
font-size:18px;
transition:0.3s;
}

.download-btn:hover{
background:#ff8c42;
}

.contact-section{
  padding:80px 10%;
  text-align:center;
  background:linear-gradient(135deg,#0f172a,#0f172a);
}

.contact-section h2{
  color:white;
  font-size:28px;
  margin-bottom:40px;
}

.contact-card{
  max-width:500px;
  margin:auto;
  background:#1f2c3f;
  padding:40px;
  border-radius:15px;
  box-shadow:0 10px 30px rgba(0,0,0,0.4);
  display:flex;
  flex-direction:column;
  gap:20px;
}

.contact-card input,
.contact-card textarea{
width:100%;
max-width:400px;
margin:0 auto;
display:block;
padding:14px;
border:none;
border-radius:8px;
font-size:16px;
}

.contact-btn{
  background:#ff6b00;
  color:white;
  border:none;
  padding:14px;
  font-size:16px;
  border-radius:8px;
  cursor:pointer;
}

.contact-btn:hover{
  background:#ff7f24;
}

form{
display:flex;
flex-direction:column;
align-items:center;
}

input, textarea{
width:300px;
padding:10px;
margin:10px;
}

.faq{
padding:80px 10%;
background:#0f172a;
color:white;
}

.faq h2{
text-align:center;
margin-bottom:40px;
color:#d4af37;
}

.faq-item{
background:#1c1c1c;
padding:20px;
margin:15px 0;
border-left:4px solid #d4af37;
border-radius:8px;
transition:0.3s;
}

.faq-item:hover{
transform:translateX(10px);
}

.location{
padding:80px 10%;
background:#f4f4f4;
color:#111;
text-align:center;
}

.location h2{
color:black;
margin-bottom:40px;
}

.location-container{
display:flex;
gap:40px;
flex-wrap:wrap;
justify-content:center;
align-items:center;
}

.location-info{
display:flex;
flex-direction:column;
gap:20px;
}

.info-box{
background:white;
padding:20px;
border-radius:10px;
width:250px;
box-shadow:0 10px 20px rgba(0,0,0,0.3);
transition:0.3s;
}

.info-box:hover{
transform:translateY(-8px);
background:#ff6b00;
color:black;
}

.map{
width:450px;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.4);
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:15px 20px;
border-radius:50px;
text-decoration:none;
}

.instagram{
position:fixed;
bottom:80px;
right:20px;
background:#E1306C;
color:white;
padding:15px 20px;
border-radius:50px;
text-decoration:none;
}


footer
{
background:hsl(0, 0%, 2%);
color:white;
text-align:center;
padding:20px;
}.counter{
display:flex;
justify-content:center;
gap:40px;
background:#080808;
color:white;
padding:60px;
}

.counter-box{
text-align:center;
}

.counter-box h2{
font-size:40px;
color:orange;
}
.reveal{
opacity:0;
transform:translateY(60px);
transition:1s;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}