*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* NAVBAR */
.navbar {
  width: 100%;
  position: sticky;
  top: 0;
  background-color: white;
  box-shadow: 1px 1px 5px gray;
  z-index: 999;
  padding: 10px;
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* LOGO */
.logo img{
    height: 80px;
    width: auto;
    object-fit: contain;
}
/* LINKS */
.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 15px;
  height: 100%;
  position: relative;
  transition: 0.3s;
}

/* underline base */
.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0%;
  height: 2px;
  background: #4a5a1a;
  transition: 0.3s;
}

/* hover effect */
.nav-links li a:hover::after {
  width: 100%;
}


.nav-links li a.active::after {
  width: 100%;
}

/* BUTTON */
.nav-btn a {
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 25px;
  border: none;
  background: #4a5a1a;
  color: #fff;
  cursor: pointer;
}
/* MOBILE MENU ICON */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* 🔥 RESPONSIVE */
@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 85px;
    left: -100%;
    width: 100%;
    background: #fff;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    transition: 0.3s;
  }

  .nav-links.active {
    left: 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-btn {
    display: none;
  }
  .logo img{
    height: auto;
    width: 200px;
  }
}

.hero {
  width: 100%;
  padding-top: 80px;
  background: url(images/home-hero.webp);
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
  background-clip: border-box;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT */
.hero-content {
  flex: 1;
}

.subtitle {
  font-size: 14px;
  color: #4a5a1a;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: Arial, Helvetica, sans-serif;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #111;
}

.hero-content span {
  color: #4a5a1a;
}

.desc {
  margin: 20px 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  max-width: 500px;
}

.btn {
  padding: 12px 22px;
  background: #4a5a1a;
  border: none;
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
}

/* RIGHT */
.hero-image img {
  width: 100%;
  max-width: 500px;
}

/* 🔥 GREEN FEATURE BAR */
.hero-features {
  margin-top: 60px;
  background:  #4a5a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 10px;
}
.hero-features .feature-inner-container{
  display: flex;
  max-width: 900px ;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.features-wrapper {
  display: flex;
  align-items: center;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  padding: 10px 20px;
}

/* Separator */
.feature-box:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 60px;
  background: #eee;
  margin-left: 120px;
}

/* Mobile */
@media (max-width: 768px) {
  .features-wrapper {
    flex-direction: column;
  }

  .feature-box:not(:last-child)::after {
    display: none;
  }
}
.feature-box:last-child {
  border-right: none;
}

.feature-box img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.feature-box p {
  font-size: 14px;
  line-height: 1.3;
}

/* 🔥 RESPONSIVE */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }
  .hero-features .feature-inner-container{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-features {
    flex-direction: column;
    gap: 20px;
  }

  .feature-box {
    border-right: none;
  }
}

.services {
  padding: 60px 0;
  background: #f6f7f5;
}

 .service-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.top-line {
  width: 60px;
  height: 2px;
  background: #cfcfcf;
  margin: 0 auto 10px;
}

.tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #4a5a1a;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-bottom: 5px;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.subtext {
  max-width: 620px;
  margin: auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

/* GRID */
.service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  gap: 10px;
}

/* CARD */
.service-card {
    width: 280px;
    height: 350px;
  background: #fff;
  padding: 35px ;
  border-radius: 14px;
  text-align: center;
  border: 1px solid #eee;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  background: #4a5a1a;
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* ICON BOX */
 .icon {
  width: auto;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

 .icon img {
  width: auto;
  height: 50px;
  object-fit: contain;
}
.service-card:hover .icon img{
  filter: brightness(100);
}
/* TEXT */
.service-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #4a5a1a;
  padding: 0 30px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* LINK */
.service-card a {
  font-size: 13px;
  color: #2d3b2f;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s;
}
.service-card:hover h3,.service-card:hover p ,.service-card:hover a{
  color: white;
}

/* 🔥 RESPONSIVE */
@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 28px;
  }
}



        .process-section {
          background-color: #4a5a1a;
            position: relative;
            width: 100%;
            padding: 60px 20px;
        }
        .process-container {
            position: relative;
            z-index: 2;
            max-width: 1280px;
            margin: 0 auto;
            width: 100%;
        }

        /* HEADER styling */
        .process-section .section-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .process-section .section-header h2 {
            font-size: large;
            font-weight: 700;
            letter-spacing: -0.02em;
            font-family: Arial, Helvetica, sans-serif;
            color: #fff;
            margin-bottom: 0.5rem;
        }

        .section-header .subhead {
            font-size: 40px;
            color: #fff;
            font-weight: 600;
            display: inline-block;
            padding-bottom: 0.5rem;
            letter-spacing: 0.5px;
        }

        /* Grid layout for process steps — fully responsive */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 1rem;
        }

        /* process card style */
        .process-card {
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    height: 350px;
    border-radius: 20px;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.15);
    background-color: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
    cursor: pointer;
}

/* Hover = Press Effect */
.process-card:hover {
    transform: translateY(2px) scale(0.98);
    box-shadow: inset 0 4px 10px rgba(0,0,0,0.15),
                0 4px 10px rgba(0,0,0,0.1);
}
        .icon-wrapper {
            /* width: 80px;
            height: 80px; */
            margin: 0 auto ;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 14px rgba(0,0,0,0.03);
            transition: all 0.2s;
        }
        .step-icon {
            object-fit: contain;
            display: block;
            width: 150px;
            height: 150px;
            background: transparent;
        }

        /* step number */
        .step-number {
            font-size: 1.2rem;
            font-weight: 700;
            font-family: monospace;
            color: #fff;
            background: #4a5a1a;
            display: inline-block;
            padding: 0.2rem 0.8rem;
            border-radius: 40px;
            margin-bottom: 1.2rem;
            letter-spacing: 0.5px;
        }

        .process-card h3 {
            font-size: large;
            font-weight: 700;
            color: #4a5a1a;
        }

        .process-card p {
            font-size: 0.95rem;
            line-height: 1.5;
            color: #2d3e2c;
            font-family: 'Inter', system-ui, 'Segoe UI', sans-serif;
            font-weight: 400;
        }

        /* Responsive design: large tablets, medium screens */
        @media (max-width: 992px) {
            .process-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.8rem;
            }
            .process-section {
                padding: 3rem 1.8rem;
            }
            .process-card {
                /* padding: 1.6rem 1.2rem; */
                height: 400px;
            }
        }

        @media (max-width: 640px) {
            .process-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .process-section {
                padding: 2.5rem 1.2rem;
            }
            .process-section .section-header h2 {
                font-size: medium;
            }
          
            .process-card h3 {
                font-size: 1.4rem;
            }
            .section-header .subhead{
                font-size: 32px;
            }
        }

        /* small extra touch for screen readers & accessibility */
        @media (prefers-reduced-motion: reduce) {
            .process-card {
                transition: none;
            }
        }

        /* ensure bg image is visible and overaly text is readable */
        .process-section {
            background-blend-mode: normal;
        }



.about-section {
            /* max-width: 1280px; */
            margin: 0 auto;
            padding: 0px;
            background: url(images/home-page-about-us-bg.webp);
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            background-clip: border-box;
        }

        .about-container {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            align-items: center;
            justify-content: space-between;
        }

        /* LEFT CONTENT */
        .about-content {
            /* flex: 1.1;
            min-width: 280px; */
            max-width: 1200px;
            padding: 60px 10px;
            width: 100%;
            margin: 0 auto;
        }

        .about-badge {
            color: #4a5a1a;
            font-size: 14px;
            font-family: Arial, Helvetica, sans-serif;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .about-title {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.2;
            color: #1a2a1f;
            margin-bottom: 8px;
        }

        .about-title span {
            color: #4a5a1a;
            display: inline-block;
        }

        .about-subtitle {
            font-size: 32px;
            font-weight: 700;
            color: #2c5e2a;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .about-description {
            font-size: 16px;
            line-height: 1.65;
            color: #3a4a3a;
            margin-bottom: 10px;
            max-width: 50%;
            font-family: Arial, Helvetica, sans-serif;
        }

        /* Features grid - 2x2 exactly like the image points */
        .about-features {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            gap: 20px 28px;
            margin-bottom: 40px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: Arial, Helvetica, sans-serif;
        }

        .feature-icon {
            width: 20px;
            height: 20px;
            background-color: #4a5a1a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            flex-shrink: 0;
        }

        .feature-text {
            font-size: 15px;
            font-weight: 500;
            color: #1e3a2a;
            font-weight: 600;
        }

        /* CTA Button */
        .about-btn {
            color: white;
            text-decoration: none;
            font-size: small;
            padding: 12px 28px;
            border-radius: 30px;
            cursor: pointer;
        }

        /* RIGHT IMAGE */
        /* .about-image-wrapper {
    height: 100%;
    width: 50%;
    background-color: #000;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
    display: block;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
} */

        /* Responsive */
        @media (max-width: 1024px) {
            .about-title {
                font-size: 40px;
            }
            .about-subtitle {
                font-size: 28px;
            }
        }

        @media (max-width: 900px) {
            .about-container {
                flex-direction: column;
                gap: 45px;
            }
            .about-content {
                width: 100%;
                display: flex;
                padding: 60px 10px;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                text-align: center;
            }
            .about-description {
                max-width: 100%;
            }
            .about-image-wrapper {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 600px) {
          .about-section {
            background:white;
        }
            .about-title {
                font-size: 32px;
            }
            .about-subtitle {
                font-size: 24px;
            }
            .about-features {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .feature-text {
                font-size: 14px;
            }
            .about-btn {
                padding: 10px 24px;
                font-size: 14px;
            }
        }


        /* Main Section */
.home-cta-container {
    position: relative;
    background: #4a5a1a;
    padding: 20px;
    color: #fff;

    text-align: center;
    overflow: hidden;
}

/* Optional dark overlay for better contrast */
.home-cta-overlay {
    max-width: 1200px;
    margin: auto;
        display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Text Styles */
.home-cta-subtitle {
    font-size: small;
    font-family: Arial, Helvetica, sans-serif;
    /* margin-bottom: 10px; */
}

.home-cta-title {
    font-size: 40px;
    font-weight: 700;
    /* margin-bottom: 15px; */
}

.home-cta-description {
    max-width: 700px;
    margin: 0 auto ;
    font-size: medium;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

/* Features Grid */
.home-cta-features {
    /* display: grid;
    grid-template-columns: repeat(4, 1fr); */
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    gap: 20px;
    flex-wrap: wrap;
}

/* Each Item */
.home-cta-item {
    padding: 10px;
    border-left: 1px solid white;
    display: flex;
    flex-direction: row;
    width: 280px;
    gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding-left: 20px;
}

/* Icon */
.home-cta-icon {
    width: 120px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-cta-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1); /* makes icons white */
}

/* Title */
.home-cta-item-title {
    font-size: medium;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 8px;
}

/* Text */
.home-cta-item-text {
    font-size: small;
    opacity: 0.85;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    /* .home-cta-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    } */
    .home-cta-item {
    border-left: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
}
}

@media (max-width: 576px) {
    .home-cta-title {
        font-size: 28px;
    }
.home-cta-icon{
  width: 100px;
}
    /* .home-cta-features {
        grid-template-columns: 1fr;
    } */
}


.footer-container {
    background: #f5f5f5;
    color: #333;
    font-family: Arial, sans-serif;
}

/* Top Section */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 50px 60px;
}

/* Columns */
.footer-col {
    font-size: 14px;
}

/* Logo */
.footer-logo {
    width: auto;
    height: 120px;
    margin-bottom: 15px;
}

/* Text */
.footer-text {
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    left: 15%;
    font-weight: bold;
}

/* Social Icons */
.footer-social a {
    display: inline-block;
    margin-right: 10px;
}

.footer-social img {
    width: 30px;
    height: 30px;
}

/* Headings */
.footer-heading {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.footer-links a:hover {
    color: #2f5d2f;
}

/* Contact */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-contact img {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

/* Bottom Bar */
.footer-bottom {
    background-color: #4a5a1a;
    color: #fff;
    padding: 15px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

/* Bottom Links */
.footer-bottom-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom-links a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
    .footer-logo{
      width: 100%;
      height: auto;
    }
    .footer-text{
      text-align: center;
      left: 0;
    }
    .footer-social{
      display: flex;
      justify-content: center;
      align-items: center;

    }
    .footer-col{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    .footer-links{
      width: 100%;
      text-align: center;
    }
    .footer-links li{
      width: 100%;
      text-align: center;
    }
    .footer-contact li{
      width: 100%;
      justify-content: center;
      align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}



.about-hero {
  width: 100%;
  padding: 40px 10px;
  height: fit-content;
  background: url('images/about-us-bg.webp') no-repeat center center/cover;
  position: relative;
}


/* content box */
.about-hero-content {
  max-width: 1200px;
  padding: 60px;
  padding-left: 0;
  margin: 0 auto;
  color: #000;
}

/* sub heading */
.sub-heading {
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #000;
}

/* main heading */
.about-hero-content h1 {
  font-size: 50px;
  line-height: 1.2;
  font-family: 'Times New Roman', Times, serif;
  margin-bottom: 20px;
}

/* green span */
.about-hero-content h1 span {
  font-family: 'Times New Roman', Times, serif;
  color: #4a5a1a;
}

/* paragraph */
.description {
  font-size: 16px;
  line-height: 1.7;
  max-width: 500px;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
}

/* ✅ responsive */
@media (max-width: 768px) {
  .about-hero {
    justify-content: center;
    background-image: none !important;
    background: rgb(243, 243, 243);
    text-align: center;
  }

  .about-hero-content {
    padding: 30px 20px;
    text-align: center;
  }

  .about-hero-content h1 {
    font-size: 36px;
  }
}


.about-vision-section {
  width: 100%;
  padding: 60px 20px;
  padding-bottom: 0;
  display: flex;
  margin-bottom: 70px;
  justify-content: center;
}

.vision-container {
  width: 100%;
  max-width: 1200px;
  background-color: rgb(243, 243, 243);
  border-radius: 20px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

/* CENTER IMAGE */
.vision-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.vision-center img {
  max-width: 180px;
  width: 100%;
  height: auto;
}

/* CARDS */
.vision-card {
  flex: 1;
}

/* row inside card */
.card-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

/* icon */
.card-row img {
  width: 80px;
  object-fit: contain;
  height: 80px;
}

/* text */
.card-text h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-family: Arial, Helvetica, sans-serif;
  color: #4a5a1a;
  text-align: left;
}

.card-text p {
  text-align: left;
  font-family: Arial, Helvetica, sans-serif;
  font-size: small !important;
  margin: 0;
}

/* LEFT ALIGN RIGHT SIDE TEXT DIFFERENCE (optional polish) */
.left .card-row {
  text-align: right;
  flex-direction: row;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .vision-container {
    flex-direction: column;
    text-align: center;
  }

  .card-row {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
.left .card-row{
    flex-direction: column;
}
  .vision-center {
    order: -1;
    margin-bottom: 30px;
  }
  .card-text h3 {
  text-align: center;
}

.card-text p {
  text-align: center;
}
}


.about-values-promise {
  width: 100%;
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

/* HEADER */
.values-header h4 {
  color: #4a5a1a;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 500;
}

.values-header h2 {
  font-size: 36px;
  margin-bottom: 50px;
  font-family: 'Times New Roman', Times, serif;
  color: #111;
}

/* GRID */
.values-grid {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

/* CARD */
.value-card {
  background: #F2F2EC;
  padding: 30px 5px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: 0.3s ease;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  width: 220px;
  cursor: pointer;
}

/* HOVER EFFECT */
.value-card:hover {
  background-color: #4a5a1a;
  transform: translateY(-5px);
}

/* IMAGE */
.value-card img {
  width: 100px;
  transition: 0.3s ease;
}

/* FIXED IMAGE HOVER */
.value-card:hover img {
  filter: brightness(0) invert(1);
}

/* TEXT */
.value-card h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #4a5a1a;
  transition: 0.3s ease;
}

/* TEXT COLOR CHANGE ON HOVER */
.value-card:hover h3 {
  color: #fff;
}

.value-card p {
  font-size: small;
  line-height: 1.6;
  font-family: Arial, Helvetica, sans-serif;
  transition: 0.3s ease;
}

.value-card:hover p {
  color: #eee;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .values-grid {
    /* grid-template-columns: repeat(2, 1fr); */
  }
}

@media (max-width: 600px) {
  .values-grid {
    justify-content: center;
    align-items: center;
  }
  .value-card{
    width: 100%;
  }

  .values-header h2 {
    font-size: 28px;
  }
}
.career-value{
  box-shadow: none;
  background: none;
  width: 250px;
  height: 250px;
  padding: 10px;
  position: relative;
}
@media (max-width: 600px) {
 .career-value{
  width: 100%;
} 
}

/* CENTER STRAIGHT BORDER LINE */
.career-value::after{
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  background: #bdbdbd;
}

/* REMOVE LAST CARD LINE */
.career-value:last-child::after{
  display: none;
}
.icon-wrap{
  width: 70px;
  height: 70px;
  background: #4a5a1a36;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.icon-wrap img{
  height: 40px;
  width: 40px;
  object-fit: contain;
}
.about-cta-section {
  width: 100%;
  background: #4a5a1a;
  padding: 20px;
  color: #fff;
}

/* CONTAINER ROW */
.cta-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* HEADING */
.cta-container h2 {
  font-size: 40px;
  line-height: 1.3;
  margin: 0;
  border-left: 1px solid white;
  padding-left: 20px;
  flex: 1;
}
.cta-container h2 span{
    font-weight: 100;
    font-size: 25px;
    font-family: Arial, Helvetica, sans-serif;
}
/* PARAGRAPH */
.cta-container p {
  flex: 1;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  color: #f1f1f1;
}

/* BUTTON */
.cta-btn {
  flex-shrink: 0;
  background: #fff;
  color: #4a5a1a;
  border: none;
  padding: 10px 28px;
  font-weight: 500 !important;
  font-size: medium !important;
  border-radius: 30px;
  cursor: pointer;
}

/* ✅ MOBILE */
@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-container h2,
  .cta-container p {
    text-align: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 220px;
  }
}

.service-page-what-we-do {
  padding: 60px 20px;
  background: #f6f7f9;
  text-align: center;
  font-family: Arial, sans-serif;
}

/* HEADER */
.service-page-subheading {
  color: #4a5a1a;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-page-heading {
  font-size: 40px;
  color: #111;
  font-family: 'Times New Roman', Times, serif;
  line-height: 1.2;
  margin-bottom: 15px;
}

.service-page-description {
  max-width: 750px;
  margin: auto;
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 60px;
}

/* GRID */
.service-page-grid {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

/* CARD */
.service-page-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 14px;
  border: 1px solid #4a5a1a;
  height: 320px;
  width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: center;
  transition: 0.3s;
}


.service-page-card:hover {
  transform: translateY(-8px);
  background: #f9fff9;
}

/* IMAGE */
.service-page-card img {
  width: 55px;
  margin-bottom: 25px;
}

/* TITLE */
.service-page-card h3 {
  font-size: 18px;
  color: #4a5a1a;
  text-align: left;
  width: 100%;
  margin-bottom: 20px;
}

/* EXTRA TEXT */
.service-page-card-text {
  font-size: 14px;
  color: #666;
  text-align: left;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* LIST (DOT STYLE) */
.service-page-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-page-card ul li {
  font-size: 14px;
  text-align: left;
  color: #555;
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
  font-weight: 600;
}

.service-page-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4a5a1a;
  font-weight: bold;
}
.hr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Tooltip box */
.hr-list li::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 75%;
  top: 50%;
  transform: translateY(-50%);
  width: 110px;
  background: #000000;
  color: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Arrow */
/* Show tooltip on hover */
.hr-list li:hover::after,
.hr-list li:hover::before {
  opacity: 1;
  visibility: visible;
}
.career-card-box{
  height: 250px;
  width: 250px;
}
.career-card-box:hover{
  background-color: #4a5a1a;

}
.career-card-box:hover img{
  filter: brightness(100);
}

.career-card-box:hover h3,.career-card-box:hover p{
  color: white;
}


/* RESPONSIVE */
@media (max-width: 1024px) {
  .service-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .service-page-grid {
    grid-template-columns: 1fr;
  }

  .hr-list li::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 80%;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;}
  .service-page-heading {
    font-size: 28px;
  }
}


.service-page-indivisual {
  padding: 60px  20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.service-page-indiv-container {
  width: 100%;
  height: fit-content;
  padding: 10px  ;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 20px;
  gap: 25px;
  margin: 0 auto;
  align-items: center;
}

/* LEFT IMAGE */
.service-page-indiv-left{
    height: 250px;
    width: 300px;
}
.service-page-indiv-left img {
  width: 100%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
}

/* RIGHT SIDE */
.service-page-indiv-right {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

/* BOX */
.service-page-box {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  border-right: 1px solid gainsboro;
  width: 250px;
  transition: 0.3s;
}

/* ICON */
.service-page-box img {
  width: 45px;
  margin-bottom: 10px;
}

/* TEXT */
.service-page-box h3 {
  font-family: Arial, Helvetica, sans-serif;
  color: #4a5a1a;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
}

.service-page-box p {
  font-size: 14px;
  color: #555;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
.service-page-box ul li{
  list-style: circle;
  margin-left: 15px;
}


/* MOBILE */
@media (max-width: 768px) {
  .service-page-indiv-container {
    flex-direction: column;
    text-align: center;
  }

  .service-page-indiv-right {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .service-page-box {
    text-align: center;
    width: 100%;
  }
  .service-page-box ul li{
    width: 160px;
    text-align: left;
    margin: 5px auto;
  }
}

.careers-form-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

/* TITLE */
.careers-form-title {
  text-align: center;
  margin-bottom: 40px;
}

.careers-form-title h2 {
  font-size: 28px;
  font-weight: 600;
}

.careers-form-title span {
  display: block;
  width: 60px;
  height: 3px;
  background: #4a5a1a;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* GRID */
.careers-form-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* FORM GROUP */
.careers-form-group {
  display: flex;
  flex-direction: column;
}

.careers-form-group label {
  font-size: 13px;
  margin-bottom: 6px;
  color: #333;
}

.careers-form-group input,
.careers-form-group select,
.careers-form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s;
  outline: none;
  background: #fff;
}

.careers-form-group input:focus,
.careers-form-group select:focus,
.careers-form-group textarea:focus {
  border-color: #4a5a1a;
}

/* TEXTAREA */
.careers-form-group textarea {
  height: 110px;
  resize: none;
}

/* FILE BOX */
.careers-form-file {
  border: 2px dashed #ddd;
  padding: 18px;
  text-align: center;
  height: 100px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #777;
  transition: 0.3s;
}

.careers-form-file:hover {
  border-color: #4a5a1a;
  color: #4a5a1a;
}

.careers-form-file input {
  display: none;
}

/* BUTTON */
.careers-form-btn {
  text-align: center;
  margin-top: 25px;
}

.careers-form-btn button {
  background: #4a5a1a;
  color: #fff;
  border: none;
  padding: 13px 35px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.careers-form-btn button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* QUOTE */
.careers-form-quote {
  max-width: 1100px;
  margin: 50px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 0 !important;
}

.careers-form-quote-text {
  font-size: 30px !important;
  color: #333;
  line-height: 1.5;
}

.careers-form-tree img {
  max-width: 120px;
}

/* CTA */
.careers-form-cta {
  background: #4a5a1a;
  padding: 35px 20px;
}

.careers-form-cta-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.careers-form-cta-text h3 {
  font-size: 35px !important;
  font-weight: 500 !important;
  color: #fff;
}

.careers-form-cta-text p {
  font-size: 14px;
  color: #eaffea;
  margin-top: 6px;
}

.careers-form-cta-btn button {
  background: #fff;
  color: #4a5a1a;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.careers-form-cta-btn button:hover {
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .careers-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .careers-form-quote {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .careers-form-grid {
    grid-template-columns: 1fr;
  }

  .careers-form-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}



#contact-us-form-section {
        font-family: 'Inter', system-ui, Arial, sans-serif;
        max-width: 1280px;
        margin: 40px auto;
        padding: 0 20px;
    }

    #contact-us-form-container {
        background: white;
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        display: grid;
        grid-template-columns: 1fr;
    }

    #contact-us-form-left {
        padding: 50px 40px;
    }

    #contact-us-form-heading-small {
        color: #4a5a1a;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 2px;
        margin: 0 0 8px 0;
    }

    #contact-us-form-heading {
        font-size: 32px;
        font-weight: 700;
        color: #1f2937;
        margin: 0 0 40px 0;
        line-height: 1.2;
    }

    #contact-us-form-row1,
    #contact-us-form-row2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    #contact-us-form-name-group,
    #contact-us-form-email-group,
    #contact-us-form-phone-group,
    #contact-us-form-subject-group,
    #contact-us-form-message-group {
        margin-bottom: 10px;
    }

    label {
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        font-weight: 500;
        color: #374151;
    }

    .required {
        color: #ef4444;
    }

    input, select, textarea {
        width: 100%;
        padding: 16px 20px;
        border: 2px solid #e5e7eb;
        border-radius: 16px;
        font-size: 16px;
        transition: all 0.3s ease;
    }

    input:focus, select:focus, textarea:focus {
        border-color: #4a5a1a;
        box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.2);
        outline: none;
    }

    textarea {
        resize: vertical;
        border-radius: 20px;
    }

    #contact-us-form-submit {
        width: fit-content;
        margin: 0 auto;
        background: #4a5a1a;
        color: white;
        border: none;
        padding: 10px 30px;
        font-size: medium !important;
        border-radius: 30px;
        cursor: pointer;
        display: flex;
        font-weight: 500 !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }

    #contact-us-form-privacy {
        text-align: center;
        margin-top: 20px;
        color: #6b7280;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    /* RIGHT SIDE */
    #contact-us-form-right {
        background: #F2F2EB;
        padding: 50px 40px;
        display: flex;
        flex-direction: column;
    }

    #contact-us-form-office-title {
        font-size: 22px;
        font-weight: 600;
        color: #1f2937;
        margin: 0 0 8px 0;
    }

    #contact-us-form-visit-title {
        font-size: 28px;
        font-weight: 700;
        color: #1f2937;
        margin: 0 0 20px 0;
    }

    #contact-us-form-description {
        color: #4b5563;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    #contact-us-form-address {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 30px;
    }

    #contact-us-form-location-icon {
        width: 48px;
        height: 48px;
        background: #4a5a1a;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 22px;
        flex-shrink: 0;
    }

    #contact-us-form-map {
        flex: 1;
        min-height: 300px;
        background: #e5e7eb url('https://via.placeholder.com/600x400/4CAF50/ffffff?text=Map+Location') center/cover no-repeat;
        border-radius: 16px;
        position: relative;
        overflow: hidden;
    }

    #contact-us-form-map-pin {
        position: absolute;
        bottom: 20px;
        left: 20px;
        background: white;
        padding: 10px 16px;
        border-radius: 9999px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 15px;
        color: #4a5a1a;
    }

    /* RESPONSIVE */
    @media (min-width: 768px) {
        #contact-us-form-container {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 768px) {
            #contact-us-form-left {
        padding: 10px;
        width: 300px;
    }
        #contact-us-form-right {
            padding: 40px 25px;
        }
        #contact-us-form-row1, #contact-us-form-row2 {
    grid-template-columns: 1fr;
}
    }

    .another-cta-main {
  background: #4a5a1a;
  padding:  20px;
}

.another-cta-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.another-cta-content {
  flex: 1;
  position: relative;
}

.quote-shape {
  position: absolute;
  top: -20px;
  left: -60px;
  font-size: 120px;
  line-height: 1;
  color: #f5eedf;
  opacity: 0.18;
  font-family: serif;
}

.another-cta-content h2 {
  color: #fff;
  font-size: 40px;
  line-height: 1.2;
  border-left: 1px solid rgba(255, 255, 255, 0.356);
  padding-left: 20px;
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.another-cta-image img {
  height: 150px;
  width: auto;
  border-radius: 20px;
  filter: brightness(100);
  opacity: 0.3;
  display: block;
}

@media (max-width: 992px) {
  .another-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 0;
  }

  .another-cta-content h2 {
    font-size: 42px;
    max-width: 100%;
  }

  .quote-shape {
    left: -20%;
    transform: translateX(-50%);
  }
  
.another-cta-image img {
  display: none;
}

}

@media (max-width: 576px) {
  .another-cta-content h2 {
    font-size: 32px;
  }

  .another-cta-image img {
    width: 100%;
    height: auto;
  }

  .quote-shape {
    font-size: 120px;
    top: -20px;
  }
}

.future-section {
  background: #F2F2EC;
  padding:  20px;
}

.future-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.future-left {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.future-left img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  background-color: #4a5a1a36;
  border-radius: 50%;
}

.future-left h2 {
  font-size: 30px;
  line-height: 1.2;
  color: #4a5a1a;
  margin: 0;
  font-weight: 700;
}

.future-btn {
  background: #4a5a1a;
  color: #fff;
  text-decoration: none;
  padding: 5px 20px;
  border-radius: 60px;
  font-size: small;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s ease;
}

.future-btn span {
  font-size: 22px;
  transition: 0.3s ease;
}

.future-btn:hover span {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .future-inner {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.future-left {
    flex-direction: column;
}
}

@media (max-width: 576px) {
  

  .future-left h2 {
    font-size: 30px;
  }

  .future-btn {
    width: 100%;
    justify-content: center;
  }
}
.btn-container {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 8px 20px;
  border-radius: 60px;
  text-decoration: none;
  font-size: medium;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s ease;
}

/* PRIMARY BUTTON */
.primary-btn {
  background: #4a5a1a;
  color: #fff;
}

.primary-btn span {
  font-size: 22px;
  transition: 0.3s ease;
}

.primary-btn:hover span {
  transform: translateX(5px);
}

/* SECONDARY BUTTON */
.secondary-btn {
  background: #fff;
  color: #4a5a1a;
  border: 2px solid #4a5a1a;
}

.upload-icon {
  font-size: 18px;
}

.secondary-btn:hover {
  background: #4a5a1a;
  color: #fff;
}

@media (max-width: 576px) {
  .btn-container {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    justify-content: center;
    width: 100%;
  }
}
.career-about-section {
  width: 100%;
  background: #fff;
}

/* CENTER + MAX WIDTH */
.career-about-section-container {
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

/* LEFT IMAGE FULL HEIGHT */
.career-about-section-left {
  flex: 1;
  background-image: url("images/career-page-img.webp");
  background-size: cover;
  background-position: center;
  min-height: 100%;
}

/* RIGHT CONTENT ONLY PADDING */
.career-about-section-right {
  flex: 1;
  padding: 80px 0;
  padding-left: 40px;
}

/* TEXT */
.career-about-section-tag {
  display: inline-block;
  color: #4a5a1a;
  font-weight: 600;
  margin-bottom: 10px;
}

.career-about-section-title {
  color: #000;
  font-size: 32px;
  font-family: 'Times New Roman', Times, serif;
  margin-bottom: 15px;
}

.career-about-section-text {
  color: #000;
  font-size: medium;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* LIST */
.career-about-section-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.career-about-section-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #000;
}

.career-about-section-list li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  background: #4a5a1a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: small;
  font-weight: normal;
  flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .career-about-section-container {
    flex-direction: column;
  }

  .career-about-section-right {
    padding: 40px 20px;
  }

  .career-about-section-left {
    min-height: 300px;
  }
}

.career-cta-section {
  width: 100%;
  background: #4a5a1a;
  padding: 0;
}

.career-cta-section-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

/* IMAGES */
.career-cta-section-left,
.career-cta-section-extra-img {
  flex: 1;
  height: 120px;
  background-size:contain;
  background-position: center;
  background-repeat: no-repeat;
  background-clip: border-box;
  opacity: 0.4;
  filter: brightness(100);
}

.career-cta-section-left {
  background-image: url("images/People-First-icon.webp");
}

.career-cta-section-extra-img {
  background-image: url("images/about-after-hero-tree.webp");
}

/* CONTENT */
.career-cta-section-right {
  color: #fff;
  display: flex;
  justify-content: center;
  width: fit-content;
  max-width: 800px;
  gap: 20px;
  align-items: center;
}

.career-cta-section-title {
  font-size: 35px;
  margin: 0;
  max-width: 500px;
  color: #fff;
}
.career-cta-text-and-btn-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 300px;
}
.career-cta-section-text {
  font-size: small;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #fff;
}

/* BUTTONS */
.career-cta-section-buttons {
  display: flex;
  gap: 15px;
}

.career-cta-section-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: small;
  padding: 5px 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

/* BUTTON 1 */
.career-cta-section-btn.primary {
  background: #fff;
  color: #4a5a1a;
}

/* BUTTON 2 */
.career-cta-section-btn.secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

/* HOVER */
.career-cta-section-btn:hover {
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .career-cta-section-container {
    flex-direction: column;
    text-align: center;
  }
  .career-cta-section-title{
    text-align: center;
    max-width: 100%;
  }
  .career-cta-section-right{
    flex-direction: column;
  }
.career-cta-text-and-btn-container{
  max-width: 100%;
}
  .career-cta-section-buttons {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .career-cta-section-left,
  .career-cta-section-extra-img {
    width: 100%;
  }
}



/* CONTAINER */
.careers-form-section {
  padding: 50px 20px;
  background: #f9f9f9;
}

/* TITLE */
.careers-form-title {
  text-align: center;
  margin-bottom: 30px;
}

.careers-form-title h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.careers-form-title span {
  display: block;
  width: 60px;
  height: 3px;
  background: #4A5A1A;
  margin: auto;
}

/* FORM GRID */
.careers-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

/* INPUT GROUP */
.careers-form-group {
  display: flex;
  flex-direction: column;
}

.careers-form-group label {
  font-size: 14px;
  margin-bottom: 6px;
}

.careers-form-group input,
.careers-form-group select,
.careers-form-group textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
}

.careers-form-group textarea {
  resize: none;
  height: 100px;
}

/* FILE INPUT */
.careers-form-file {
  border: 2px dashed #ccc;
  padding: 15px;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
}

.careers-form-file input {
  display: none;
}

/* BUTTON */
.careers-form-btn {
  text-align: center;
  margin-top: 20px;
}

.careers-form-btn button {
  background: #4A5A1A;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.careers-form-btn button:hover {
  opacity: 0.9;
}

/* QUOTE SECTION */
.careers-form-quote {
  max-width: 1100px;
  margin: 40px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.careers-form-quote-text {
  font-size: 20px;
  color: #333;
  max-width: 600px;
}

.careers-form-tree img {
  max-width: 120px;
}

/* CTA SECTION */
.careers-form-cta {
  background: #4A5A1A;
  color: #fff;
  padding: 30px 20px;
}

.careers-form-cta-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.careers-form-cta-text h3 {
  font-size: 24px;
}

.careers-form-cta-text p {
  font-size: 14px;
  margin-top: 5px;
}

.careers-form-cta-btn button {
  background: #fff;
  color: #4A5A1A;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .careers-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .careers-form-quote {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media(max-width: 600px) {
  .careers-form-grid {
    grid-template-columns: 1fr;
  }

  .careers-form-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}
.career-another-cta{
  background-color: #F2F2EC;
}
.career-another-cta h2{
  color: #4a5a1a;
  border: none;
}
.career-another-cta img{
  opacity: 0.2;
  filter: none;
}
.career-another-cta .quote-shape{
  color: black;
}
.contact-value-grid{
  background-color: #F2F2EC;
  border-radius: 20px;
  display: flex;
  align-items: stretch;
}

/* CARD */
.contact-value-card{
  width: 280px;
  background: none;
  box-shadow: none;
  padding: 20px;
  position: relative;
}

/* VERTICAL LINE BETWEEN CARDS */
.contact-value-card:not(:last-child)::after{
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  width: 1px;
  height: 70%;
  background: #ccc;
}
@media(max-width:600px){
 .contact-value-card{
  width: 100%;
} 
}

.events-section {
  background: #fff;
  padding: 60px 5%;
  font-family: Arial, sans-serif;
  color: #000;
}

.events-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.events-header {
  text-align: center;
  margin-bottom: 50px;
}

.events-header h2 {
  font-size: 45px;
  font-weight: 600;
}
.events-header h2 span{
  color: #4a5a1a;
}

.events-header p {
  max-width: 750px;
  margin: 15px auto 0;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

/* GRID */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 25px;
}

/* CARD */
.events-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #eee;
  box-shadow: 0 8px 22px rgba(0,0,0,0.05);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.events-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(74, 90, 26, 0.18);
  border-color: #4a5a1a;
}

/* ICON */
.events-icon {
  width: 52px;
  height: 52px;
  background: #4a5a1a;
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 15px;
}

/* BADGE */
.events-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #4a5a1a;
  color: #fff;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 20px;
}

/* TITLE */
.events-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* DESC */
.events-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* META */
.events-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: #333;
}

.events-meta i {
  color: #4a5a1a;
  margin-right: 6px;
}
.events-newsletter {
  background: #fff;
  padding: 40px 5%;
  font-family: Arial, sans-serif;
}

/* MAIN CONTAINER */
.events-newsletter-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.events-newsletter-left {
  flex: 1;
  min-width: 300px;
}

/* ICON + TEXT ROW */
.events-newsletter-left-row {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

/* ICON */
.events-newsletter-icon {
  width: 90px;
  height: 90px;
  border: 2px solid #4a5a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a5a1a;
  font-size: 40px;
  flex-shrink: 0;
}

/* TEXT COLUMN */
.events-newsletter-text {
  display: flex;
  flex-direction: column;
}

.events-newsletter-text h2 {
  font-size: 34px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.events-newsletter-text p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

/* RIGHT SIDE */
.events-newsletter-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}

/* INPUT GROUP (COLUMN) */
.events-newsletter-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.events-newsletter-input-group input {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
  font-size: 14px;
}

.events-newsletter-input-group input:focus {
  border-color: #4a5a1a;
  box-shadow: 0 0 0 3px rgba(74, 90, 26, 0.1);
}

.events-newsletter-input-group small {
  font-size: 12px;
  color: #777;
}

/* BUTTON ROW */
.events-newsletter-btn {
  background: #4a5a1a;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  transition: 0.3s ease;
}

.events-newsletter-btn:hover {
  background: #3f4b17;
  transform: translateY(-2px);
}
@media(max-width:600px){
  .events-newsletter-left-row{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .events-newsletter-right{
    flex-direction: column;
    align-items: center;
  }
}


.events-gallery {
  background: #fff;
  padding: 80px 5%;
  font-family: Arial, sans-serif;
}

.events-gallery-container {
  max-width: 1100px;
  margin: auto;
}

/* TITLE */
.events-gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.events-gallery-header h2 {
  font-size: 45px;
  font-weight: 600;
  color: #000;
  position: relative;
  display: inline-block;
}
.events-gallery-header h2 span{
  color: #4a5a1a;
}


/* GRID */
.events-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* ITEM */
.events-gallery-item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  border: 1px solid #eee;
}

/* IMAGE */
.events-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.events-gallery-item:hover img {
  transform: scale(1.05);
}
/* OVERLAY BACKDROP */
.gallery-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

/* ACTIVE STATE */
.gallery-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* BIG IMAGE */
.gallery-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: 0.3s ease;
}

.gallery-overlay.active img {
  transform: scale(1);
}

/* CLOSE BUTTON */
.gallery-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

p ,a,li,button{
  font-family: Arial, Helvetica, sans-serif;
}



.nav-btn a ,.btn,.about-btn,.future-btn,.cta-btn,.careers-form-btn button,#contact-us-form-submit{
  transition: all 0.5s;
  background-color: #4a5a1a !important;
}
.nav-btn a:hover,.btn:hover,.about-btn:hover,.future-btn:hover,.cta-btn:hover,#contact-us-form-submit:hover,.careers-form-btn button:hover{
  background-color: #374213 !important;

}
.secondary-btn{
  background-color: white !important;
}