/*
Theme Name: Green Cities
Author: WPWebInfotech
Description: Custom WordPress Theme for Green Cities Inc.
Version: 1.0.0
Text Domain: greencities
*/

/* ==========================================================================
   CSS Custom Properties (Tokens)
   ========================================================================== */
:root {
  /* Colors */
  --color-primary: #6cc24a;
  --color-dark: #043024;
  --color-overlay: #1e7f3b;
  --color-text: #333333;
  --color-heading: #000000;
  --color-white: #ffffff;
  --color-footer-bg: #020f19;

  /* Typography */
  --font-heading: "Chivo", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-other: "Fira Sans", sans-serif;
  /* Layout */
  --container-width: 1164px;
  --container-padding: 24px;
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: calc(var(--container-width) + (var(--container-padding) * 2));
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: flex;
  padding: 9px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
  text-align: center;
  justify-content: center;
  gap: 8px;
  align-items: center;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  background-color: var(--color-dark);
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: var(--color-white);
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header__logo img {
  height: 48px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__menu {
  display: flex;
  gap: 38px;
}

.header__menu a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #020f19;
}
.header__menu .menu-item-has-children > a {
  background: url(./assets/images/submenu-arrow.svg)
    no-repeat 0 0;
  background-position: center right;
  padding-right: 14px;
}
.header__menu .current-menu-item.menu-item-has-children > a{
  background: url(./assets/images/green_menu_arrow.svg)
    no-repeat 0 0;
  background-position: center right;
  padding-right: 14px;
}
.header__menu .current-menu-ancestor > a {
  background: url(./assets/images/green_menu_arrow.svg)
    no-repeat 0 0;
  background-position: center right;
  padding-right: 14px;
}
.header__menu .current-menu-item > a,
.footer__menu .current-menu-item a,.header__menu .current-menu-ancestor > a {
  color: #6cc24a;
}
.header__menu a:hover {
  color: var(--color-primary);
}

.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 200;
  border: 1px solid #deecf5;
  border-radius: 6px;
  background: url(./assets/images/menu-toggle.svg)
    no-repeat center;
}

/* .header__toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--color-heading);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.header__toggle.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header__toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.header__toggle.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
} */

@media (max-width: 992px) {
  .header__toggle {
    display: flex;
  }
  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .header__nav.is-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .header__menu {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    /* margin-bottom: 24px; */
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: #000;
  color: var(--color-white);
  padding: 64px 0 20px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 992px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

.footer__col-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 29px;
  color: var(--color-white);
  position: relative;
  padding-bottom: 25px;
  border-bottom: 1px solid #151515;
}

.footer__title-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-primary);
}

.footer__hours {
  background-color: #151515;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.footer__hours ul li {
  margin-bottom: 8px;
  font-size: 16px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
}

.footer__hours ul li:last-child {
  margin-bottom: 0;
}

.footer__hours ul li strong {
  color: var(--color-white);
  display: inline-block;
  min-width: 80px;
  font-weight: 600;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--color-primary);
  border-radius: 50%;
  color: var(--color-white);
  transition: opacity 0.3s ease;
}

.footer__social a:hover {
  opacity: 0.8;
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__contact-bar {
  /* display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr; */
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 32px;
  flex-wrap: wrap;
}
.footer__contact-cell {
  flex: 1;
}
@media (max-width: 992px) {
  .footer__contact-bar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer__contact-bar {
    grid-template-columns: 1fr;
  }
}

.footer__contact-item {
  display: flex;
  align-items: center;

  gap: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer__contact-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 50%;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* .footer__contact-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
} */

.footer__logo {
  margin-bottom: 44px;
}

.footer__logo img {
  height: 48px;
  width: auto;
}

.footer__desc {
  font-size: 16px;
  color: #fff;
  max-width: 300px;
}

.footer__menu li {
  margin-bottom: 12px;
}

.footer__menu a {
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.footer__contact-item {
  display: flex;
  /* align-items: flex-start; */
  gap: 18px;
  margin-bottom: 0px;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}

/* .footer__contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--color-primary);
} */

.footer__bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.footer__menu a:hover,
.footer__contact-cell a:hover {
  color: #6cc24a;
}

/* ==========================================================================
   Home Page Sections
   ========================================================================== */

.section-padding {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: #6cc24a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.section-label--green {
  color: #c6de33;
}
.section-label svg {
  fill: currentColor;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-heading);
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .section-heading {
    font-size: 32px;
  }
}

.btn-primary-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #6cc24a;
  color: #fff;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  border: 2px solid #6cc24a;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.btn-primary-solid:hover {
  background-color: var(--color-dark);
  border-color: var(--color-dark);
  color: #fff;
}

.btn-primary-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: #0f8246;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  border: 2px solid #0f8246;
}
.btn-primary-outline:hover {
  background-color: #0f8246;
  color: #fff;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: #fff;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  border: 2px solid #fff;
}
.btn-outline-white:hover {
  background-color: #fff;
  color: #0f8246;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #ffffff;
  color: #6cc24a;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  border: 2px solid #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.btn-white:hover {
  background: #6cc24a;
  color: #fff;
  border-color: #6cc24a;
}
.news__view-all_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: #6cc24a;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  border: 2px solid #cbe6c1;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.news__view-all_btn:hover {
  background: #6cc24a;
  color: #fff;
  border-color: #6cc24a;
}
/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 48, 36, 0.9) 0%,
    rgba(4, 48, 36, 0.4) 100%
  );
  z-index: -1;
  opacity: 0.6;
}
.hero__content {
  max-width: 700px;
  padding: 97px 0 96px;
  z-index: 1;
  text-align: left;
  margin: 0 !important;
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #6cc24a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  font-size: 18px;
  font-family: var(--font-other);
}
.hero__headline {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 500;
}
.hero__content_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.hero .container {
  max-width: 1194px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 768px) {
  .hero {
    /* min-height: 80vh; */
    min-height: 50vh;
  }
  .hero__headline {
    font-size: 42px;
  }
  .hero__content {
    text-align: center;
    margin: 0 auto;
  }
  .hero__subtitle {
    margin: auto;
    margin-bottom: 30px;
  }
}

/* --- About Section --- */
.about__inner {
  display: grid;
  grid-template-columns: 66% 34%;
  gap: 64px;
  align-items: flex-start;
}
.about__desc {
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 20px;
  font-weight: 500;
}
.about_intro .about__desc_main p {
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 20px;
  font-weight: 500;
}
.about_intro .about__desc_main p:last-child {
  margin-bottom: 0;
}
.about__bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 31px;
  padding: 0;
  list-style: none;
}
.about__bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text);
}
.about__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
}

/* .about__specialized { display: flex; gap: 24px; align-items: flex-start; padding: 32px; background: #fff; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); } */
.about__specialized {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.about__specialized-img {
  flex-shrink: 0;
  width: 347px;
  height: 208px;
  border-radius: 16px;
  overflow: hidden;
}
.about__specialized-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__specialized-placeholder {
  width: 100%;
  height: 100%;
  background: #eee;
}
.about__specialized-text {
  font-size: 14px;
  line-height: 1.6;
}
.about__specialized-text strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  color: var(--color-heading);
}
.about__specialized-text p {
  margin-bottom: 16px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 500;
}
.about-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f8246;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about__specialized-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.4;
  margin-bottom: 12px;
}

.about__image-main img {
  width: 100%;
  border-radius: 18px;
  height: 100%;
  object-fit: cover;
}
.about__image-main {
  height: 100%;
}
.about__image-main-placeholder {
  width: 100%;
  height: 600px;
  background: #e0e0e0;
  border-radius: 18px;
}

@media (max-width: 992px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__image-main {
    order: -1;
  }
  .about__bullets {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .about__specialized {
    flex-direction: column;
  }
  .about__specialized-img {
    width: 100%;
    height: 200px;
  }
}

/* --- Home Services Section --- */
.home-services__box {
  display: grid;
  grid-template-columns: 273px 1fr;
  background-color: #f5f5f5;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-services__intro {
  background-color: #021f18;
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-services__heading {
  color: #fff;
  font-size: 36px;
  margin-bottom: 32px;
  font-family: var(--font-heading);
  line-height: 1.2;
}
.home-services__btn {
  padding: 12px 20px;
  font-size: 13px;
  gap: 12px;
}

.home-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 60px 40px;
  gap: 40px;
}
.home-services__item {
  display: flex;
  flex-direction: column;
  position: relative;
}
.home-services__item::after {
  content: "";
  position: absolute;
  background: #bedbd3;
  width: 1px;
  height: 100%;
  top: 0;
  right: -20px;
}
.home-services__item:last-child::after {
  display: none;
}
.home-services__item-title {
  color: var(--color-heading);
  font-size: 22px;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-weight: 500;
}
.home-services__item-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}
.home-services__item-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #043024;
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 500;
}
.home-services__check {
  flex-shrink: 0;
  display: flex;
}
.home-services__item-link {
  color: #6cc24a;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.home-services__item-link:hover {
  color: #fff;
}
.services__item-img {
  width: 62px;
  height: 62px;
  padding: 0px 15px;
  background: #fff;
  border: 1px solid #bedbd3;
  margin-bottom: 20px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services__item-img img {
  max-height: 34px;
}
.home-services__item p {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 14px;
}
.services_top_part {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.home_services_title_wrap {
  margin-bottom: 12px;
  flex: 1;
}

@media (max-width: 1024px) {
  .home-services__box {
    grid-template-columns: 1fr;
  }
  .home-services__intro {
    padding: 40px;
  }
  .home-services__grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .home-services__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .home-services__item::after {
    width: 100%;
    height: 1px;
    top: auto;
    bottom: -20px;
    left: 0;
  }
}

/* --- Service Popup Modal --- */
.service-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.service-modal.is-open {
  display: flex;
}
.service-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 31, 24, 0.75);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

/* Dialog */
.service-modal__dialog {
  position: relative;
  display: flex;
  flex-direction: row;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  max-width: 860px;
  max-height: 88vh;
  box-shadow: 0 32px 80px rgba(2, 31, 24, 0.3);
  animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.94) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Close Button */
.service-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #043024;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: background 0.2s, transform 0.2s, color 0.2s;
}
.service-modal__close:hover {
  background: #6cc24a;
  color: #fff;
  transform: rotate(90deg);
}

/* Image Column */
.service-modal__image-col {
  position: relative;
  flex: 0 0 42%;
  min-height: 340px;
  overflow: hidden;
}
.service-modal__image-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-modal__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2, 31, 24, 0.1) 0%,
    rgba(2, 31, 24, 0.65) 100%
  );
}
.service-modal__image-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
}
.service-modal__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #6cc24a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
}

/* Content Column */
.service-modal__content-col {
  flex: 1;
  padding: 44px 40px 40px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* Green accent bar above title */
.service-modal__accent {
  width: 40px;
  height: 4px;
  background: #6cc24a;
  border-radius: 4px;
  margin-bottom: 18px;
}
.service-modal__title {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-dark);
  margin-bottom: 14px;
  font-weight: 700;
  line-height: 1.25;
}
.service-modal__desc {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8f4ee;
}

/* Bullet List */
.service-modal__list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-modal__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #043024;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}
.service-modal__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: #6cc24a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* More Content */
.service-modal__more-content {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #e8f4ee;
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.75;
}
.service-modal__more-content p { margin-bottom: 12px; }
.service-modal__more-content ul,
.service-modal__more-content ol { padding-left: 20px; margin-bottom: 12px; }

/* No-image variant — single column */
.service-modal__dialog:not(.has-image) .service-modal__content-col {
  padding: 52px 48px 48px;
  max-width: 580px;
  margin: 0 auto;
  width: 100%;
}

/* Responsive */
@media (max-width: 680px) {
  .service-modal__dialog {
    flex-direction: column;
    max-height: 92vh;
    border-radius: 20px;
  }
  .service-modal__image-col {
    flex: 0 0 220px;
    min-height: 220px;
  }
  .service-modal__content-col {
    padding: 28px 24px 32px;
  }
  .service-modal__title { font-size: 22px; }
}

.service-popup-trigger {
  cursor: pointer;
  border: none;
}

/* --- News Section --- */
.news__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.single-post .news__header {
  justify-content: center;
}

.news__view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #0f8246;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
}
.news__view-all:hover {
  color: var(--color-dark);
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* .news-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.3s; display: flex; flex-direction: column; } */
.load-more-wrap.text-center {
    text-align: center;
    margin-top: 60px;
}
.news-card {
  overflow: hidden;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-5px);
}
.news-card__image {
  height: 240px;
  position: relative;
  overflow: hidden;
}
.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.news-card__image-placeholder {
  width: 100%;
  height: 100%;
  background: #eee;
  border-radius: 16px;
  object-fit: cover;
}
.news__header-left .section-heading {
  margin-bottom: 0px;
}
/* .news-card__content { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; } */
.news-card__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.news-card__meta {
  margin-bottom: 16px;
}
.news-card__date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
}
.news-card__title {
  font-size: 20px;
  font-family: var(--font-heading);
  margin-bottom: 20px;
  line-height: 1.4;
  flex-grow: 1;
  font-weight: 600;
}
.news-card__title a {
  color: var(--color-heading);
}
.news-card__title a:hover {
  color: #0f8246;
}
.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #6cc24a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
}
.news-card__content .image-categories {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  text-transform: uppercase;
  padding: 8px 10px;
  border: 1px solid #d1e9e2;
  border-radius: 6px;
}
.news-card__meta {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed #bedbd3;
  margin-bottom: 14px;
}
@media (max-width: 992px) {
  .news__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .news__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .news__grid {
    grid-template-columns: 1fr;
  }
}

/* --- Global CTA Strip --- */
.cta-strip {
  background-color: transparent;
}
.cta-strip__card {
  background-color: #1e7f3b;
  border-radius: 20px;
  /* padding: 60px 80px; */
  display: flex;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  color: #fff;
  padding-right: 89px;
}

.cta-strip__bg-decor-left {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 280px;
  height: auto;
  opacity: 0.2;
  z-index: 1;
  pointer-events: none;
}
.cta-strip__bg-decor-right {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 550px;
  height: auto;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

.cta-strip__content {
  position: relative;
  z-index: 5;
  max-width: 658px;
  padding: 60px 40px 60px 60px;
}
.cta-strip__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #6cc24a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.cta-strip__heading {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 14px 0;
}
.cta-strip__desc {
  font-size: 16px;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-strip__visuals {
  position: relative;
  /* width: 350px; height: 350px;  */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  padding-top: 50px;
}
.cta-strip__earth {
  width: 300px;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

.btn-primary-solid--white-hover:hover {
  background-color: #fff;
  color: #1e7f3b;
  border-color: #fff;
}
.btn-primary-solid--white-hover:hover svg @keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@media (max-width: 1024px) {
  .cta-strip__card {
    padding: 40px;
  }
  .cta-strip__heading {
    font-size: 32px;
  }
  .cta-strip__visuals {
    width: 250px;
    height: 250px;
    margin: auto;
  }
  .cta-strip__earth {
    width: 220px;
  }
  .cta-strip__bg-decor-right {
    width: 350px;
  }
}
@media (max-width: 768px) {
  .cta-strip__card {
    flex-direction: column;
    text-align: center;
    padding: 60px 24px;
    gap: 40px;
  }
  .cta-strip__content {
    max-width: 100%;
  }
  .cta-strip__bg-decor-left {
    width: 180px;
  }
}

/* --- Vision Section --- */
.vision__inner {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 50px;
  align-items: center;
}
.vision__image-wrap {
  position: relative;
  border-radius: 20px;
}
.vision__img {
  width: 100%;
  height: auto;
  display: block;
}
.vision__img-placeholder {
  width: 100%;
  height: 500px;
  background: #eee;
  border-radius: 18px;
  object-fit: cover;
}

.vision__badge {
  position: absolute;
  bottom: -49px;
  left: 50px;
  background-color: #6cc24a;
  color: #fff;
  /* padding: 24px;  */
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 250px;
  overflow: hidden;
}
.vision__badge-number {
  font-size: 46px;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1.4;
  margin-bottom: 4px;
}
.vision__badge-text {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}
.badge-top {
  background: #043024;
  padding: 18px 24px;
  width: 100%;
}
.vision__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.vision__desc {
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 32px;
  line-height: 1.6;
}
.vision__card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  margin-bottom: 0px;
  border: 1px solid #eee;
}
.vision__item {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  position: relative;
}
.vision__item::after {
  content: "";
  position: absolute;
  border-left: 1px dashed #043024;
  width: 100%;
  height: 100%;
  top: 25px;
  left: 20px;
}
.vision__item:last-child {
  margin-bottom: 0;
}
.vision__item:last-child::after {
  display: none;
}
.vision__item-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vision__item-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-heading);
}
.vision__item-desc {
  font-size: 16px;
  color: var(--color-text);
  margin: 0;
  line-height: 1.6;
}
.vision__cta {
  align-self: flex-start;
  margin-top: 30px;
}
.vision-top-section {
  display: grid;
  grid-template-columns: 570px 1fr;
}
.vision-top-part {
  background: url(/wp-content/uploads/2026/04/vision-bg-image.png)
    no-repeat 0 0;
  background-size: cover;
  padding-top: 85px;
  padding-bottom: 264px;
}
.vision-top-section h2 {
  color: #fff;
}
.vision-top-section p {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.vision-section-bottom {
  margin-top: -260px;
}
.vision-badge-bottom {
  padding: 13px 24px;
  width: 100%;
}
.vision-desc {
  display: flex;
}
.visioncard-img {
  margin-top: 149px;
}
.home-services.section-padding {
  padding-top: 0px;
}
.vision.section-padding {
  padding-top: 19px;
}
.cta-strip.section-padding {
  padding-top: 0px;
}

.vision_content p:last-child {
  margin-bottom: 0;
}
.services-btn {
  margin-top: auto;
}
.vision_content {
  margin-top: 40px;
}

/* inner banner css */
.inner-hero {
  position: relative;
}
.innerbanner_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.innerbanner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero_innerbanner_overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    90deg,
    rgba(4, 48, 36, 0.9) 0%,
    rgba(4, 48, 36, 0.4) 100%
  ); */
  background: linear-gradient(
    180deg,
    rgba(4, 48, 36, 0.5) -99.97%,
    #043024 102.84%
  );
}
.inner-hero {
  text-align: center;
}
.inner-hero .container {
  position: relative;
  z-index: 1;
}
.innerbanner_content {
  text-align: center;
  padding: 60px 0;
  max-width: 892px;
  margin: auto;
}
.innerbanner_content h1 {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.2;
  text-transform: capitalize;
}
.innerbanner_content p {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
/* inner banner css */

/* ====== DRIVING FORCE ====== */
.about_intro .section-heading,
.why__copy-head .section-heading {
  margin-bottom: 20px;
}
.about_intro .section-label {
  margin-bottom: 16px;
}
.driving__grid {
  display: grid;
  grid-template-columns: 1fr 445px;
  gap: 40px;
  align-items: start;
}
.driving__text .body p + p {
  margin-top: 1.6em;
}
.driving__photo {
  width: 100%;
  aspect-ratio: 445 / 478;
  border-radius: 18px;
  overflow: hidden;
}
.driving__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-strip {
  margin-top: clamp(24px, 4vw, 40px);
  margin-inline: auto;
  max-width: 710px;
  border-radius: 18px;
  background: #2e8b57;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -70px;
  position: relative;
  left: -120px;
}
.stats-strip .col {
  text-align: center;
  padding: 26px 12px;
  position: relative;
}
.stats-strip .col + .col::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  bottom: 26px;
  width: 1px;
  background: linear-gradient(
    175.07deg,
    rgba(255, 255, 255, 0) 20.84%,
    #ffffff 53.43%,
    rgba(255, 255, 255, 0) 86.03%
  );
}

@media (max-width: 992px) {
  .driving__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .stats-strip {
    max-width: 100%;
    grid-template-columns: repeat(1, 1fr);
    left: 0;
    margin-top: 24px;
  }
  .stats-strip .col + .col::before {
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
  }
}

/* ====== APPROACH (dark card) ====== */

.approach__shell {
  padding: 0 0 80px;
}
.approach {
  background: #043024;
  color: #fff;
  border-radius: 20px;
  padding: clamp(32px, 5vw, 60px);
  overflow: hidden;
}
/* .approach__shell {
  margin-block: clamp(56px, 7vw, 96px);
  padding-inline: clamp(20px, 4vw, 138px);
} */
.approach__shell .approach {
  max-width: 1300px;
  margin-inline: auto;
}
.approach__grid {
  display: grid;
  grid-template-columns: 1fr 445px;
  gap: 40px;
  align-items: center;
}
.approach .gc-eyebrow {
  color: #6cc24a;
}
.gc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #6cc24a;
  line-height: 1;
}
.gc-eyebrow::before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background: #6cc24a;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M2 8 L6.5 12 L14 4' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M2 8 L6.5 12 L14 4' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    center / contain no-repeat;
}
.approach h2 {
  color: #fff;
  margin-top: 4px;
  margin-bottom: 0;
}
.approach .body {
  color: #fff;
  margin-top: 20px;
  font-size: 16px;
  line-height: 160%;
  font-weight: 500;
  font-family: var(--font-body);
}
.checklist {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.check-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
}
.check-row .dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-row .dot::after {
  content: "";
  width: 12px;
  height: 9px;
  background: #043024;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 9'><path d='M1 4.5 L4.5 8 L11 1' stroke='black' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 9'><path d='M1 4.5 L4.5 8 L11 1' stroke='black' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    center / contain no-repeat;
}
/* .approach__photo {
  width: 100%; aspect-ratio: 445 / 453;
  border-radius: 20px; overflow: hidden;
  background: url('/wp-content/uploads/2026/05/approach-image.png') center / cover no-repeat;
} */

.stats-strip .num {
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  color: #fff;
}
.stats-strip .lbl {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
  opacity: 0.8;
}

@media (max-width: 1200px) {
  .mission__photo {
    aspect-ratio: 247 / 300;
  }
}
@media (max-width: 1199px) {
  .header__menu {
    gap: 20px;
  }
  .visioncard-img {
    display: none;
  }
  .vision__inner {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .about__inner {
    grid-template-columns: 1fr;
  }
  .header__nav {
    gap: 20px;
  }
  .header__menu a {
    font-size: 13px;
  }
  .driving__grid {
    padding-bottom: 112px;
  }
  .approach__photo img {
    width: 100%;
  }
  .mission__photo {
    aspect-ratio: inherit;
  }
}

@media (max-width: 991px) {
  .approach__shell {
    padding: 0 0 60px;
  }
  .approach__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .checklist {
    grid-template-columns: 1fr;
  }
  .approach__shell {
    padding: 0 0 40px;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .home-services__item:nth-child(2)::after {
    display: none;
  }
  .vision__inner {
    gap: 80px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer__col-title {
    border-bottom: none;
  }
  .vision.section-padding {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .header__nav{
    height: 100%;
  }
  .header__nav ul > li {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .header__nav > ul {
    height: 100%;
  }
  .header__nav ul > li ul.sub-menu li {
    display: block;
    height: auto;
  }
  .submenu-toggle {
    display: none;
  }
  .menu-item-has-children {
    position: relative;
  }
  .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 0 0 10px 10px;
    padding: 10px 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      visibility 0.3s ease;
    z-index: 99;
    overflow: hidden;
  }
  .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .sub-menu li a {
    display: block;
    padding: 12px 20px;
    color: #111;
    text-decoration: none;
    transition: background 0.2s ease;
  }

  .sub-menu li a:hover {
    background: #f5f5f5;
  }
}
@media (max-width: 992px) {
  .vision__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .vision__visual {
    order: -1;
  }
  .vision-top-section {
    grid-template-columns: 1fr;
    gap: 0px;
  }
  .driving__grid {
    padding-bottom: 0;
  }
  .stat-card.s2 {
    flex-direction: row;
    align-items: flex-start !important;
  }
}
@media (max-width: 991px) {
  .cta-strip__content {
    padding: 0;
  }
  .hero__content_wrap {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  /* .vision__badge { width: 120px; padding: 16px; bottom: 20px; left: 20px; } */
  .vision__badge-number {
    font-size: 32px;
  }
  .vision__card {
    padding: 24px;
  }
  .vision__badge {
    bottom: 20px;
  }
}

/* --- About Page: Intro Section --- */
.about-intro__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: flex-start;
}
.about-intro__heading {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 32px;
}
.about-intro__text p {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-intro__stats {
  background-color: #0f8246;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  color: #fff;
  box-shadow: 0 20px 40px rgba(15, 130, 70, 0.15);
}
.about-intro__stat-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-intro__stat-number {
  font-size: 42px;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1;
}
.about-intro__stat-label {
  font-size: 13px;
  opacity: 0.9;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about-intro__stat-divider {
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px;
}

.about-intro__image-wrap {
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}
.about-intro__img {
  width: 100%;
  height: auto;
  display: block;
}
.about-intro__img-placeholder {
  width: 100%;
  height: 600px;
  background: #eee;
}

@media (max-width: 1200px) {
  .about-intro__inner {
    gap: 40px;
  }
  .about-intro__heading {
    font-size: 40px;
  }
}
@media (max-width: 992px) {
  .about-intro__inner {
    grid-template-columns: 1fr;
  }
  .about-intro__visual {
    order: -1;
  }
  .about-intro__stats {
    margin-top: 32px;
  }
}
@media (max-width: 768px) {
  .about-intro__heading {
    font-size: 32px;
  }
  .about-intro__stats {
    flex-direction: column;
    gap: 32px;
    padding: 40px 24px;
  }
  .about-intro__stat-divider {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero__content {
    padding: 40px 0;
  }
  .hero__label {
    font-size: 12px;
  }
  .hero__headline {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .hero__subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .section-padding {
    padding: 40px 0;
  }
  .about__inner {
    gap: 20px;
  }
  .section-heading {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .about__desc {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .about__bullets li {
    font-size: 14px;
  }
  .about__check {
    width: 18px;
  }
  .about__bullets {
    margin-bottom: 20px;
  }
  .about__specialized {
    gap: 20px;
  }
  .about__specialized-text p {
    margin-bottom: 20px;
  }
  .home-services.section-padding {
    padding-top: 20px;
  }
  .home-services__intro {
    text-align: center;
  }
  .home-services__heading {
    font-size: 24px;
  }
  .section-label {
    font-size: 12px;
  }
  .home-services__heading {
    margin-bottom: 18px;
  }
  .home-services__grid {
    padding: 20px 12px;
  }
  .home-services__item-title {
    font-size: 20px;
  }
  .home-services__item-list {
    margin-bottom: 8px;
  }
  .vision-top-part {
    padding-top: 40px;
  }
  .vision-top-section p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .vision__img-placeholder {
    height: 333px;
  }
  .vision-top-part {
    background: none;
  }
  .vision.section-padding {
    background: url(/wp-content/uploads/2026/04/vision-bg-image.png)
      no-repeat 0 0;
    background-size: cover;
  }
  .vision__badge {
    position: absolute;
    bottom: -35px;
    width: 187px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .vision__badge-text {
    font-size: 12px;
  }
  .vision-badge-bottom {
    padding: 5px 20px;
  }
  .visioncard-img {
    display: none;
  }
  .vision__item-title {
    font-size: 20px;
  }
  .vision__card {
    padding: 40px 12px;
  }
  .vision__item-desc {
    font-size: 14px;
  }
  .vision__item {
    margin-bottom: 0px;
    padding-bottom: 40px;
  }
  .vision__item:last-child {
    padding-bottom: 0px;
  }
  .vision__cta {
    margin-top: 20px;
  }
  .vision-desc {
    margin-top: 20px;
  }
  section.news.section-padding {
    padding: 60px 0;
  }
  .news__header-right {
    display: none;
  }
  .news__header {
    margin-bottom: 8px;
  }
  .news__grid {
    gap: 12px;
  }
  .cta-strip__content {
    padding: 0;
    text-align: left;
  }
  .cta-strip__card {
    padding: 40px 12px 0 12px;
  }
  .cta-strip__heading {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .cta-strip__desc {
    font-size: 12px;
    margin-bottom: 18px;
  }
  .cta-strip__visuals {
    padding-top: 10px;
    width: 299px;
  }
  .footer {
    padding-top: 60px;
  }
  .footer__logo {
    margin-bottom: 16px;
  }
  .footer__desc {
    font-size: 14px;
  }
  .footer__grid {
    gap: 30px;
  }
  .footer__social {
    justify-content: center;
  }
  .footer__contact-bar {
    gap: 20px;
    padding: 30px 0;
  }
  .footer__contact-icon {
    width: 42px;
    height: 42px;
  }
  .vision_content {
    margin-top: 0px;
  }
}

/* ====== MISSION ====== */
.mission {
  text-align: center;
  padding-bottom: 80px;
}
.mission .section-label {
  margin-bottom: 0;
}
.mission .gc-eyebrow {
  display: inline-block;
}
.mission h2 {
  max-width: 1035px;
  margin: 12px auto 0;
}
.mission__grid {
  margin-top: clamp(32px, 5vw, 30px);
  display: grid;
  grid-template-columns: 484px 1fr;
  gap: 24px;
  text-align: left;
  align-items: stretch;
}
.mission__photo {
  aspect-ratio: 458 / 404;
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #d9d9d9;
}
.mission__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mission__right {
  display: flex;
  flex-direction: column;
}
.mission__right .right-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #000;
  margin-bottom: 12px;
}
.mission__right-cont p {
  font-size: 16px;
  line-height: 160%;
  color: #333333;
  font-weight: 500;
}
.mission__right-cont {
  margin-bottom: 30px;
}
.mission__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stat-card {
  border-radius: 18px;
  padding: 30px 20px;
  overflow: hidden;
  background: linear-gradient(
    360deg,
    rgba(108, 194, 74, 1) 0%,
    rgba(30, 127, 59, 1) 100%
  );
  color: #fff;
  min-height: 254px;
  display: flex;
  flex-direction: column;
}
.stat-card.s2 {
  padding: 20px;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  background: url("/wp-content/uploads/2026/05/eco-bag.png");
  background-color: rgba(108, 194, 74, 0.28);
  background-position: center bottom;
  background-repeat: no-repeat;
}
.stat-card.s2 p {
  color: #2e8b57;
  font-size: 14px;
  line-height: 140%;
}

.stat-card .num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 140%;
  color: #fff;
}
.stat-card .cap {
  margin-top: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
}
.stat-card .divider {
  margin: 6px 0 15px;
  height: 1px;
  background: rgb(214 238 205 / 23%);
  position: relative;
  left: -20px;
  width: calc(100% + 40px);
}
.stat-card .divider + .feature {
  margin-top: 0;
}
.stat-card .feature {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
}
.stat-card .feature .tick {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  position: relative;
  margin-top: 5px;
}
.stat-card .feature .tick::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #0ba449;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M3 6 L5.5 8.5 L9 4.5' stroke='black' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M3 6 L5.5 8.5 L9 4.5' stroke='black' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    center / contain no-repeat;
}

@media (max-width: 991px) {
  .mission__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .mission__cards {
    grid-template-columns: 1fr;
  }
  .mission {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .mission {
    padding-bottom: 40px;
  }
  .mission__photo {
    aspect-ratio: auto;
  }
}

/* ====== WHY CHOOSE US ====== */
.why {
  background: rgba(214, 238, 205, 0.33);
  padding: 80px 0;
}
.why__grid {
  display: grid;
  grid-template-columns: 405px 1fr;
  gap: 40px;
  align-items: stretch;
}
.why__photo {
  aspect-ratio: 405 / 532;
  border-radius: 18px;
  overflow: hidden;
  background: #d9d9d9;
}
.why__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 50%;
}
.why__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why__features {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 265px;
  gap: 32px;
  align-items: start;
}
.why__features .feats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 414px;
}
.feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feat .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #bedbd3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feat svg {
  width: 19px;
  height: 19px;
}
.feat .icon img {
  width: 19px;
  height: 19px;
  object-fit: contain;
}

.feat h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  color: #000;
  margin: 7px 0 0;
}
.feat p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 160%;
  color: #333333;
  font-weight: 400;
}
.award-card {
  border-radius: 18px;
  background: #333;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
  min-height: 266px;
}
.award-card .badge {
  width: 80px;
  height: 80px;
  margin-bottom: 23px;
}
.award-card .title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  text-transform: capitalize;
}
.award-card .title span {
  font-size: 24px;
  display: block;
}
.award-card .sub {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 110%;
  opacity: 0.7;
  color: #fff;
}

@media (max-width: 1200px) {
  .why__photo {
    aspect-ratio: 190 / 384;
  }
}

@media (max-width: 991px) {
  .why__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why__features {
    grid-template-columns: 1fr;
  }
  .why {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .why {
    padding: 40px 0;
  }
}

/* =========== Sub Programe Css Start =========== */

.image-content-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
.image-content-main-img,
.image-content-main-text {
  max-width: calc(50% - 20px);
  width: 100%;
}
.image-content-main-img img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 18px;
  max-height: 404px;
  object-fit: cover;
  object-position: 50% 50%;
  min-height: 404px;
}
.image-content-main-text h2 {
  font-size: 20px;
  line-height: 140%;
  font-weight: 600;
  margin-bottom: 20px;
}
.image-content-main-text p {
  font-size: 16px;
  line-height: 160%;
  color: #333333;
  font-family: var(--font-body);
  margin-bottom: 16px;
  font-weight: 500;
}
.image-content-main-text p:last-child {
  margin-bottom: 0;
}
.image-content {
  padding: 80px 0;
}
.image-content + .image-content {
  padding-top: 0;
}
/* .image-content + .image-content .image-content-main {
  flex-direction: row-reverse;
} */

.image-content:nth-child(odd) .image-content-main {
  flex-direction: row-reverse;
}
.get-in-touch-info a:hover {
  color: #6cc24a;
}
.contact-item-description ul li a {
  margin-bottom: 12px;
  display: inline-block;
}
@media (max-width: 991px) {
  .image-content-main {
    gap: 30px;
    align-items: flex-start;
  }
  .image-content-main-img,
  .image-content-main-text {
    max-width: calc(50% - 15px);
  }
}

@media (max-width: 767px) {
  .image-content {
    padding: 40px 0;
  }
  .image-content + .image-content {
    padding-top: 0;
  }
  .image-content-main-img,
  .image-content-main-text {
    max-width: 100%;
  }
  .image-content-main {
    gap: 20px;
    align-items: flex-start;
  }
  .image-content-main-img img {
    min-height: inherit;
  }
}

/* =========== Sub Programe Css End =========== */

/* =========== Our Team Css Start =========== */

.our-team {
  padding: 0 0 80px;
}
.our-team-head {
  text-align: center;
}
.our-team-main {
  display: flex;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
  height: 100%;
}
.our-team-member {
  max-width: calc(33.333% - 20px);
  width: 100%;
  border: 1px solid #eaeaea;
  padding: 0;
  border-radius: 15px;
  position: relative;
  padding-bottom: 60px;
}
.our-team-member-img {
  width: 100%;
  height: 300px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}
.our-team-member-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.our-team-member-info h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 26px;
  color: #6cc24a;
}
.our-team-member-info span {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
  color: #000;
}
.our-team-member-info p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #000;
}
.our-team-member-info {
  padding: 0 15px;
  display: flex;
  flex-direction: column;
}
.our-team-member-info .footer__social {
  position: absolute;
  bottom: 15px;
}

/* =========== Our Team Css End =========== */

/* =========== Get In Touch Css Start =========== */

.get-in-touch {
  padding: 80px 0;
}

.get-in-touch-main {
  background: rgba(214, 238, 205, 0.33);
  padding: 50px;
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.get-in-touch-main .get-in-touch-info {
  max-width: calc(33.333% - 20px);
  width: 100%;
}
.get-in-touch-info span {
  margin: 10px 0 10px;
  color: #000;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.get-in-touch-info a,
.get-in-touch-info p {
  font-size: 18px;
  line-height: 24px;
  color: #000;
}
.get-in-touch-info a:hover {
  text-decoration: underline;
}
.get-in-touch-info p {
  margin-bottom: 15px;
}
.get-in-touch-info p:last-child {
  margin-bottom: 0px;
}
@media (max-width: 991px) {
  .get-in-touch {
    padding: 60px 0;
  }
  .get-in-touch-main .get-in-touch-info {
    max-width: calc(50% - 15px);
  }
}

@media (max-width: 767px) {
  .get-in-touch {
    padding: 40px 0;
  }
  .get-in-touch-main .get-in-touch-info {
    max-width: 100%;
  }
  .get-in-touch-main {
    padding: 30px 20px;
  }
}

/* =========== Get In Touch Css End =========== */

/* =========== Contact Us Css Start =========== */

.contact-us {
  padding: 0 0 80px;
}
.contact-us-main {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.contact-us-info,
.contact-us-main-form {
  max-width: calc(50% - 20px);
  width: 100%;
}
.contact-us-info .uagb-google-map__iframe {
  width: 100%;
  height: 500px;
}
.contact-us-main-form .form-group {
  margin-bottom: 20px;
}
.contact-us-main-form .form-group label {
  display: inline-flex;
  gap: 2px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #000;
  margin-bottom: 5px;
}
.contact-us-main-form .form-group input,
.contact-us-main-form .form-group textarea {
  border: 1px solid #d1e9e2;
  padding: 8px 15px;
  display: inline-block;
  width: 100%;
  color: #000;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  border-radius: 5px;
  font-family: var(--font-body);
}
.contact-us-main-form .form-group span {
  display: block;
}
.contact-us-main-form .form-group input:focus {
  box-shadow: none;
  outline: none;
}
.contact-us-main-form .form-group label span {
  color: #dc2626;
}
.contact-us-main-form .form-group input::placeholder,
.contact-us-main-form .form-group textarea::placeholder {
  color: #00000087;
}
.contact-us-main-form .form-group textarea {
  height: 180px;
  resize: none;
}
.contact-us-main-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #6cc24a;
  color: #fff;
  padding: 10px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 2px solid #6cc24a;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.contact-us-main-form input[type="submit"]:hover {
  border-color: var(--color-dark);
  background: var(--color-dark);
}
.contact-us-main-form .form-group p {
  display: block;
}
.contact-us-main-form form {
  padding: 30px;
  background: #f5f5f5;
  border: 1px solid #bedbd3;
  border-radius: 20px;
}

@media (max-width: 991px) {
  .contact-us {
    padding: 0 0 60px;
  }
}

@media (max-width: 767px) {
  .contact-us {
    padding: 0 0 40px;
  }
  .contact-us-info,
  .contact-us-main-form {
    max-width: 100%;
  }
}

/* =========== Contact Us Css End =========== */

/* =========== Job Listings Css Start =========== */

.jobs {
  padding: 80px 0;
}
.jobs__head {
  text-align: center;
  margin-bottom: 40px;
}
.jobs__list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: stretch;
}
.job-card {
  max-width: calc(33.333% - 20px);
  width: 100%;
  border: 1px solid #bedbd3;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.job-card:hover {
  border-color: #6cc24a;
  box-shadow: 0 8px 24px rgba(4, 48, 36, 0.08);
  transform: translateY(-2px);
}
.job-card__tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 6px;
  background: #d6eecd;
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #043024;
  text-transform: uppercase;
  margin-bottom: 10px;
  align-self: flex-start;
}
.job-card__title {
  font-family: "Chivo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: #000000;
  margin: 0;
  margin-bottom: 15px;
}
.job-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #333333;
}
.job-card__meta span {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
}
.job-card__meta span::before {
  content: "";
  width: 14px;
  height: 14px;
  background: #6cc24a;
}
.job-card__meta .dept::before {
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'><rect x='2' y='4' width='10' height='8' rx='1' stroke='black' stroke-width='1.3'/><path d='M5 4V3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v1' stroke='black' stroke-width='1.3'/></svg>")
    center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'><rect x='2' y='4' width='10' height='8' rx='1' stroke='black' stroke-width='1.3'/><path d='M5 4V3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v1' stroke='black' stroke-width='1.3'/></svg>")
    center / contain no-repeat;
}
.job-card__meta .location::before {
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'><path d='M7 13C4 9.5 2 7 2 5a5 5 0 1 1 10 0c0 2-2 4.5-5 8Z' stroke='black' stroke-width='1.3'/><circle cx='7' cy='5' r='1.7' stroke='black' stroke-width='1.3'/></svg>")
    center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'><path d='M7 13C4 9.5 2 7 2 5a5 5 0 1 1 10 0c0 2-2 4.5-5 8Z' stroke='black' stroke-width='1.3'/><circle cx='7' cy='5' r='1.7' stroke='black' stroke-width='1.3'/></svg>")
    center / contain no-repeat;
}
.job-card__meta .type::before {
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'><circle cx='7' cy='7' r='5.3' stroke='black' stroke-width='1.3'/><path d='M7 4v3l2 2' stroke='black' stroke-width='1.3' stroke-linecap='round'/></svg>")
    center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'><circle cx='7' cy='7' r='5.3' stroke='black' stroke-width='1.3'/><path d='M7 4v3l2 2' stroke='black' stroke-width='1.3' stroke-linecap='round'/></svg>")
    center / contain no-repeat;
}
.jobs .gc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 8px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    filter 120ms ease,
    transform 120ms ease;
  border: 1px solid transparent;
}
.jobs .gc-btn--outline {
  background: #ffffff;
  color: #6cc24a;
  border-color: #cbe6c1;
  margin-top: auto;
}
.jobs .gc-arrow {
  width: 14px;
  height: 14px;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'><path d='M3 11 L11 3 M11 3 H5 M11 3 V9' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'><path d='M3 11 L11 3 M11 3 H5 M11 3 V9' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    center / contain no-repeat;
}
.jobs .gc-btn:hover {
  background: #6cc24a;
  color: #fff;
}

.job-card__main {
  margin-bottom: 15px;
}
.job-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  width: 100%;
}
.jobs .gc-btn--read-more {
  background: #043024;
  color: #fff;
  border-color: #043024;
}
.jobs .gc-btn--read-more:hover {
  background: #6cc24a;
  border-color: #6cc24a;
  color: #fff;
}

/* Job Modal */
.job-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.job-modal[hidden] {
  display: none;
}
.job-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}
.job-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 700px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  z-index: 1;
  animation: jobModalIn 0.25s ease;
}
@keyframes jobModalIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.job-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333;
  transition: background 0.2s;
}
.job-modal__close:hover {
  background: #e0e0e0;
}
.job-popup__title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: #000;
  margin-bottom: 14px;
  padding-right: 40px;
}
.job-popup__meta {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #bedbd3;
}
.job-popup__meta .job-card__tag {
  margin-bottom: 10px;
}
.job-popup__content {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 28px;
}
.job-popup__content p,
.job-popup__content ul,
.job-popup__content ol {
  margin-bottom: 14px;
}
.job-popup__content ul,
.job-popup__content ol {
  padding-left: 20px;
}
.job-popup__apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #6cc24a;
  color: #fff;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.job-popup__apply:hover {
  background: #043024;
  color: #fff;
}
body.modal-open {
  overflow: hidden;
}
@media (max-width: 575px) {
  .job-modal__dialog {
    padding: 24px 20px;
  }
  .job-popup__title {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .job-card {
    max-width: calc(50% - 15px);
  }
  .jobs {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .jobs {
    padding: 40px 0;
  }
}

@media (max-width: 575px) {
  .job-card {
    max-width: 100%;
  }
}

/* =========== Job Listings Css End =========== */

/* =========== Benefit Css Start =========== */

.benefits {
  padding: 80px 0;
  background: rgba(214, 238, 205, 0.33);
}
.benefits__head {
  text-align: center;
  margin-bottom: 40px;
}
.benefits__head h2.section-heading {
  margin-bottom: 14px;
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.benefit-card {
  background: #ffffff;
  border: 1px solid #bedbd3;
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(4, 48, 36, 0.08);
}
.benefit-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(180deg, #1e7f3b 0%, #6cc24a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(30, 127, 59, 0.25);
}
.benefit-card__icon img {
  width: 32px;
  height: 32px;
  color: #ffffff;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(312deg) brightness(102%) contrast(104%);
}
.benefit-card__icon svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
}
.benefit-card h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: #000000;
  margin: 0;
}
.benefit-card p {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: #333333;
  margin: 0;
}

@media (max-width: 991px) {
  .benefits {
    padding: 60px 0;
  }
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .benefits {
    padding: 40px 0;
  }
}

@media (max-width: 575px) {
  .benefits__grid {
    grid-template-columns: 1fr;
  }
}

/* =========== Benefit Css End =========== */

/* =========== Career Form Css Start =========== */

.apply {
  padding: 80px 0;
}
.apply__form .form-group input,
.apply__form .form-group textarea,
.apply__form .form-group select {
  border: 1px solid #d1e9e2;
  padding: 8px 15px;
  display: inline-block;
  width: 100%;
  color: #000;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  border-radius: 5px;
  font-family: var(--font-body);
}
.apply__form .form-group span {
  display: block;
  position: unset;
}
.apply__form .form-group label {
  display: inline-flex;
  gap: 2px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #000;
  margin-bottom: 5px;
}
.apply__form .form-group label span {
  color: #dc2626;
}
.apply__form .form-group p {
  display: block;
}
.apply__form .form-group {
  margin-bottom: 20px;
}
.apply__form .form-group textarea {
  height: 150px;
  resize: none;
}
.apply__form .half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.apply__intro ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.apply__intro li {
  position: relative;
  padding-left: 28px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}
.apply__intro li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #6cc24a;
  -webkit-mask: radial-gradient(circle, black 100%, black 100%);
}
.apply__intro li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 7px;
  width: 10px;
  height: 8px;
  background: #ffffff;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 8' fill='none'><path d='M1 4 L4 7 L9 1' stroke='black' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 8' fill='none'><path d='M1 4 L4 7 L9 1' stroke='black' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    center / contain no-repeat;
}
.apply__intro h2.section-heading {
  margin-bottom: 14px;
}
.apply__intro p {
  font-size: 18px;
  line-height: 24px;
  color: #000;
  margin-bottom: 20px;
}
.apply__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}
.apply__form {
  background: #f5f5f5;
  border: 1px solid #bedbd3;
  border-radius: 18px;
  padding: 40px;
}
.form-group-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-group-btn p:first-child {
  font-size: 14px;
  line-height: 20px;
  color: #6c6c6c;
}
.form-group-btn p:first-child a {
  color: #1e7f3b;
  font-weight: 700;
  text-decoration: underline;
}
.form-group-btn input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #6cc24a;
  color: #fff;
  padding: 10px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 2px solid #6cc24a;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.form-group-btn p:last-child {
  text-align: right;
  display: flex;
  align-items: center;
}
.form-group-btn p:last-child span.wpcf7-spinner {
  margin: 0 10px;
  width: 20px;
  height: 20px;
}
.apply__form .form-group input:focus,
.apply__form .form-group select:focus,
.apply__form .form-group textarea:focus {
  box-shadow: none;
  outline: none;
}
.apply__form .form-group .drop {
  position: relative;
  border: 2px dashed #bedbd3;
  border-radius: 12px;
  background: #ffffff;
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  transition:
    border-color 120ms ease,
    background-color 120ms ease;
}
.apply__form .form-group .drop .drop__icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
  background: #6cc24a;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M12 3v13M7 8l5-5 5 5M5 16v3a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-3' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M12 3v13M7 8l5-5 5 5M5 16v3a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-3' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    center / contain no-repeat;
}
.apply__form .form-group .drop .drop__text {
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #043024;
  line-height: 1.3;
}
.apply__form .form-group .drop .drop__sub {
  margin-top: 4px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #6c6c6c;
  line-height: 1.3;
}
.apply__form .form-group .drop input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.apply__form .form-group .drop:hover {
  border-color: #6cc24a;
  background: #f8fcf6;
}

/* =========== Career Form Css End =========== */

.services {
  padding: 80px 0;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #f5f5f5;
  border: 1px solid #bedbd3;
  border-radius: 28px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  min-height: 419px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(4, 48, 36, 0.08);
}
.service-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #bedbd3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card__icon img {
  width: 30px;
  height: 30px;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  color: #000;
  margin: 0 0 8px;
}
.service-card p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  margin: 0 0 14px;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-card ul li {
  position: relative;
  padding-left: 22px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #043024;
  margin-bottom: 12px;
}
.service-card ul li:last-child {
  margin-bottom: 0;
}
.service-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 8px;
  background: #043024;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 4 L4.5 7 L11 1' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 4 L4.5 7 L11 1' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    center / contain no-repeat;
}
.service-card .gc-btn {
  align-self: flex-start;
  background: #ffffff;
  color: #6cc24a;
  margin-top: 12px;
}
.gc-btn:hover {
  filter: brightness(0.95);
}
.service-card .gc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    filter 120ms ease,
    transform 120ms ease;
  border: 1px solid transparent;
}
.service-card .gc-arrow {
  width: 14px;
  height: 14px;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'><path d='M3 11 L11 3 M11 3 H5 M11 3 V9' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'><path d='M3 11 L11 3 M11 3 H5 M11 3 V9' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    center / contain no-repeat;
}
.section-heading {
  text-transform: capitalize;
}
.why__copy .section-label{
  margin-bottom: 0px;
}
@media (max-width: 991px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services {
    padding: 60px 0;
  }
  .header__menu .menu-item-has-children {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .header__menu .menu-item-has-children > a {
    flex: 1;
  }
  .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    color: inherit;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }
  .submenu-toggle.is-open {
    transform: rotate(180deg);
  }
  .header__menu ul.sub-menu {
    width: 100%;
    flex-basis: 100%;
    padding-left: 10px;
    gap: 10px;
    padding-top: 10px;
    display: flex;
        flex-direction: column;
    
  }
  .header__menu .menu-item-has-children > a,.header__menu .current-menu-item.menu-item-has-children > a{
    background-image: none;
  }
  .header__menu .menu-item.current-menu-ancestor{
    color:#6cc24a;
  }
}

@media (max-width: 767px) {
  .services {
    padding: 40px 0;
  }
  .services__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service-card {
    min-height: 0;
    padding: 24px;
  }
}

/* ==================== Blog Detail Css Start ==================== */

.inner-banner {
  background: #043024;
  padding: 60px 0;
}
.inner-banner-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.inner-banner-main-img {
  max-width: 40%;
  width: 100%;
  min-height: 300px;
  max-height: 300px;
  height: 100%;
}
.inner-banner-main-info {
  max-width: 55%;
  width: 100%;
}
.inner-banner-main-info h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 58px;
  font-family: var(--font-heading);
  color: #fff;
  margin-bottom: 16px;
}
.inner-banner-main-info p {
  font-size: 16px;
  line-height: 160%;
  font-family: var(--font-body);
  color: #fff;
  max-width: 90%;
  margin-bottom: 40px;
}
.inner-banner-main-info-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.inner-banner-main-info-meta .blog-categories {
  border: 1px solid #d1e9e2;
  background: #fff;
  border-radius: 6px;
  padding: 8px 10px;
  color: #333333;
  font-size: 14px;
  line-height: 18px;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
}
.inner-banner-main-info-meta .blog-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  font-family: var(--font-body);
  color: #fff;
}
.inner-banner-main-info-meta .blog-date svg path {
  stroke: #fff;
}
.inner-banner-main-info-meta .blog-date svg {
  width: 20px;
  height: 20px;
}
.inner-banner-main-img img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 20px;
}
.blog-detail {
  padding: 60px 0 0 0;
}
.blog-detail h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  font-family: var(--font-body);
  color: #2e8b57;
  margin-bottom: 14px;
}
.blog-detail p {
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
  color: #333333;
  font-family: var(--font-body);
  margin-bottom: 24px;
}
.blog-detail figure {
  margin-bottom: 20px;
}
.blog-detail figure img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}
.blog-detail h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  color: #2e8b57;
  font-family: var(--font-body);
  margin-bottom: 15px;
}
.blog-detail ul li {
  font-size: 16px;
  line-height: 160%;
  color: #333333;
  font-family: var(--font-body);
  margin-bottom: 5px;
}
.blog-detail ul {
  list-style: disc;
  margin-bottom: 24px;
  padding-left: 20px;
}
.blog-detail ul li:last-child {
  margin-bottom: 0;
}
.blog-detail ol {
  margin-bottom: 24px;
  padding-left: 20px;
}
.blog-detail ol:last-child {
  margin-bottom: 0;
}
.blog-detail  blockquote{
  position: relative;
  padding: 0 20px;
  border-left: 4px solid #043024;
  margin-bottom: 20px;
  background: #F5F5F5;
  border-radius: 16px;
  padding: 20px;
}
.blog-detail .wp-block-quote cite{
  font-weight: 700;
}
.blog-detail  blockquote .wp-block-group{
    border-left: 4px solid #043024;
    padding-left: 20px;
    margin-left: 20px;
    max-width: 80%;

}
.not-found-section{
  padding: 80px 0;
  text-align: center;
}
.back-home-btn{
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .inner-banner {
    padding: 40px 0;
  }
  .inner-banner-main-info,
  .inner-banner-main-img {
    max-width: 100%;
  }
  .inner-banner-main-info h1 {
    font-size: 32px;
    line-height: 42px;
  }
  .inner-banner-main-info p {
    max-width: 100%;
  }
  .feat h3 {
    margin-top: 0px;
  }
  .our-team-member {
    max-width: calc(50% - 20px);
  }
}
@media (max-width: 480px) {
  .our-team-member {
    max-width: 100%;
  }
}
@media (max-width: 1199px) {
  .mission__photo,
  .driving__photo,
  .why__photo {
    aspect-ratio: inherit !important;
  }
}
/* ==================== Blog Detail Css End ==================== */
