:root {
  --gap: 16px;
  --item-width: 300px;
  --item-height: 300px;
  --duration: 18s;
}



.extra-Curriculum-section {
  padding: 40px 70px;
     background: linear-gradient(rgb(238, 245, 255), rgb(255, 255, 255));
}

.extra-Curriculum-section-heading h2 {
     font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
  color: #2c3e50;
  text-align: center;
  position: relative;
  margin-bottom: 25px;
}

.extra-Curriculum-section-heading h2::after {
  content: "";
  width: 50px;
  height: 4px;
  background: #007bff;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
}

/* EXTRA CURRI CAROUSEL */
.extra-curri-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 25px 0;
}

.extra-curri-carousel__track {
  display: flex;
  gap: var(--gap);
  white-space: nowrap;
  animation: scroll var(--duration) linear infinite;
  will-change: transform;
}

.extra-curri-slides {
  display: flex;
  gap: var(--gap);
}

/* IMG CARD */
.extra-curri-slide {
  flex: 0 0 var(--item-width);
  width: var(--item-width);
  height: var(--item-height);
  border-radius: 12px;
  overflow: hidden;
background: linear-gradient(180deg, #dbe7f8, #ffffff);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.extra-curri-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover Pause */
.extra-curri-carousel:hover .extra-curri-carousel__track {
  animation-play-state: paused;
}

/* Animation */
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Fade edges */
.extra-curri-fade-left,
.extra-curri-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 5;
}

.extra-curri-fade-left {
  left: 0;
  /* background: linear-gradient(90deg, #cbdef9 0%, transparent 100%); */
}

.extra-curri-fade-right {
  right: 0;
  /* background: linear-gradient(-90deg, #cbdef9 0%, transparent 100%); */
}

/* -------------------------------------- */
/* RESPONSIVE BREAKPOINTS                 */
/* -------------------------------------- */

/* Tablets (900px ↓) */
@media (max-width: 900px) {
  :root {
    --item-width: 240px;
    --item-height: 240px;
  }

  .extra-Curriculum-section {
    padding: 35px 40px;
  }

  .extra-Curriculum-section-heading h2 {
    font-size: 34px;
  }

  .extra-curri-fade-left,
  .extra-curri-fade-right {
    width: 60px;
  }
}

/* Mobile (600px ↓) */
@media (max-width: 600px) {
  :root {
    --item-width: 180px;
    --item-height: 180px;
  }

  .extra-Curriculum-section {
    padding: 30px 20px;
  }

  .extra-Curriculum-section-heading h2 {
    font-size: 28px;
  }

  .extra-curri-fade-left,
  .extra-curri-fade-right {
    width: 45px;
  }
}

/* Small Mobile (420px ↓) */
@media (max-width: 420px) {
  :root {
    --item-width: 150px;
    --item-height: 150px;
  }

  .extra-Curriculum-section-heading h2 {
    font-size: 24px;
  }

  .extra-curri-fade-left,
  .extra-curri-fade-right {
    width: 35px;
  }
}
