/* =================================
   BOOTCAMPS PAGE STYLES
   Modern Card Design with Animations
   ================================= */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --primary-color: #0c1a53;
  --secondary-color: #ac9dd3;
  --accent-color: #e7781e;
  --success-color: #10b981;
  --gradient-primary: linear-gradient(135deg, #0c1a53 0%, #1e3a8a 100%);
  --gradient-accent: linear-gradient(135deg, #e7781e 0%, #d16915 100%);
  --text-dark: #111827;
  --text-light: #6b7280;
  --border-color: #e5e7eb;
  --light-bg: #f9fafb;
  --white: #ffffff;
}

/* Hero Section */
.bootcamp-hero {
  position: relative;
  min-height: 60vh;
  background: linear-gradient(135deg, #ff6800 0%, #b75a17 50%, #800d0d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.bootcamp-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 104, 0, 0.2) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.hero-overlay {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem;
}

.hero-title {
  color: #ffffff;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.05rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: 3rem;
  font-weight: 300;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease-out 0.4s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 300;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

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

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

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
  color: var(--primary-color);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.section-header p {
  color: var(--text-light);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  margin-top: 1.5rem;
  padding: 0;
}

/* Bootcamps Section */
.bootcamps-section {
  padding: 5rem 0;
  background: var(--light-bg);
}

.bootcamps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

/* Bootcamp Card */
.bootcamp-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  animation: scaleIn 0.6s ease-out;
  animation-fill-mode: both;
}

.bootcamp-card:nth-child(1) { animation-delay: 0.1s; }
.bootcamp-card:nth-child(2) { animation-delay: 0.2s; }
.bootcamp-card:nth-child(3) { animation-delay: 0.3s; }
.bootcamp-card:nth-child(4) { animation-delay: 0.4s; }

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

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(231, 120, 30, 0.3);
}

.card-badge.special {
  background: var(--gradient-primary);
  box-shadow: 0 4px 10px rgba(12, 26, 83, 0.3);
}

.card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bootcamp-card:hover .card-image img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(12, 26, 83, 0.8) 0%, rgba(172, 157, 211, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bootcamp-card:hover .card-overlay {
  opacity: 1;
}

.card-overlay i {
  font-size: 4rem;
  color: white;
  transform: scale(0.5);
  transition: transform 0.4s ease;
}

.bootcamp-card:hover .card-overlay i {
  transform: scale(1);
}

/* Card Content */
.card-content {
  padding: 2rem;
}

.card-content h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card-tagline {
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding: 0 !important;
}

.card-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--light-bg);
  border-radius: 1rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.feature-item i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.feature-item span {
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 500;
}

.card-highlights {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.card-highlights li {
  color: var(--text-dark);
  font-size: 0.95rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.card-highlights li:last-child {
  border-bottom: none;
}

.card-highlights i {
  color: var(--success-color);
  font-size: 1rem;
}

/* Card Footer */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 2px solid var(--border-color);
  margin-top: 1.5rem;
}

.card-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.price-amount {
  color: var(--primary-color);
  font-size: 1.75rem;
  font-weight: 700;
}

.card-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: var(--gradient-accent);
  color: white;
  text-decoration: none;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 120, 30, 0.3);
}

.card-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(231, 120, 30, 0.4);
}

.card-btn i {
  transition: transform 0.3s ease;
}

.card-btn:hover i {
  transform: translateX(5px);
}

/* Private Lessons Section */
.private-lessons-section {
  padding: 5rem 0;
  background: white;
}

.lessons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.lesson-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.lesson-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0.03;
  transition: left 0.5s ease;
}

.lesson-card:hover::before {
  left: 0;
}

.lesson-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.lesson-card.featured {
  border: 3px solid var(--accent-color);
  background: linear-gradient(135deg, rgba(231, 120, 30, 0.03) 0%, rgba(172, 157, 211, 0.03) 100%);
}

.featured-badge {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(231, 120, 30, 0.3);
}

.lesson-icon {
  width: 80px;
  height: 80px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
}

.lesson-card:hover .lesson-icon {
  background: var(--gradient-accent);
  transform: scale(1.1) rotate(10deg);
}

.lesson-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
  transition: color 0.4s ease;
}

.lesson-card:hover .lesson-icon i {
  color: white;
}

.lesson-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.lesson-card > p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  padding: 0 !important;
}

.lesson-price {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1.5rem 0;
}

.lesson-price span {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 400;
}

.lesson-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.lesson-features li {
  padding: 0.75rem 0;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.lesson-features li:last-child {
  border-bottom: none;
}

.lesson-features i {
  color: var(--success-color);
}

.lesson-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gradient-accent);
  color: white;
  text-decoration: none;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.lesson-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(231, 120, 30, 0.3);
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: var(--light-bg);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.stars i {
  color: #fbbf24;
  font-size: 1.25rem;
}

.testimonial-card > p {
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
  padding: 0 !important;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--border-color);
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar i {
  font-size: 2rem;
  color: var(--accent-color);
}

.author-info h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-info span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #800d0d 0%, #b75a17 50%, #ff6800 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 104, 0, 0.3) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.5; }
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: 2.5rem;
  font-weight: 300;
  padding: 0 !important;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border-radius: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background: white;
  color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.cta-btn.primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-btn.secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-5px);
}

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

@media (max-width: 768px) {
  .hero-stats {
    gap: 2rem;
  }

  .bootcamps-grid,
  .lessons-grid,
  .testimonials-slider {
    grid-template-columns: 1fr;
  }

  .card-features {
    grid-template-columns: 1fr;
  }

  .card-footer {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }

  .card-btn {
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .bootcamp-hero {
    min-height: 50vh;
  }

  .bootcamps-section,
  .private-lessons-section,
  .testimonials-section {
    padding: 3rem 0;
  }

  .bootcamp-card,
  .lesson-card {
    padding: 1.5rem;
  }

  .card-content {
    padding: 1.5rem;
  }
}

/* Purchased Courses Section */
.purchased-courses-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(12, 26, 83, 0.03) 0%, rgba(172, 157, 211, 0.03) 100%);
  position: relative;
  overflow: hidden;
}

.purchased-courses-section::before {
  content: '🎓';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 8rem;
  opacity: 0.05;
  animation: float 6s ease-in-out infinite;
}

.purchased-header-content {
  position: relative;
}

.purchased-header-content h2 {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.purchased-courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

/* Purchased Course Card */
.purchased-course-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 3px solid var(--success-color);
  animation: scaleIn 0.6s ease-out;
}

.purchased-course-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(16, 185, 129, 0.2);
}

.purchased-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.purchased-overlay {
  height: 200px;
  background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.purchased-overlay i {
  font-size: 4rem;
  color: white;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.course-type-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(12, 26, 83, 0.1) 0%, rgba(172, 157, 211, 0.1) 100%);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.purchased-info {
  background: var(--light-bg);
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.info-item i {
  color: var(--success-color);
  font-size: 1.1rem;
  width: 20px;
}

.purchased-status {
  text-align: center;
  margin: 1.5rem 0;
}

.status-badge {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1rem;
}

.status-badge.active {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
  color: var(--success-color);
  border: 2px solid var(--success-color);
}

.status-badge.completed {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
  color: #3b82f6;
  border: 2px solid #3b82f6;
}

.status-badge.expired {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
  color: var(--error-color);
  border: 2px solid var(--error-color);
}

/* Card Actions */
.card-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.action-btn.primary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 4px 15px rgba(231, 120, 30, 0.3);
}

.action-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(231, 120, 30, 0.4);
}

.action-btn.secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.action-btn.secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(12, 26, 83, 0.2);
}

.action-btn:active {
  transform: translateY(-1px);
}

.action-btn i {
  font-size: 1.1rem;
}

/* Responsive Design for Purchased Section */
@media (max-width: 768px) {
  .purchased-courses-section {
    padding: 3rem 0;
  }

  .purchased-courses-grid {
    grid-template-columns: 1fr;
  }

  .card-actions {
    flex-direction: column;
  }

  .action-btn {
    width: 100%;
  }

  .purchased-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }
}

@media (max-width: 480px) {
  .purchased-overlay {
    height: 150px;
  }

  .purchased-overlay i {
    font-size: 3rem;
  }

  .info-item {
    font-size: 0.85rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* =================================
   BOOTCAMP FEATURES SECTION
   ================================= */

.bootcamp-features-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.bootcamp-features-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(172, 157, 211, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
}

.bootcamp-features-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(12, 26, 83, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite reverse;
}

.bootcamp-features-section .section-header {
  position: relative;
  z-index: 2;
  margin-bottom: 4rem;
}

.bootcamp-features-section .section-header h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.bootcamp-features-section .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  border-radius: 2px;
}

.bootcamp-features-section .section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

/* Feature Box */
.feature-box {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-box:hover::before {
  transform: scaleX(1);
}

.feature-box:hover {
  transform: translateY(-10px);
  border-color: var(--secondary-color);
  box-shadow: 0 15px 40px rgba(172, 157, 211, 0.25);
}

/* Feature Icon */
.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(172, 157, 211, 0.3);
  transition: all 0.4s ease;
  position: relative;
}

.feature-icon::after {
  content: '';
  position: absolute;
  inset: -5px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 20px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
  filter: blur(15px);
}

.feature-box:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-box:hover .feature-icon::after {
  opacity: 0.6;
}

.feature-icon i {
  font-size: 2.2rem;
  color: var(--white);
  transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon i {
  transform: scale(1.1);
}

/* Feature Content */
.feature-box h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.feature-box p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .bootcamp-features-section {
    padding: 3rem 0;
  }

  .bootcamp-features-section .section-header h2 {
    font-size: 2rem;
  }

  .bootcamp-features-section .section-header p {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-box {
    padding: 2rem 1.5rem;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
  }

  .feature-icon i {
    font-size: 2rem;
  }

  .feature-box h3 {
    font-size: 1.15rem;
  }

  .feature-box p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .bootcamp-features-section {
    padding: 2.5rem 0;
  }

  .bootcamp-features-section .section-header {
    margin-bottom: 2.5rem;
  }

  .bootcamp-features-section .section-header h2 {
    font-size: 1.75rem;
  }

  .feature-box {
    padding: 1.75rem 1.25rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .feature-icon i {
    font-size: 1.75rem;
  }
}

