* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  font-family: 'RethinkSans', sans-serif;
  color: #111;
  font-size: 15px;
  line-height: 1.6;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 40px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #eee;
}

/*
.navbar .logo img {
  height: 100px;
  width: 100px;
  border-radius: 10px;
  object-fit: contain;
}*/

nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar ul {
  display: flex;
  align-items: center;
  gap: 42px;
  list-style: none;
}

.navbar a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease;
}

.navbar a:hover {
  color: #184d2a;
}

/* .sign_in_btn {
 display: inline-block;
 text-align: center;
 background: #ffcf3d;
 width: 63px;
 height: 22px;
} */

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 60px;
  gap: 60px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
}

.hero-text p {
  font-size: 16px;
  color: #555;
  max-width: 520px;
  margin-bottom: 34px;
}

.primary-btn {
  background: #f4c542;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: 0.3s ease;
  width: 190px;
  height: 56px;
}

.primary-btn:hover {
  background: #e1b532;
  transform: translateY(-3px);
}

/* .hero-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-img img {
  height:660px;
  width: 651 px;
  animation: floatImage 4s ease-in-out infinite;
} */

.hero-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img img {
  width: 100%;
  max-width: 600px;
  height: auto;
  animation: floatImage 4s ease-in-out infinite;
  object-fit: contain;
  padding-bottom:80px;
}

/* Tablet */
@media (max-width: 992px) {
  .hero-img img {
    max-width: 350px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-img {
    width: 100%;
    margin-top: 10px;
  }

  .hero-img img {
    max-width: 100%;
    width: 90%;
    height: 270px;
  }

  .hero-text p {
    text-align: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-img img {
    width: 100%;
    max-width: 320px;
    height: 320px;
  }
}

@keyframes floatImage {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-14px);
  }

  100% {
    transform: translateY(0px);
  }
}

.about {  
  padding: 0px 60px;
}

@media (max-width: 480px) {
  .about {
    padding: 5px 20px;
  }
}


.about h2 {
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* .about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
}

.about-images img1 {
  height:556px;
  width: 534px;
  border-radius: 20px;
} */

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
}

/* Main Image */
.about-images img {
  height: 450px;
  width: 450px;
  /* max-width: 100%; */
  border-radius: 20px;
  /* object-fit: cover; */
}

/* Tablet */
@media (max-width: 992px) {
  .about-container {
    gap: 20px;
  }

  .about-images img {
    width: 450px;
    height: auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-images img {
    width: 90%;
    max-width: 400px;
    height: 270px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about-images img {
    width: 100%;
    max-width: 320px;
  }
}

.about-text h3 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 600;

}

.about-text p {
  color: #444;
  font-size: 16px;
  line-height: 1.8;
}

.services {
  padding: 0px 60px;
  background: #fafafa;
}

.services h2 {
  font-size: 46px;
  margin-bottom: 18px;
}

@media (max-width: 1024px) {
  .services .header {
    display: block !important;
    text-align: center !important;
  }
}

@media (max-width:480px) {
  .services h2 {
    font-size: 32px;
    margin-bottom: 18px;
  }

  .subtext {
    text-align: center;
  }

  .about-text h3 {
    font-size: 32px;
  }
}

.subtext {
  font-size: 16px;
  font-weight: 400;
  color: #191919;
  max-width: 800px;
  margin-bottom: 50px;
  font-family: 'RethinkSans', sans-serif;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 29px;
  align-items: center;
  justify-items: center;
}

.card {
  height: 304px;
  width: 647px;
  border-radius: 18px;
  padding: 36px;
  display: flex;
  gap: 15px;
  transition: 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.card img {
  width: 199px;
  height: 197px;
}

.card-text h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.card-text p {
  font-size: 14px;
  line-height: 1.8;
}

.green {
  background: #184d1a;
  color: white;
}

.green p {
  color: rgba(255, 255, 255, 0.85);
}

.yellow {
  background: #ffcf3d;
  color: #111;
}

/* Tablet */
@media (max-width: 1200px) {
  .cards {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .card {
    width: 90%;
    max-width: 647px;
  }
}

/* Tablet */
@media (max-width: 1200px) {
  .cards {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .card {
    width: 90%;
    max-width: 647px;
  }

  /* ORDER FIX */
  .cards .card:nth-child(1) {
    order: 1;
  }

  .cards .card:nth-child(2) {
    order: 2;
  }

  .cards .card:nth-child(4) {
    order: 3;
  }

  /* green */
  .cards .card:nth-child(3) {
    order: 4;
  }

  /* yellow */
  .cards .card:nth-child(5) {
    order: 5;
  }

  /* green */
  .cards .card:nth-child(6) {
    order: 6;
  }

  /* yellow */
}


/* Mobile */
@media (max-width: 768px) {

  .cards {
    gap: 18px;
  }

  .card {
    width: 95%;
    height: auto;
    min-height: 240px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 16px;
    border-radius: 16px;
    gap: 12px;
  }

  .card img {
    width: 110px;
    height: auto;
    min-width: unset !important;
    min-height: unset !important;
  }

  .card-text h3 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .card-text p {
    font-size: 14px;
    line-height: 1.6;
  }
}


/* Small Mobile */
@media (max-width: 480px) {

  .cards {
    gap: 14px;
  }

  .card {
    width: 100%;
    min-height: 220px;
    padding: 18px 14px;
    border-radius: 14px;
  }

  .card img {
    width: 90px;
  }

  .card-text h3 {
    font-size: 19px;
  }

  .card-text p {
    font-size: 13px;
    line-height: 1.5;
  }
}

.why {
  background: #f4c542;
  margin: 70px;
  border-radius: 20px;
  padding: 80px;
}

.why h2 {
  font-size: 52px;
  text-align: center;
  margin-bottom: 18px;
}

.why .subtext {
  text-align: center;
  margin: auto;
  margin-bottom: 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-item {
  position: relative;
  max-width: 800px;
  display: flex;
  gap: 16px;
}

.check {
  font-size: 28px;
  color: #184d2a;
}

.why-item strong {
  /* display: inline-block;
  font-size: 26px;
  max: width 800px;
  font-weight:600;
  margin-bottom: 10px; */
  display: inline-block;
  width: calc(100% - 60px);
  vertical-align: top;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;

}

.why-item p {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
}

/* ================= RESPONSIVE ================= */

/* Laptop */
@media (max-width: 1200px) {

  .why {
    padding: 60px 50px;
  }

  .why h2 {
    font-size: 44px;
  }

  .why-grid {
    gap: 30px;
  }

  .why-item strong {
    font-size: 21px;
  }

  .why-item p {
    font-size: 18px;
  }
}


/* Tablet */
@media (max-width: 992px) {

  .why {
    margin: 40px;
    padding: 50px 35px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .why h2 {
    font-size: 38px;
  }

  .why .subtext {
    font-size: 18px;
    margin-bottom: 45px;
  }

  .why-item strong {
    font-size: 19px;
  }

  .why-item p {
    font-size: 17px;
    line-height: 1.6;
  }
}


/* Mobile */
@media (max-width: 768px) {

  .why {
    margin: 20px;
    padding: 40px 24px;
    border-radius: 16px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why h2 {
    font-size: 32px;
  }

  .why .subtext {
    font-size: 16px;
    margin-bottom: 35px;
  }

  .why-item {
    gap: 14px;
  }

  .why-item strong {
    font-size: 18px;
    line-height: 1.5;
  }

  .why-item p {
    font-size: 15px;
    line-height: 1.7;
  }
}

@layer base, override;

@layer override {
  @media (max-width: 1024px) {
    section .header {
      display: block !important;
      text-align: center !important;
    }
  }
}

/* Small Mobile */
@media (max-width: 480px) {

  .why {
    margin: 12px;
    padding: 30px 18px;
  }

  .why h2 {
    font-size: 26px;
  }

  .why .subtext {
    font-size: 14px;
  }

  .why-item strong {
    font-size: 16px;
  }

  .why-item p {
    font-size: 14px;
  }
}

.impact {
  padding: 10px 60px;
}

.impact h2 {
  font-size: 46px;
  margin-bottom: 60px;
}

@media (max-width: 480px) {
  .impact h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .impact-item h3 {
    font-size: 32px;
  }

}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.impact-item h3 {
  font-size: 46px;
  margin-bottom: 8px;
}

.header-2 {
  text-align: center;
}

@media (max-width:480px) {
  .impact-item h3 {
    font-size: 32px;
    margin-bottom: 8px;
  }
}

.impact-item strong {
  display: block;
  margin-bottom: 8px;
}

.impact-item p {
  color: #555;
}

.contact {
  margin-top: 5%;
  padding: 10px 60px;
  background: #fafafa;
}

.contact h2 {
  font-size: 46px;
  margin-bottom: 16px;
}

.contact-container {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  align-items: start;
  justify-content: space-around;
}

.contact-info-box {
  width: 600px;
  height: 500px;
  max-width: 800px;
  background: #18491a;
  color: white;
  border-radius: 20px;
  padding: 42px 38px;
  margin-bottom: 20px;
}

.contact-info-box h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 42px;
  max-width: 800px;
}

.contact-info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-badge {
  margin-top: 70px;

  display: flex;
  align-items: center;

  gap: 12px;

  font-size: 20px;
  /* smaller */
  font-weight: 500;
  line-height: 1.4;

  color: #f7c948;

  max-width: 420px;
  /* box ke andar */
}

.trust-tick {
  width: 32px;
  /* smaller tick */
  height: 32px;

  object-fit: contain;

  flex-shrink: 0;
}

.trust-badge span {
  flex: 1;
}

.contact-info-box ul li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 22px !important;
  font-weight: 500 !important;
  margin-bottom: 16px;
  line-height: 1.4;
}


.contact-farm-img img {
  width: 600px;
  border-radius: 20px;
  display: block;
}

.contact-form {
  height: 850px;
  width: 750px;
  background: #f5f5dc;
  padding: 36px;
  border-radius: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
  font-family: 'RethinkSans', sans-serif;
}

.submit-btn {
  width: 100%;
  font-size: 16px;
  background: #184d2a;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  transition: 0.3s ease;
  margin-top: auto;
}

.submit-btn:hover {
  background: #0f3319;
}

/* ================= RESPONSIVE ================= */

/* Laptop */
@media (max-width: 1200px) {

  .contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-items: center;
  }

  .contact-info-box,
  .contact-form {
    width: 100%;
    max-width: 750px;
  }

  .contact-farm-img img {
    width: 100%;
  }
}


/* Tablet */
@media (max-width: 768px) {

  .contact {
    padding: 70px 20px;
  }

  .contact h2 {
    font-size: 34px;
    text-align: center;
  }

  .contact-container {
    gap: 30px;
  }

  .contact-info-box {
    width: 100%;
    height: auto;
    padding: 30px 24px;

    /* button bottom fix */
    display: flex;
    flex-direction: column;
  }

  .contact-info-box h3 {
    font-size: 24px;
    margin-bottom: 28px;
  }

  .contact-info-box ul li {
    font-size: 18px !important;
    gap: 12px;
  }

  .trust-badge {
    margin-top: 40px;
    font-size: 17px;
  }

  .contact-form {
    width: 100%;
    height: auto;
    padding: 28px 20px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px;
  }

  .submit-btn {
    margin-top: auto;
    /* button bottom pe chala jayega */
  }

  .contact-farm-img img {
    width: 100%;
    max-width: 100%;
  }
}


/* Small Mobile */
@media (max-width: 480px) {

  .contact {
    padding: 50px 14px;
  }

  .contact h2 {
    font-size: 28px;
  }

  .contact-info-box {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .contact-info-box h3 {
    font-size: 20px;
  }

  .contact-info-box ul li {
    font-size: 16px !important;
  }

  .trust-badge {
    font-size: 15px;
    gap: 10px;
  }

  .trust-tick {
    width: 26px;
    height: 26px;
  }

  .contact-form {
    padding: 22px 16px;
    border-radius: 16px;
  }

  .submit-btn {
    padding: 13px;
    font-size: 15px;
  }
}

.footer {
  padding: 70px;
  background: rgb(255, 255, 255);
  border-top: 1px solid #eee;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 24px;
}

.footer-brand p {
  color: #111;
  line-height: 1.8;
  margin-bottom: 2vh;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #111;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer {
  width: 100%;
  /* background:#ffffff; */
  font-family: 'Poppins', sans-serif;
  padding-top: 55px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 70px 50px 70px;
}

.footer-left {
  width: 45%;
}


.footer-logo {
  width: 134px;
  height: 134px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 28px;
}

@media (max-width:480px) {
  .footer {
    width: 100%;
    /* background:#ffffff; */
    font-family: 'Poppins', sans-serif;
    padding-top: 10px;
  }

  .footer-logo {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 28px;
  }

}

.resume-banner {
  width: 100%;
  background-color: #0b4d16;
  padding: 25px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 2px;
  box-sizing: border-box;
  flex-wrap: wrap;
  gap: 20px;
}

.resume-left {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 100px;
}


.resume-icon {
  width: 72px;
  height: 72px;
  background-color: white;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  flex-shrink: 0;
}

.mail-icon {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.resume-text h2 {
  color: white;
  font-size: 28px;
  margin-bottom: 6px;
  font-weight: 600;
  margin-top: 0;
}

.resume-text p {
  color: #d8d8d8;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.resume-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-right: 250px;
}

.resume-btn {
  background-color: white;
  color: black;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

.resume-btn:hover {
  transform: translateY(-2px);
}

.resume-email {
  color: white;
  font-size: 15px;
  margin: 0;
}



@media (max-width: 1025px) {
  .resume-banner {
    padding: 24px 18px;
    flex-direction: column;
    text-align: center;
  }

  .resume-left {
    flex-direction: column;
    margin-left: 0;
  }

  .resume-right {
    margin-right: 0;
  }

  .resume-text h2 {
    font-size: 24px;
  }

  .resume-text p {
    font-size: 14px;
  }
}

.upload-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.address-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 35px;
}

.address-box h4 {
  font-size: 16px;
  font-weight: 600;
  color: #111;
}

.address-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}


.social-links {
  display: flex;
  gap: 18px;
  margin-bottom: 38px;
}

.social-links a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.social-links a:hover {
  transform: translateY(-3px);
}



.services-column h4 {
  font-size: 17px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #111;
}

.services-column ul {
  list-style: none;
}

.services-column ul li {
  margin-bottom: 8px;
}

.services-column ul li a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  transition: 0.3s;
}

.services-column ul li a:hover {
  color: #1f6b3b;
}



.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 70px 50px 70px;
}



.footer-right {
  width: auto;
  margin-left: 0;
  margin-top: 136px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}



.footer-col h4 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #111;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  white-space: nowrap;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #1f6b3b;
}



.services-column h4 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #111;
}

.address-box h4 {
  font-size: 16px;
  font-weight: 600;
}


.footer-bottom {
  width: 100%;
  border-top: 2px solid #8d8d8d;
  text-align: center;
  padding: 18px 10px;
  font-size: 11px;
  color: #555;
  line-height: 1.8;
}



@media(max-width:768px) {
  .footer-top {
    flex-direction: column;
    /* gap:50px; */
    padding: 40px 25px;
  }

  .footer-right {
    margin-top: 0;
  }

}

.career-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.career-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width:480px) {
  .career-hero {
    position: absolute;
    height: 100vh;
    overflow: hidden;
  }

  .career-hero img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
  }
}

.career-breadcrumb {
  position: absolute;
  top: 34px;
  left: 70px;
  z-index: 5;
  color: white;
}

/* .career-box {
  position: absolute;
  left: 70px;
  bottom: 70px;
  background: white;
  width: 500px;
  padding: 40px;
  border-radius: 24px;
  z-index: 5;
} */

.career-box button {
  background: #f4c542;
  border: none;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

.why-join {
  padding: 90px 50px;
  background: #f4f4f4;
}

.why-join h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 55px;
  color: #000;
}

.join-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.join-card {
  width: 328px;
  background: #f4c842;
  border: 1px solid #8a8a8a;
  border-radius: 10px;
  padding: 28px 18px;
  text-align: center;
  transition: 0.3s ease;
  box-sizing: border-box;
}

.join-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.circle-icon {
  width: 58px;
  height: 58px;
  background: #0f4d22;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.circle-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.join-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #000;
}

.join-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

@media (max-width: 768px) {
  .join-grid {
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
  }

  .join-card {
    width: 100%;
    max-width: 100%;
  }
}

.job-card {
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 30px;
  margin-bottom: 22px;
  transition: 0.3s ease;
}

.job-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.job-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.job-card p {
  color: #555;
  margin-bottom: 18px;
}

.job-location {
  display: flex;
  align-items: center;
  gap: 8px;
}

.job-location img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.job-location p {
  font-size: 15px;
  color: #222;
  margin: 0;
}

.job-card button {
  background: #184d2a;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
}

.careers-cta {
  background: #184d2a;
  text-align: center;
  padding: 90px 70px;
}

.careers-cta h2 {
  color: white;
  font-size: 48px;
  margin-bottom: 18px;
}

.careers-cta p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

.careers-cta-btn {
  background: #f4c542;
  color: #111;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 10px;
  font-weight: 700;
}

@media(max-width: 900px) {

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 24px;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .about-container {
    flex-direction: column;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-right {
    width: auto;
    margin-left: 0;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 42px;
  }

  .footer-links {
    flex-direction: column;
    gap: 40px;
  }

  .join-cards {
    grid-template-columns: repeat(2, 1fr);
  }

}

.career-hero {
  position: relative;
  width: 100%;
  height: 751px;
  overflow: hidden;
}

.career-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-overlay {
  font-size: 24px;
  font-weight: 600;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 90px 40px;
}

.career-overlay p {
  color: white;
  font-size: 22px;
  margin-bottom: 60px;
}

.career-box {
  position: relative;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 520 / 300;
  background: url("./photos/Subtract.png") no-repeat;
  background-size: 100% 100%;
  padding: 5% 5%;
  color: #000;
  box-sizing: border-box;
  border-radius: 22px;
}

.career-box button {
  position: absolute;
  right: 3%;
  bottom: 1%;
  width: 41%;
  padding: 12px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  background: #f4c430;
  cursor: pointer;
  white-space: nowrap;
}

.career-box h1 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.career-box p {
  font-size: 22px;
  font-weight: 500;
  color: #333;
  margin-bottom: 22px;
}

@media (max-width: 768px) {
  .career-box h1{
    font-size: 32px;

  }

  .career-box p {
    font-size: 22px
  }

  .career-box button{
    font-size: 18px;
    bottom: 2%;
    right: 7%;
    width: 38%
  }
  
}

@media (max-width: 480px) {
  .career-box h1{
    font-size: 22px;

  }

  .career-box p {
    font-size: 16px
  }

  .career-box button{
    font-size: 12px;
    bottom: -1%;
    right: 2%;
    width: 41%;
    padding: 6px 65px;
    border-radius:5px;
  }
  
}


.career-text{
  display: flex;
  justify-content: center;
  gap:10px;
}
.join-section {
  padding: 100px 70px;
  background: white;
}

.join-section h2 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 50px;
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.join-card {
  background: #f4c542;
  padding: 30px 22px;
  border-radius: 14px;
  text-align: center;
  transition: 0.3s;
}

.join-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.circle-icon {
  width: 84px;
  height: 84px;
  background: #184d2a;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}

.join-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.join-card p {
  font-size: 15px;
  line-height: 1.7;
}

.jobs-section {
  padding: 100px 70px;
}

.job-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.job-top input {
  padding: 12px 16px;
  width: 220px;
}

.department-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.department-buttons button {
  padding: 10px 18px;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
  border-radius: 6px;
}

.active-btn {
  background: #184d2a !important;
  color: white;
}

.job-card {
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  margin-bottom: 24px;
  overflow: hidden;
  transition: 0.3s;
  background: white;
}

.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.job-header {
  display: flex;
  justify-content: space-between;
  padding: 30px;
}

.job-header h3 {
  font-size: 34px;
  margin-bottom: 8px;
}

.days {
  margin-left: 16px;
  color: #777;
}

.job-description {
  padding: 0 30px 20px;
  line-height: 1.8;
}

.apply-btn {
  width: 100%;
  border: none;
  padding: 16px;
  background: #f2f2f2;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.apply-btn:hover {
  background: #e6e6e6;
}

.view-openings {
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
  font-weight: 700;
}

.view-openings {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid black;
  background: transparent;
  color: black;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.view-openings:hover {
  background: black;
  color: white;
}

.button-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.banner {
  background-color: #1a4a2e;
  border-radius: 12px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 860px;
  margin: 40px auto;
}

.left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-circle {
  width: 64px;
  height: 64px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle svg {
  width: 28px;
  height: 28px;
}

.text h2 {
  color: white;
  margin: 0 0 6px 0;
  font-size: 20px;
  font-family: sans-serif;
}

.text p {
  color: #a8c4b0;
  margin: 0;
  font-size: 14px;
  font-family: sans-serif;
  line-height: 1.5;
}

.right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.btn {
  background: transparent;
  border: 1.5px solid white;
  color: white;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-family: sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.email-link {
  color: #a8c4b0;
  font-size: 13px;
  font-family: sans-serif;
  text-decoration: none;
}

.culture-section {
  padding: 100px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.culture-left {
  width: 38%;
}

.culture-left h2 {
  font-size: 52px;
  margin-bottom: 28px;
}

.culture-left p {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}

.culture-right {
  width: 52%;
}

.culture-right img {
  width: 744px;
  height: 496px;
  border-radius: 8px;
  transition: 0.3s ease;
}

.counter {
  font-size: 2rem;
  font-weight: bold;
  color: #2c7a4b;
  transition: all 0.3s ease;
}



.jobs-section {
  width: 100%;
  padding: 100px 70px;
  /* margin: 140px auto 80px;
    padding: 0 40px; */
  font-family: 'Poppins', sans-serif;
}

.culture-section {
  padding: 100px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.culture-left {
  width: 38%;
}

.culture-left h2 {
  font-size: 52px;
  margin-bottom: 28px;
}

.culture-left p {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}

.culture-right {
  width: 52%;
}

.culture-right img {
  width: 744px;
  height: 496px;
  border-radius: 8px;
  transition: 0.3s ease;
}

@media (max-width: 1024px) {
  .culture-section {
    padding: 60px 40px;
    gap: 40px;
  }

  .culture-left h2 {
    font-size: 38px;
  }

  .culture-right img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .culture-section {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }

  .culture-left {
    width: 100%;
  }

  .culture-left h2 {
    font-size: 30px;
    margin-top: 0 !important;
    margin-bottom: 16px !important;
  }

  .culture-left p {
    font-size: 15px;
    line-height: 1.7;
  }

  .culture-right {
    width: 100%;
  }

  .culture-right img {
    width: 100%;
    height: auto;
  }
}

.breadcrumb-box {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #f5cc38;
  padding: 10px 20px;
  border-radius: 3px;
  margin-bottom: 35px;
}

.breadcrumb-box a,
.breadcrumb-box p {
  margin: 0;
  text-decoration: none;
  color: #111;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.breadcrumb-box span {
  font-size: 24px;
  font-weight: 600;
  color: #111;
  line-height: 1;
}



.job-top {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: nowrap;
}

.search-box {
  width: 400px;
  height: 40px;
  border: 2px solid #8f8f8f;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  background: #fff;
  flex-shrink: 0;
}

.search-icon {
  font-size: 30px;
  color: #333;
  margin-right: 14px;
  transform: rotate(270deg);
  display: inline-block;
}

.search-box input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 18px;
  color: #222;
  font-weight: 400;
}

.search-box input::placeholder {
  color: #b5b5b5;
}



.job-top select {
  width: 400px;
  height: 40px;
  border: 2px solid #8f8f8f;
  border-radius: 8px;
  padding: 0 55px 0 18px;
  background-color: #fff;

  font-size: 18px;
  color: #222;
  outline: none;
  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  flex-shrink: 0;

  /* CUSTOM BIG ARROW */

  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");

  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 24px;
}


@media(max-width:768px) {

  .jobs-section {
    margin-top: 90px;
    padding: 0 20px;
  }

  .breadcrumb-box {
    padding: 14px 20px;
    gap: 10px;
  }

  .breadcrumb-box a,
  .breadcrumb-box p {
    font-size: 16px;
  }

  .breadcrumb-box span {
    font-size: 20px;
  }

  .search-box,
  .job-top select {
    height: 54px;
  }
}

.header {
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Tablet */
@media (max-width: 768px) {
  .header {
    font-size: 42px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .header {
    font-size: 32px;

  }

}

.subheader {
  font-size: 27px;
  font-weight: 400;
  color: #191919;
  font-family: 'RethinkSans', sans-serif;
}

/* Tablet */
@media (max-width: 768px) {
  .subheader {
    font-size: 18px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .subheader {
    font-size: 16px;
  }
}


.sub {
  font-size: 48px;
  font-weight: 700;
}

/* Tablet */
@media (max-width: 768px) {
  .sub {
    font-size: 36px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .sub {
    font-size: 28px;
  }
}

.tick-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: inline-block;
  vertical-align: top;
  margin-right: 12px;
  margin-top: 5px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process h2 {
    font-size: 36px;
  }
}

@media (max-width: 500px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
strong,
label,
li,
input,
textarea,
button,
a,
div {
  font-family: 'Rethink Sans', sans-serif !important;
}

/* Fix join-grid responsive for careers page */
@media (max-width: 1024px) {

  .join-section {
    width: 100%;
    padding: 30px 40px;
  }

  .join-grid {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    gap: 35px;
  }

  .join-card {
    width: 280px;
    height: auto;
    min-height: 280px;
  }
}

@media (max-width: 600px) {

  .join-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .join-card {
    width: 100%;
    max-width: 320px;
  }

  .join-section {
    padding: 30px 20px;
  }

  .join-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 100px;
}