
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial,sans-serif;
  background:#fff;
  color:#111;
}

.container{
  max-width:1400px;
  margin:auto;
  padding:0 40px;
}

.flex-between{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.topbar{
  background:#0a0a0a;
  color:#fff;
  padding:12px 0;
  font-size:14px;
}

.top-left,
.top-right{
  display:flex;
  gap:30px;
}

.top-right a{
  color:white;
  text-decoration:none;
}

.navbar{
  background:white;
  box-shadow:0 4px 18px rgba(0,0,0,.08);
  position:sticky;
  top:0;
  z-index:999;
}

.nav-content{
  height:90px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  flex:0 0 auto;
}

.logo h1{
  font-size:38px;
  font-weight:900;
  white-space:nowrap;
}

.logo p{
  color:#666;
  font-size:14px;
}

nav{
  display:flex;
  gap:40px;
}

nav a{
  text-decoration:none;
  color:#111;
  font-weight:700;
  transition:.3s;
}

nav a:hover{
  color:#facc15;
}

.quote-btn{
  background:#facc15;
  border:none;
  padding:16px 28px;
  border-radius:16px;
  font-weight:800;
  cursor:pointer;
}

.hero{
 min-height:100vh;
padding:120px 0;
  background-image:url('https://images.unsplash.com/photo-1674558346964-e7196a409880?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  background-size:cover;
  background-position:center;
  position:relative;
  display:flex;
  align-items:center;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.58);
}

.hero-container{
  position:relative;
  z-index:10;
}

.hero-left{
  max-width:760px;
}

.hero h2{
  font-size:74px;
  line-height:1;
  color:white;
  font-weight:900;
  text-transform:uppercase;
}

.hero h2 span{
  color:#facc15;
}

.hero p{
  color:#d4d4d8;
  margin-top:30px;
  font-size:22px;
  line-height:1.7;
  max-width:650px;
}

.hero-buttons{
  margin-top:40px;
  display:flex;
  gap:20px;
}

.primary-btn{
  background:#facc15;
  border:none;
  padding:18px 34px;
  border-radius:18px;
  font-weight:900;
  cursor:pointer;
}

.secondary-btn{
  background:transparent;
  border:1px solid rgba(255,255,255,.35);
  color:white;
  padding:18px 34px;
  border-radius:18px;
  font-weight:700;
  cursor:pointer;
}

.features-bar{
  background:#0a0a0a;
  color:white;
  padding:40px 0;
}

.features-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.feature-box h3{
  color:#facc15;
  margin-bottom:12px;
  font-size:24px;
}

.feature-box p{
  color:#cfcfcf;
  line-height:1.6;
}

.services{
  padding:120px 0;
}

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title h2{
  font-size:58px;
  font-weight:900;
}

.section-title h2 span{
  color:#facc15;
}

.section-title p{
  margin-top:20px;
  color:#666;
  font-size:18px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    align-items:stretch;
}

.service-card{

    border:1px solid #e4e4e7;

    border-radius:28px;

    padding:40px;

    transition:.3s;

    display:flex;

    flex-direction:column;

    height:100%;
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.service-card h3{

    font-size:28px;

    margin-bottom:18px;

    min-height:70px;

    display:flex;

    align-items:center;
}

.service-card p{

    color:#666;

    line-height:1.8;

    flex:1;
}

.gallery{
  background:#0a0a0a;
  padding:120px 0;
}

.white h2,
.white p{
  color:white;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.gallery-card{
  overflow:hidden;
  border-radius:30px;
  position:relative;
}

.gallery-card img{
  width:100%;
  height:420px;
  object-fit:cover;
}

.gallery-labels{
  position:absolute;
  top:20px;
  left:20px;
  right:20px;

  display:flex;
  justify-content:space-between;

  z-index:3;
}

.before,
.after{
  padding:12px 18px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
}

.before{
  background:rgba(0,0,0,.8);
  color:white;
}

.after{
  background:#facc15;
  color:black;
}

.project-overlay{
  position:absolute;

  left:20px;
  right:20px;
  bottom:20px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  background:rgba(255,255,255,.15);
  backdrop-filter:blur(15px);

  border:1px solid rgba(255,255,255,.2);

  padding:20px;
  border-radius:20px;

  z-index:3;
}

.project-overlay h3{
  color:white;
  margin-bottom:5px;
  font-size:22px;
}

.project-overlay p{
  color:#e5e5e5;
}

.project-overlay a{
  background:#facc15;
  color:black;
  text-decoration:none;
  font-weight:800;

  padding:10px 10px;
  border-radius:14px;
}

.contact{
  padding:120px 0;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
}

.contact-info h2{
  font-size:58px;
  font-weight:900;
  margin-bottom:24px;
}

.contact-info p{
  color:#666;
  line-height:1.8;
}

.contact-details{
  margin-top:40px;
}

.contact-details p{
  margin-bottom:16px;
}

.form-box{
  background:#f4f4f5;
  padding:40px;
  border-radius:30px;
}

form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

input,
textarea{
  border:1px solid #ddd;
  padding:18px;
  border-radius:16px;
}

form button{
  background:#facc15;
  border:none;
  padding:20px;
  border-radius:18px;
  font-weight:900;
  cursor:pointer;
}

footer{
  background:#0a0a0a;
  color:white;
  padding:50px 0;
}

.footer-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

footer h3{
  font-size:32px;
  margin-bottom:10px;
}

footer p,
footer span{
  color:#a1a1aa;
}

.whatsapp-btn{
  position:fixed;
  bottom:25px;
  right:25px;
  width:70px;
  height:70px;
  background:#25d366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  text-decoration:none;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}

@media(max-width:1100px){

  nav,
  .quote-btn,
  .top-right{
    display:none;
  }

  .hero h2{
    font-size:52px;
  }

  .features-grid,
  .services-grid,
  .gallery-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

}
.about{
  padding:120px 0;
  background:white;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.about-image img{
  width:100%;
  border-radius:30px;
  height:600px;
  object-fit:cover;
}

.section-badge{
  display:inline-block;
  background:#facc15;
  color:black;
  padding:10px 18px;
  border-radius:999px;
  font-weight:800;
  margin-bottom:24px;
}

.about-content h2{
  font-size:56px;
  line-height:1.1;
  margin-bottom:30px;
  font-weight:900;
}

.about-content p{
  color:#666;
  line-height:1.9;
  margin-bottom:24px;
  font-size:18px;
}

.about-stats{
  display:flex;
  gap:50px;
  margin-top:40px;
}

.about-stats h3{
  font-size:48px;
  color:#facc15;
  font-weight:900;
}

.about-stats span{
  color:#666;
}
.testimonials{
  padding:120px 0;
  background:#f8f8f8;
}

.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.testimonial-card{
  background:white;
  padding:35px;
  border-radius:25px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.stars{
  color:#facc15;
  font-size:24px;
  margin-bottom:15px;
}

.testimonial-card p{
  color:#666;
  line-height:1.8;
  margin-bottom:20px;
}

.testimonial-card h4{
  font-weight:900;
}
@media(max-width:1100px){

  nav,
  .quote-btn,
  .top-right{
    display:none;
  }

  .hero h2{
    font-size:52px;
  }

  .features-grid,
  .services-grid,
  .gallery-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .about-grid{
    grid-template-columns:1fr;
  }

  .about-content h2{
    font-size:42px;
  }

}

.logo{
  flex-shrink:0;
}

.logo h1{
  white-space:nowrap;
}

@media(max-width:768px){

  .container{
    padding:0 20px;
  }

  .logo h1{
    font-size:24px;
    line-height:1;
  }

  .logo p{
    font-size:11px;
  }

  .nav-content{
    min-height:90px;
  }

}