.award-section {
  position: relative;
  width: 1512;
  height: 402px;
  background: url('images/slides2.jpg') center center / cover no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment:scroll;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

/* semi-dark overlay for contrast */
.award-section::before {
  content: "";
  position: absolute;
  inset: 0;
  
  z-index: 0;
}

/* content wrapper */
.award-container {
  position: relative;
  z-index: 2;
  max-width: 950px;
  width: 90%;
  padding: 2rem;
 border: 3px solid white;
 border-radius: 12px;

}

/* main heading */
.award-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
}

.award-title span {
  font-style: italic;
  font-family: "Georgia", serif;
  font-family: 'Playfair Display', Georgia, serif;
}

/* glass box */
.award-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
 /*  border: 2px solid rgba(255, 255, 255, 0.5); */
  
 /*  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);*/
}

/* award items */
.award-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  white-space: nowrap;
}

/* icon */
.award-icon svg {
  width: 40px;
  height: 40px;
}

/* text */
.award-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.award-small {
  font-size: 0.8rem;
   color: #fff;

  margin: 0;
}

.award-large {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

/* responsive */
@media (max-width: 768px) {
  .award-title {
    font-size: 2rem;
  }
  .award-box {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ======================================== */
/* RESPONSIVE ENHANCEMENTS — NO ORIGINAL CHANGES */
/* ======================================== */

/* Fix fixed width/height on all devices */
@media (max-width: 1512px) {
  .award-section {
    width: 100% !important;
    height: auto !important;
    min-height: 402px;
    padding: 2rem 0;
  }
}

/* Tablets (iPad) — 2-column grid */
@media only screen 
  and (min-width: 768px) 
  and (max-width: 1024px) {
  .award-section {
    height: auto;
    min-height: 450px;
  }
  .award-box {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
    justify-content: center;
  }
  .award-item {
    white-space: normal !important;
    justify-content: center;
    text-align: center;
  }
  .award-text {
    align-items: center !important;
  }
  .award-title {
    font-size: 2.4rem !important;
  }
}

/* Phones — 1-column grid, better spacing */
@media only screen and (max-width: 767px) {
  .award-section {
    height: auto;
    min-height: 500px;
    padding: 1.5rem 0;
  }
  .award-container {
    width: 92% !important;
    padding: 1.5rem !important;
  }
  .award-title {
    font-size: 1.9rem !important;
    line-height: 1.2;
  }
  .award-box {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }
  .award-item {
    flex-direction: row !important;
    white-space: normal !important;
    text-align: left;
  }
  .award-text {
    align-items: flex-start !important;
  }
  .award-icon svg {
    width: 22px !important;
    height: 22px !important;
  }
  .award-small {
    font-size: 0.75rem !important;
  }
  .award-large {
    font-size: 0.95rem !important;
  }
}

/* Small phones (iPhone SE, etc.) */
@media only screen and (max-width: 480px) {
  .award-title {
    font-size: 1.7rem !important;
  }
  .award-container {
    padding: 1.2rem !important;
    border-width: 2px !important;
  }
  .award-item {
    gap: 0.6rem !important;
    padding: 0.8rem 0 !important;
  }
  .award-icon svg {
    width: 20px !important;
    height: 20px !important;
  }
  .award-small {
    font-size: 0.7rem !important;
  }
  .award-large {
    font-size: 0.9rem !important;
  }
}

/* Extra small phones */
@media only screen and (max-width: 360px) {
  .award-title {
    font-size: 1.5rem !important;
  }
  .award-container {
    width: 95% !important;
  }
}

/* Pure CSS: Animate after 100ms (simulates load) */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.award-title {
  animation: fadeSlideUp 0.8s ease-out 0.2s forwards;
}

.award-item:nth-child(1) { animation: fadeSlideUp 0.7s ease-out 0.5s forwards; }
.award-item:nth-child(2) { animation: fadeSlideUp 0.7s ease-out 0.7s forwards; }
.award-item:nth-child(3) { animation: fadeSlideUp 0.7s ease-out 0.9s forwards; }