/* ============================================
   Awards & Achievements Section
   White / Pastel Theme with Subtle Patterns
   ============================================ */

/* ---------- Section Background ---------- */

.awards-heading{
    position: relative;
    z-index: 9999;   /* makes sure it stays above carousel */
}

.awards-carousel-wrapper{
    position: relative;
    z-index: 1;
}

.awards-section {
  position: relative;
  background-color: #0a2350;
  padding: 80px 0 90px;
  overflow: hidden;
}

/* Dot-grid pattern removed for performance */
.awards-bg-pattern {
  display: none;
}

/* Blobs removed for performance */

/* ---------- Section Header ---------- */
.awards-section .container {
  position: relative;
  z-index: 1;
}

/* ---------- Carousel Wrapper ---------- */
.awards-carousel-wrapper {
  position: relative;
  padding: 0 60px;
}

/* ---------- Navigation Arrows ---------- */
.awards-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(72, 198, 239, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: #48c6ef;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.awards-nav:hover {
  background: rgba(6, 163, 218, 0.3);
  border-color: #48c6ef;
  color: #fff;
}

.awards-nav-left {
  left: 0;
}

.awards-nav-right {
  right: 0;
}

/* ---------- Track Container ---------- */
.awards-track-container {
  overflow: hidden;
  border-radius: 16px;
}

.awards-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3) - 14px);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: none;
  scroll-behavior: auto;
  scrollbar-width: none;
  list-style: none;
  padding: 20px 5px 30px;
  margin: 0;
  contain: layout style;
}

.awards-track::-webkit-scrollbar {
  display: none;
}

.awards-track.no-transition {
  scroll-behavior: auto;
}

/* dragging overrides removed — base track already uses snap:none, behavior:auto */

.awards-track.dragging .award-card {
  cursor: grab;
  user-select: none;
}

/* ---------- Card Base ---------- */
.award-card {
  list-style: none;
}

.award-card-inner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  contain: layout style paint;
}

/* ----------- Three Unique Pastel Card Styles ----------- */

/* Style 1 — Soft Blue */
.award-card-style-1 {
  border: 1.5px solid #d6eaf8;
  box-shadow: 0 4px 20px rgba(6, 163, 218, 0.08);
}



.award-card-style-1 .award-card-accent {
  background: linear-gradient(135deg, #06A3DA, #48c6ef);
}

.award-card-style-1 .award-card-icon {
  background: linear-gradient(135deg, #06A3DA, #48c6ef);
  color: #fff;
  box-shadow: 0 5px 18px rgba(6, 163, 218, 0.35);
}



/* Style 2 — Soft Teal / Mint */
.award-card-style-2 {
  border: 1.5px solid #d1f2eb;
  box-shadow: 0 4px 20px rgba(0, 206, 201, 0.08);
}



.award-card-style-2 .award-card-accent {
  background: linear-gradient(135deg, #00b894, #55efc4);
}

.award-card-style-2 .award-card-icon {
  background: linear-gradient(135deg, #00b894, #55efc4);
  color: #fff;
  box-shadow: 0 5px 18px rgba(0, 184, 148, 0.35);
}



/* Style 3 — Soft Coral / Peach */
.award-card-style-3 {
  border: 1.5px solid #fde2d9;
  box-shadow: 0 4px 20px rgba(253, 160, 133, 0.08);
}



.award-card-style-3 .award-card-accent {
  background: linear-gradient(135deg, #e17055, #fda085);
}

.award-card-style-3 .award-card-icon {
  background: linear-gradient(135deg, #e17055, #fda085);
  color: #fff;
  box-shadow: 0 5px 18px rgba(225, 112, 85, 0.35);
}



/* Shine sweep removed for performance */
.award-card-shine {
  display: none;
}

/* ---------- Card Image ---------- */
.award-card-img {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.award-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image overlay — disabled */
.award-card-overlay {
  display: none;
}



/* ---------- Card Body ---------- */
.award-card-body {
  padding: 22px 20px 26px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.award-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.15rem;
}

.award-card-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #091e3e;
  margin-bottom: 8px;
  line-height: 1.4;
}

.award-card-body p {
  font-size: 0.85rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.55;
}

/* ---------- Responsive ---------- */
@media screen and (max-width: 1024px) {
  .awards-track {
    grid-auto-columns: calc((100% / 2) - 12px);
  }
}

@media screen and (max-width: 768px) {
  .awards-section {
    padding: 50px 0 60px;
  }

  .awards-carousel-wrapper {
    padding: 0 50px;
  }

  .awards-track {
    grid-auto-columns: calc((100% / 2) - 12px);
  }

  .awards-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 576px) {
  .awards-carousel-wrapper {
    padding: 0 45px;
  }

  .awards-track {
    grid-auto-columns: 100%;
  }

  .award-card-img {
    height: 180px;
  }
}
