/* ============================
   Awards / Recognition Section
   ============================ */
.awards-section {
  padding: 80px 10%;
  text-align: center;
  background: #fff;
}

.sub-title {
  padding-top: 60px;     /* smaller padding for spacing below navbar */
  font-size: 36px;
  font-weight: 700;
  color: #0c4c36;
  margin-bottom: 20px;   /* 👈 reduce gap below heading */
}

.awards-carousel {
  background: #fff;
  padding: 40px 20px;    /* 👈 smaller top padding */
  position: relative;
  text-align: center;
  min-height: 500px;
}

/* ============================
   Award Slide (Single Card)
   ============================ */
.award-slide {
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 0;               /* 🚫 no gap */
  max-width: 1000px;
  min-height: 300px;
  margin: auto;
  padding: 20px 30px;   /* 🚫 minimal padding inside */
  background:  linear-gradient(to right,  #7aaa98, #297a43);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.award-slide.active {
  display: flex;
}

.award-slide:hover {
  transform: translateY(-8px);
  border-color: #40916c;
}

/* ============================
   Left Content (Text)
   ============================ */
.award-left {
  width: 55%;
  text-align: left;
}

.award-left h4 {
  font-size: 28px;
  font-weight: 700;
  color: #0c4c36;
  margin-bottom: 14px;
}

.award-left p {
  font-size: 18px;
  color: black;
  line-height: 1.6;
}

/* ============================
   Right Content (Image)
   ============================ */
.award-right {
  width: 40%;
  text-align: right;
}

.award-right img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  
}

/* ============================
   Carousel Controls
   ============================ */
.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.carousel-controls .prev,
.carousel-controls .next {
  cursor: pointer;
  font-size: 34px;
  padding: 12px;
  background-color: rgba(12, 76, 54, 0.85);
  color: #fff;
  border-radius: 50%;
  margin: 0 25px;
  user-select: none;
  transition: background 0.3s, transform 0.2s;
}

.carousel-controls .prev:hover,
.carousel-controls .next:hover {
  background-color: #0c4c36;
  transform: scale(1.1);
}

/* ============================
   Responsive (Mobile/Tablet)
   ============================ */
@media (max-width: 768px) {
  .award-slide {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    min-height: auto;
  }

  .award-left {
    width: 100%;
    margin-bottom: 20px;
  }

  .award-right {
    width: 100%;
    text-align: center;
  }

  .award-right img {
    max-width: 250px;
  }
}
