    /* ===== COLOR PALETTE ===== */
    :root {
      --primary: #077B4D;
      /* Turf Green */
      --accent: #A4CC3D;
      /* Yellow Green */
      --soft: #6FAC78;
      /* Sage Green */
      --dark: #3A8E42;
      /* Forest Green */
      --white: #FFFFFF;
    }

    /* ===== BODY ===== */
    body {
      margin: 0;
      font-family: 'Segoe UI';
      background: linear-gradient(-45deg, var(--soft), var(--white), #e6f4ea, #d1fae5);
      background-size: 400% 400%;
      animation: gradientBG 12s ease infinite;
    }

    /* ===== ANIMATION ===== */
    @keyframes gradientBG {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    /* ===== GLOW ===== */
    body::before {
      content: "";
      position: fixed;
      width: 300px;
      height: 300px;
      background: rgba(7, 123, 77, 0.25);
      filter: blur(120px);
      top: 10%;
      left: 20%;
      z-index: -1;
    }

    /* ===== NAVBAR ===== */
    .navbar {
      display: flex;
      justify-content: space-between;
      padding: 15px 25px;
      background: var(--white);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      color: var(--primary);
    }

    /* ===== HEADER GRID ===== */
    .header-grid {
      display: grid;
      grid-template-columns: repeat(5, 220px);
      justify-content: center;
      gap: 20px;
      padding: 25px 0;
    }

    .header-card {
      border-radius: 16px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: 0.3s;
      text-align: center;
    }

    .header-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .header-title {
      padding: 10px;
      font-weight: 600;
      color: var(--primary);
    }

    .header-card:hover {
      transform: translateY(-6px);
      border-bottom: 4px solid var(--accent);
    }

    /* ===== STATS ===== */
    .stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 15px;
      padding: 20px;
    }

    .card-box {
      background: rgba(255, 255, 255, 0.7);
      padding: 15px;
      border-radius: 10px;
      text-align: center;
      color: var(--dark);
      font-weight: 600;
    }

    /* ===== MAP ===== */
    .map-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      padding: 20px;
    }

    .map-card {
      background: rgba(255, 255, 255, 0.7);
      border-radius: 15px;
      padding: 15px;
    }

    /* 🔥 IMPORTANT: KEEP MAP CONTROLS INSIDE MAP ONLY */
    .map {
      height: 400px;
    }

    /* ===== MODAL ===== */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    .modal-content {
      background: var(--white);
      padding: 20px;
      border-radius: 12px;
      width: 350px;
      max-height: 80vh;
      overflow: auto;
      animation: pop 0.3s ease;
    }

    /* 🔥 HIDE LEAFLET CONTROLS INSIDE MODAL */
    .modal .leaflet-control-container {
      display: none !important;
    }

    @keyframes pop {
      from {
        transform: scale(0.7);
        opacity: 0;
      }

      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    /* ===== FOOTER ===== */
    .footer {
      padding: 20px;
      background: rgba(255, 255, 255, 0.7);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    /* ===== RESPONSIVE ===== */
    @media(max-width:1200px) {
      .header-grid {
        grid-template-columns: repeat(3, 220px);
      }
    }

    @media(max-width:900px) {
      .map-section {
        grid-template-columns: 1fr;
      }

      .header-grid {
        grid-template-columns: repeat(2, 200px);
      }

      .stats {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:480px) {
      .header-grid {
        grid-template-columns: 1fr;
      }
    }

    .leaflet-control-container {
      z-index: 400;
      /* lower than modal */
    }

    .modal {
      z-index: 9999;
    }

    .read-more-btn {
      background: #077B4D;
      color: #fff;
      border: none;
      padding: 8px 14px;
      border-radius: 6px;
      cursor: pointer;
      transition: 0.3s;
    }

    .read-more-btn:hover {
      background: #3A8E42;
    }

    .card-box {
      background: #f4f6f5;
      padding: 10px;
      border-radius: 8px;
      margin-bottom: 10px;
    }

    .action-btn {
      background: #077B4D;
      color: white;
      border: none;
      padding: 6px 12px;
      border-radius: 6px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
    }

    .action-btn:hover {
      background: #3A8E42;
    }



    .logo img {
      height: 50px;
      /* Adjust logo size */
    }

    .menu {
      display: flex;
      gap: 20px;
    }

    .menu a {
      color: rgb(20, 119, 51);
      text-decoration: none;
      font-weight: 500;
      padding: 8px 12px;
      border-radius: 4px;
      transition: background 0.3s;
    }

    .menu a:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .menu {
        display: none;
        flex-direction: column;
        background: #2e7d32;
        position: absolute;
        top: 70px;
        right: 30px;
        padding: 20px;
        border-radius: 8px;
      }

      .menu.active {
        display: flex;
      }

      .menu-btn {
        display: flex;
        flex-direction: column;
        cursor: pointer;
      }

      .menu-btn span {
        height: 3px;
        width: 25px;
        background: white;
        margin: 4px 0;
        transition: 0.4s;
      }
    }

    .close-btn {
      float: right;
      cursor: pointer;
      font-size: 18px;
      color: #333;
    }

    .close-btn:hover {
      color: red;
    }


    /*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
    .section {
      padding: 60px 0;
      background: #f8f9fa;
      font-family: 'Segoe UI', sans-serif;
    }

    .section-title h5 {
      color: #ff6600;
      letter-spacing: 2px;
    }

    .section-title h2 {
      font-size: 32px;
    }

    .contact-wrapper {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
    }

    .contact-info {
      flex: 1;
      min-width: 280px;
    }

    .info-box {
      display: flex;
      align-items: flex-start;
      /* margin-bottom: 25px; */
    }

    .icon {
      width: 50px;
      height: 50px;
      background: #fff1e6;
      color: #ff6600;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      border-radius: 50%;
      margin-right: 15px;
    }

    .contact-form {
      flex: 2;
      min-width: 300px;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 4px;
    }

    .contact-form .row {
      display: flex;
      gap: 15px;
    }

    .contact-form button {
      display: block;
      margin: auto;
      padding: 12px 35px;
      border: none;
      background: #ff6600;
      color: white;
      font-size: 16px;
      border-radius: 25px;
      cursor: pointer;
    }

    .contact-form button:hover {
      background: #e65c00;
    }

    #formMessage {
      text-align: center;
      margin-top: 10px;
      font-weight: 500;
    }


    /* Swiper Pagination Dots Visibility Fix */

    .swiper-pagination {
      position: relative;
      margin-top: 20px;
    }

    .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      background: #999;
      opacity: 1;
    }

    .swiper-pagination-bullet-active {
      background: #0d6efd;
    }

    .menu-btn {
      display: none;
    }


    /* latest css by chatgpt */
    /* ===============================
GLOBAL PAGE LAYOUT FIX
=============================== */

    body {
      line-height: 1.6;
    }

    /* section spacing consistency */
    .section {
      padding: 1px 2%;
    }

    /* container alignment */
    .container {
      max-width: 1200px;
      margin: auto;
    }

    /* navbar spacing fix */
    .navbar {
      padding: 15px 6%;
    }

    /* header spacing improvement */
    .header-grid {
      padding: 40px 6%;
    }

    /* header cards responsive centering */
    .header-card img {
      border-radius: 12px;
    }

    /* maps section spacing */
    .map-section {
      /* padding: 30px 6%; */
      align-items: stretch;
    }

    /* map card styling improvement */
    .map-section>div {
      background: rgba(255, 255, 255, 0.6);
      padding: 15px;
      border-radius: 14px;
    }

    /* gallery spacing */
    .testimonials.section {
      padding: 1px 2%;
    }



    /* contact section width balance */
    .contact-wrapper {
      padding: 10px 0;
    }

 

    /* form spacing improvement */
    .contact-form form {
      padding: 10px;
    }

    /* footer breathing space */
    .footer {
      padding: 40px 6%;
    }

    /* footer grid spacing */
    .footer-grid div {
      line-height: 1.8;
    }

    /* mobile spacing fixes */
    @media (max-width:768px) {

      .section {
        padding: 60px 5%;
      }

      .header-grid {
        gap: 15px;
      }

      .map-section {
        gap: 25px;
      }

      .contact-wrapper {
        gap: 25px;
      }

    }

    /* small mobile fix */
    @media (max-width:480px) {

      .section {
        padding: 50px 20px;
      }

      .navbar {
        padding: 15px 20px;
      }

    }

    /*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  height: 180px;               /* fixed card height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 4px 18px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100%;
   max-height: 120px;
  /* height: 200PX; */
  /* border-radius: 50px; */
  margin: auto;
  /* margin-right: 15px; */
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}


.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {

  position: relative;
}



@media (max-width: 500px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
} 
  
/* HERO */
.hero{height:100vh;position:relative;}
.hero video{width:100%;height:100%;object-fit:cover;}

.hero-content{
  position:absolute;
  top:50%;
  left:10%;
  transform:translateY(-50%);
  color:#fff;
}

/* SECTION */
.section{
  padding:100px 8%;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.card{
  background:rgba(255,255,255,0.8);
  padding:20px;
  border-radius:10px;
  text-align:center;
}

/* FOOTER */
.footer{
  background:#fff;
  padding:40px;
}

/* ANIMATION */
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:1s;
}
.reveal.active{
  opacity:1;
  transform:translateY(0);
}

  
  

/* ===== USER ===== */
.user-box {
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
}

/* ===== CONTENT ===== */
.content {
    padding:20px;
}

/* ===== CARD ===== */
.card {
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

<style>

/* ===== COLOR PALETTE ===== */
:root {
  --primary: #077B4D;
  --accent: #A4CC3D;
  --soft: #6FAC78;
  --dark: #3A8E42;
  --white: #FFFFFF;
}

/* ===== BODY ===== */
body {
  margin: 0;
  font-family: 'Segoe UI';
  background: linear-gradient(-45deg, var(--soft), var(--white), #e6f4ea, #d1fae5);
  background-size: 400% 400%;
  animation: gradientBG 12s ease infinite;
}

@keyframes gradientBG {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 15px 6%;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img { height: 50px; }

.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  padding: 6px 10px;
}

.menu a:hover {
  background: rgba(0,0,0,0.05);
  border-radius: 6px;
}

/* MOBILE */
.menu-btn {
  display: none;
}

@media(max-width:768px){
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 20px;
    top: 70px;
    background: white;
    padding: 15px;
    border-radius: 10px;
  }

  .menu.active { display: flex; }

  .menu-btn {
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }

  .menu-btn span {
    height: 3px;
    width: 25px;
    background: var(--primary);
    margin: 4px 0;
  }
}

/* ===== HERO ===== */
.hero {
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  color: var(--primary);
}

.hero p {
  max-width: 800px;
  margin: 20px auto;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* ===== CARDS ===== */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mv-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  transition: 0.3s;
}

.mv-card:hover {
  transform: translateY(-5px);
}

.mv-card h2 {
  color: var(--primary);
}

/* ===== LIST ===== */
.mission-list li {
  margin: 10px 0;
}

/* ===== SECTORS ===== */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
}

.sector-card {
  background: rgba(255,255,255,0.7);
  padding: 25px;
  border-radius: 16px;
  text-align: center;
}

.sector-card i {
  font-size: 30px;
  color: var(--primary);
}

/* ===== LEADERS ===== */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 20px;
}

.leader-card {
  background: rgba(255,255,255,0.7);
  padding: 20px;
  border-radius: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: rgba(255,255,255,0.7);
  padding: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

/* ===== ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

 

:root {
  --primary: #077B4D;
  --accent: #A4CC3D;
  --white: #ffffff;
}

/* ===== BASE ===== */
body {
  margin: 0;
  font-family: 'Segoe UI';
  background: linear-gradient(-45deg,#e6f4ea,#ffffff,#d1fae5);
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 15px 6%;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo img { height: 50px; }

.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
}

/* ===== TITLE ===== */
.title {
  text-align: center;
  margin-top: 40px;
}

.title h1 {
  color: var(--primary);
  font-size: 2.5rem;
}

.slider-container {
            width: 80%;
            max-width: 800px;
            margin: 50px auto;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            background-color: #fff;
            position: relative;
        }
        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        .slide {
            min-width: 100%;
            box-sizing: border-box;
            padding: 20px;
            text-align: center;
        }
        .slide img {
            max-width: 100%;
            height: auto;
            border-radius: 5px;
        }
        /* Navigation Buttons */
        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            margin-top: -22px;
            padding: 16px;
            color: white;
            font-weight: bold;
            font-size: 18px;
            transition: 0.6s ease;
            border-radius: 0 3px 3px 0;
            user-select: none;
            background-color: rgba(0,0,0,0.5);
        }
        .next {
            right: 0;
            border-radius: 3px 0 0 3px;
        }
        .prev:hover, .next:hover {
            background-color: rgba(0,0,0,0.8);
        }
 
/* ===== SERVICES ===== */
#services {
  padding: 100px 8%;
}

.service-block {
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 80px 0;
}

.service-block.reverse {
  flex-direction: row-reverse;
}

.service-img {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
}

.service-img img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  transition: 1.5s;
}

.service-img:hover img {
  transform: scale(1.1);
}

.service-content {
  flex: 1;
}

.service-content h2 {
  color: var(--primary);
  font-size: 2.2rem;
}

.service-content p {
  margin: 15px 0;
}

.service-content ul {
  padding-left: 20px;
}

.service-content li {
  margin-bottom: 8px;
}

/* MOBILE */
@media(max-width:900px){
  .service-block {
    flex-direction: column !important;
  }

  .service-img img {
    height: 300px;
  }
}

   /* Your Custom Color Palette */
        :root {
            --primary: #077B4D; /* Turf Green */
            --accent: #A4CC3D;  /* Yellow Green */
            --soft: #6FAC78;    /* Sage Green */
            --dark: #3A8E42;    /* Forest Green */
            --white: #FFFFFF;
        }

        /* Animated Background Body */
        body {
            margin: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(-45deg, var(--soft), var(--white), #e6f4ea, #d1fae5);
            background-size: 400% 400%;
            animation: gradientBG 12s ease infinite;
            line-height: 1.6;
            color: #333;
        }

        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Navbar */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 6%;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo h2 { color: var(--primary); margin: 0; font-size: 1.5rem; }

        .menu { display: flex; gap: 25px; }
        .menu a {
            text-decoration: none;
            color: var(--primary);
            font-weight: 600;
            transition: 0.3s;
        }
        .menu a:hover { color: var(--accent); }

        /* Mobile Menu Btn */
        .menu-btn { display: none; cursor: pointer; flex-direction: column; gap: 4px; }
        .menu-btn span { width: 25px; height: 3px; background: var(--primary); }

        /* Hero */
        .hero {
            padding: 80px 20px;
            text-align: center;
        }
        .hero h1 { font-size: 3rem; color: var(--primary); margin-bottom: 10px; }
        .hero p { max-width: 700px; margin: 0 auto; font-size: 1.1rem; color: var(--dark); }

        /* Services Section */
        #services { padding: 40px 8%; }

        .service-block {
            display: flex;
            align-items: center;
            gap: 60px;
            margin: 100px 0;
            opacity: 0;
            transform: translateY(40px);
            transition: 1s ease;
        }

        .service-block.reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .service-block.reverse { flex-direction: row-reverse; }

        .service-img {
            flex: 1;
            overflow: hidden;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            background: var(--white);
        }

        .service-img img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: 1.5s;
            display: block;
        }

        .service-img:hover img { transform: scale(1.08); }

        .service-content { flex: 1; }
        .service-content h2 { 
            color: var(--primary); 
            font-size: 2.5rem; 
            margin-bottom: 20px;
            position: relative;
        }
        .service-content h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--accent);
            margin-top: 10px;
        }

        .service-content p { font-size: 1.1rem; margin-bottom: 20px; }
        
        .service-list {
            list-style: none;
            padding: 0;
        }
        .service-list li {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-weight: 500;
        }
        .service-list li i { color: var(--accent); margin-top: 5px; }

        /* Footer */
        .footer {
            background: rgba(255, 255, 255, 0.8);
            padding: 60px 8% 30px;
            margin-top: 50px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            border-bottom: 1px solid #ddd;
            padding-bottom: 40px;
        }
        .footer h4 { color: var(--primary); margin-bottom: 20px; }
        .footer p, .footer a { color: var(--dark); text-decoration: none; font-size: 0.9rem; }

        /* Responsive */
        @media(max-width: 900px) {
            .service-block, .service-block.reverse { flex-direction: column !important; gap: 30px; }
            .service-img img { height: 350px; }
            .menu { display: none; }
            .menu-btn { display: flex; }
            .menu.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 70px;
                right: 5%;
                background: white;
                padding: 20px;
                border-radius: 12px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }
        }
 
 .services-container {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
            text-align: center;
        }

        .services-container h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .services-container p.subtitle {
            color: #64748b;
            margin-bottom: 50px;
            font-size: 1.1rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .service-card {
            position: relative;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: transform 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .service-card:hover img {
            transform: scale(1.1);
        }

        /* Information Overlay */
        .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.9));
            padding: 30px 20px;
            color: white;
            text-align: left;
            transition: height 0.4s ease;
            height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .service-card:hover .card-overlay {
            height: 100%;
            background: rgba(7, 123, 77, 0.85); /* Primary color at 85% opacity */
            backdrop-filter: blur(5px);
            justify-content: center;
            text-align: center;
        }

        .card-overlay i {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--accent);
            display: none;
        }

        .service-card:hover .card-overlay i {
            display: block;
        }

        .card-overlay h3 {
            margin: 0;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .card-overlay p {
            font-size: 0.95rem;
            opacity: 0;
            margin-top: 15px;
            transition: opacity 0.3s ease;
            display: none;
        }

        .service-card:hover .card-overlay p {
            display: block;
            opacity: 1;
        }

        .btn-more {
            margin-top: 20px;
            padding: 10px 20px;
            background: var(--white);
            color: var(--primary);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            display: none;
        }

        .service-card:hover .btn-more {
            display: inline-block;
        }

        @media (max-width: 768px) {
            .services-grid { grid-template-columns: 1fr; }
        }

.ops-section {
            max-width: 1200px;
            margin: 60px auto;
            padding: 20px;
        }

        /* Top Strengths Bar */
        .strengths-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 80px;
        }

        .strength-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            border-top: 4px solid var(--yellow-green);
            transition: transform 0.3s ease;
        }

        .strength-card:hover { transform: translateY(-10px); }

        .strength-card h3 { color: var(--turf-green); margin-bottom: 10px; font-size: 1.2rem; }
        .strength-card p { color: var(--text-dark); font-size: 0.9rem; line-height: 1.4; }

        /* Core Sectors Grid */
        .sectors-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .sectors-header h2 {
            font-size: 2.5rem;
            color: var(--turf-green);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .sector-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

      

        .sector-box::before {
            content: "";
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            background: var(--yellow-green);
            opacity: 0.2;
            border-radius: 50%;
            z-index: -1;
        }

        .sector-box h4 {
            font-size: 1.5rem;
            margin-top: 0;
            border-left: 4px solid var(--yellow-green);
            padding-left: 15px;
        }

        .sector-box ul {
            padding-left: 20px;
            margin-top: 20px;
        }

        .sector-box li {
            margin-bottom: 10px;
            font-size: 0.95rem;
        }

        @media (max-width: 768px) {
            .sector-grid { grid-template-columns: 1fr; }
        }

.ops-section {
            max-width: 1100px;
            margin: 80px auto;
            padding: 0 20px;
        }

        /* --- Row 1: Operational Strengths (Grid Columns) --- */
        .strengths-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 80px;
        }

        .strength-card {
            background: var(--white);
            padding: 35px 25px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
            border-top: 5px solid var(--accent);
            transition: 0.3s ease;
        }

        .strength-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(7, 123, 77, 0.1);
        }

        .strength-card h3 {
            color: var(--primary);
            font-size: 1.25rem;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .strength-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0;
        }

        /* --- Row 2: Core Sectors (Left Aligned Rows) --- */
        .header {
            text-align: left;
            margin-bottom: 50px;
            border-left: 6px solid var(--accent);
            padding-left: 20px;
        }

        .header h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin: 0;
            text-transform: uppercase;
            font-weight: 800;
        }

        .header p {
            color: var(--text-muted);
            margin-top: 8px;
            font-size: 1.1rem;
        }

        .sectors-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .sector-row {
            display: flex;
            align-items: center;
            gap: 35px;
            padding: 30px;
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
            transition: 0.4s ease;
            border: 1px solid transparent;
        }

        .sector-row:hover {
            border-color: var(--accent);
            transform: translateX(10px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.06);
        }

        /* Animated Icon Styling */
        .icon-box {
            min-width: 80px;
            height: 80px;
            background: #f0fdf4;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }

        .icon-box svg {
            width: 45px;
            height: 45px;
            fill: var(--primary);
            transition: 0.3s;
        }

        @keyframes pulseIcon {
            0% { transform: scale(1); }
            50% { transform: scale(1.15); }
            100% { transform: scale(1); }
        }

        .sector-row:hover .icon-box {
            background: var(--primary);
        }

        .sector-row:hover .icon-box svg {
            fill: var(--white);
            animation: pulseIcon 1.5s infinite ease-in-out;
        }

        /* List Styling */
        .content { flex: 1; }
        .content h3 {
            font-size: 1.6rem;
            color: var(--primary);
            margin: 0 0 15px 0;
        }

        .content ul {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 12px;
        }

        .content li {
            position: relative;
            padding-left: 25px;
            font-size: 1rem;
            color: var(--text-dark);
            font-weight: 500;
        }

        .content li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .sector-row { flex-direction: column; text-align: center; }
            .header h2 { font-size: 2rem; }
            .content li { text-align: left; }
            .header { border-left: none; border-bottom: 4px solid var(--accent); padding-bottom: 10px; }
        }


        .gallery-section { max-width: 1300px; margin: 60px auto; padding: 0 20px; }

        .gallery-header { text-align: center; margin-bottom: 40px; }
        .gallery-header h2 { font-size: 2.5rem; color: var(--primary); text-transform: uppercase; }

        /* Filter Buttons */
        .filter-tabs { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
        .filter-btn {
            padding: 10px 25px;
            border: 2px solid var(--primary);
            background: transparent;
            color: var(--primary);
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: 0.3s;
        }
        .filter-btn.active, .filter-btn:hover {
            background: var(--primary);
            color: white;
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            height: 250px;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }

        .gallery-item:hover img { transform: scale(1.1); }

        .item-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: var(--overlay);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: 0.3s;
            color: white;
            text-align: center;
            padding: 20px;
        }

        .gallery-item:hover .item-overlay { opacity: 1; }

        /* --- Full Screen Lightbox --- */
        .lightbox {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.95);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        .lightbox.active { display: flex; }

        .lightbox img {
            max-width: 95%;
            max-height: 90%;
            object-fit: contain; /* Ensures the full slide/image fits the screen */
            border: 2px solid var(--accent);
            border-radius: 5px;
        }

        .close-lightbox {
            position: absolute;
            top: 30px; right: 40px;
            color: white;
            font-size: 40px;
            cursor: pointer;
            font-weight: bold;
        }

        .cta-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        /* --- The Big Button Card --- */
        .big-cta-btn {
            position: relative;
            background: linear-gradient(135deg, var(--primary) 0%, var(--dark-green) 100%);
            color: var(--white);
            padding: 40px;
            border-radius: 24px;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(7, 123, 77, 0.2);
            border: 1px solid rgba(255,255,255,0.1);
        }

        /* Hover Animation */
        .big-cta-btn:hover {
            transform: scale(1.03) translateY(-5px);
            box-shadow: 0 20px 40px rgba(7, 123, 77, 0.3);
        }

        /* Glassmorphism Shine Effect */
        .big-cta-btn::after {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transition: 0.6s;
        }

        .big-cta-btn:hover::after {
            left: 0;
            top: 0;
        }

        /* Content inside Button */
        .cta-text h3 {
            font-size: 1.8rem;
            margin: 0;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-text p {
            margin: 10px 0 0;
            font-size: 1rem;
            opacity: 0.9;
            color: var(--accent);
            font-weight: 600;
        }

        /* Animated Arrow Icon */
        .cta-icon {
            background: var(--white);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.4s;
        }

        .cta-icon svg {
            width: 30px;
            height: 30px;
            fill: var(--primary);
            transition: 0.4s;
        }

        .big-cta-btn:hover .cta-icon {
            background: var(--accent);
            transform: rotate(-45deg);
        }

        .big-cta-btn:hover .cta-icon svg {
            fill: var(--white);
        }

        /* Variant Color for secondary projects */
        .btn-alt {
            background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
        }
        
        .btn-alt .cta-text p {
            color: var(--white);
        }

        @media (max-width: 600px) {
            .big-cta-btn { padding: 30px; }
            .cta-text h3 { font-size: 1.4rem; }
        }