@charset "UTF-8";
/* Page Hero */
.bg-gradient-hero {
  background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
  min-height: 50vh;
}

/* Cards */
.course-card {
  transition: all 0.35s ease;
  background: white;
}

.hover-lift:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12) !important;
}

.card-icon {
  background: linear-gradient(135deg, #f0f7ff, #e0f2fe);
  min-height: 140px;
}

.detail-card {
  transition: all 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

/* Section Title Underline */
.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  border-radius: 2px;
}