.featured-icons-section {
  width: 100%;
  background: #030007;
  padding: 50px 20px 85px;
  color: #ffffff;
  font-family: "Inter", "Poppins", Arial, sans-serif;
}

.featured-container {
  max-width: 1200px;
  margin: 0 auto;
}

.featured-heading {
  text-align: center;
  margin-bottom: 52px;
}

.featured-heading p {
  margin: 0 0 16px;
  color: #9b32ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 5px;
}

.featured-heading h2 {
  margin: 0;
  font-size: 52px;
  line-height: 1;
  font-weight: 600;
  color: #ffffff;
}

.featured-heading h2 span {
  background: linear-gradient(90deg, #8e24ff, #225cff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.featured-heading h4 {
  margin: 20px 0 0;
  color: #d8dcff;
  font-size: 16px;
  font-weight: 400;
}

.icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.icon-card {
  position: relative;
  height: 400px;
  border-radius: 13px;
  overflow: hidden;
  background: #11071b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 0, 200, 0.65);
}

.icon-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.icon-card:hover img {
  transform: scale(1.05);
}

.icon-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(3, 0, 7, 0) 30%,
      rgba(3, 0, 7, 0.45) 62%,
      rgba(3, 0, 7, 0.96) 100%
    ),
    linear-gradient(
      90deg,
      rgba(150, 20, 255, 0.28),
      transparent 60%
    );
  z-index: 1;
}

.icon-content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
}

.icon-content h3 {
  margin: 0 0 5px;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  color: #ffffff;
}

.icon-content p {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
}

.icon-content h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #9b32ff;
}

.guest-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  padding: 5px 11px;
  border-radius: 30px;
  background: linear-gradient(90deg, #8b20ff, #2370ff);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
}

/* Responsive */
@media (max-width: 992px) {
  .icons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-heading h2 {
    font-size: 42px;
  }
}

@media (max-width: 620px) {
  .featured-icons-section {
    padding: 58px 14px 70px;
  }

  .featured-heading {
    margin-bottom: 35px;
  }

  .featured-heading p {
    font-size: 9px;
    letter-spacing: 4px;
  }

  .featured-heading h2 {
    font-size: 34px;
  }

  .featured-heading h4 {
    font-size: 14px;
    line-height: 1.5;
  }

  .icons-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .icon-card {
    height: 390px;
  }
}