#award,
#gallery,
#award-contact,
#award-intro {
  scroll-margin-top: 165px;
}
#award-contact,
#award-intro {
  scroll-margin-top: 145px;
}

/* banner section starts here */

.banner {
  animation: changeBg 30s infinite;
  height: 550px;
}

@keyframes changeBg {
  0% {
    background-image: url("../images/award-html/banner/recogn-1.jpg");
  }
  50% {
    background-image: url("../images/award-html/banner/ebc-recoginition-ingroup.jpg");
  }
  100% {
    background-image: url("../images/award-html/banner/recogn-1.jpg");
  }
}

/* banner section ends here */

/* ================= HERO SECTION ================= */

.achievement-hero-content {
  margin: 80px auto;
  justify-content: center;
  text-align: center;
  color: white;
  max-width: 800px;
}

.achievement-hero-content h2 {
  color: white;
  border-bottom: none;
}

.achievement-hero-content p {
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
}
/* ================= INTRO SECTION ================= */
.award-intro {
  text-align: center;
  max-width: 1000px;
  margin: auto;
}

.award-intro p {
  line-height: 2;
  margin-bottom: 20px;
  color: #444;
}

/* ================= AWARD SECTION ================= */

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.achievement-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.achievement-card:hover {
  transform: translateY(-10px);
}
.achievement-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.achievement-content {
  padding: 30px 25px;
}

.achievement-content i {
  font-size: 40px;
  color: #0b6efd;
  margin-bottom: 18px;
}

.achievement-content h3 {
  margin-bottom: 15px;
  color: #222;
}

.achievement-content p {
  line-height: 1.8;
  color: #555;
}
.achievement-content span {
  color: #0b6efd;
  font-weight: 900;
}

/* ================= certificate-gallery SECTION ================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 14px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery img {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .certificate-gallery {
    padding: 60px 5%;
  }

  .gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery img {
    height: auto;
  }
}

/* =================leadership-message SECTION ================= */
.leadership-message {
  width: 100%;
  padding: 80px 10%;
  background:
    linear-gradient(rgba(11, 107, 87, 0.6), rgba(11, 107, 87, 0.6)),
    url("../images/award-html/staff-forum-new.jpg") center/cover no-repeat;
  text-align: center;
  color: #fff;
  border-radius: 18px;
  margin: 60px 0;
}

/* Quote */
.leadership-message blockquote {
  font-size: 2rem;
  line-height: 1.8;
  font-style: italic;
  font-weight: 500;
  max-width: 900px;
  margin: auto;
  position: relative;
}

.leadership-message blockquote::before,
.leadership-message blockquote::after {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.25);
  position: absolute;
}

.leadership-message blockquote::before {
  content: "“";
  top: -25px;
  left: -20px;
}

.leadership-message blockquote::after {
  content: "”";
  bottom: -50px;
  right: -20px;
}

.leadership-message h4 {
  margin-top: 35px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #f4d35e;
}

@media (max-width: 992px) {
  .leadership-message {
    padding: 70px 8%;
  }

  .leadership-message blockquote {
    font-size: 1.6rem;
    line-height: 1.7;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .leadership-message {
    padding: 60px 6%;
    border-radius: 12px;
  }

  .leadership-message blockquote {
    font-size: 1.2rem;
    line-height: 1.8;
  }

  .leadership-message blockquote::before,
  .leadership-message blockquote::after {
    font-size: 2.8rem;
  }

  .leadership-message blockquote::before {
    left: -10px;
    top: -15px;
  }

  .leadership-message blockquote::after {
    right: -10px;
    bottom: -35px;
  }

  .leadership-message h4 {
    font-size: 1rem;
    margin-top: 28px;
  }
}
