/* =======================================
   Awards & Recognition Section
======================================= */
.awards-section {
  background: #ffffff;
  padding: 20px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.awards-title {
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
  position: relative;
}

.awards-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #269a00;
  margin: 12px auto 0;
  border-radius: 3px;
}

.awards-subtitle {
  color: #666;
  font-size: 1rem;
  margin-bottom: 50px;
}

.awards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

/* Card Styling */
.award-card {
  background: #f8f9fa;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.award-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.award-image img {
  width: 300px;
  height: 200px;
  object-fit: contain;
}

.award-content {
  padding: 20px;
}

.award-content h3 {
  color: #007b5e;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.award-content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =======================================
   Responsive Design
======================================= */
@media (max-width: 992px) {
  .awards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .awards-container {
    grid-template-columns: 1fr;
  }

  .award-content h3 {
    font-size: 1.1rem;
  }

  .award-content p {
    font-size: 0.9rem;
  }

  .awards-section {
    padding: 60px 15px;
  }
}
