/* Achievement section for About page */
.achievement-section-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fbff 0%, #eef4ff 100%);
}

.achievement-section-area::before {
  position: absolute;
  content: "";
  width: 360px;
  height: 360px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 135, 55, 0.14) 0%, rgba(242, 135, 55, 0) 68%);
  pointer-events: none;
}

.achievement-section-area::after {
  position: absolute;
  content: "";
  width: 320px;
  height: 320px;
  left: -140px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 179, 168, 0.12) 0%, rgba(18, 179, 168, 0) 70%);
  pointer-events: none;
}

.achievement-section-area .container {
  position: relative;
  z-index: 1;
}

.achievement-section-area .achievement-heading {
  position: relative;
  z-index: 1;
}

.achievement-section-area .achievement-section-text {
  max-width: 760px;
  margin: 0 auto;
  color: #5b6476;
  font-size: 18px;
  line-height: 1.7;
}

.achievement-section-area .achievement-grid {
  position: relative;
  z-index: 1;
}

.achievement-section-area .achievement-card {
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 34px 30px 30px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.88) 100%),
    url("../img/all-images/bg/bg9.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 1px solid rgba(68, 22, 255, 0.08);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.achievement-section-area .achievement-card::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, #f28737 0%, #12b3a8 100%);
}

.achievement-section-area .achievement-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 135, 55, 0.2);
  box-shadow: 0 24px 65px rgba(242, 135, 55, 0.14);
}

.achievement-section-area .achievement-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  padding: 8px 16px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(242, 135, 55, 0.12);
  color: #9c4f12;
  font-family: var(--ztc-family-font1);
  font-size: 15px;
  font-weight: var(--ztc-weight-semibold);
  letter-spacing: 0.08em;
}

.achievement-section-area .achievement-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f28737 0%, #ffb35c 100%);
  color: #ffffff;
  font-size: 30px;
  box-shadow: 0 14px 30px rgba(242, 135, 55, 0.22);
}

.achievement-section-area .achievement-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
}

.achievement-section-area .achievement-card p {
  margin: 14px 0 0;
  color: #5b6476;
  font-size: 16px;
  line-height: 1.75;
}

@media (max-width: 767px) {
  .achievement-section-area .achievement-card {
    padding: 28px 24px 26px;
  }

  .achievement-section-area .achievement-card h3 {
    font-size: 22px;
  }

  .achievement-section-area .achievement-section-text {
    font-size: 16px;
  }

  .achievement-section-area .achievement-icon {
    width: 66px;
    height: 66px;
    font-size: 26px;
  }
}