/* ========== GLOBAL STYLES START ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Common utility classes */
.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truncate-3-lines {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* Show only 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truncate-2-lines {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Show only 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truncate-4-lines {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* Show only 4 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.no-drag {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

/* GSAP Animation Classes */
.gsap-fade-up {
  opacity: 0;
  transform: translateY(50px);
}

.gsap-fade-left {
  opacity: 0;
  transform: translateX(-50px);
}

.gsap-fade-right {
  opacity: 0;
  transform: translateX(50px);
}

.gsap-scale {
  opacity: 0;
  transform: scale(0.8);
}

@font-face {
  font-family: "Geist";
  src: url("../assets/fonts/Geist/Geist-Light.ttf") format("truetype");
  font-weight: 300;
  /* Light */
  font-style: normal;
}

@font-face {
  font-family: "Geist";
  src: url("../assets/fonts/Geist/Geist-Regular.ttf") format("truetype");
  font-weight: 400;
  /* Regular */
  font-style: normal;
}

@font-face {
  font-family: "Geist";
  src: url("../assets/fonts/Geist/Geist-Medium.ttf") format("truetype");
  font-weight: 500;
  /* Medium */
  font-style: normal;
}

@font-face {
  font-family: "Geist";
  src: url("../assets/fonts/Geist/Geist-SemiBold.ttf") format("truetype");
  font-weight: 600;
  /* SemiBold */
  font-style: normal;
}

:root {
  /* Font Family */
  --font-geist: "Geist", sans-serif;

  /* Weights */
  --geist-light: 300;
  --geist-regular: 400;
  --geist-medium: 500;
  --geist-semibold: 600;

  /* Sizes */
  --font-size-xl: 56px;
  --font-size-lg: 48px;
  --font-size-md: 20px;
  --font-size-sm: 16px;

  /* Line heights */
  --lh-tight: 100%;
  --lh-relaxed: 160%;
}

.lg-none {
  display: none !important;
}

.lg-show {
  display: flex;
}

.title {
  font-family: var(--font-geist);
  font-weight: var(--geist-semibold);
  font-size: var(--font-size-xl);
  line-height: var(--lh-tight);
}

.subtitle {
  font-family: var(--font-geist);
  font-weight: var(--geist-light);
  font-size: var(--font-size-sm);
  line-height: var(--lh-relaxed);
  text-align: justify;
}

.button-text {
  font-family: var(--font-geist);
  font-weight: var(--geist-medium);
  font-size: var(--font-size-md);
  line-height: var(--lh-relaxed);
  text-transform: capitalize;
}

.container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 0px;
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 95%;
  max-width: 90%;
}

.nav-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 15px 15px 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2000;
}

.logo-icon {
  width: 10em;
  height: auto;
}

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

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

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  font-family: var(--font-geist);
}

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

.contact-btn {
  background: #719327;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-geist);
}

.contact-btn:hover {
  background: #689f38;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #719327;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 3px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section Styles */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-family: var(--font-geist);
  line-height: 1.1;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-geist);
  text-decoration: none;
  display: inline-block;
  height: fit-content;
}

.btn-primary {
  background: #719327;
  color: white;
  /* margin-top: 20px; */
  width: fit-content;
  padding: 15px 40px;
}

.btn-primary:hover {
  background: #689f38;
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: #333;
}

.btn-secondary:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

/* Story Section Styles */
.story {
  padding: 80px 0;
  background: white;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text h2 {
  font-size: 3rem;
  color: #2c5530;
  margin-bottom: 10px;
  font-weight: bold;
  font-family: var(--font-geist);
  line-height: 1;
}

.story-subtitle {
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 1.3;
  font-family: var(--font-geist);
}

.story-description {
  color: #000000;
  line-height: 1.8;
  margin-bottom: 40px;
  font-family: var(--font-geist);
  text-align: justify;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 500px;
}

.image-item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.image-item.large {
  grid-row: span 2;
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-item:hover img {
  transform: scale(1.05);
}

/* Services Section Styles */
.services {
  padding: 0px 0;
  /* background: #f8f9fa; */
}

.section-title {
  text-align: center;
  font-size: 3rem;
  color: #2c5530;
  margin-bottom: 30px;
  font-weight: bold;
  font-family: var(--font-geist);
}

.services-swiper {
  padding-bottom: 80px;
          padding-bottom: 25px;
  margin-top: 20px;
}

.services-swiper .swiper-pagination {
  display: none;
}

.service-card {
  background: #f5f6f3;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: left;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
  height: 100%;
  transition: transform 0.3s ease;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

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

.service-icon {
  margin-bottom: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #f0f8e8; */
  border-radius: 10px;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #002c23;
  margin-bottom: 15px;
  font-weight: bold;
  font-family: var(--font-geist);
  line-height: 1.2;
}

.service-card p {
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.6;
  font-family: var(--font-geist);
}

.view-more {
  color: #002c23;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
  font-family: var(--font-geist);
  width: fit-content;
}

.view-more:hover {
  border-color: #002c23;
}

/* Swiper Navigation */
.swiper-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.swiper-button-prev,
.swiper-button-next {
  width: 50px;
  height: 50px;
  border: 2px solid #719327;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  margin: 0;
  color: #719327;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #719327;
  color: #ffffff;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
}

/* Projects Section Styles */
.projects {
  padding: 40px 0;
  background: #719327;
  color: white;
  position: relative;
  overflow: hidden;
}

.projects .absolute-pattern {
  bottom: -10px;
  left: 0;
  z-index: 0;
}

.projects-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.projects-text h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: bold;
  font-family: var(--font-geist);
  line-height: 1.2;
}

.projects-text p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
  font-family: var(--font-geist);
}

.projects-gallery {
  display: block;
  /* Changed from grid to support Swiper */
}

.container-project-sec {
  margin-left: 5rem;
}

.project-item {
  border-radius: 15px;
  overflow: hidden;
  height: 350px;
  width: 100%;
  position: relative;
}

.projects-text {
  flex: 1;
}

.projects-swiper .swiper-nav {
  display: none !important;
}

.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.projects-swiper .swiper-pagination {
  display: none !important;
}

.project-item:hover img {
  transform: scale(1.1);
}

/* Swiper-specific styles */
.projects-swiper {
  width: 100%;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  max-width: 900px;
  max-width: 920px;
  /* Matches 3 items of 300px with gaps */
}

.projects-swiper.swiper-slide {
  display: flex;
  justify-content: center;
  /* Center the project-item in the slide */
}

.projects-swiper.swiper-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.projects-swiper.swiper-button-prev,
.projects-swiper.swiper-button-next {
  color: white;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.projects-swiper.swiper-button-prev:after,
.projects-swiper.swiper-button-next:after {
  font-size: 20px;
}

.projects-swiper.swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.projects-swiper.swiper-pagination-bullet {
  background: white;
  opacity: 0.5;
}

.projects-swiper.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Why Choose Us Section Styles */
.why-choose-us {
  padding: 50px 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  /* margin-top: 60px; */
}

.feature-item {
  text-align: left;
  /* padding: 30px; */
  border-radius: 15px;
  /* background: #f8f9fa; */
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  gap: 20px;
}

.feature-item:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.feature-number {
  width: 2em;
  height: 2em;
  background: #719327;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
  font-family: var(--font-geist);
  margin-top: 3px;
}

.feature-item h3 {
  font-size: 1.3rem;
  color: #2c5530;
  margin-bottom: 5px;
  font-weight: bold;
  font-family: var(--font-geist);
}

.feature-item p {
  color: #000000;
  line-height: 1.6;
  font-family: var(--font-geist);
  text-align: justify;
}

/* Testimonials Section Styles */
.testimonials {
  padding: 0px 0;
  /* background: #f8f9fa; */
}

.testimonials-swiper {
  padding-bottom: 80px;
}

.testimonials-swiper .swiper-pagination {
  display: none;
}

.testimonial-card {
  background: white;
  /* padding: 40px; */
  border-radius: 20px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
  height: 100%;
  cursor: grab;
}

.testimonial-header {
  margin-bottom: 25px;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.customer-photo {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
  background: #e0e0e0;
}

.customer-details h4 {
  font-size: 1.2rem;
  color: #2c5530;
  /* margin-bottom: 5px; */
  font-weight: bold;
  font-family: var(--font-geist);
}

.customer-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.customer-role {
  color: #719327;
  font-size: 1.2rem;
  /* margin-bottom: 10px; */
  display: block;
  font-family: var(--font-geist);
  font-weight: 500;
  border-left: 2px solid gray;
  padding-left: 10px;
}

.rating {
  display: flex;
  gap: 2px;
  margin: 10px 0;
}

.star {
  color: #ffc107;
  font-size: 16px;
}

.testimonial-text {
  color: #000000;
  line-height: 1.7;
  font-style: italic;
  font-family: var(--font-geist);
}

.testimonials-nav {
  margin-top: 10px;
}

/* Contact Section Styles */
.contact {
  padding: 50px 0;
  background: #f5f6f3;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-form-wrapper h2 {
  font-size: 2.5rem;
  color: #2c5530;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
  font-family: var(--font-geist);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 14px;
  font-family: var(--font-geist);
}

.form-group input,
.form-group textarea {
  padding: 0 15px;
  outline: none;
  border: none;
  border-bottom: 2px solid #e0e0e0;
  /* border-radius: 8px; */
  font-size: 16px;
  transition: border-color 0.3s ease;
  font-family: var(--font-geist);
  background-color: transparent;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #719327;
}

.form-group textarea {
  resize: none;
  min-height: 50px;
}

.contact-images {
  display: flex;
  justify-content: center;
}

.contact-image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 400px;
}

.contact-image-item {
  border-radius: 15px;
  overflow: hidden;
  height: 200px;
  background: #e0e0e0;
}

.contact-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.contact-image-item:hover img {
  transform: scale(1.05);
}

/* Footer Section Styles */
.footer {
  background: #002c23;
  color: white;
  padding: 50px 0 30px;
  position: relative;
  border-radius: 20px 20px 0px 0px;
}

.footer-contact span a {
  text-decoration: none;
  color: #ffffffd1;
}

.footer-contact a {
  text-decoration: none;
  color: #ffffffd1;
}

.absolute-pattern {
  position: absolute;
  z-index: 1;
  left: 20px;
  bottom: 0;
}

.footer-content {
  display: grid;
        grid-template-columns: 1fr 3fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;

  position: relative;
  z-index: 100;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-icon {
  width: 10em;
  height: auto;
  /* filter: brightness(0) invert(1); */
}

.footer-description {
  color: #ffffffd1;
  line-height: 1.6;
  max-width: 300px;
  font-family: var(--font-geist);
}

.social-links {
  display: flex;
  gap: 15px;
  position: static;
  z-index: 10;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  text-decoration: none;
  position: static;
  z-index: 10;
}

.social-link:hover {
  background: #e4d9d9de;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-columns: 20% 30% 50%;
  gap: 40px;
}
.contact-info-item.top {
        margin-top: 20px;
}
iframe {
        width: 100%;
}
.footer-column h4 {
  font-size: 18px;
  font-weight: bold;
  /* margin-bottom: 20px; */
  color: white;
  font-family: var(--font-geist);
}

.footer-column-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.footer-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.footer-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.toggle-icon {
  transition: transform 0.3s ease;
}

.footer-toggle.active .toggle-icon {
  transform: rotate(45deg);
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-menu a {
  color: #ffffffd1;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: var(--font-geist);
}

.footer-menu a:hover {
  color: #719327;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 85%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-item>img {
  margin-top: 5px;
}

.contact-item span {
  color: #ffffffd1;
  line-height: 1.5;
  font-family: var(--font-geist);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  color: #ffffffd1;
  font-size: 14px;
  font-family: var(--font-geist);
}

.footer-credit a {
  color: #ffffffd1;
  text-decoration: none;
}



/* ========== VISION SECTION STYLES START ========== */

.vision-section {
  padding: 80px 0 0 0;
  background:#7cb342;
  color: white;
  position: relative;
}

.vision-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.vision-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vision-title {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 500;
  color: white;
  text-align: center;
  font-family: var(--geist-semibold);

}

.vision-description {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.95;
  color: #FFFFFF;
  text-align: justify;
  font-family: var(--geist-light);
  font-weight: 300;
}

.vision-image {
  display: flex;
  justify-content: center;
}

.vision-img {
  width: 100%;
  /* max-width: 500px; */
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 -20px -40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.vision-img:hover {
  transform: scale(1.02);
}

.vision-ptn.absolute-pattern {
  top: 0;
  left: 0;
}

.vision-ptn.absolute-pattern img {

  height: 100%;
}

/* ========== VISION SECTION STYLES END ========== */

/* ========== MISSION SECTION STYLES START ========== */
.mission-section {
  padding: 80px 0;
  background: #7cb342;
  color: white;
  margin-bottom: 50px;

  position: relative;
}

.mission-ptn.absolute-pattern {
  right: 5%;
  bottom: -50px;
  left: auto;
  height: 100%;
  overflow: hidden;
}

.mission-ptn.absolute-pattern img {

  height: 100%;
}

.mission-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-title {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: bold;
  color: white;
  text-align: center;
  font-weight: 500;
  font-family: var(--geist-semibold);
}

.mission-description {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.95;
  color: #FFFFFF;
  text-align: justify;
  font-family: var(--geist-light);
  font-weight: 300;
}

.mission-image {
  display: flex;
  justify-content: center;
}

.mission-img {
  width: 100%;
  /* max-width: 500px; */
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); */
  transition: transform 0.3s ease;
}

.mission-img:hover {
  transform: scale(1.02);
}

/* ========== MISSION SECTION STYLES END ========== */

/* ========== STORY SECTION STYLES ========== */
.story-section {
  padding: 50px 0;
  background: #ffffff;
  color: #333;
  position: relative;
  overflow: hidden;
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.story-content-plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.story-text-plans {
  text-align: center;
  font-weight: 500;
  font-size: 2rem;
  color: #2c5530;
  font-weight: bold;
  font-family: var(--font-geist);
  line-height: 1.2;
}

.story-title-plans {
  font-size: 3rem;
  margin-bottom: 0px;
  font-weight: 600;
  color: #2c5530;
  /* Dark green for title */
  font-family: var(--font-geist);
  line-height: 1.2;
  margin-bottom: 5px;
}

.story-subtitle-plans {
  font-size: 1rem;
  color: #00100F;
  margin-bottom: 20px;
  font-weight: 500;
  font-family: var(--font-geist);
  text-transform: capitalize;
}

.story-description-plans {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #00100F;
  font-family: var(--font-geist);
  text-align: justify;
  font-weight: 68;
}


.story-img {
  width: 100%;
  max-width: 500px;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.story-img:hover {
  transform: scale(1.02);
}

.story-pattern {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  opacity: 0.5;
}

/* ========== STORY SECTION STYLES END ========== */

/* ========== KEY SERVICES SECTION STYLES ========== */
.key-services-section {
  padding: 50px 0;
  background: white;
  color: white;
  position: relative;
  overflow: hidden;
}

.key-services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.key-services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.key-services-text {
  text-align: left;
}

.key-services-title {
  font-size: 3rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: white;
  line-height: 1.2;
  color: #002C23;
}

.key-services-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.key-services-item {
  background: rgba(255, 255, 255, 0.1);
  /* border-radius: 10px; */
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  margin-bottom: 20px;
  border-bottom: 1px solid #C2C5C1;
}

.key-services-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.key-services-item-header {
  display: flex;
  align-items: center;
  gap: 15px;
  /* padding: 15px; */
  position: relative;
}

.key-services-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  border: 2px solid #719327;
  border-radius: 50px;
  padding: 10px;
}

.key-services-item.active .key-services-icon {
  transform: rotate(90deg);
}

.key-services-item h3 {
  font-size: 1.5rem;
  color: #000000;
  font-weight: 500;
  font-family: var(--font-geist);
  margin: 0;
  flex: 1;
}

.key-services-description {
  font-size: 1.1rem;
  color: white;
  line-height: 1.6;
  padding: 10px 15px 10px 0px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.key-services-item.active .key-services-description {
  max-height: 200px;
  padding: 0 15px 15px 0px;
  color: #000000;
}

.key-services-image {
  display: flex;
  justify-content: center;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.key-services-img {
  width: 100%;
  max-width: 500px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); */
  transition: transform 0.3s ease;
}

.key-services-img:hover {
  transform: scale(1.02);
}

.key-services-pattern {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  opacity: 0.5;
}

.service-detail-sec .why-choose-us {
  background-color: #F5F6F3;
}

.service-detail-sec .services {
  margin-top: 50px;
}

/* ========== KEY SERVICES SECTION STYLES END ========== */


/* ========== OUTDOOR FRESH SECTION STYLES ========== */
.outdoor-fresh-section {
  padding: 60px 0 80px 0;
background: #719327;
  color: white;
  position: relative;
  overflow: hidden;
}

.outdoor-fresh-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.outdoor-fresh-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.outdoor-fresh-text {
  text-align: left;
}

.outdoor-fresh-title {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: white;
  line-height: 1.2;
  text-align: center;
}

.outdoor-fresh-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 0;
}

.outdoor-fresh-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.outdoor-fresh-img {
  width: 100%;
  /* max-width: 600px; */
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); */
  transition: transform 0.3s ease;
}

.outdoor-fresh-img:hover {
  transform: scale(1.02);
}

/* ========== OUTDOOR FRESH SECTION STYLES END ========== */


/* ========== FAQ SECTION STYLES ========== */
.faq-section {
  padding: 10px 0 50px 0;
  background: #ffffff;
  color: #333;
  position: relative;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 10px;
  color: #333;
  font-weight: bold;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  padding-bottom: 20px;
}

/* 
.faq-item:last-child {
  border-bottom: none;
} */

.faq-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0 10px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item-header:hover {
  color: #7cb342;
}

.faq-number {
  font-size: 2rem;
  font-weight: 206;
  color: #333;
  margin-right: 30px;
  min-width: 40px;
  font-family: var(--geist-medium);
}

.faq-question {
  flex: 1;
  font-size: 1.2rem;
  font-weight: 600;
color: #000;
  margin: 0;
  text-align: left;
  font-family: var(--geist-medium);
}

.faq-toggle-icon {
  width: 40px;
  height: 40px;
  border: 2px solid #7cb342;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-toggle-arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid #7cb342;
  border-bottom: 2px solid #7cb342;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-arrow {
  transform: rotate(225deg);
}

.faq-answer {
  padding: 0 0 30px 70px;
  font-size: 1.1rem;
  color: #000000;
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  color: transparent;
  padding: 0 0 0px 70px;
  text-align: justify;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 0 0px 70px;
  color: #000;
}

/* ========== FAQ SECTION STYLES END ========== */

/* ========== CONTACT SECTION STYLES IN SERVICE DETAIL SECTION START ========== */
.service-contact-section {
  padding: 60px 0 80px 0;
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
  min-height: 600px;

}

.contact-container {
  width: 90%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.service-contact-container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0px 0px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}

.contact-text {
  max-width: 600px;
}

.contact-title {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #002C23;
  line-height: 1.2;
  font-family: var(--geist-semibold);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-group {
  position: relative;
}

.contact-form-input {
  width: 100%;
  padding: 20px 0;
  font-size: 1.1rem;
  color: #333;
  background: transparent;
  border: none;
  border-bottom: 2px solid #ddd;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form-input:focus {
  border-bottom-color: #7cb342;
}

.contact-form-label {
  position: absolute;
  top: 15px;
  left: 0;
  font-size: 1.1rem;
  color: #000000;
  pointer-events: none;
  transition: all 0.3s ease;
}

.contact-form-input:focus+.contact-form-label,
.contact-form-input:not(:placeholder-shown)+.contact-form-label {
  top: -20px;
  font-size: 0.9rem;
  color: #7cb342;
}

.contact-form-textarea {
  width: 100%;
  min-height: 80px;
  padding: 15px 0;
  font-size: 1.1rem;
  color: #333;
  background: transparent;
  border: none;
  border-bottom: 2px solid #ddd;
  outline: none;
  resize: vertical;
  transition: border-color 0.3s ease;
}


.contact-submit-btn {
  background: #7cb342;
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 30px;
}

.contact-submit-btn:hover {
  background: #689f38;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(124, 179, 66, 0.3);
}

.contact-images {
  position: relative;
  height: 100%;
}

.contact-image {
  position: absolute;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;

}

.contact-image:hover {
  transform: scale(1.02);
}

.contact-image-1 {
  top: 0;
  right: 0;
  width: 280px;
  height: 200px;
  object-fit: cover;
  z-index: 3;
}

.contact-image-2 {
  bottom: 0px;
  left: -50px;
  width: 350px;
  height: 220px;
  object-fit: cover;
  z-index: 2;
}

.contact-image-3 {
  top: 20px;
  right: 0;
  width: 90%;
  height: 80%;
  object-fit: cover;
  z-index: 1;
}

/* ========== END OF CONTACT SECTION STYLES IN Service Page end ========== */

/* BreadCrumb css start */

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #000000;
}

.breadcrumb-link {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: #2c5530;
}

.breadcrumb-separator {
  font-size: 12px;
  color: #999;
}

.breadcrumb-current {
  color: #333;
  font-weight: 500;
}

.container-fluid {
  padding-left: 4rem;
}

.contact-form-group.phone-group .contact-form-label {
  margin-left: 7rem;
}

.contact-form-group.phone-group {
  display: flex;
  align-items: center;
  z-index: 10;
}

.country-dropdown.custom-dropdown {
  position: relative;
  width: 130px;
  padding-top: 3px;
  cursor: pointer;
  user-select: none;
  border-bottom: 2px solid #ddd;
}


.country-dropdown .selected {
  padding: 16px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  border: none !important;
  outline: none !important;
  border: 1px solid #ccc;
}

.country-dropdown .options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  max-height: 250px;
  overflow-y: auto;
  margin-top: 2px;
  z-index: 100;
}

.country-dropdown .option {
  padding: 8px 10px;
  border-bottom: 1px solid #eee;
}

.country-dropdown .option:last-child {
  border-bottom: none;
}

.country-dropdown .option:hover {
  background-color: #f0f0f0;
}

.dropdown-arrow svg {
  display: block;
}

.project_overlay {
  display: none;
  /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.project_overlay.active {
  display: flex;
}

.project_overlay_img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.project_close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.project_close:hover {
  color: #634444;
}
.ftr_pattern {
  position: absolute;
  z-index: 1;
  left: 20px;
  bottom: 0;
}



.ftr_pattern.vision-ptn {
  top: 0;
  left: 0;
}

.ftr_pattern {
  position: absolute;
  z-index: 1;
  left: 20px;
  bottom: 0;
}

.ftr_pattern svg path {
  stroke: #7cb342;   /* green line */
  stroke-width: 2;
  fill: none;
}