:root{
  --black:#0b0b0b;
  --gold:#d4af37;
  --white:#ffffff;
  --gray:#cfcfcf;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Segoe UI, sans-serif;
}

body{
  background:var(--black);
  color:var(--white);
}
.popup {
    display: none;
}

/* TOP HEADER */
.top-header{
  display:flex;
  justify-content:space-between;
  padding:8px 40px;
  font-size:14px;
}

.top-header i{
  color:var(--gold);
  margin-right:5px;
}

.top-right a{
  color:var(--white);
  margin-left:12px;
  font-size:16px;
}

.top-right a:hover{
  color:var(--gold);
}

/* GOLD LINE */
.gold-line{
  height:1px;
  background:var(--gold);
  margin:0 40px;
}

/* MAIN HEADER */
header{
  position: relative;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 40px;
  z-index: 9999;
}
header p{
  color:var(--white);
  text-decoration:none;
  text-align: right;
  /*margin-left:40px;*/
  font-size:15px;
}

header h1{
  color:var(--gold);
  font-size:26px;
}

nav a{
  color:var(--white);
  text-decoration:none;
  margin-left:22px;
  font-size:15px;
}

nav a:hover{
  color:var(--gold);
}

.contact-btn{
  border:1px solid var(--gold);
  padding:6px 16px;
  border-radius:20px;
}

.project-image{
  position: relative;
}
.project-image img{
  width:100%;
  height: 350px;
  border-radius:6px;
}
.project-image span{
  position:absolute;
  bottom: 0px;
  left: 15px;
  color:#d4af37;
 /* background: rgba(0,0,0,0.6);*/
  padding: 8px 12px;
  font-size: 16px;
  margin-left: 500px;
  margin-bottom: 20px;
  }

/* HERO SECTION */
.hero{
 width: 100%;
 height: 600px;
  /*align-items: center;*/
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:20px;
  padding:40px 40px;
  margin-right: 40px;
}
.hero1{
 width: 60%;
 height: 600px;
  /*align-items: center;*/
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:20px;
  padding:40px 40px;
  margin-right: 40px;
}

.hero-image {
  position: relative;
}

.hero-image img{
  width:100%;
  border-radius:6px;
}

.hero-image span{
  position:absolute;
  bottom: 0px;
  left: 15px;
  color:#d4af37;
 /* background: rgba(0,0,0,0.6);*/
  padding: 8px 12px;
  font-size: 16px;
  margin-left: 120px;
  margin-bottom: 20px;
 
}

.consult-btn {
  background: linear-gradient(135deg, #f9b233, #d99a00); 
  color: #000;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  margin-right: 120px;
  
}

.consult-btn:hover {
  background: linear-gradient(135deg, #d99a00, #f9b233);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.estimation-section{
    background:#000;
    padding:80px 20px;
}

.estimation-container{
    max-width:500px;
    margin:auto;
    padding:40px;
    background:#111;
    border:1px solid #d4af37;
    border-radius:10px;
    text-align:center;
}

.estimation-container h2{
    color:#d4af37;
    margin-bottom:30px;
    font-size:28px;
}

.input-box{
    width:100%;
    padding:12px;
    margin:10px 0;
    background:#000;
    border:1px solid #d4af37;
    color:#fff;
    border-radius:5px;
}

.or-text{
    color:#d4af37;
    margin:10px 0;
    font-weight:bold;
}

.total-btn{
    width:100%;
    padding:12px;
    margin-top:15px;
    background:#d4af37;
    border:none;
    color:#000;
    font-weight:bold;
    cursor:pointer;
    border-radius:5px;
    transition:0.3s ease;
}

.total-btn:hover{
    background:#fff;
}

.result{
    margin-top:20px;
    font-size:18px;
    color:#d4af37;
    font-weight:bold;
}


/* FORM */
.hero-form{
  width: 100%;
  height: 550px;
  background:#111;
  padding:30px;
  border:1px solid var(--gold);
  
}
.hero-form1{
  width: 100%;
  height: 550px;
  background:#111;
  padding:30px;
  border:1px solid var(--gold);
  margin-left: 350px;
}
.hero-form h2{
  color:var(--gold);
  margin-bottom:10px;
  
}
.hero-form1 input{
  width:100%;
  padding:10px;
  margin-bottom:14px;
  background:#000;
  border:1px solid #444;
  color:#fff;
}

.hero-form input{
  width:100%;
  padding:10px;
  margin-bottom:14px;
  background:#000;
  border:1px solid #444;
  color:#fff;
}
.hero-form1 button{
  width:100%;
  padding:12px;
  background:var(--gold);
  border-radius: 8px;
  font-weight:bold;
  cursor:pointer;
}

.hero-form button{
  width:100%;
  padding:12px;
  background:var(--gold);
  border-radius: 8px;
  font-weight:bold;
  cursor:pointer;
}
.hero-form img{
  width: 350px;
  height: 200px;
  border-radius: 8px;
  margin-bottom: 5px;
  
}
.expert-image img{
  width: 100%;
  height: 200px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.about-section {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px;
}
.about-image{
  width: 50%;
  
}
.about-image img {
  width: 100%;
  /*max-width: 400px;*/
  height: 400px;
  border-radius: 10px;
  object-fit: cover;  
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 15px;
}

.about-text p {
  line-height: 1.6;
}



.project_ img{
width: 60%;
height: 100%;
border-radius: 12px;
object-fit: cover;
display: block;
}
.project-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(450px,1fr));
  gap:25px;
  margin-top: 30px;
  margin-left: 20px;
  margin-right: 20px;
}

.project img{
  width:100%;
  height: 70%;
  border-radius:12px;
  object-fit:cover;
  display: block;
  margin-bottom: 10px;
}
.project1 img{
width: 900px;
height: 80%;
border-radius:12px;
  object-fit:cover;
  display: block;
  
}

.project p{
  text-align:center;
  margin-top:8px;
}
.contact-box iframe{
  width:100%;
  height:350px;
  border:0;
}

/* Services Section */
.services-section {
    background: #000;
    padding: 80px 20px;
    text-align: center;
}

.section-title {
    color: #d4af37;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

/* Service Box */
.service-box {
    background: #111;
    padding: 40px 5px;
    border-radius: 10px;
    border: 1px solid #d4af37;
    transition: 0.4s ease;
    color: #fff;
}

.service-box:hover {
    transform: translateY(-10px);
    background: #1a1a1a;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.service-box img{
  width: 300px;
  height: 200px;
  border-radius: 8px;
}

/* Icons */
.service-icon {
    font-size: 50px;
    color: #d4af37;
    margin-bottom: 20px;
}

/* Headings */
.service-box h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: #fff;
}

/* Paragraph */
.service-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* POPUP */
.popup {
  position: fixed;
  top: 150px;
  left: 0;
  width: 40%;
  height: 50%;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  margin-left: 400px;
}

.popup-content {
  /*background: #fff;
  padding: 30px;
  border-radius: 8px;*/
  width:100%;
  padding:30px;
  margin-bottom:14px;
  background:#000000;
  position: relative;
  border:1px solid var(--gold);
  color:#fff;
  z-index: 10000;
}
.popup-content input{
  width:100%;
  padding:10px;
  margin-bottom:14px;
  background:#000;
  border:1px solid #444;
  color:#fff;
}
.popup-content button{
  width:100%;
  padding:12px;
  background:var(--gold);
  border-radius: 8px;
  font-weight:bold;
  cursor:pointer;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}
html {
    scroll-behavior: smooth;
}


/* WHATSAPP */
.whatsapp{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25d366;
  color:#fff;
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  z-index:999;
}

/* CONTACT SECTION */


/* CONTACT PAGE */
.contact-page{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  padding:60px 40px;
  /*margin-left: 400px;*/
}

.contact-left{
  background:#111;
  border:1px solid var(--gold);
  padding:30px;
}

.contact-left img{
  width: 100%;
  height: 300px;
  border-radius: 8px;
}

.contact-left h2{
  color:var(--gold);
  margin-bottom:20px;
}

.contact-left p{
  margin-bottom:12px;
}

.contact-left i{
  color:var(--gold);
  margin-right:8px;
}

.contact-left iframe{
  width:100%;
  height:260px;
  border:1px solid var(--gold);
  margin-top:20px;
}

.contact-form{
  width: 100%;
  background:#111;
  border:1px solid var(--gold);
  padding:30px;
}

.contact-form img{
  width: 100%;
  height: 350px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.contact-form h2{
  color:var(--gold);
  margin-bottom:20px;
}

.contact-form input{
  width:100%;
  padding:10px;
  margin-bottom:14px;
  background:#000;
  border:1px solid #444;
  color:#fff;
}

.contact-form button{
  width:100%;
  padding:12px;
  background:var(--gold);
  border:none;
  font-weight:bold;
  cursor:pointer;
  border-radius: 6px;
}

.contact-section{
  padding:60px 40px;
}

.contact-wrapper{
  display:grid;
  grid-template-columns:1fr 1.5fr;
  gap:30px;
  align-items:center;
}

.contact-details{
  background:#111;
  border:1px solid var(--gold);
  padding:25px;
}

.contact-details p{
  margin-bottom:15px;
  font-size:16px;
}

.contact-details i{
  color:var(--gold);
  margin-right:10px;
}

.map-box iframe{
  width:100%;
  height:300px;
  border:1px solid var(--gold);
}

.why-choose {
  background: 
    linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)),
    url("https://i.imgur.com/JyQ4C9G.png"); /* blueprint style */
  background-size: cover;
  background-position: center;
  font-family: Arial, sans-serif;
}

/* Header */
.why-header {
  padding: 80px 20px 40px;
  max-width: 1200px;
  margin: auto;
}

.why-header h2 {
  color: #3b5d14;
  font-size: 42px;
  letter-spacing: 4px;
  font-weight: 700;
}

/* Green band */
.why-content {
  background: #3b5d14;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: left;
}

/* Boxes */
.why-box {
  color: #fff;
}

.why-box i {
  font-size: 64px;
  margin-bottom: 20px;
  color: var(--gold);
  align-content: center;
}

.why-box h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #000;
}

.projects-section {
  padding: 60px 20px;
  background: #111;
  text-align: center;
}

.projects-section h2 {
  color: #d4af37; /* gold */
  font-size: 32px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.projects-section {
  padding: 60px 20px;
  background: #111;
  text-align: center;
}

.projects-section h2 {
  color: #d4af37;
  font-size: 32px;
  margin-bottom: 30px;
}


.slider {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(212,175,55,0.4);
}

.slides {
  position: relative;
}

.slide {
  width: 100%;
  height: 450px;
  object-fit: auto;
  display: none;
  transition: opacity 0.5s ease;
}

.slide.active {
  display: block;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
}

.arrow:hover {
  background: #d4af37;
  color: #000;
}

.arrow.left {
  left: 15px;
}

.arrow.right {
  right: 15px;
}

/* Responsive */
@media(max-width: 768px) {
  .slide {
    height: 260px;
  }
}



.footer {
  background: #043614;
  color: #fff;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 30px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-box h3 {
  margin-bottom: 15px;
  font-size: 18px;
  text-transform: uppercase;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-box ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-box ul li a:hover {
  text-decoration: underline;
}

.footer-box i {
  margin-right: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.3);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-bottom p {
  font-size: 14px;
}

.footer-bottom span {
  font-weight: bold;
}

.social-icons a {
  color: var(--gold);
  border: 1px solid #fff;
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 10px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #fff;
  color: #3f4e66;
}


/* RESPONSIVE */
@media(max-width:768px){
  .hero{
    grid-template-columns:1fr;
  }
  header{
    flex-direction:column;
    align-items:flex-start;
  }
}
