/* ========================= */
/* CSS FILE (style.css) */
/* ========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#f5f5f5;
  color:#222;
  overflow-x:hidden;
}

/* ========================= */
/* NAVBAR */
/* ========================= */

nav{
  width:100%;
  padding:18px 8%;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(10px);
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.logo img{
  height:70px;

  /* IMAGE LINK HERE */
  /* Replace with your own image if needed */
}

/* ========================= */
/* NAV LINKS */
/* ========================= */

.nav-links{
  display:flex;
  list-style:none;
  gap:35px;
}

.nav-links a{
  text-decoration:none;
  color:#222;
  font-weight:500;
  transition:0.3s;
}

.nav-links a:hover{
  color:#b88345;
}

/* ========================= */
/* HERO SECTION */
/* ========================= */

.hero{
  height:110vh;
  background:url('./Company-Logo.png');
  background-size:cover;
  background-position:center;
  position:relative;
  display:flex;
  align-items:center;
  padding:0 8%;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

.hero-content{
  position:relative;
  max-width:700px;
  z-index:2;
}

.tagline{
  color:#f3c27a;
  letter-spacing:3px;
  margin-bottom:20px;
  font-weight:500;
}

.hero h1{
  font-size:72px;
  line-height:1.1;
  margin-bottom:25px;
  font-family:'Playfair Display',serif;
  color:white;
}

.hero h1 span{
  color:#f3c27a;
}

.hero-text{
  color:#f1f1f1;
  line-height:1.8;
  margin-bottom:35px;
}

/* ========================= */
/* BUTTONS */
/* ========================= */

.hero-buttons{
  display:flex;
  gap:20px;
}

.btn-primary,
.btn-secondary{
  padding:15px 35px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
  border-radius:5px;
}

.btn-primary{
  background:#b88345;
  color:white;
}

.btn-primary:hover{
  background:#94672f;
}

.btn-secondary{
  border:2px solid #fff;
  color:white;
}

.btn-secondary:hover{
  background:white;
  color:#222;
}

/* ========================= */
/* ABOUT */
/* ========================= */

.about{
  padding:100px 8%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  background:#ffffff;
}

.about-image img{
  width:100%;
  border-radius:12px;
}

.about-content h2{
  font-size:45px;
  margin-bottom:25px;
  font-family:'Playfair Display',serif;
  color:#111;
}

.about-content p{
  line-height:1.9;
  color:#555;
  margin-bottom:20px;
}

.features{
  margin-top:35px;
  display:grid;
  gap:20px;
}

.feature-box{
  background:#fafafa;
  padding:25px;
  border-left:4px solid #b88345;
  box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

.feature-box h3{
  margin-bottom:10px;
  color:#222;
}

/* ========================= */
/* SERVICES */
/* ========================= */

.services{
  padding:100px 8%;
  background:#f8f8f8;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:48px;
  margin-bottom:10px;
  font-family:'Playfair Display',serif;
  color:#111;
}

.section-title p{
  color:#666;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.service-card{
  background:white;
  padding:40px 30px;
  border-radius:10px;
  transition:0.4s;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.service-card:hover{
  transform:translateY(-10px);
}

.service-card h3{
  margin-bottom:15px;
  color:#b88345;
}

.service-card p{
  color:#555;
}

/* ========================= */
/* PROJECTS */
/* ========================= */

.projects{
  padding:100px 8%;
  background:#ffffff;
}

.project-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.project-card{
  overflow:hidden;
  background:white;
  border-radius:10px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.project-image{
  width:100%;
  height:280px;
  background-size:cover;
  background-position:center;
  transition:0.5s;
}

.project-card:hover .project-image{
  transform:scale(1.08);
}

/* ========================= */
/* PROJECT IMAGE PATHS */
/* ========================= */

/* PROJECT 1 IMAGE */
.project1{
  background-image:url('./elevation-img.jpeg');
}

/* PROJECT 2 IMAGE */
.project2{
  background-image:url('./commercial-img.jpeg');
}

/* PROJECT 3 IMAGE */
.project3{
  background-image:url('./plot-img.jpg');
}

.project-info{
  padding:25px;
}

.project-info h3{
  margin-bottom:8px;
  color:#222;
}

.project-info p{
  color:#666;
}
/* ========================= */
/* TESTIMONIALS */
/* ========================= */

.testimonials{
  padding:100px 8%;
  background:#f8f8f8;
}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.testimonial-card{
  background:white;
  padding:35px;
  border-left:4px solid #b88345;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-card p{
  line-height:1.8;
  color:#555;
  margin-bottom:20px;
}

/* ========================= */
/* CONTACT */
/* ========================= */

.contact{
  padding:100px 8%;
  background:#ffffff;
}

.contact-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
}

.contact-info h3{
  font-size:32px;
  margin-bottom:25px;
  color:#111;
}

.contact-info p{
  margin-bottom:18px;
  color:#555;
}

/* ========================= */
/* CONTACT FORM */
/* ========================= */

.contact-form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.contact-form input,
.contact-form textarea{
  padding:15px;
  background:#f5f5f5;
  border:1px solid #ddd;
  color:#222;
  border-radius:5px;
}

.contact-form textarea{
  height:150px;
}

.contact-form button{
  padding:15px;
  border:none;
  background:#b88345;
  color:white;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
  border-radius:5px;
}

.contact-form button:hover{
  background:#94672f;
}

/* ========================= */
/* FOOTER */
/* ========================= */

footer{
  background:#1e2a44;
  color:white;
  padding-top:70px;
}

.footer-container{
  width:85%;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:50px;
  padding-bottom:50px;
}

.footer-box h3{
  margin-bottom:25px;
  font-size:24px;
}

.footer-box p,
.footer-box li{
  color:#dddddd;
  line-height:2;
  list-style:none;
}

.footer-logo{
  width:220px;
  margin-bottom:20px;
}

.social-icons{
  display:flex;
  gap:18px;
  margin-top:20px;
}

.social-icons a{
  width:42px;
  height:42px;
  background:#b88345;
  color:white;
  display:flex;
  justify-content:center;
  align-items:center;
  border-radius:50%;
  text-decoration:none;
  transition:0.3s;
}

.social-icons a:hover{
  background:white;
  color:#1e2a44;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.15);
  text-align:center;
  padding:25px;
  color:#dddddd;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:992px){

  .about{
    grid-template-columns:1fr;
  }

  .service-grid,
  .project-grid,
  .testimonial-grid,
  .contact-container,
  .footer-container{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:52px;
  }

  .nav-links{
    display:none;
  }

  .logo img{
    height:60px;
  }

}
/* ========================= */
/* OWNER SECTION */
/* ========================= */

.owner-section{
  padding:100px 8%;
  background:#f8f8f8;
}

.owner-container{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:70px;
}

/* ========================= */
/* OWNER IMAGE */
/* ========================= */

.owner-image{
  flex:0 0 350px;
}

.owner-image img{
  width:380px;
  height:350px;

  object-fit:cover;

  border-radius:15px;

  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* ========================= */
/* OWNER CONTENT */
/* ========================= */

.owner-content{
  flex:1;
}

.owner-content h2{
  font-size:48px;
  margin-bottom:15px;
  font-family:'Playfair Display',serif;
  color:#111;
}

.owner-content h3{
  font-size:28px;
  color:#b88345;
  margin-bottom:25px;
}

.owner-content p{
  color:#555;
  line-height:1.9;
  margin-bottom:18px;
  font-size:16px;
}

/* ========================= */
/* OWNER DETAILS */
/* ========================= */

.owner-details{
  display:flex;
  gap:25px;
  margin-top:35px;
  flex-wrap:wrap;
}

.owner-box{
  flex:1;
  min-width:180px;

  background:white;

  padding:30px 20px;

  text-align:center;

  border-radius:12px;

  box-shadow:0 4px 15px rgba(0,0,0,0.08);

  transition:0.3s;
}

.owner-box:hover{
  transform:translateY(-8px);
}

.owner-box h4{
  font-size:32px;
  color:#b88345;
  margin-bottom:10px;
}

.owner-box p{
  margin:0;
  color:#555;
  font-size:16px;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:992px){

  .owner-container{
    flex-direction:column;
    text-align:center;
  }

  .owner-image{
    flex:none;
  }

  .owner-image img{
    width:280px;
    height:340px;
  }

  .owner-details{
    justify-content:center;
  }

}

/* ========================= */
/* POPUP */
/* ========================= */

.popup{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  background:rgba(0,0,0,0.6);

  display:flex;
  justify-content:center;
  align-items:center;

  opacity:0;
  visibility:hidden;

  transition:0.4s;

  z-index:5000;
}

.popup.show{
  opacity:1;
  visibility:visible;
}

.popup-content{
  width:90%;
  max-width:420px;

  background:white;

  padding:45px 35px;

  border-radius:14px;

  text-align:center;

  animation:popupAnimation 0.4s ease;
}

.popup-content i{
  font-size:70px;
  color:#28a745;
  margin-bottom:20px;
}

.popup-content h2{
  font-size:34px;
  margin-bottom:15px;
  color:#111;
}

.popup-content p{
  color:#555;
  margin-bottom:30px;
  line-height:1.7;
}

.popup-content button{
  padding:14px 35px;
  border:none;
  background:#b88345;
  color:white;
  font-size:16px;
  font-weight:600;
  border-radius:6px;
  cursor:pointer;
  transition:0.3s;
}

.popup-content button:hover{
  background:#94672f;
}

@keyframes popupAnimation{

  from{
    transform:scale(0.7);
    opacity:0;
  }

  to{
    transform:scale(1);
    opacity:1;
  }

}