/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



body {
  
  color: #E8F5BD;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

/* CONTAINER (IMPORTANT FOR ALIGNMENT) */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* NAVBAR */
/* HEADER SECTION */
/* FLOATING NAVBAR BOX */
.nav-wrapper {
  max-width: 1200px;
  margin: 10px auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 25px;
  background: #ffffff;
  border-radius: 50px;

  /* FULL SOFT SHADOW */
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.04),
    0 10px 25px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(0, 0, 0, 0.03);
}

/* LOGO */
.logo {
  font-size: 20px;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  color: #2d6a4f;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #000;
}

/* CTA BUTTON */
.cta-btn {
  padding: 10px 22px;
  border-radius: 30px;
  border: none;

  background: #2d6a4f;
  color: white;
  font-size: 14px;

  cursor: pointer;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #1b4332;
}



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

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.hero-left h1 {
  font-size: 52px;
  line-height: 1.2;
  margin: 20px 0;
  color: #2d6a4f;
}

.tag {
  display: inline-block;
  padding: 6px 14px; 
  background: #e9f5ec;
  border-radius: 20px;
  font-size: 12px;
  color: #2d6a4f;
}

/* TRUST */
.trust {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: -10px;
  border: 2px solid white;
}

.trust p {
  margin-left: 15px;
  color: #555;
}

/* DESC */
.desc {
  color: #666;
  margin-bottom: 25px;
  max-width: 500px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.primary {
  background: #2d6a4f;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
}

.secondary {
  background: #f0f0f0;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
}

/* MINI IMAGES */
.mini-images {
  display: flex;
  gap: 15px;
}

.mini-images img {
  width: 120px;
  height: 80px;
  border-radius: 15px;
  object-fit: cover;
}

/* RIGHT IMAGE */
.hero-right img {
  width: 100%;
  height: auto;
  object-fit: cover;

  /* CUSTOM SHAPE */
  border-radius: 30px;

  /* ANGLED CUT (TOP LEFT) */
  clip-path: polygon(
    30% 0%,   /* top-left cut */
    100% 0%,
    100% 100%,
    0% 100%,
    0% 30%
  );
}




/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-left h1 {
    font-size: 36px;
  }
}




/* FLOATING ORBS */
/* .floating-elements {
  position: relative;
  width: 350px;
  height: 350px;
} */



/* SECTION LAYOUT */
.about-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  margin: 80px auto;
  max-width: 1200px;
}

/* LEFT IMAGE */
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

/* RIGHT CONTENT */
.about-content {
  background:#36a070; /* ORANGE COLOR */
  color: white;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* TAG */
.about-tag {
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0.8;
}

/* TITLE */
.about-content h2 {
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 20px;
}

/* TEXT */
.about-content p {
  margin-bottom: 25px;
  max-width: 400px;
}

/* BUTTON */
.about-btn {
  background: #1a1a1a;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  width: fit-content;
  margin-bottom: 40px;
  cursor: pointer;
}

/* STATS */
.stats {
  display: flex;
  gap: 20px;
}

.stat-box {
  background: #fff;
  color: #000;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  min-width: 100px;
}

.stat-box h3 {
  font-size: 22px;
}

.stat-box p {
  font-size: 12px;
  color: #666;
}

/* RESPONSIVE */
/* MOBILE RESPONSIVE FIX */
@media (max-width: 900px) {

  .about-modern {
    grid-template-columns: 1fr;
    margin: 40px 15px;
  }

  /* IMAGE FIX */
  .about-image img {
    height: 250px;
    border-radius: 20px 20px 0 0;
  }

  /* CONTENT FIX */
  .about-content {
    padding: 30px 20px;
    border-radius: 0 0 20px 20px;
    text-align: center;
    align-items: center;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-content p {
    max-width: 100%;
    font-size: 14px;
  }

  /* BUTTON CENTER */
  .about-btn {
    margin-bottom: 25px;
  }

  /* STATS FIX */
  .stats {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .stat-box {
    width: 100%;
    padding: 18px;
  }

}




/* ABOUT SECTION */
.about {
  position: relative;
  overflow: hidden;
}

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

/* TEXT */
.about-text h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.about-text .highlight {
  font-size: 20px;
  color: #A2CB8B;
  margin-bottom: 20px;
}

.about-text p {
  color: #C7EABB;
  margin-bottom: 20px;
}

.about-text button {
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(45deg, #84B179, #A2CB8B);
  color: black;
  cursor: pointer;
  transition: 0.3s;
}

.about-text button:hover {
  transform: scale(1.05);
}

/* VISUAL SIDE */
.about-visual {
  position: relative;
  height: 350px;
}

/* GLASS CARDS */
.glass-card {
  position: absolute;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  color: #E8F5BD;
  box-shadow: 0 0 30px rgba(132,177,121,0.2);
  transition: 0.4s;
}

/* POSITIONING */
.card1 {
  top: 20px;
  left: 40px;
}

.card2 {
  top: 140px;
  right: 30px;
}

.card3 {
  bottom: 0;
  left: 100px;
}

/* HOVER FLOAT EFFECT */
.glass-card:hover {
  transform: translateY(-10px) scale(1.05);
}

/* BACKGROUND GLOW */
.about::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #84B179, transparent);
  top: -150px;
  left: -150px;
  filter: blur(120px);
  opacity: 0.2;
}

@keyframes float {
  50% { transform: translateY(-30px); }
}

/* SECTION COMMON */
section {
  padding: 120px 0;
}

/* ABOUT */
.about .container {
  text-align: center;
  max-width: 800px;
}

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

/* PROJECTS */
/* PROJECTS SECTION */
.projects {
  text-align: center;
}

.projects h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #2d6a4f;
}

.project-sub {
  color: #666;
  margin-bottom: 40px;
}

/* GRID */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* CARD */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

/* IMAGE */
.project-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.5s;
}

/* OVERLAY */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;

  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;

  transform: translateY(100%);
  transition: 0.4s;
}

.overlay h3 {
  margin-bottom: 5px;
}

.overlay span {
  font-size: 13px;
  opacity: 0.8;
}

/* HOVER EFFECT */
.project-card:hover img {
  transform: scale(1.1);
}

.project-card:hover .overlay {
  transform: translateY(0);
}

/* =========================
   SERVICES SECTION
========================= */

.services{
  padding: 100px 0;
  overflow: hidden;
}

/* TITLE */
.services h2{
  text-align: center;
  font-size: 40px;
  color: #2d6a4f;
  margin-bottom: 10px;
}

.service-sub{
  text-align: center;
  color: #666;
  margin-bottom: 50px;
}

/* SWIPE CONTAINER */
.service-cards{
  display: flex;
  gap: 25px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;

  padding: 10px 20px 20px;

  scroll-behavior: smooth;
}

/* HIDE SCROLLBAR */
.service-cards::-webkit-scrollbar{
  display: none;
}

.service-cards{
  scrollbar-width: none;
}

/* PREMIUM CARD */
.service-card{
  flex: 0 0 380px;

  scroll-snap-align: center;

  background: white;

  border-radius: 28px;

  padding: 45px 35px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.06);

  border: 1px solid rgba(0,0,0,0.05);

  transition: 0.4s ease;

  position: relative;

  overflow: hidden;
}

/* TOP BORDER EFFECT */
.service-card::before{
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background: linear-gradient(
    90deg,
    #2d6a4f,
    #52b788
  );
}

/* HOVER */
.service-card:hover{
  transform: translateY(-10px);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.1);
}

/* ICON */
.service-icon{
  width: 70px;
  height: 70px;

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

  border-radius: 20px;

  background: #edf7f1;

  margin-bottom: 25px;

  font-size: 30px;
}

/* TITLE */
.service-card h3{
  font-size: 28px;
  color: #1b4332;
  margin-bottom: 15px;
}

/* TEXT */
.service-card p{
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* LIST */
.service-card ul{
  list-style: none;
}

.service-card ul li{
  margin-bottom: 12px;
  color: #2d6a4f;
  font-size: 14px;
}


/* =========================
   SERVICE CONTROLS
========================= */

.service-controls{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;

  margin-bottom: 40px;
}

/* CONTROL BOX */
.service-controls div{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* LABEL */
.service-controls p{
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;

  color: #2d6a4f;

  text-transform: uppercase;
}

/* PREMIUM ROUND BUTTON */
.service-btn{
  /* width: 60px;
  height: 60px; */

  border: none;
  border-radius:20px;

 background: #2d6a4f;
  color: white;
  
padding: 10px 40px;
  font-size: 22px;
  font-weight: bold;

  cursor: pointer;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.08);

  transition: 0.3s ease;
}



/* CLICK EFFECT */
.service-btn:active{
  transform: scale(0.95);
}

/* MOBILE */
@media(max-width:768px){

  .service-controls{
    gap: 18px;
  }

  .service-btn{
    /* width: 52px;
    height: 52px; */

    font-size: 20px;
  }

}


/* CONTACT SECTION */
.contact {
  padding: 120px 0;
  position: relative;
}

/* WRAPPER */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* LEFT INFO */
.contact-info h2 {
  font-size: 38px;
  color: #2d6a4f;
  margin-bottom: 20px;
}

.contact-info p {
  color: #666;
  margin-bottom: 20px;
}

.info-box p {
  margin: 10px 0;
  font-size: 14px;
}

/* FORM BOX */
.contact-form {
  padding: 40px;
  border-radius: 20px;

  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(15px);

  border: 1px solid rgba(0,0,0,0.08);

  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* INPUT GROUP */
.input-group {
  position: relative;
  margin-bottom: 25px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
  background: transparent;
}

/* FLOAT LABEL */
.input-group label {
  position: absolute;
  top: 12px;
  left: 14px;
  color: #888;
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s;
}

/* ACTIVE STATE */
.input-group input:focus + label,
.input-group textarea:focus + label,
.input-group input:valid + label,
.input-group textarea:valid + label {
  top: -8px;
  left: 10px;
  font-size: 12px;
  background: #fff;
  padding: 0 5px;
  color: #2d6a4f;
}

/* BUTTON */
.contact-form button {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;

  background: linear-gradient(45deg, #406537, #5c8048);
  color: rgb(245, 239, 239);
  font-weight: 600;

  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(132,177,121,0.4);
}

/* MAP */
.map-box iframe {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  border: none;

  
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info {
    text-align: center;
  }
}

/* FOOTER */
footer {
  background: #050805;
  text-align: center;
  padding: 50px 20px;
}

footer h3 {
  margin-bottom: 10px;
}

/* BACK TO TOP */
/* #topBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #A2CB8B;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
} */


#topBtn{
  position: fixed;
  bottom: 30px;
  right: 30px;

  width: 55px;
  height: 55px;

  border: none;
  border-radius: 50%;

  background: #2d6a4f;
  color: white;

  font-size: 22px;
  cursor: pointer;

  z-index: 9999;

  opacity: 0;
  visibility: hidden;

  transition: all 0.3s ease;
}

#topBtn:hover{
  transform: translateY(-5px);
  background: #1b4332;
}
/* RESPONSIVE */
@media(max-width: 900px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 900px){
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-visual {
    height: 250px;
  }
}


/* ===============================
   MOBILE NAVBAR
================================ */

.header{
  position: sticky;
  top: 0;
  z-index: 999;
}

.menu-toggle{
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #2d6a4f;
}


/* ===============================
   TABLET RESPONSIVE
================================ */

@media (max-width: 992px){

  .hero-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-left{
    text-align: center;
  }

  .hero-buttons{
     display: flex;
  gap: 15px;
  margin-bottom: 30px;
  }

  .mini-images{
    justify-content: center;
  }

  .trust{
    justify-content: center;
  }

  .hero-left h1{
    font-size: 42px;
  }

  .about-modern{
    grid-template-columns: 1fr;
  }

  .contact-wrapper{
    grid-template-columns: 1fr;
  }

}


/* ===============================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 768px){

  body{
    overflow-x: hidden;
  }

  .container{
    padding: 0 15px;
  }

  .nav-wrapper{
    padding: 15px 20px;
    border-radius: 0px;
    margin: 0px auto;
    position: relative;
  }

  .menu-toggle{
    display: block;
  }

  .nav-links{
    position: absolute;

    top: 80px;
    left: 0;
    right: 0;

    background: white;

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

    padding: 25px;

    border-radius: 20px;

    box-shadow:
      0 10px 30px rgba(0,0,0,0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);

    transition: 0.3s ease;
  }

  .nav-links.active{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .cta-btn{
    display: none;
  }

  .hero{
    padding: 50px 0;
  }

  .hero-left h1{
    font-size: 34px;
    line-height: 1.3;
  }

  .desc{
    font-size: 15px;
  }

  .hero-buttons{
     display: flex;
  gap: 15px;
  margin-bottom: 30px;
  }

  .primary,
  .secondary{
    width: 100%;
  }

  .mini-images img{
    width: 100px;
    height: 70px;
  }

  .projects h2,
  .services h2,
  .contact-info h2,
  .about-content h2{
    font-size: 30px;
  }

  .project-grid{
    grid-template-columns: 1fr;
  }

  .service-card{
    min-width: 85%;
  }

  .stats{
    flex-direction: column;
  }

  .about-content{
    padding: 35px 20px;
  }

  .contact-form{
    padding: 25px;
  }

  .map-box iframe{
    height: 250px;
  }

  footer{
    padding: 40px 20px;
  }

  #topBtn{
    width: 50px;
    height: 50px;
    font-size: 20px;
    bottom: 20px;
    right: 20px;
  }

}




/* =========================
   NAV WRAPPER
========================= */

.nav-wrapper{
  position: relative;
}

/* =========================
   MOBILE MENU BUTTON
========================= */

.menu-toggle{
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #2d6a4f;
  transition: 0.3s;
}

/* .menu-toggle:hover{
  transform: rotate(90deg);
} */

/* =========================
   PREMIUM MOBILE MENU
========================= */

@media(max-width:900px){

  .menu-toggle{
    display: block;
    z-index: 1001;
  }

  /* NAVIGATION */
 .nav-links{
  position: absolute;

  top: 80px;
  left: 0;
  width: 100%;

  padding: 15px;

  background: white;

  display: flex;
  flex-direction: row;
  align-items: center;

  gap: 15px;

  overflow-x: auto;
  white-space: nowrap;

  scrollbar-width: none;

  border-radius: 0px 0px 10px 10px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.08);

  opacity: 0;
  visibility: hidden;

  transform: translateY(-15px);

  transition: 0.3s;
}

/* HIDE SCROLLBAR */
.nav-links::-webkit-scrollbar{
  display: none;
}

  /* ACTIVE */
  .nav-links.active{
    opacity: 1;
    visibility: visible;

    transform:
      translateY(0)
      scale(1);
  }

  /* LINKS */
  .nav-links a{
    text-decoration: none;

    color: #2d6a4f;

    font-size: 18px;
    font-weight: 600;

    width: 100%;
    text-align: center;

    padding: 14px;

    border-radius: 14px;

    transition: 0.3s;
  }

  /* HOVER */
  .nav-links a:hover{

    background: #2d6a4f;
    color: white;

    transform: translateX(5px);
  }

  /* HIDE DESKTOP BUTTON */
  .cta-btn{
    display: none;
  }
}



/* =========================
   ABOUT IMAGE SLIDER
========================= */

/* ABOUT SECTION */
.about-modern{
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 80px auto;
  border-radius: 20px;
  overflow: hidden;

  /* FIXED HEIGHT */
  /* height: 500px; */
}

/* LEFT IMAGE PANEL */
.about-image{
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
}

/* IMAGE FIX */
.about-image img{
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;

  transition: opacity 0.6s ease-in-out;
}

/* RIGHT CONTENT */
.about-content{
  height: 500px;

  background: #36a070;
  color: white;

  padding: 60px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ROLE CARD */

.role-card{
  position: absolute;

  bottom: 20px;
  left: 20px;

  background: rgba(255,255,255,0.9);

  padding: 18px 22px;

  border-radius: 18px;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.1);

  max-width: 280px;
}

.role-card h3{
  color: #2d6a4f;
  margin-bottom: 5px;
  font-size: 22px;
}

.role-card p{
  color: #555;
  font-size: 14px;
}




/* =========================
   ABOUT SECTION RESPONSIVE
========================= */

@media (max-width: 900px){

  .about-modern{
    grid-template-columns: 1fr;
    margin: 40px 15px;

    border-radius: 20px;
    overflow: hidden;
  }

  /* IMAGE SECTION TOP */
  .about-image{
    width: 100%;
    height: 300px; /* MOBILE IMAGE HEIGHT */
  }

  .about-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;

    border-radius: 20px 20px 0 0;
  }

  /* CONTENT SECTION BOTTOM */
  .about-content{
    width: 100%;
    height: auto;

    padding: 35px 25px;

    border-radius: 0 0 20px 20px;

    text-align: center;
    align-items: center;
  }

  .about-content h2{
    font-size: 30px;
    line-height: 1.3;
  }

  .about-content p{
    font-size: 15px;
    max-width: 100%;
  }

  /* STATS */
  .stats{
    width: 100%;
    flex-direction: column;
    gap: 15px;
  }

  .stat-box{
    width: 100%;
  }

  /* ROLE CARD FIX */
  .role-card{
    left: 15px;
    right: 15px;
    bottom: 15px;

    max-width: 100%;
  }

}



/* =========================
   SMOOTH WEBSITE SCROLL
========================= */

html{
  scroll-behavior: smooth;
}

/* SECTION ANIMATION */
section{
  opacity: 0;

  transform: translateY(80px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

/* SHOW EFFECT */
section.show{
  opacity: 1;
  transform: translateY(0);
}