



.section-header {
  text-align: center;
  margin-bottom: 50px;
}



.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
}

.grade-info {
  color: #34495e;
  font-weight: 600;
  font-size: 1rem;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.program-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}



.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.program-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: white;
}

.program-card:nth-child(2) .program-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.program-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 10px;
}

.program-grade {
  color: #7f8c8d;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.program-description {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.features-list {
  list-style: none;
  margin-bottom: 20px;
}

.features-list li {
  padding: 8px 0;
  color: #34495e;
  position: relative;
  padding-left: 25px;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
  font-size: 1.1rem;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  color: white;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

.cta-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.cta-subtitle {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.fee-info {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  position: relative;
  z-index: 1;
}

.fee-amount {
  font-size: 1.8rem;
  font-weight: bold;
  color: #feca57;
  margin-bottom: 5px;
}

.fee-details {
  font-size: 0.9rem;
  opacity: 0.8;
}

.enroll-btn {
  background: #feca57;
  color: #2c3e50;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  text-decoration: none;
  display: inline-block;
}

.enroll-btn:hover {
  background: #ff9ff3;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.robot-icon {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 80px;
  opacity: 0.1;
  color: white;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .program-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-section {
    padding: 30px 20px;
  }

  .cta-title {
    font-size: 1.6rem;
  }
}
