*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Segoe UI', sans-serif;
}

body{
  background:#f5f5f5;
  color:#111;
}

/* COMMON PAGE HERO */

.page-hero{
  position:relative;
  height:350px;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.page-hero::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:60%;
  height:100%;
  background:#16a34a;
  clip-path:polygon(0 0, 100% 0, 80% 100%, 0 100%);
  opacity:0.9;
  z-index:1;
}

.page-hero h1{
  position:relative;
  z-index:2;
  color:#fff;
  font-size:clamp(50px,6vw,80px);
  margin-left:8%;
}


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

/* HEADER */

.header{
  background:#fff;
  border-bottom:1px solid #eee;
  position:relative;
  z-index:1000;  
}

.logo-box{
  display:flex;
  align-items:center;
  gap:8px;
}

.logo{
  width:55px;
  height:55px;
}

.company-name{
  font-size:18px;
  font-weight:600;
}

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

.menu {
  list-style:none;
  display:flex;
  gap:30px;
}

.menu li {
  list-style:none;
}

.menu a {
  text-decoration:none;
  color:#111;
  font-weight:600;
}

.hamburger {
  display:none;
  font-size:26px;
  cursor:pointer;
}

.menu a.active{
  background:#16a34a;
  color:#fff;
  padding:8px 18px;
  border-radius:6px;
}

/* HERO */

.about-hero{
  height:350px;
  background:url("Assets/bg143.jpg") center/cover no-repeat;
  position:relative;
}

.about-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
  display:flex;
  align-items:center;
  padding-left:8%;
}

.about-overlay h1{
  color:#fff;
  font-size:60px;
}

/* CONTENT */

.about-content{
  padding:80px 0;
}

.about-grid{
  display:flex;
  align-items:center;
  gap:60px;
}

.about-text{
  flex:1;
}

.about-text h2{
  font-size:36px;
  margin-bottom:20px;
}

.about-text p{
  line-height:1.7;
  margin-bottom:15px;
}

.about-image{
  flex:1;
}

.about-image img{
  width:100%;
  height:425px;
  object-fit:cover;
  border-radius:20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about-image img:hover{
  transform:translateY(-8px) scale(1.02);
  box-shadow:0 25px 60px rgba(0,0,0,0.4);
}
/* VISION */

.vision-section{
  background:linear-gradient(135deg,#051F20,#235347,#DBF0DD);
  color:#fff;
  padding:80px 0;
}

.vision-grid{
  display:flex;
  align-items:center;
  gap:60px;
}

.vision-left{
  flex:1;
}

.vision-left h2{
  font-size:32px;
  margin-bottom:20px;
}

.vision-right{
  flex:1;
}

.vision-right img{
  width:100%;
  height:350px;
  object-fit:cover;
  border-radius:20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vision-right img:hover{
  transform:translateY(-8px) scale(1.02);
  box-shadow:0 25px 60px rgba(0,0,0,0.4);
}

footer{
  background:#000;
  color:#fff;
  text-align:center;
  padding:20px;
}

.contact{
  display:flex;
  gap:50px;
  align-items:stretch;
  justify-content:center;
  flex-wrap:nowrap;
}

.contact-form{
  flex:1;
  max-width:450px;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.contact-form input,
.contact-form textarea{
  padding:15px;
  border:none;
  border-bottom:1px solid #ccc;
  background:transparent;
}

.contact-form button{
  background:#16a34a;
  color:#fff;
  padding:15px;
  border:none;
  border-radius:40px;
  cursor:pointer;
}

.map{
  flex:1;
  max-width:450px;
}

.map iframe{
  width:100%;
  height:400px;
  border:0;
}

/* CONTACT HEADING */

#contact{
  padding-top:100px;
}

.contact-heading{
  text-align:center;
  font-size:clamp(40px,5vw,60px);
  font-weight:700;
  letter-spacing:4px;
  margin-bottom:60px;
  color:#111;
}

/* Optional premium underline */
.contact-heading::after{
  content:"";
  display:block;
  width:80px;
  height:4px;
  background:#16a34a;
  margin:15px auto 0;
  border-radius:2px;
}

@media (max-width: 768px) {
  .service,
  .service.reverse,
  .about-grid,
  .vision-grid,
  .contact {
    flex-direction: column;
    text-align: center;
  }

   .page-hero{
    height:250px;
  }

  .image img,
  .about-image img,
  .vision-right img {
    height: auto;
    max-width: 100%;
  }

  .text {
    align-items: center;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-grid-3x3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4,
  .project-grid-3x3 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 20px 0;
  }

  .text h2 {
    font-size: clamp(28px, 5vw, 36px);
  }

  .company-name {
    font-size: 16px;
  }

  .container {
    width: 90%;
  }

  .contact {
    gap: 30px;
  }

  .hamburger{
    display:block;
  }

  .menu{
    position:absolute;
    top:100%;
    right:15px;      /* move to right side */
    left:auto;       /* remove left */
    width:220px;     /* small box */
    background:rgba(255,255,255,0.95); 
    backdrop-filter:blur(10px);
    flex-direction:column;
    align-items:flex-start;
    padding:20px;
    gap:20px;
    display:none;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    z-index:2000; 
  }

  .menu.active{
    display:flex;
  }
}