

/* ================= SECTION ================= */
.awards-modern {
  padding: 15px 20px;
  background: linear-gradient(135deg, #f4f6f9, #ffffff);
  text-align: center;
  overflow: hidden;
}

/* ================= TITLE ================= */
.awards-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-black);
  margin-bottom: 10px;
}

/* ================= DESCRIPTION ================= */
.awards-desc {
  max-width: 700px;
  margin: 20px auto 50px;
  color: #555;
  line-height: 1.7;
}

/* ================= SCROLL CONTAINER ================= */
.awards-scroll {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding: 20px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* HIDE SCROLLBAR */
.awards-scroll::-webkit-scrollbar {
  display: none;
}
.awards-scroll {
  scrollbar-width: none;
}

/* ================= CARD ================= */
.award-box {
    flex: 0 0 calc(50% - 13px);
    max-width: calc(50% - 13px);
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

/* LINK FIX */
.award-box a {
  display: block;
  height: 100%;
  color: inherit;
}

/* ================= IMAGE ================= */
.award-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* ================= OVERLAY ================= */
.award-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  z-index: 1;
}

/* ================= CONTENT ================= */
.award-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  z-index: 2;
  text-align: left;
}

.award-content h4 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
}

.award-content p {
  font-size: 14px;
  opacity: 0.9;
}

/* ================= HOVER EFFECT ================= */
.award-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0,0,0,0.2);
}

.award-box:hover img {
  transform: scale(1.1);
}

/* ================= DOT INDICATOR ================= */
.awards-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

/* DEFAULT DOT */
.dot {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* ACTIVE DOT (PILL STYLE) */
.dot.active {
  width: 25px;
  height: 8px;
  border-radius: 20px;
  background: var(--accent-red);
}

/* ================= MOBILE ================= */
@media(max-width: 768px){
  .awards-title {
    font-size: 28px;
  }


    .award-box{
        flex:0 0 100%;
        max-width:100%;
        height:300px;
    }

  .award-content h4 {
    font-size: 16px;
  }

  .award-content p {
    font-size: 13px;
  }
}