@charset "utf-8";
/* CSS Document */

/*about content*/

/* General */
.about {
  background: #fff;
  color: #333;
  padding: 3rem 3rem ;
  font-family: 'Lato', sans-serif;
}

.about-section {
  padding: 4rem 1.5rem;
  text-align: left;
}

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

/* Section titles */
.about-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #111;
}

/* Paragraph text */
.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom:1em;
}

/* Divider between sections */
.divider {
  height: 4px;
  width: 180px;
  margin: 0 auto;
  background: linear-gradient(to right, #104a29, #1bb039);
  border-radius: 2px;
}

/* Mission/Vision alternate tone */
.mission-vision {
  background: #f9f9f9;
}

.mission-vision p strong{
font-size:1.5em;
color:#999999;
}


/* Photo box */
.photo-section {
  background: #fff;
}

.photo-box {
  position: relative;
  overflow: hidden;
  display: inline-block;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: scale(0.6);
  opacity: 0;
  transition: all 1s ease;
  margin: 0 4em ;

}

.photo-box.visible {
  transform: scale(1);
  opacity: 1;
}

.photo-box img {
  width: 100%;
  display: block;
  border-radius: 20px;

}

/* Responsive */
@media (max-width: 768px) {

/*.about {
  background: #fff;
  color: #333;
  padding: 2rem 1.5rem ;
  font-family: 'Lato', sans-serif;
}


  .about-section {
    padding: 2rem 1rem;
  }

  .about-section h2 {
    font-size: 1.7rem;
  }

  .about-section p {
    font-size: 1rem;
  }*/

  .photo-box {
    border-radius: 12px;
	  margin: 1em 1em ;
  }
}

 /* Basic hidden state for paragraphs */
  /* Fly-in animation for paragraphs */
.about-section p {
  opacity: 0;
  transform: translateX(-50px); /* left by default */
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

/* Paragraphs flying from right */
.about-section p.right {
  transform: translateX(50px);
}

/* Active state when in view */
.about-section p.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .about-section p,
  .about-section p.right {
    transform: translateX(0); /* No movement */
  }
}


/*company content*/

/* General */
.company {
  background: #fff;
  color: #333;
  padding: 2rem 1.5rem ;
  font-family: 'Lato', sans-serif;
}

.company-section {
  padding: 4rem 1.5rem;
  text-align: center;
}

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

/* Section titles */
.company-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #111;
}

/* Paragraph text */
.company-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom:1em;
}

/* Divider between sections */
.divider {
  height: 4px;
  width: 180px;
  margin: 0 auto;
  background: linear-gradient(to right, #104a29, #1bb039);
  border-radius: 2px;
}

/* Mission/Vision alternate tone */
.mission-vision {
  background: #f9f9f9;
}

.mission-vision p strong{
font-size:1.5em;
color:#999999;
}


/* Photo box */
.photo-section {
  background: #fff;
}

.photo-box {
  position: relative;
  overflow: hidden;
  display: inline-block;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: scale(0.6);
  opacity: 0;
  transition: all 1s ease;
  margin: 0 4em ;

}

.photo-box.visible {
  transform: scale(1);
  opacity: 1;
}

.photo-box img {
  width: 100%;
  display: block;
  border-radius: 20px;

}

/* Responsive */
@media (max-width: 768px) {

.company {
  background: #fff;
  color: #333;
  padding: 2rem 0.5rem ;
  font-family: 'Lato', sans-serif;
}

  .company-section {
    padding: 2rem .5rem;
  }

  .company-section h2 {
    font-size: 1.7rem;
  }

  .company-section p {
    font-size: 1rem;
  }

  .photo-box {
    border-radius: 12px;
	  margin: 1em .5em ;
  }
}

 /* Basic hidden state for paragraphs */
  /* Fly-in animation for paragraphs */
.company-section p {
  opacity: 0;
  transform: translateX(-50px); /* left by default */
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

/* Paragraphs flying from right */
.company-section p.right {
  transform: translateX(50px);
}

/* Active state when in view */
.company-section p.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .company-section p,
  .company-section p.right {
    transform: translateX(0); /* No movement */
  }
}

/*mission vision*/

section-directions {
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-direction: column;
      gap: 40px;

    }

    .card {
      position: relative;
      display: flex;
      flex-direction: column;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(6px);
      border-radius: 20px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }

    .card-content {
      padding: 24px;
      z-index: 2;
    }

    .card h2 {
      font-size: 28px;
      margin-bottom: 12px;
      color: #333;
      font-weight: bold;
	  	  font-family: 'Lato', sans-serif;
    }

    .card p {
      color: #555;
      line-height: 1.6;
      font-size: 16px;
	  	  font-family: 'Lato', sans-serif;
    }

    .card-image {
      position: relative;
      width: 100%;
      height: 220px;
      overflow: hidden;
      opacity: 0.9;
    }

    .card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      mix-blend-mode: multiply;
    }

    /* Desktop layout */
    @media (min-width: 768px) {
      .card {
        flex-direction: row;
      }
      .reverse {
        flex-direction: row-reverse;
      }
      .card-content, .card-image {
        width: 50%;
        height: auto;
      }
    }
/*partners logos*/
/* === LOGO MARQUEE SECTION === */
.logos-section {
  background: #fff;
  padding: 80px 0;
  overflow: hidden;
  position: relative;

}

  .logos-section h2 {
      font-size: 18px;
      margin-bottom: 3em;
      color: #333;
      font-weight: bold;
	  text-align:center;
    }

.logos-track {
  display: flex;
  align-items: center;
  animation: scrollLogos 30s linear infinite;
  width: max-content;
}

.logos-section img {
  height: 50px;
  margin: 0 40px;
  filter: grayscale(100%) brightness(0.9);
  transition: filter 0.3s ease;
}

.logos-section img:hover {
  filter: grayscale(0%) brightness(1);
}

/* Scrolling Animation */
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .logos-section img {
    height: 50px;
    margin: 0 25px;
  }
}




/*TEAM INFO*/

:root {
  --card-bg: #fff;
  --card-text-dark: #000;
  --card-text-light: #fff;
  --card-accent: #006633;
  
}


.team {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Lato', Arial, sans-serif;
}

.team h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* FILTERS */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-buttons button {
  background: none;
  color: var(--card-text-dark);
  border: none;
  padding: 0.25rem 0.8rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.filter-buttons button.active{
color: var(--card-accent);
}
.filter-buttons button:hover {
 background: #99FF33;
}



/* MOBILE DROPDOWN */
.mobile-filter {
  display: none;
  width: 100%;
  max-width: 320px;
  padding: 0.6rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

/* FILTER TITLE */
.filter-title {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
  color: var(--card-accent);
}

.filter-title.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Underline base (hidden state) */
.filter-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 80px;
  height: 2px;
  background: #999999;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}

/* Underline visible */
.filter-title.visible::after {
  transform: translateX(-50%) scaleX(1);
}



/* GRID */
.team-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
}

/* TEAM CARD */
.team-card {
  position: relative;
  background: var(--card-bg);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0,0,0,0.6);
  transition: transform 0.4s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
/* Force square card shape */
.team-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;   /* 👈 makes it square */
  overflow: hidden;
}

/* Ensure image fills the square */
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* 👈 crops instead of stretching */
}


/* DARK GRADIENT OVER IMAGE */
.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 65%);
}

/* HOVER OVERLAY */
.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20%);
  transition: all 0.4s ease;
}

.team-overlay p {
  color: var(--card-text-light);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.team-card:hover .team-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* TEXT */
.team-card h3 {
  margin: 0.8rem 0 0.3rem;
  color: var(--card-text-dark);
  font-size:1.35em;
}

.team-card p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: var(--card-text-dark);
}

/* Change card text to white on hover */
.team-card:hover h3,
.team-card:hover p {
  color: #fff;
  transition: color 0.3s ease;
}


/* LOAD MORE */
.load-more-btn {
  margin-top: 2.5rem;
  padding: 0.6rem 2rem;
  border-radius: 30px;
  background: transparent;
  border: 1px solid var(--card-accent);
  color: var(--card-accent);
  cursor: pointer;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  background: var(--card-accent);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .team-container { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .filter-buttons { display: none; }
  .mobile-filter { display: block; }
  .team-container { grid-template-columns: repeat(2, 1fr); }
  
  .filter-title {
  font-size: 1.25rem;
  text-align:center;
}

}

@media (max-width: 480px) {
  .team-container { grid-template-columns: 1fr; }
  .filter-title {
  font-size: 1.25rem;
  text-align:center;
}
}


/*gallery*/

  section.gallery-section {
    padding: 50px 20px;
    text-align: center;
    position: relative;
  }

  section.gallery-section h1 {
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #333;
  }

  /* Gallery grid */
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .gallery img {
    width: 100%;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s;
    object-fit: cover;
  }

  .gallery img:hover {
    transform: scale(1.05);
  }

  /* Lightbox */
  .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    z-index: 1000;
  }

  .lightbox.active {
    opacity: 1;
    visibility: visible;
  }

  .lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
    color: white;
  }

  .lightbox-content img {
    max-width: 100%;
    max-height: 100vh; /* scale image to fit viewport height */
    border-radius: 8px;
    display: block;
    margin: 0 auto;
  }

  /* Overlay description */
  .image-description {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    font-size: 1.2rem;
    text-align: center;
    font-family: 'Lato', Arial, sans-serif;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-sizing: border-box;
  }

  /* Navigation buttons */
  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2rem;
    background: rgba(0,0,0,0.5);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    user-select: none;
  }

  .prev { left: -60px; }
  .next { right: -60px; }

  /* Close button */
  .close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
  }

  @media (max-width: 900px) {
    .gallery { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
    .prev { left: 10px; }
    .next { right: 10px; }
  }

  @media (max-width: 768px) {
  
    .gallery { grid-template-columns: 1fr; }
	
	 .image-description {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    color: white;
    background: rgba(0,0,0,0.5);
    font-size: .85rem;
    text-align: center;
    font-family: 'Lato', Arial, sans-serif;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-sizing: border-box;
  }
  
    .nav-btn {
    position: absolute;
    top: 90%;
    transform: translateY(-50%);
    color: white;
    font-size: 1.25rem;
    background: rgba(0,0,0,0.85);
    border: none;
    padding: 10px 10px;
    cursor: pointer;
    border-radius: 10%;
    user-select: none;
  }
  
  .prev { left: -10px; width:10%;}
  .next { right: -10px; width:10%; }
  
    /* Close button */
  .close-btn {
    position: absolute;
    top: -50px;
    right: 0px;
    font-size: 1rem;
    color: white;
    background: #333300;
    border: none;
    cursor: pointer;
	width:4px;
	padding: 5px 5px;
	  align-items: center;
  justify-content: center;
  }
 }
 
 /*news*/
 
 .news-section {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.news-section .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #6EEB83;
  text-shadow: 0 0 12px rgba(110, 235, 131, 0.5);
  letter-spacing: 1px;
}

/* 3-column grid with wider gap */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px; /* wider gap */
}

.news-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  width:100%;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.news-image {
  width: 100%;
  height: 250px;       /* increased from 180px to 250px */
  object-fit: cover;   /* keeps aspect ratio and fills the box */
  border-bottom: 1px solid rgba(255,255,255,0.15); /* subtle separation */
}


.news-content {
  padding: 15px 20px 20px 20px;
  font-family: 'Lato', sans-serif;
}

.news-content h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  line-height: 1.2;
  color:#006600;
  margin-bottom:1.35em;
  margin-top:1em;
}

.news-content p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 12px;
  max-height: 2.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  color:#555;
}

/* Read More + right arrow */
.read-more {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s;
  font-size:.85em;
}

.read-more .arrow {
  display: inline-block;
  margin-left: 5px;
  font-size: 1rem;
  transition: transform 0.3s;
}

.read-more:hover {
  color: #006600;
}

.read-more:hover .arrow {
  transform: translateX(3px); /* subtle movement on hover */
}

/* MOBILE */
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Section wrapper ad-bnc*/
.featuredinfo {
  width: 100%;
  padding: 80px 20px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  font-family:"Bricolage Grotesque",sans-serif;
}

.featuredinfo-container {
  max-width: 1100px;
  text-align: left;
}

/* Header */
.featuredinfo-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #2e3b16;
}

.featuredinfo-desc {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #445027;
}

/* Boxes Row: three in a row */
.featuredinfo-boxes {
  display: flex;
  gap: 25px;
  justify-content: center;
}

/* Single box */
.f-box {
  flex: 1;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 2px solid #c7d8a4;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);

  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

/* Fly-in animation */
.f-box.show {
  opacity: 1;
  transform: translateY(0);
}

/* Left icon & divider */
.f-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.f-icon {
  font-size: 36px;
  filter: grayscale(100%); /* monotone */
}

.f-line {
  width: 2px;
  height: 45px;
  background: #b8c99a;
}

/* Text area */
.f-text {
  font-size: 16px;
  color: #2f371e;
  line-height: 1.5;
  text-align: left;
}

/* Mobile responsive */
@media (max-width: 850px) {
  .featuredinfo-boxes {
    flex-direction: column;
    gap: 20px;
  }

.featuredinfo-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #2e3b16;
}

.featuredinfo-desc {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #445027;
}


  .f-line {
    height: 40px;
  }

  .f-icon {
    font-size: 32px;
  }

  .f-text {
    font-size: 15px;
  }
}


/* Section Background */
.info-cards-section {
  background-color: #b1e082; /* light green background */
  padding: 60px 20px;
  font-family: 'Lato', sans-serif;
}

/* Header Styling */
.section-header h1 {
  color: #0a5a2c; /* darker green */
  text-align: center;
  margin: 0 0 10px;
  font-size: 2.5rem;
}

.section-header h2 {
  color: #3ae66a; /* bright light green */
  text-align: center;
  margin: 0 0 40px;
  font-size: 1.5rem;
}

/* Grid Layout */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual Card */
.card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: left;        /* align text left */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;

  display: flex;
  flex-direction: column;
  align-items: center;      /* center image horizontally */
}

/* Standardize SVG Image */
.card-img {
  height: 150px; /* fixed height */
  width: auto;   /* maintain aspect ratio */
  margin-bottom: 20px;
}

/* Card Text: left-aligned but width matches card */
.card h3,
.card p {
  align-self: stretch;   /* let text take full width */
}

/* Optional spacing */
.card h3 {
  font-size: 1.2rem;
  color: #0a5a2c;
  margin: 0 0 10px;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

/* Hover Effect */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Checkbox overlay */
.card-checkbox {
  position: absolute;
  top: 10px;       /* distance from top */
  right: 10px;     /* distance from right; change to left:10px for top-left */
  background-color: #000; /* bright green circle */
  color: white;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 26px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .card-img {
    height: 120px; /* smaller height for mobile */
  }
}


@media (max-width: 768px) {
.section-top-image img {
    height: 140px;
  }
 } 
 
 
 
 /* Section Background */
.info-cards-section-2 {
  background-color: #b1e082;
  padding: 60px 20px;
  position: relative;
  padding-bottom:10em;
}

/* Header */
.info-cards-section-2 .section-header h1 {
  color: #0a5a2c;
  text-align: center;
  margin: 0 0 10px;
  font-size: 2.5rem;
}

.info-cards-section-2 .section-header h2 {
  color: #3ae66a;
  text-align: center;
  margin: 0 0 40px;
  font-size: 1.5rem;
}

/* Central Top Image */
.info-cards-section-2 .section-top-image {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom:5em;
}

.info-cards-section-2 .section-top-image img {
  height: auto;
  width: 60%;  
}

.info-cards-section-2 .section-top-image-context {
   font-size: 1.5rem;
   text-align:center;
   padding-bottom:3em;
   padding-left:2em;
   padding-right:2em;
}

/* Floating Title */
.info-cards-section-2 .floating-title {
  background-color: #fff;
  border-radius: 60px;
  padding: 15px 55px;
  max-width: 70%;
  margin: -80px auto 50px; /* negative margin to float above cards */
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 2;
  position: relative;
}

.info-cards-section-2 .floating-title h2 {
  margin: 0;
  color: #0a5a2c;
  font-size: 2.25rem;
}

/* Cards Grid */
.info-cards-section-2 .cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual Card */
.info-cards-section-2 .card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Checkbox overlay */
.info-cards-section-2 .card-checkbox {
  position: absolute;
  top: 10px;
  right: 10px; /* change to left:10px for top-left */

  background-color: #000;
  color: white;

  width: 42px;   /* slightly bigger for hexagon proportions */
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;
  font-size: 28px;

  box-shadow: 0 2px 6px rgba(0,0,0,0.2);

  /* NEW SHAPE: Hexagon */
  clip-path: polygon(
    25% 0%,
    75% 0%,
    100% 50%,
    75% 100%,
    25% 100%,
    0% 50%
  );
}


/* Card Image */
.info-cards-section-2 .card-img {
  height: 150px;
  width: auto;
  margin-bottom: 20px;
}

/* Card Text */
.info-cards-section-2 .card h3,
.info-cards-section-2 .card p {
  align-self: stretch;
}

.info-cards-section-2 .card h3 {
  font-size: 1.2rem;
  color: #0a5a2c;
  margin: 0 0 10px;
}

.info-cards-section-2 .card p {
  font-size: 0.95rem;
  color: #555;
  margin-top: 20px;
}

/* Hover Effect */
.info-cards-section-2 .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 1024px) {
  .info-cards-section-2 .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

.info-cards-section-2 .section-header h1 {
  color: #0a5a2c;
  text-align: center;
  margin: 0 0 10px;
  font-size: 1.65rem;
}

  .info-cards-section-2 .cards-grid {
    grid-template-columns: 1fr;
  }

  .info-cards-section-2 .card-img {
    height: 120px;
  }

/* Central Top Image */
.info-cards-section-2 .section-top-image {
  text-align: center;
  margin-bottom: 10px;
  padding-bottom:1em;
}

.info-cards-section-2 .section-top-image img {
  height: auto;
  width: 90%;  
}

.info-cards-section-2 .section-top-image-context {
   font-size: 1.35rem;
   font-weight:600;
   text-align:center;
   padding-bottom:1.5em;
   padding-left:.5em;
   padding-right:.5em;
}


  .info-cards-section-2 .floating-title {
    max-width: 100%;
    margin: -30px auto 30px;
	  padding: 15px 25px;
  }

  .info-cards-section-2 .floating-title h2 {
    margin: 0;
    color: #0a5a2c;
    font-size: 1.15rem;
}
}

   #contact-feature {
        background: #fff;
        padding: 50px 40px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        margin-top: 40px;
    }

    /* TITLE CENTERED */
    #contact-feature h2 {
        text-align: center;
        font-size: 32px;
        margin-bottom: 10px;
    }

    /* UNDERLINE */
    #contact-feature .title-line {
        width: 80px;
        height: 3px;
        background: #007bff;
        margin: 0 auto 40px auto;
        border-radius: 2px;
    }

    /** FLEX LAYOUT **/
    .contact-wrapper { 
        display: flex; 
        gap: 40px;
        align-items: flex-start;
		font-family: 'Lato', sans-serif;
    }

    /* COLUMN WIDTHS */
    .contact-info {
        flex: 0 0 40%;
        display: flex;
        flex-direction: column;
        align-items: left;  /* center info block horizontally */
        text-align: left;
    }

    .contact-form {
        flex: 0 0 60%;
        padding: 0 20px; /* keeps fields narrower */
    }

    /* HEADERS */
    .contact-info h3,
    .contact-form h3 {
        margin-bottom: 15px;
        font-size: 23px;
    }

    /* ICON + TEXT ROWS */
    .info-item {
        display: flex;
        align-items: left;
        justify-content: left;
        margin-bottom: 14px;
        font-size: 17px;
    }

    .info-item span.icon {
        width: 26px;
        height: 26px;
        margin-right: 10px;
        font-size: 20px;
        color: #444;
    }

    /* FORM ELEMENTS */
    label { 
        display: block; 
        margin-top: 14px; 
        font-weight: bold;
        font-size: 16px;
    }

    input, textarea { 
        width: 100%; 
        padding: 12px; 
        margin-top: 6px;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 16px;
        background: #fff;
        transition: 0.2s ease;
        max-width: 100%;
    }

    input:focus, textarea:focus {
        border-color: #007bff;
        outline: none;
        box-shadow: 0 0 6px rgba(0,123,255,0.25);
    }

    .hidden-field { display: none; }

    /* BUTTON */
    #contact-feature button {
        margin-top: 25px;
        background: #007bff;
        color: #fff;
        padding: 14px 24px;
        border: none;
        border-radius: 6px;
        font-size: 17px;
        cursor: pointer;
        transition: 0.2s ease;
    }

    button:hover {
        background: #0056cc;
    }
	
	.contact-image-wrapper {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.contact-image-wrapper img {
    width: 80%; /* responsive width */
    max-width: 300px;
    border-radius: 20px; /* soft rounded corners */
    
    /* Blur edges effect using mask (modern browsers) */
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: cover;
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: cover;

    /* Optional: soft shadow */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


    /*********** MOBILE VIEW ***********/
    @media (max-width: 800px) {

        #contact-feature {
            padding: 30px 20px;
        }

        #contact-feature h2 {
            font-size: 26px;
        }

        .contact-wrapper {
            flex-direction: column;
            gap: 30px;
        }

        .contact-info,
        .contact-form {
            flex: 100%;
            padding: 0;
        }

        .contact-form {
            padding: 0 10px;
        }

        input, textarea {
            font-size: 15px;
        }

        button {
            width: 100%;
        }
		
		    .contact-image-wrapper img {
        width: 90%;
        max-width: 250px;
    }
    }

/*for sciencelink*/

.two-col-section-science {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.two-col-section-science .section-title {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #6EEB83;
  text-shadow: 0 0 12px rgba(110, 235, 131, 0.5);
  letter-spacing: 1px;
}

/* BOX OUTLINE */
.two-col-section-science .info-box {
  background: transparent;
  border: 2px solid rgba(110, 235, 131, 0.6);
  border-radius: 12px;
  overflow: hidden;
}

/* SHORTER WINDOW-LIKE TAB */
.two-col-section-science .info-tab {
  background: none;
  padding: 8px 20px;
  text-align: center;
  border-bottom: 2px solid rgba(110, 235, 131, 0.6);
  box-shadow: inset 0 -3px 0 rgba(110, 235, 131, 0.3); /* subtle bottom shadow */
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}


.two-col-section-science .info-tab h1 {
  margin: 0;
  font-size: 1.25rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
  font-family: 'Lato', sans-serif;
  color: rgba(110, 235, 131, 1);
}

/* LIST */
.two-col-section-science .info-list {
  list-style: none;
  margin: 0;
  padding: 15px 20px 20px 20px;
}

.two-col-section-science .info-list li {
  font-size: 1.1rem;
  margin: 10px 0;
  display: flex;
  align-items: center;
  color: #555;
}

.two-col-section-science .info-list li i {
  margin-right: 10px;
  font-size: .65rem;            /* smaller icon */
  color: #6EEB83;
}

.two-col-section-science .info-list li a{
  font-size: 1.1rem;
  margin: 10px 0;
  display: flex;
  align-items: center;
  color: #555;
  text-decoration:none;
  font-family: 'Lato', sans-serif;
}

/* MOBILE */
@media (max-width: 768px) {
  .two-col-section-science {
    grid-template-columns: 1fr;
  }

  .two-col-section-science .section-title {
    font-size: 1.8rem;
  }

  .two-col-section-science .info-tab h1 {
    font-size: 1.3rem;
    width: 100%;
  }

  .two-col-section-science .info-list li {
    font-size: 1rem;
  }

  .two-col-section-science .info-list li i {
    font-size: 0.95rem;
  }
}

/*contact page*/

 #contact-main-feature {
        background: #fff;
        padding: 50px 40px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        margin-top: 40px;
    }

    /* TITLE CENTERED */
    #contact-main-feature h2 {
        text-align: left;
        font-size: 24px;
        margin-bottom: 10px;
    }

    /* UNDERLINE */
    #contact-main-feature .title-line {
        width: 80px;
        height: 3px;
        background: #007bff;
        margin: 0 auto 40px auto;
        border-radius: 2px;
    }

    /** FLEX LAYOUT **/
    .contact-main-wrapper { 
        display: flex; 
        gap: 40px;
        align-items: flex-start;
		font-family: 'Lato', sans-serif;
    }

    /* COLUMN WIDTHS */
    .contact-main-info {
        flex: 0 0 40%;
        display: flex;
        flex-direction: column;
        align-items: left;  /* center info block horizontally */
        text-align: left;
    }

    .contact-main-form {
        flex: 0 0 60%;
        padding: 0 20px; /* keeps fields narrower */
    }

    /* HEADERS */
    .contact-main-info h3,
    .contact-main-form h3 {
        margin-bottom: 25px;
        font-size: 16px;
		text-align:left;
		font-weight:200;
    }

    /* ICON + TEXT ROWS */
    .info-item {
        display: flex;
        align-items: left;
        justify-content: left;
        margin-bottom: 14px;
        font-size: 17px;
    }

    .info-item span.icon {
        width: 26px;
        height: 26px;
        margin-right: 10px;
        font-size: 20px;
        color: #444;
    }

    /* FORM ELEMENTS */
    label { 
        display: block; 
        margin-top: 14px; 
        font-weight: bold;
        font-size: 16px;
    }

    input, textarea { 
        width: 50%; 
        padding: 12px; 
        margin-top: 6px;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 16px;
        background: #fff;
        transition: 0.2s ease;
        max-width: 100%;
    }

    input:focus, textarea:focus {
        border-color: #007bff;
        outline: none;
        box-shadow: 0 0 6px rgba(0,123,255,0.25);
    }

    .hidden-field { display: none; }

    /* BUTTON */
    button {
        margin-top: 25px;
        background: #007bff;
        color: #fff;
        padding: 14px 24px;
        border: none;
        border-radius: 6px;
        font-size: 17px;
        cursor: pointer;
        transition: 0.2s ease;
    }

    button:hover {
        background: #0056cc;
    }
	
	.contact-main-image-wrapper {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.contact-main-image-wrapper img {
    width: 80%; /* responsive width */
    max-width: 300px;
    border-radius: 20px; /* soft rounded corners */
    
    /* Blur edges effect using mask (modern browsers) */
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: cover;
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: cover;

    /* Optional: soft shadow */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


    /*********** MOBILE VIEW ***********/
    @media (max-width: 800px) {

        #contact-main-feature {
            padding: 30px 20px;
        }

        #contact-main-feature h2 {
            font-size: 26px;
        }

        .contact-main-wrapper {
            flex-direction: column;
            gap: 30px;
        }

        .contact-main-info,
        .contact-main-form {
            flex: 100%;
            padding: 0;
        }

        .contact-main-form {
            padding: 0 10px;
        }

        input, textarea {
            font-size: 15px;
        }

        button {
            width: 100%;
        }
		
		    .contact-main-image-wrapper img {
        width: 90%;
        max-width: 250px;
    }
    }
	
	/*careers*/
	
	/* Benefits Section */
/* Benefits Section */
.benefits-section {
  padding: 4rem 2rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  background-color: #336633;
  text-align: center;
}

.benefits-section h2 {
  font-size: 2rem;
  color: #fff; /* darker gray for title */
  margin-bottom: 1rem;
}

.benefits-section p {
  font-size: 1rem;
  color: #ccc; /* darker gray for title */
  margin-bottom: 2.5rem;
}

/* Grid Layout */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual Benefit Card */
.benefit-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08); /* lighter shadow */
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Icon Styling */
.benefit-card i {
  font-size: 3rem; /* larger icon */
  color: #777; /* grayish color */
  margin-bottom: 1rem;
}

/* Header Styling */
.benefit-card h3 {
  margin-bottom: 1rem;
  color: #555; /* gray header */
  font-size: 1.2rem;
}

/* Paragraph Styling */
.benefit-card p {
  color: #666; /* medium gray text */
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Hover Effect */
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .benefits-section {
    padding: 3rem 1rem;
  }

  .benefit-card {
    padding: 1.5rem;
  }

  .benefit-card i {
    font-size: 2.5rem; /* slightly smaller on mobile */
  }
}


/* Career CTA Section */
.cta-career-section {
  padding: 5rem 2rem;
  background-color: #e4f2e8; /* subtle greenish background */
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  text-align: center;
}

/* CTA Container */
.cta-career-container {
  max-width: 800px;
}

/* CTA Button Styling */
.cta-career {
  display: inline-block;
  background-color: #4caf7a; /* greenish */
  color: white;
  font-size: 1.75rem;
  padding: 1.5rem 4rem;
  border-radius: 50px; /* pill shape */
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
  animation: pulseCareer 2s infinite;
}

/* Hover Effect */
.cta-career:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  background-color: #3e8f60;
}

/* Pulse Animation */
@keyframes pulseCareer {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Arrow Animation */
.cta-career::after {
  content: '→';
  display: inline-block;
  margin-left: 1rem;
  animation: moveArrowCareer 1s infinite;
}

@keyframes moveArrowCareer {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

/* Responsive */
@media (max-width: 768px) {
  .cta-career {
    font-size: 1.5rem;
    padding: 1.25rem 3rem;
  }
}


