.jgy-whats-next {
  background-color: #0d0d0d;
  color: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.jgy-next-title {
  font-size: 36px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 10px;
}

.jgy-next-subtitle {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 50px;
}

.jgy-next-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.next-box {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  max-width: 350px;
  transition: all 0.3s ease;
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.08);
}

.next-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.25);
}

.next-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.next-box-content {
  padding: 20px;
}

.next-box-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 10px;
}

.next-box-content p {
  font-size: 14px;
  margin: 5px 0;
  color: #ddd;
}

.next-box-content a {
  display: inline-block;
  margin-top: 12px;
  background: linear-gradient(135deg, #ffd700, #f4c10f);
  color: #111;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.next-box-content a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(255, 215, 0, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
  .jgy-next-steps {
    flex-direction: column;
    align-items: center;
  }

  .next-box {
    width: 90%;
  }
}
.about-banner-wrapper {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
  background-color: #0a0a0a;
}

.about-banner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 55vh;
  background: url('/images/bg.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 215, 100, 0.2);
  animation: fadeInUp 1.2s ease-in-out;
  border: 1px solid rgba(247, 200, 115, 0.3);
}

.about-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
  background: linear-gradient(
    to bottom right,
    rgba(18, 18, 18, 0.6),
    rgba(0, 0, 0, 0.7)
  );
  z-index: 1;
}

.about-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top left,
    rgba(255, 215, 109, 0.12),
    rgba(255, 215, 109, 0.05)
  );
  z-index: 1;
  mix-blend-mode: screen;
}

.about-banner h1 {
  position: relative;
  z-index: 2;
  font-size: 3.5rem;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: #f7c873;
  text-align: center;
  letter-spacing: 1.5px;
  text-shadow:
    0 0 8px rgba(255, 215, 109, 0.4),
    0 0 14px rgba(255, 215, 109, 0.3);
  animation: glowText 2.5s ease-in-out infinite alternate;
}

/* Glowing golden text animation */
@keyframes glowText {
  from {
    text-shadow:
      0 0 8px rgba(255, 215, 109, 0.3),
      0 0 14px rgba(255, 215, 109, 0.15);
  }
  to {
    text-shadow:
      0 0 14px rgba(255, 215, 109, 0.5),
      0 0 25px rgba(255, 215, 109, 0.35);
  }
}

/* Entrance fade animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-banner {
    height: 40vh;
  }

  .about-banner h1 {
    font-size: 2.2rem;
  }
}

