/* Hero Intro */
.dual-hero {
  background: linear-gradient(120deg, #000428, #004e92);
  color: white;
  text-align: center;
  padding: 120px 30px 100px;
  animation: fadeInHero 1.5s ease forwards;
}

.dual-hero-content h1 {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 25px;
  background: linear-gradient(to right, #00f0ff, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dual-hero-content p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  color: #dbeafe;
  line-height: 1.8;
}

/* Offerings Section */
/* Main Section Container */
.premium-training-section {
  padding: 120px 30px;
  background: radial-gradient(ellipse at top left, #001d3d, #000814);
  color: white;
  position: relative;
  overflow: hidden;
}

.premium-heading {
  text-align: center;
  margin-bottom: 80px;
}

.premium-heading h2 {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(to right, #00f0ff, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.premium-heading p {
  color: #cbd5e1;
  font-size: 1.2rem;
  max-width: 750px;
  margin: 0 auto;
}

/* Card Grid */
.premium-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* Card Design */
.premium-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  border-radius: 24px;
  padding: 50px 40px;
  max-width: 420px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: riseIn 1s ease forwards;
}

.premium-card:hover {
  transform: translateY(-10px) scale(1.02) rotateX(3deg);
  box-shadow: 0 0 35px rgba(0, 255, 255, 0.1), 0 0 20px rgba(0, 119, 255, 0.2);
}

/* Icon */
.icon-wrap {
  font-size: 2.8rem;
  background: linear-gradient(90deg, #00f0ff, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  animation: pulse 3s infinite;
}

/* Title + Description */
.premium-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.premium-card p {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* CTA Button */
.explore-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  background: linear-gradient(to right, #00f0ff, #0077ff);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.explore-btn:hover {
  background: #005eff;
}

/* Entry Animations */
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 0.9; }
}

/* Responsive */
@media (max-width: 768px) {
  .premium-grid {
    flex-direction: column;
    gap: 40px;
  }

  .premium-card {
    max-width: 100%;
  }

  .premium-heading h2 {
    font-size: 2.2rem;
  }
}


/* Animations */
@keyframes fadeInHero {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomInCard {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .dual-hero-content h1 {
    font-size: 2.4rem;
  }

}
