/* ===== Why Learn With Us Section ===== */

.wlw-section {
  padding: 40px 20px;

  margin: auto;
  background: #000;
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
}

/* Title */
.wlw-title {
  text-align: center;
  font-size: 50px;
  font-weight: 500;
  font-family: 'Roobert';
  margin-bottom: 60px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  margin-bottom: 1.5rem;


  /* Gradient text */
  /* background-image: -webkit-linear-gradient(92deg, #f35626, #feab3a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: hue 10s infinite linear; */


  background: linear-gradient(90deg,
      #cfa1ff,
      #00d885,
      #d2f501,
      #85f346,
      #42c9cd,
      #77c6e7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #00d885;
}




/* Layout */
.wlw-content {

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin: auto;
  max-width: 1260px;
  align-items: center;
}

/* Cards Wrapper */
.wlw-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Card */
.wlw-card {

  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 30px;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wlw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Card Content */
.wlw-icon {

  margin-bottom: 25%;
}

.wlw-icon img {
  width: 25px;
  height: auto;
}

.wlw-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 13px;
}

.wlw-card-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #777777;
}

/* Image */
.wlw-image-wrapper {

  min-width: 360px;
  height: auto;
  margin: 0 auto;

}

.wlw-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 900px) {
  .wlw-content {
    grid-template-columns: 1fr;
  }

  .wlw-image-wrapper {
    display: none;
  }

  .wlw-title {
    font-size: 32px;
  }
}