.hero {
  position: relative;
  width: 100%;
  height: 80svh;              /* mobile safe viewport */
  max-height: 900px;
  overflow: hidden;
}

/* Tablet */
@media (max-width: 1024px) {
  .hero {
    height: 80svh;
  }
}

/* Mobile */
/*@media (max-width: 768px) {
  .hero {
    height: 70svh;
    max-height: 600px;
  }
}*/


/* Mobile */
@media (max-width: 768px) {
  .hero {
    height: auto;                 /* remove forced height */
    max-height: none;
    aspect-ratio: 900 / 720;      /* maintain exact image ratio */
  }

  .hero-slider {
    height: 100%;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
  }
}



.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;           /* no distortion */
  object-position: center;
  display: block;
}

/* Optional overlay for header readability */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  z-index: 1;
  pointer-events: none;
}






.product-tags {
  background: #5fa10d; /* CEES green */
  padding: 18px 0;
}

.tag-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;

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

  gap: 16px;
}

/* Tag */
.tag {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  padding: 6px 2px;
  transition: opacity 0.3s ease;
}

.tag:hover {
  opacity: 0.8;
}

/* Divider line */
.divider {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.4);
}

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
  .tag-container {
    justify-content: flex-start;
    gap: 14px;
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .tag-container {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .tag-container::-webkit-scrollbar {
    display: none;
  }

  .divider {
    height: 18px;
  }

  .tag {
    font-size: 14px;
  }
}





.industries {
  padding: 80px 0 0px 0;
  background: #ffffff;
}

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

.careers-content {
  background: #63a30a;
  padding: 60px;
  color: #ffffff;
  position: relative;
}


.careers-content .breadcrumb {
  display: block;
  margin-bottom: 16px;   /* 🔥 creates visible separation */
  font-size: 14px;
  opacity: 0.9;
}


.industries-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.industry-col {
  list-style: none;
  margin: 0;
  padding: 0;
}

.industry-col li {
  margin: 8px 0;
}

/* Link */
.industry-col a {
  font-size: 16px;
  font-weight: bold;
  color: #727271;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding: 6px 0;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.industry-col a:hover {
  color: #2f2f2f;
}

/* Hover underline */
.industry-col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: #6aa400;
  transition: width 0.3s ease;
}

.industry-col a:hover::after {
  width: 100%;
}

.industry-col a:focus-visible {
  outline: 2px dashed #6aa400;
  outline-offset: 4px;
}


/* Tablet */
@media (max-width: 992px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .industries {
    padding: 40px 0 0px 0;
  }

  .industries-grid {
    margin-top: 10px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .industry-col a {
    font-size: 16px;
  }
}





.feature-highlight {
  background: #ffffff;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Image on top */
.feature-image img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

/* Content container */
.feature-container {
  max-width: 1400px;
  margin: auto;
  padding: 60px 0;
  display: flex;
  gap: 60px;
  align-items: start;
  justify-content: space-between;
}

/* Left points */
.feature-points p {
  color: #6aa400;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  text-transform: uppercase;
}

/* Stats */
.feature-stat h3 {
  color: #6aa400;
  font-size: 42px;
  margin: 0 0 10px;
}

.feature-stat p {
  color: #579a06;
  font-size: 15px;
  line-height: 1.5;
  max-width: 300px;
}

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
  .feature-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .feature-stat h3 {
    font-size: 38px;
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 600px) {
  .feature-container {
    flex-direction: column;
    padding: 40px 0 60px;
    gap: 30px;
  }

  .feature-image img {
    max-height: 320px;
  }

  .feature-points p {
    font-size: 14px;
  }

  .feature-stat h3 {
    font-size: 32px;
  }
}









.products-section {
  background: #63a30a;
  padding: 80px 0 100px;
}

.products-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Heading */
.products-head {
  color: #fff;
  margin-bottom: 60px;
}

.breadcrumb {
  font-size: 14px;
  opacity: 0.9;
  display: inline-block;
  margin-bottom: 10px;
}

.products-head h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.2;
}

/* Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.product-card {
  background: #f5f5f7;
  padding: 30px 0 ;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Image */
.product-card img {
  width: 100%;
  /*height: 160px;*/
  object-fit: contain;
}

/* Footer row */
.card-footer {
  display: flex;
  align-items: flex-start;   /* arrow aligns with text top */
  gap: 14px;
}

/* Arrow box */
.arrow-tag {
  width: 36px;
  height: 36px;
  background: #63a30a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

/* Text */
.product-card h3 {
  font-size: 16px;
  color: #63a30a;
  line-height: 1.3;
  margin: 0;
  text-transform: uppercase;
}


/* Hover */
.product-card:hover {
  transform: translateY(-4px);
  transition: transform 0.3s ease;
}



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

/* Mobile */
@media (max-width: 600px) {
  .products-section {
    padding: 60px 0 80px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
  }

  .product-card img {
    height: 140px;
  }

  .arrow-tag {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .product-card h3 {
    font-size: 15px;
  }

}











.video-section {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.video-wrapper {
  max-width: 1200px;
  margin: auto;
}

/* Title */
.video-title {
  color: #63a30a;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  margin-bottom: 40px;
  text-transform: uppercase;
}

/* Video box */
.video-box {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 960px;
}

.video-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* Play button */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 60px;
  background: #ff0000;
  border-radius: 12px;
}

.play-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-left: 22px solid #fff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

/* Hover */
.video-box a:hover .play-button {
  transform: translate(-50%, -50%) scale(1.05);
  transition: transform 0.25s ease;
}

/* ---------- Mobile ---------- */
@media (max-width: 600px) {
  .video-section {
    padding: 60px 16px;
  }

  .play-button {
    width: 70px;
    height: 48px;
  }

  .play-button::after {
    border-left-width: 18px;
    border-top-width: 12px;
    border-bottom-width: 12px;
  }
}







.careers-section {
  background: #ffffff;
  padding: 40px 20px;
}

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

  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

/* Image */
.careers-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right panel */
.careers-content {
  background: #63a30a;
  padding: 60px;
  color: #ffffff;

  display: flex;
  flex-direction: column;
  justify-content: center;

  position: relative;
}

.breadcrumb {
  font-size: 14px;
  opacity: 0.9;
}

.careers-content h2 {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.2;
  margin: 20px 0;
  text-transform: uppercase;
}

.careers-content p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 420px;
}

/* CTA Button */
.careers-cta {
  width: 90%;
  max-width: 300px;
  position: absolute;
  right: 0;
  bottom: 0;

  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 14px 22px;
  font-size: 14px;

  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}


.careers-cta .arrow {
  font-size: 18px;
}

.careers-cta:hover .arrow {
  transform: translateX(4px);
  transition: transform 0.2s ease;
}


/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
  .careers-content {
    padding: 40px;
  }
}

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

  .careers-container {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .careers-cta {
    width: 100%;
    position: static;
    margin-top: 30px;
    align-self: flex-start;
  }

  .careers-container {
    grid-template-columns: 1fr;
  }

  .careers-image img {
    height: auto;
  }

  .careers-content {
    padding: 40px 30px 0 30px;
  }

  .careers-cta {
    align-self: flex-start;
  }
}










.cta-section {
  background: #ffffff;
  padding: 40px 20px;
}

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

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Image */
.cta-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content */
.cta-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-content .breadcrumb {
  font-size: 14px;
  color: #6f6f6f;
}

/* Heading */
.cta-content h2 {
  color: #63a30a;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
}

/* CTA Link */
.cta-link {
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6f6f6f;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-link .arrow {
  font-size: 18px;
  transition: transform 0.25s ease;
}

.cta-link:hover .arrow {
  transform: translateX(4px);
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .cta-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-content {
    text-align: left;
  }
}









.newsroom-section {
  background: #ffffff;
  padding: 80px 20px;
}

.newsroom-wrapper {
  max-width: 1200px;
  margin: auto;
}

/* Title */
.newsroom-title {
  color: #63a30a;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 50px;
}

/* Grid */
.newsroom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.news-card {
  display: flex;
  flex-direction: column;
}

/* Image */
.news-image {
  position: relative;
  margin-bottom: 18px;
}

.news-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Green box on image */
.image-arrow {
  position: absolute;
  left: 0;
  bottom: 0;

  width: 90px;
  height: 56px;
  background: #63a30a;
  color: #fff;

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

  font-size: 22px;
}

/* Meta text */
.news-meta {
  font-size: 14px;
  color: #6f6f6f;
  margin-bottom: 10px;
}

/* Title */
.news-card h3 {
  font-size: 16px;
  font-weight: 500;
  color: #3a3a3a;
  line-height: 1.4;
}

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

/* ---------- Mobile ---------- */
@media (max-width: 600px) {
  .newsroom-section {
    padding: 60px 16px;
  }

  .newsroom-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .news-image img {
    height: 200px;
  }
}








