.awards {
  padding: 3em 1em;
  text-align: center;
  background: #fff8ef; /* optional */
}

.awards h1 {
  font-size: 2rem;
  margin-bottom: 1em;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* Container for award images */
.content_box2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* 3 images per row */
  gap: 25px;                              /* space between images */
  justify-items: center;                  /* centers each image */
  align-items: center;
  max-width: 1200px;                      /* controls total row width */
  margin: 0 auto;
}

/* Individual award images */
.content_box2 img {
  width: 380px;           /* image width */
  height: 250px;          /* image height */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content_box2 img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .content_box2 {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 700px) {
  .content_box2 {
    grid-template-columns: 1fr;            /* 1 per row on mobile */
  }

  .content_box2 img {
    width: 90%;
    height: auto;
  }
}

/* Hidden section */
.hidden-content {
  display: none;
  transition: all 0.5s ease;
  padding-top: 2em;
}

/* Button styling */
.see-more-container {
  text-align: center;
  margin-top: 20px;
}

#seeMoreBtn {
  background-color: #EDB80A;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

#seeMoreBtn:hover {
  background-color: #c49706;
}
