:root {
  --primary: #00401a;
  --secondary: #77ab59;
  --white: #ffffff;
  --black: #000000;
  --text: #1b1b1b;
  --muted: #666666;
  --light: #f6faf5;
  --border: #e4e9e2;
  --shadow: 0 18px 45px rgba(0, 64, 26, 0.12);
  --radius: 18px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.section-padding {
  padding: 90px 0;
}

/* Top Bar */

.top-bar {
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  gap: 15px;
}

.top-bar i {
  color: var(--secondary);
  margin-right: 6px;
}

/* Header */

.site-header {
  background: rgba(255, 255, 255, 0.96);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
}

.nav-wrapper {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.brand h1 {
  font-size: 23px;
  line-height: 1.2;
  color: var(--primary);
}

.brand span {
  font-size: 13px;
  color: var(--secondary);
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-menu a {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}

.nav-btn {
  background: var(--primary);
  color: var(--white) !important;
  padding: 12px 20px;
  border-radius: 999px;
}

.nav-btn:hover {
  background: var(--secondary);
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--primary);
  color: var(--white);
  font-size: 22px;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  cursor: pointer;
}

/* Hero */

.hero {
  min-height: calc(100vh - 118px);
  position: relative;
  background:
    linear-gradient(90deg, rgba(0, 64, 26, 0.92), rgba(0, 64, 26, 0.75), rgba(0, 64, 26, 0.35)),
    url("../images/hero.jpg") center/cover no-repeat;
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  background: rgba(119, 171, 89, 0.35);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
}

.h-hero{
    display: inline-grid;
}

.eyebrow,
.section-tag,
.section-heading span {
  display: inline-block;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 14px;
}

.hero h2 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.08;
  max-width: 800px;
  margin-bottom: 22px;
}

.hero p {
  font-size: 18px;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .7px;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.hero-points {
  margin-top: 42px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-points div {
  border-left: 3px solid var(--secondary);
  padding-left: 15px;
}

.hero-points strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.hero-points span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-card {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-card img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  object-position: top center;
}

.hero-card-body {
  padding: 24px;
}

.hero-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.hero-card p {
  font-size: 15px;
  margin: 0;
}

/* Section Heading */

.section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(30px, 4vw, 44px);
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-heading p {
  color: var(--muted);
}

/* Services */

.services-section {
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 34px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 64, 26, 0.06);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(119, 171, 89, 0.55);
}

.service-card i {
  width: 62px;
  height: 62px;
  background: var(--primary);
  color: var(--white);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  margin-bottom: 22px;
}

.service-card h3 {
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.service-card a {
  color: var(--primary);
  font-weight: 700;
}

.service-card a i {
  width: auto;
  height: auto;
  background: transparent;
  color: var(--primary);
  font-size: 13px;
  margin: 0 0 0 6px;
}
.leader-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
  margin-top: -10px;
  margin-bottom: 18px;
}
.h-eyebrow{
    color:#fff !important;
    margin-bottom: 6px !important;
}
/* About */

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 26px;
  height: 560px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.experience-badge {
  position: absolute;
  right: -18px;
  bottom: 34px;
  background: var(--primary);
  color: var(--white);
  padding: 24px 28px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.experience-badge strong {
  display: block;
  font-size: 28px;
}

.experience-badge span {
  font-size: 14px;
}

.about-content h2 {
  font-size: clamp(30px, 4vw, 46px);
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--muted);
  margin-bottom: 16px;
}

.about-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
}

.about-list div {
  font-weight: 700;
}

.about-list i {
  color: var(--secondary);
  margin-right: 8px;
}

/* Achievement */

.achievement-section {
  background: var(--primary);
  color: var(--white);
  padding: 90px 0;
}

.achievement-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.section-tag.light {
  color: var(--secondary);
}

.achievement-content h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.2;
  margin-bottom: 18px;
}

.achievement-content p {
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 30px;
}

.achievement-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.achievement-items div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 22px;
  border-radius: 16px;
  text-align: center;
}

.achievement-items strong {
  display: block;
  font-size: 34px;
  color: var(--secondary);
}

.achievement-image img {
  border-radius: 26px;
  height: 430px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

/* Why */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-card {
  text-align: center;
  padding: 34px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.why-card:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-7px);
}

.why-card i {
  font-size: 34px;
  color: var(--secondary);
  margin-bottom: 18px;
}

.why-card h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

.why-card:hover h3,
.why-card:hover p {
  color: var(--white);
}

.why-card p {
  color: var(--muted);
  font-size: 15px;
}

/* CTA */

.cta-section {
  background:
    linear-gradient(90deg, rgba(0, 64, 26, 0.94), rgba(0, 64, 26, 0.84)),
    url("../images/hero.jpg") center/cover no-repeat;
  color: var(--white);
  padding: 85px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 12px;
}

.cta-content p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
}

.cta-content div {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Footer */

.site-footer {
  background: #07150d;
  color: var(--white);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.85fr 1.2fr;
  gap: 36px;
  padding-bottom: 45px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.footer-brand h3 {
  font-size: 22px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h4 {
  font-size: 19px;
  margin-bottom: 18px;
  color: var(--secondary);
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
  transition: var(--transition);
}

.site-footer a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.site-footer i {
  color: var(--secondary);
  margin-right: 7px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  text-align: center;
  padding: 18px;
}

/* WhatsApp */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 999;
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.04);
}
/* About Us page */
/* Inner Hero */

.inner-hero {
  background:
    linear-gradient(90deg, rgba(0, 64, 26, 0.94), rgba(0, 64, 26, 0.76)),
    url("../images/about.webp") center/cover no-repeat;
  color: var(--white);
  padding: 105px 0;
  position: relative;
}

.inner-hero-content {
  max-width: 780px;
}

.inner-hero h2 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.12;
  margin-bottom: 18px;
}

.inner-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
}

/* Mission Section */

.mission-section {
  background: var(--light);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mission-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: 0 10px 30px rgba(0, 64, 26, 0.06);
  transition: var(--transition);
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.mission-card i {
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: var(--white);
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}

.mission-card h3 {
  color: var(--primary);
  font-size: 23px;
  margin-bottom: 12px;
}

.mission-card p {
  color: var(--muted);
}

/* Leadership */

.leadership-section {
  background: var(--white);
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.leadership-content h2 {
  font-size: clamp(30px, 4vw, 46px);
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 18px;
}

.leadership-content p {
  color: var(--muted);
  margin-bottom: 16px;
}

.leadership-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.leadership-stats div {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  text-align: center;
}

.leadership-stats strong {
  display: block;
  color: var(--primary);
  font-size: 32px;
}

.leadership-stats span {
  color: var(--muted);
  font-size: 14px;
}

.leadership-image img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

/* Gallery */

/*.gallery-section {*/
/*  background: var(--light);*/
/*}*/

/*.gallery-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(3, 1fr);*/
/*  gap: 22px;*/
/*}*/

/*.gallery-grid img {*/
/*  width: 100%;*/
/*  height: 310px;*/
/*  object-fit: cover;*/
/*  border-radius: 22px;*/
/*  box-shadow: 0 12px 30px rgba(0, 64, 26, 0.08);*/
/*  transition: var(--transition);*/
/*}*/

/*.gallery-grid img:hover {*/
/*  transform: translateY(-6px);*/
/*  box-shadow: var(--shadow);*/
/*}*/
/* GALLERY SLIDER */

/* GALLERY SLIDER */

.gallery-section {
  background: var(--light);
}

.gallery-slider-wrapper {
  position: relative;
}

.gallery-slider {
  overflow: hidden;
  border-radius: 24px;
}

.gallery-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
  cursor: grab;
}

.gallery-track:active {
  cursor: grabbing;
}

.gallery-track.dragging {
  cursor: grabbing;
  transition: none;
}

.gallery-slide {
  min-width: calc(33.333% - 16px);
  flex-shrink: 0;
}

.gallery-slide img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 64, 26, 0.08);
  transition: var(--transition);
}



.gallery-slide img:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

/* BUTTONS */

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.gallery-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.prev-btn {
  left: -24px;
}

.next-btn {
  right: -24px;
}
.gallery-item {
  min-width: calc(50% - 12px);
  flex-shrink: 0;
  border-radius: 26px;
  overflow: hidden;
}

/* Services Page */

.services-hero {
  background:
    linear-gradient(90deg, rgba(0, 64, 26, 0.94), rgba(0, 64, 26, 0.7)),
    url("../images/services-hero.webp") center/cover no-repeat;
}

.services-page-section {
  background: var(--white);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.service-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 34px;
  box-shadow: 0 10px 30px rgba(0, 64, 26, 0.06);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  transition: var(--transition);
}

.service-detail-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: rgba(119, 171, 89, 0.55);
}

.service-detail-icon {
  width: 72px;
  height: 72px;
  background: var(--primary);
  color: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.service-detail-content h3 {
  color: var(--primary);
  font-size: 25px;
  margin-bottom: 10px;
}

.service-detail-content p {
  color: var(--muted);
  margin-bottom: 18px;
}

.service-detail-content ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.service-detail-content li {
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
}

.service-detail-content li i {
  color: var(--secondary);
  margin-right: 8px;
}

.service-link {
  color: var(--primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--secondary);
  gap: 12px;
}

/* Process */

.process-section {
  background: var(--light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 110px;
  height: 110px;
  background: rgba(119, 171, 89, 0.15);
  border-radius: 50%;
}

.process-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.process-card span {
  display: inline-block;
  color: var(--secondary);
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 14px;
}

.process-card h3 {
  color: var(--primary);
  font-size: 21px;
  margin-bottom: 10px;
}

.process-card p {
  color: var(--muted);
  font-size: 15px;
}

/* Service CTA */

.service-cta {
  background: var(--primary);
  color: var(--white);
  padding: 68px 0;
}

.service-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.service-cta h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.2;
  margin-bottom: 12px;
}

.service-cta p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 680px;
}

.service-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* FAQ */

.faq-section {
  background: var(--white);
}

.faq-wrapper {
  max-width: 880px;
  margin: auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 64, 26, 0.04);
}

.faq-question {
  width: 100%;
  border: 0;
  background: var(--white);
  color: var(--primary);
  padding: 22px 24px;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  color: var(--secondary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-answer p {
  padding: 0 24px 22px;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  max-height: 180px;
}

/* Contact Page */

.contact-hero {
  background:
    linear-gradient(90deg, rgba(0, 64, 26, 0.94), rgba(0, 64, 26, 0.72)),
    url("../images/contact-us.webp") center/cover no-repeat;
}

.contact-section {
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 55px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(30px, 4vw, 46px);
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 18px;
}

.contact-info > p {
  color: var(--muted);
  margin-bottom: 30px;
}



.contact-info-list {
  display: grid;
  gap: 18px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0, 64, 26, 0.04);
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--white);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
}

.contact-info-item h3 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 2px;
}

.contact-info-item p {
  color: var(--muted);
  font-size: 15px;
}

.contact-social {
  margin-top: 26px;
  display: flex;
  gap: 12px;
}

.contact-social a {
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.contact-social a:hover {
  background: var(--secondary);
  transform: translateY(-4px);
}

/* Contact Form */

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 38px;
  box-shadow: var(--shadow);
}

.contact-form-card h3 {
  color: var(--primary);
  font-size: 30px;
  margin-bottom: 6px;
}

.contact-form-card > p {
  color: var(--muted);
  margin-bottom: 26px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.hidden-field {
  display: none;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--light);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: var(--transition);
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(119, 171, 89, 0.15);
}

.form-submit-btn {
  width: fit-content;
  gap: 9px;
}

.form-submit-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.form-note {
  color: var(--muted);
  font-size: 14px;
}

.contact-title-new{
  font-size: 32px !important;
}

/* Map */

.map-section {
  background: var(--white);
  padding: 0 0 90px;
}

.map-card {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 430px;
  border: 0;
  display: block;
}

/* Privacy Policy Page */

.policy-hero {
  background:
    linear-gradient(90deg, rgba(0, 64, 26, 0.94), rgba(0, 64, 26, 0.72)),
    url("../images/hero.jpg") center/cover no-repeat;
}

.policy-section {
  background: var(--light);
}

.policy-card {
  max-width: 920px;
  margin: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 46px;
  box-shadow: var(--shadow);
}

.policy-updated {
  display: inline-block;
  background: var(--light);
  color: var(--primary);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
}

.policy-card h2 {
  color: var(--primary);
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 18px;
}

.policy-card h3 {
  color: var(--primary);
  font-size: 22px;
  margin: 30px 0 10px;
}

.policy-card p {
  color: var(--muted);
  margin-bottom: 12px;
}

.policy-contact {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  margin-top: 18px;
}

.policy-contact p {
  margin-bottom: 10px;
}

.policy-contact p:last-child {
  margin-bottom: 0;
}
/* TEAM PAGE */
.inner-hero-team{
  background:
    linear-gradient(90deg, rgba(0, 64, 26, 0.94), rgba(0, 64, 26, 0.72)),
    url("../images/teams.webp") center/cover no-repeat;
}
.team-leader-image img{
  object-position: left;
}
.team-section {
  background: #f8f9fb;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.team-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  position: relative;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}


.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.4s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.08);
}

/* OVERLAY */
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  padding-bottom: 20px;
  opacity: 0;
  transition: 0.35s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

/* ICON BUTTONS */
.team-overlay a {
  width: 42px;
  height: 42px;
  background: #0b5d2a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  transition: 0.3s ease;
}

.team-overlay a:hover {
  background: #ffffff;
  color: #0b5d2a;
  transform: translateY(-4px);
}

/* CONTENT */
.team-card-body {
  padding: 20px;
}

.team-card-body h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.team-card-body span {
  display: block;
  font-size: 14px;
  color: #0b5d2a;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-card-body p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.team-img-two img{
  object-position: top;
}


/* SINGLE TEAM CARD CENTER FIX */

.team-grid.single-member {
  display: flex;
  justify-content: center;
}

/* Card width control */
.team-grid.single-member .team-card {
  max-width: 340px;
  width: 100%;
}





.policy-contact i {
  color: var(--secondary);
  margin-right: 8px;
}

.footer-bottom a {
  display: inline-block;
  color: var(--secondary);
  margin-bottom: 0;
  font-weight: 700;
}

.footer-bottom a:hover {
  color: var(--white);
  padding-left: 0;
}
.ad-contact{
    font-size: 15px;
}




/* Contact Responsive */




/* Services Responsive */



/* Responsive */

@media (max-width: 1024px) {
  .hero-content,
  .about-grid,
  .achievement-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 520px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-image img {
    height: 460px;
  }
   .mission-grid,
  .leadership-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .leadership-image img {
    height: 420px;
  }
  .service-detail-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-cta-grid {
    grid-template-columns: 1fr;
  }
    .contact-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-title-new {
    font-size: 30px !important;
}
}
@media (max-width: 992px) {
    .gallery-slide {
    min-width: calc(50% - 12px);
  }
}
@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .nav-wrapper {
    height: 76px;
  }

  .brand h1 {
    font-size: 17px;
  }

  .brand span {
    font-size: 11px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 5%;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu a {
    width: 100%;
    padding: 12px 0;
  }

  .nav-btn {
    text-align: center;
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 70px 0;
  }

  .hero h2 {
    font-size: 40px;
  }

  .hero-card img {
    height: 360px;
  }

  .services-grid,
  .why-grid,
  .footer-grid,
  .achievement-items {
    grid-template-columns: 1fr;
  }

  .section-padding,
  .achievement-section {
    padding: 65px 0;
  }

  .about-image img,
  .achievement-image img {
    height: 360px;
  }

  .experience-badge {
    right: 15px;
    bottom: 18px;
  }
  .inner-hero {
    padding: 75px 0;
  }

  .leadership-stats {
    grid-template-columns: 1fr;
  }

  .gallery-grid img,
  .leadership-image img {
    height: 340px;
  }
    .service-detail-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
  }

  .service-cta-actions {
    width: 100%;
  }
  .contact-form-card {
    padding: 26px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-submit-btn {
    width: 100%;
  }

  .map-card iframe {
    height: 340px;
  }
   .policy-card {
    padding: 28px;
  }
    .team-grid {
    grid-template-columns: 1fr;
  }
  .contact-title-new {
    font-size: 28px !important;
}
.team-grid.single-member .team-card {
    max-width: 100%;
  }
   .gallery-slide {
    min-width: 100%;
  }

  .gallery-slide img {
    height: 300px;
  }

  .gallery-btn {
    width: 46px;
    height: 46px;
  }

  .prev-btn {
    left: -10px;
  }

  .next-btn {
    right: -10px;
  }
 
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 34px;
  }

  .hero-points {
    gap: 18px;
  }

  .btn {
    width: 100%;
  }

  .cta-content div {
    width: 100%;
  }
    .contact-info-item {
    grid-template-columns: 1fr;
  }

  .contact-icon {
    width: 52px;
    height: 52px;
  }
.contact-form-card h3 {
    font-size: 28px;

}
}