

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.card-container {
  display: flex;
  flex-wrap: wrap;       /* ✅ allows wrapping on smaller screens */
  gap: 30px;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.card {
  flex: 1 1 300px;        /* ✅ flexible width, min ~300px */
  max-width: 350px;
  height: 450px;
  border-radius: 10px;
  background-size: cover; /* ✅ cover keeps aspect ratio */
  background-position: center;
  position: relative;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  background-blend-mode: darken;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: white;
}

.card h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  color: #f2f2f2;
}

.btn {
  background-color: white;
  color: #006400; /* Forest green */
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  align-self: center;
}

.forest-sector-header {
  text-align: center;
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  margin-top: 70px;
}










.fullwidth-wrapper {
  padding: 2rem;
  max-width: 85%;
  margin: auto;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.fullwidth-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 40px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.fullwidth-card:hover {
  transform: translateY(-6px);
}

.fullwidth-img {
  width: 100%;
  height: auto;
  display: block;
}

.fullwidth-text {
  padding: 1.5rem;
}

.fullwidth-title {
  margin: 0;
  color: #20b806;
  font-size: 1.8rem;
}

.fullwidth-description {
  margin-top: 0.5rem;
  line-height: 1.6;
  font-size: 14px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}




.showcase-heading {
  font-size: 22px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  text-align: center;
  line-height: 1.4;
  color: black;
  max-width: 800px;
  margin: auto;
  font-weight: 600;
}






/* Container that wraps your col boxes */
.row {
  display: flex;
  flex-wrap: wrap;
}

/* Each box */
.col-sm-6.col-xl-3 {
  flex: 1 1 33.3%;
  max-width: 33.3%;
}

















/* ✅ Responsive tweaks */
@media (max-width: 1024px) {
  .card {
    flex: 1 1 45%;  /* two per row on tablets */
    max-width: 100%;
  }
}

/* Tablet: 2 per row */
@media (max-width: 992px) {
  .col-sm-6.col-xl-3 {
    flex: 1 1 50%;
    max-width: 50%;
  }

}



@media (max-width: 600px) {
  .card {
    flex: 1 1 100%; /* full width on small devices */
    height: 350px;
  }
  .card h2 {
    font-size: 20px;
  }
}


/* Mobile: full width */
@media (max-width: 576px) {
  .col-sm-6.col-xl-3 {
    flex: 1 1 100%;
    max-width: 100%;
  }
 
}