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

body{
  font-family:'Montserrat',sans-serif;
  color:#111;
}

.container{
  width:94%;
  max-width:1400px;
  margin:auto;
}

header{
  position:fixed;
  width:100%;
  top:0;
  z-index:999;
  background:#fff;
  padding:14px 0;
  box-shadow:0 2px 20px rgba(0,0,0,0.06);
  backdrop-filter:blur(10px);
}

.navbar{
  display:flex;
  align-items:center;
}

nav{
  display:flex;
  gap:25px;
  margin-left:auto;
  margin-right:50px;
}

.logo{
  width:120px;
  height:auto;
  object-fit:contain;
}


nav a{
  text-decoration:none;
  color:#111;
  font-weight:700;
  font-size:14px;
}

.nav-buttons{
  display:flex;
  align-items:center;
  gap:15px;
}

.login-btn{
  text-decoration:none;
  color:#111;
  font-weight:700;
  border:2px solid #111;
  padding:14px 26px;
  border-radius:10px;
  transition:0.3s ease;
}

.login-btn:hover{
  background:#111;
  color:#fff;
  transform:translateY(-3px) scale(1.05);
}

.quote-btn{
  background:#f4c400;
  padding:14px 20px;
  text-decoration:none;
  color:#111;
  font-weight:700;
  border-radius:6px;
  transition:0.3s ease;
}

.quote-btn:hover{
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 10px 25px rgba(244,196,0,0.4);
}

.hero{
  height:100vh;
  background:url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?q=80&w=1600&auto=format&fit=crop') center/cover;
  position:relative;
  display:flex;
  align-items:center;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
}

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

.hero-text{
  color:#fff;
  max-width:650px;
}

.hero-text h1{
  font-size:78px;
  line-height:0.95;
  margin-bottom:25px;
}

.hero-text span{
  color:#f4c400;
}

.hero-text p{
  font-size:22px;
  line-height:1.6;
  margin-bottom:35px;
}

.hero-buttons{
  display:flex;
  gap:20px;
}

.yellow-btn,
.dark-btn{
  transition:0.3s ease;
}

.yellow-btn{
  background:#f4c400;
  color:#111;
  padding:16px 28px;
  text-decoration:none;
  border-radius:6px;
  font-weight:700;

  display:inline-block;
  transition:0.3s ease;
}

.yellow-btn:hover,
.dark-btn:hover{
  transform:translateY(-3px) scale(1.05);
}

.dark-btn{
  background:#111;
  color:#fff;
  padding:16px 28px;
  text-decoration:none;
  border-radius:6px;
  border:1px solid #fff;
  font-weight:700;

  display:inline-block;
  transition:0.3s ease;
}

.dark-btn:hover{
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

.about{
  padding:100px 0;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.about img{
  width:100%;
  border-radius:12px;
}

.small-title{
  color:#f4c400;
  font-weight:700;
  margin-bottom:15px;
}

.about h2,
.projects h2,
.contact h2{
  font-size:52px;
  margin-bottom:25px;
}

.project-card img{
  width:100%;
  height:280px;
  object-fit:cover;
  border-radius:14px;
}

.about h2 span{
  color:#f4c400;
}

.about-text{
  line-height:1.8;
  margin-bottom:30px;
}

.services{
  background:#0f0f0f;
  padding:100px 0;
}

.center{
  text-align:center;
}

.white{
  color:#fff;
}

.yellow{
  color:#f4c400;
}

.services-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:25px;

  margin-top:60px;
}

.service-card{
  position:relative;

  width:calc(25% - 19px);
  max-width:320px;

  height:320px;

  border-radius:8px;
  overflow:hidden;
  cursor:pointer;
}

.service-bg{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s;
}

.service-content{
  position:absolute;
  inset:0;
  z-index:2;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  text-align:center;
  padding:25px;
}


.service-content h3{
  color:#fff;
  font-size:22px;
  line-height:1.3;
  font-weight:800;

  margin-bottom:15px;

  min-height:60px;

  display:flex;
  align-items:center;
  justify-content:center;
}


.service-content p{
  color:#f1f1f1;
  font-size:14px;
  line-height:1.7;

  max-width:220px;
}

.service-card:hover .service-bg{
  transform:scale(1.08);
}

.service-card:hover .service-overlay{
  background:rgba(0,0,0,0.25);
}

.service-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

.projects{
  padding:100px 0;
}

.projects-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  margin-top:50px;
}

.projects-grid a{
  overflow:hidden;
  border-radius:14px;
}

.projects-grid img{
  width:100%;
  height:280px;
  object-fit:cover;
  border-radius:12px;
  transition:0.4s;
}

.projects-grid img:hover{
  transform:scale(1.05);
}

.reviews{
  background:#0a0a0a;
  padding:100px 0;
}

.reviews .white{
  color:#fff;
}
.reviews-grid{
  display:flex;
  gap:30px;
  transition:0.5s ease;
}

.review-card{
  background:#161616;
  padding:40px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 10px 30px rgba(0,0,0,0.35);

  min-width:calc((100% - 60px) / 3);
  cursor:pointer;
  transition:0.4s ease;
}

.stars{
  color:#f4c400;
  font-size:24px;
  margin-bottom:25px;
  letter-spacing:5px;
}

.review-card p{
  font-size:20px;
  line-height:1.9;
  color:#d1d1d1;
  margin-bottom:40px;
}

.review-user span{
  color:#aaa;
  font-size:16px;
}

.review-user img{
  width:70px;
  height:70px;
  border-radius:50%;
  object-fit:cover;
}

.review-user h4{
  font-size:24px;
  color:#0d5b3e;
  margin-bottom:5px;
}

.review-user span{
  color:#777;
  font-size:16px;
}

.review-box{
  background:rgba(255,255,255,0.08);
  padding:50px;
  border-radius:12px;
  margin-top:50px;
  text-align:center;
  color:#fff;
}

.review-box p{
  font-size:22px;
  line-height:1.8;
  margin-bottom:20px;
}

.review-card:hover{
  transform:translateY(-12px);
  border-color:#f4c400;
}

.reviews-slider{
  overflow:hidden;
  width:100%;
}

.reviews-grid{
  cursor:grab;
  touch-action:pan-y;
  will-change:transform;
}

.reviews-grid:active{
  cursor:grabbing;
}

.reviews-slider-wrapper{
  overflow:hidden;
  position:relative;
  margin-top:60px;
  width:100%;
}

.slider-dots{
  display:none;
  justify-content:center;
  gap:12px;
  margin-top:35px;
}

.slider-dots span{
  width:12px;
  height:12px;
  background:#444;
  border-radius:50%;
  cursor:pointer;
  transition:0.35s ease;
}

.slider-dots span.active{
  width:30px;
  border-radius:20px;
  background:#f4c400;
}

.contact{
  background:#f4c400;
  padding:80px 0;
}

.contact-logo{
  width:140px;
  height:auto;
  display:block;
  margin-bottom:10px;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
   align-items:center;
}

.contact-right{
  padding-top:80px;
}

.contact h2{
  font-size:58px;
  max-width:500px;
  line-height:1.1;
}

.contact-item{
  display:flex;
  gap:20px;
  margin-bottom:35px;
  align-items:flex-start;
}

.contact-item h4{
  font-size:15px;
  margin-bottom:8px;
}

.contact-item a,
.contact-item p{
  font-size:18px;
  color:#111;
  text-decoration:none;
  line-height:1.6;
}

.contact-icon{
  font-size:24px;
}

.contact-text{
  margin:25px 0;
  line-height:1.7;
}

.contact-info p{
  margin-bottom:20px;
  font-size:18px;
}

footer{
  background:#0a0a0a;
  color:#fff;
  padding:40px 0;
}

.footer-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.footer-logo{
  width:140px;
}

.menu-toggle{
  display:none;
  font-size:32px;
  font-weight:700;
  cursor:pointer;
  color:#111;
}

/* HIDE MOBILE BUTTONS ON DESKTOP */
.mobile-enquire,
.mobile-login{
  display:none;
}

@media(max-width:991px){

   .menu-toggle{
    display:block;
  }

  /* HEADER */

  .navbar{
    justify-content:space-between;
  }
   .nav-buttons{
    display:none;
  }

  nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;

    flex-direction:column;
    align-items:center;
    gap:25px;

    padding:30px 0;

    display:none;
  }

    nav.active{
    display:flex;
  }

.mobile-enquire,
.mobile-login{
  display:none;
  width:220px;
  text-align:center;
}

.mobile-enquire{
  background:#f4c400;
  color:#111;
  padding:14px;
  border-radius:10px;
  font-weight:700;
  text-decoration:none;
}
  

.mobile-login{
  border:2px solid #111;
  padding:14px;
  border-radius:10px;
  text-align:center;
  text-decoration:none;
  color:#111;
  font-weight:700;
}

  .quote-btn,
  .login-btn{
    padding:10px 16px;
    font-size:12px;
  }

  .logo{
    width:100px;
  }

  /* HERO */
  .hero{
    height:auto;
    padding:180px 0 100px;
  }

  .hero-text{
    max-width:100%;
  }

  .hero-text h1{
    font-size:58px;
  }

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

  /* ABOUT */
  .about-grid{
    grid-template-columns:1fr;
  }

  /* SERVICES */
.services-grid{
  justify-content:center;
}
.service-card{
  width:calc(50% - 15px);
}
  .services-grid .service-card{
    grid-column:auto !important;
  }

  /* PROJECTS */
  .projects-grid{
    grid-template-columns:1fr 1fr;
  }

  /* REVIEWS */
  .review-card{
    min-width:100%;
  }

  /* CONTACT */
  .contact-grid{
    grid-template-columns:1fr;
    gap:50px;
  }

  .contact-right{
    padding-top:0;
  }

}

@media(max-width:600px){

  .container{
    width:92%;
  }

  /* HEADER */
  header{
    padding:12px 0;
  }

  .logo{
    width:80px;
  }

  .quote-btn{
    display:none;
  }

  .login-btn{
    padding:10px 16px;
    font-size:12px;
  }

  /* HERO */
  .hero{
    padding:150px 0 80px;
  }

  .hero-text h1{
    font-size:42px;
    line-height:1;
  }

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

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

  /* ABOUT */
  .about{
    padding:70px 0;
  }

  .about h2{
    font-size:38px;
  }

  /* SERVICES */
  .services-grid{
    grid-template-columns:1fr;
     justify-content:center;
  }

.service-card{
  width:100%;
  max-width:100%;
  height:280px;
}

  /* PROJECTS */
  .projects-grid{
    grid-template-columns:1fr;
  }

  /* CONTACT */
  .contact h2{
    font-size:42px;
  }

  .contact-item a,
  .contact-item p{
    font-size:16px;
  }

  /* FOOTER */
  .footer-content{
    flex-direction:column;
    gap:20px;
    text-align:center;
  }

      .mobile-enquire,
  .mobile-login{
    display:flex;
    justify-content:center;
    align-items:center;
  }

}
@media(max-width:768px){

  .slider-dots{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:25px;
  }

      .mobile-enquire,
  .mobile-login{
    display:flex;
    justify-content:center;
    align-items:center;
  }

}

