* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 25%, #334155 50%, #475569 75%, #64748B 100%);
  color: white;
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100vw;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.9) 0%, 
    rgba(30, 41, 59, 0.8) 25%, 
    rgba(51, 65, 85, 0.7) 50%, 
    rgba(71, 85, 105, 0.8) 75%, 
    rgba(100, 116, 139, 0.9) 100%);
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(1deg); }
  66% { transform: translateY(-10px) rotate(-1deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 30px;
  animation: slideInDown 0.8s ease-out;
}

.badge-icon {
  font-size: 1.2rem;
}

@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Industry Experts Section */
.industry-experts {
  background: white;
  padding: 80px 0;
}

.industry-experts h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #2c3e50;
  text-align: center;
  font-weight: 700;
}

.experts-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.experts-container {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.experts-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.expert-card {
  flex: 0 0 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.expert-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.expert-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 30px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
}

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

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

.expert-info h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: white;
  position: relative;
  z-index: 1;
}

.expert-info h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.expert-info p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.experts-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.expert-btn {
  background: #667eea;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.expert-btn:hover {
  background: #764ba2;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(118, 75, 162, 0.4);
}

.expert-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: scale(1);
  box-shadow: none;
}

.expert-indicators {
  display: flex;
  gap: 12px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #667eea;
  transform: scale(1.2);
}

.indicator:hover {
  background: #764ba2;
}

/* Responsive Design for Experts */
@media (max-width: 768px) {
  .industry-experts {
    padding: 60px 0;
  }
  
  .industry-experts h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .expert-card {
    padding: 40px 20px;
  }
  
  .expert-image {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
  }
  
  .expert-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .expert-info h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .expert-info p {
    font-size: 1rem;
  }
  
  .experts-controls {
    gap: 20px;
    margin-top: 30px;
  }
  
  .expert-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* AI Tools Carousel */
.ai-tools-carousel {
  background: linear-gradient(135deg, #334155 0%, #475569 50%, #64748B 100%);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

.ai-tools-carousel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 40% 60%, rgba(120, 119, 198, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.carousel-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  animation: scroll 30s linear infinite;
  width: calc(200px * 20);
  will-change: transform;
}

.tool-item {
  flex: 0 0 200px;
  text-align: center;
  padding: 15px 20px;
  margin: 0 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  font-weight: 600;
  color: white;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  gap: 10px;
  transition: all 0.3s ease;
}

.tool-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.tool-icon {
  font-size: 20px;
  display: inline-block;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * 10 - 100px)); /* Half the total width */
  }
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.1;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.title-highlight {
  display: block;
  background: linear-gradient(135deg, #3B82F6, #8B5CF6, #EC4899);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
  text-shadow: none;
}

.title-main {
  display: block;
  color: white;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  margin-top: 10px;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 50px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

@media (max-width: 900px) {
  .hero-title { font-size: 3.5rem; }
  .hero-subtitle { font-size: 1.2rem; }
}

@media (max-width: 700px) {
  .hero-title { font-size: 2.8rem; }
  .hero-subtitle { font-size: 1.1rem; }
}

@media (max-width: 550px) {
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 40px; }
}

@media (max-width: 450px) {
  .hero-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: 0.95rem; }
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
  animation: slideInUp 0.8s ease-out 0.6s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #3B82F6;
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-batch-info {
  margin-bottom: 60px;
  animation: slideInUp 0.8s ease-out 0.8s both;
}

.batch-card {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 25px 35px;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.batch-icon {
  font-size: 2.5rem;
  opacity: 0.9;
}

.batch-title {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-bottom: 5px;
}

.batch-date {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
}

.batch-format {
  font-size: 0.9rem;
  color: #3B82F6;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .stat-divider {
    display: none;
  }
  
  .batch-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px 25px;
  }
  
  .batch-icon {
    font-size: 2rem;
  }
}

.hero-details {
  margin-bottom: 40px;
}

.hero-details p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.cta-button {
  display: inline-block;
  background: #ff6b6b;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* Sections */
section {
  padding: 60px 0;
  width: 100%;
  overflow-x: hidden;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 25%, #334155 50%, #475569 75%, #64748B 100%);
  color: white;
  position: relative;
}

section:nth-child(even) {
  background: linear-gradient(135deg, #1E293B 0%, #334155 25%, #475569 50%, #64748B 75%, #94A3B8 100%);
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: white;
  text-align: center;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

/* Why Program Section */
.why-program {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 25%, #334155 50%, #475569 75%, #64748B 100%);
}

.why-program::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.9) 0%, 
    rgba(30, 41, 59, 0.8) 25%, 
    rgba(51, 65, 85, 0.7) 50%, 
    rgba(71, 85, 105, 0.8) 75%, 
    rgba(100, 116, 139, 0.9) 100%);
  pointer-events: none;
}

.why-program p {
  max-width: 800px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

/* Eligibility Section */
.eligibility-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.eligibility-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.eligibility-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3B82F6, #8B5CF6, #EC4899);
  transition: left 0.3s ease;
}

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

.eligibility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  background: rgba(255, 255, 255, 0.15);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.eligibility-card h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 20px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.requirement {
  background: rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  border-left: 4px solid #3B82F6;
}

.requirement-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-bottom: 5px;
}

.requirement-value {
  display: block;
  font-size: 1.1rem;
  color: white;
  font-weight: 600;
}

.eligibility-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  text-align: left;
  margin: 0;
}

.eligibility-footer {
  background: linear-gradient(135deg, #3B82F6, #8B5CF6, #EC4899);
  color: white;
  padding: 40px;
  border-radius: 20px;
  margin-top: 40px;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.motivation-text h4 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: white;
}

.motivation-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  text-align: center;
}

.motivation-points span {
  background: rgba(255,255,255,0.1);
  padding: 15px 20px;
  border-radius: 12px;
  display: block;
  font-size: 1rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.motivation-points span:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

/* Workshop Section */
.workshop {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 25%, #334155 50%, #475569 75%, #64748B 100%);
  color: white;
  position: relative;
}

.workshop::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.9) 0%, 
    rgba(30, 41, 59, 0.8) 25%, 
    rgba(51, 65, 85, 0.7) 50%, 
    rgba(71, 85, 105, 0.8) 75%, 
    rgba(100, 116, 139, 0.9) 100%);
  background-image: 
    radial-gradient(circle at 30% 70%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 119, 198, 0.15) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

.workshop h2 {
  color: white;
  position: relative;
  z-index: 2;
}

.workshop-info {
  text-align: center;
  margin-bottom: 50px;
}

.workshop-info p {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

/* Registration Form */
.registration-form {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

.registration-form h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: white;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.submit-btn {
  width: 100%;
  background: #ff6b6b;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #ff5252;
  transform: translateY(-2px);
}

.submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.success-message {
  background: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #c3e6cb;
  text-align: center;
}

.workshop-date {
  text-align: center;
  margin-top: 25px;
}

.workshop-date p {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.workshop-date-hero {
  text-align: center;
  margin-top: 20px;
}

.workshop-date-hero p {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  opacity: 0.9;
}

/* Hero Experts Section */
.hero-experts {
  position: relative;
  z-index: 2;
  margin-top: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.experts-header {
  text-align: center;
  margin-bottom: 50px;
  animation: slideInUp 0.8s ease-out 1s both;
}

.experts-header h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.experts-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin: 0;
}

.hero-experts .expert-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-radius: 25px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
}

.hero-experts .expert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3B82F6, #8B5CF6, #EC4899);
  background-size: 200% 100%;
  animation: gradientMove 3s ease-in-out infinite;
}

@keyframes gradientMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-experts .expert-image {
  width: 140px;
  height: 140px;
  margin: 0 auto 25px;
  position: relative;
  border: 4px solid #3B82F6;
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.3);
  border-radius: 50%;
  overflow: hidden;
}

.hero-experts .expert-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-experts .expert-info h3 {
  color: #1E293B;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-experts .expert-info h4 {
  color: #3B82F6;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-experts .expert-info p {
  color: #64748B;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.hero-experts .expert-info .expert-company {
  color: #3B82F6;
  font-size: 0.95rem;
  font-weight: 600;
  background: rgba(59, 130, 246, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 10px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero-experts .expert-btn {
  background: rgba(255, 255, 255, 0.95);
  color: #3B82F6;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.hero-experts .expert-btn:hover {
  background: white;
  color: #1E40AF;
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.3);
}

.hero-experts .indicator {
  background: rgba(255, 255, 255, 0.4);
  width: 14px;
  height: 14px;
  transition: all 0.3s ease;
}

.hero-experts .indicator.active {
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .experts-header h2 {
    font-size: 2rem;
  }
  
  .hero-experts .expert-card {
    padding: 40px 30px;
  }
  
  .hero-experts .expert-image {
    width: 120px;
    height: 120px;
  }
}

/* Hero CTA Section */
.hero-cta-section {
  position: relative;
  z-index: 2;
  margin-top: 80px;
  text-align: center;
  animation: slideInUp 0.8s ease-out 1.2s both;
}

.cta-container {
  max-width: 600px;
  margin: 0 auto;
}

.cta-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #FCA5A5;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
  animation: pulse 2s ease-in-out infinite;
}

.urgency-icon {
  font-size: 1.1rem;
}

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

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #EF4444, #DC2626, #B91C1C);
  color: white;
  padding: 25px 45px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  box-shadow: 
    0 15px 35px rgba(239, 68, 68, 0.4),
    0 5px 15px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  min-width: 320px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: urgentPulse 2s ease-in-out infinite;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.cta-button::after {
  content: '🔥 LIMITED SEATS 🔥';
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  animation: bounce 1s ease-in-out infinite alternate;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

@keyframes urgentPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 
      0 15px 35px rgba(239, 68, 68, 0.4),
      0 5px 15px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% { 
    transform: scale(1.02);
    box-shadow: 
      0 20px 45px rgba(239, 68, 68, 0.6),
      0 8px 25px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

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

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(239, 68, 68, 0.6),
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation-play-state: paused;
}

.cta-text {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-date {
  display: block;
  font-size: 1rem;
  opacity: 0.95;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-benefits {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.benefit-icon {
  color: #10B981;
  font-weight: bold;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .cta-button {
    min-width: 280px;
    padding: 22px 35px;
    font-size: 1.1rem;
  }
  
  .cta-button::after {
    font-size: 0.65rem;
    padding: 4px 16px;
    top: -32px;
  }
  
  .cta-benefits {
    gap: 20px;
    justify-content: space-around;
  }
  
  .benefit-item {
    font-size: 0.85rem;
  }
}

/* Course Overview */
.course-modules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.module {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.module:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.module h3 {
  font-size: 1.3rem;
  color: white;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Benefits Section */
.benefits-list {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
}

.benefits-list li {
  background: rgba(16, 185, 129, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 4px solid #10B981;
  font-size: 1.1rem;
  position: relative;
  color: white;
  transition: all 0.3s ease;
}

.benefits-list li:hover {
  background: rgba(16, 185, 129, 0.15);
  transform: translateX(5px);
}

.benefits-list li::before {
  content: "✓";
  color: #10B981;
  font-weight: bold;
  margin-right: 10px;
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 25%, #334155 50%, #475569 75%, #64748B 100%);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.9) 0%, 
    rgba(30, 41, 59, 0.8) 25%, 
    rgba(51, 65, 85, 0.7) 50%, 
    rgba(71, 85, 105, 0.8) 75%, 
    rgba(100, 116, 139, 0.9) 100%);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

.testimonials-carousel {
  position: relative;
  margin-bottom: 60px;
}

.testimonials-container {
  overflow: hidden;
  border-radius: 15px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial {
  flex: 0 0 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  margin: 0 10px;
  position: relative;
  color: white;
  z-index: 2;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #3B82F6;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
  position: relative;
  z-index: 2;
}

.carousel-btn:hover {
  background: white;
  color: #1E40AF;
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.3);
}

.carousel-btn:disabled {
  background: rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
  transform: scale(1);
  box-shadow: none;
}

@media (min-width: 768px) {
  .testimonial {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (min-width: 1024px) {
  .testimonial {
    flex: 0 0 calc(33.333% - 20px);
  }
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: #3B82F6;
  opacity: 0.5;
  font-family: serif;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-info h4 {
  color: white;
  margin-bottom: 5px;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.author-info span {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.batch {
  color: #3B82F6 !important;
  font-weight: 500;
}

.testimonial-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  text-align: center;
  margin-top: 50px;
}

.stat {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.stat:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stat h3 {
  font-size: 2.5rem;
  color: #3B82F6;
  margin-bottom: 10px;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.stat p {
  color: white;
  font-size: 1rem;
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 25%, #334155 50%, #475569 75%, #64748B 100%);
  color: white;
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.9) 0%, 
    rgba(30, 41, 59, 0.8) 25%, 
    rgba(51, 65, 85, 0.7) 50%, 
    rgba(71, 85, 105, 0.8) 75%, 
    rgba(100, 116, 139, 0.9) 100%);
  background-image: 
    radial-gradient(circle at 30% 70%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 119, 198, 0.15) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

.cta-section h2 {
  color: white;
  position: relative;
  z-index: 2;
}

.cta-section .cta-button {
  position: relative;
  z-index: 2;
  margin-top: 30px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 25%, #334155 50%, #475569 75%, #64748B 100%);
  color: white;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.9) 0%, 
    rgba(30, 41, 59, 0.8) 25%, 
    rgba(51, 65, 85, 0.7) 50%, 
    rgba(71, 85, 105, 0.8) 75%, 
    rgba(100, 116, 139, 0.9) 100%);
  pointer-events: none;
}

footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

footer p {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 3.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Hero Section Mobile */
  .hero {
    padding: 80px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .hero-badge {
    padding: 10px 20px;
    font-size: 0.85rem;
    margin-bottom: 25px;
  }

  .hero-stats {
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  
  .stat-item {
    min-width: 80px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .stat-divider {
    display: none;
  }

  .hero-batch-info {
    margin-bottom: 50px;
  }

  .batch-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px 25px;
    margin: 0 10px;
  }
  
  .batch-icon {
    font-size: 2rem;
  }
  
  .batch-date {
    font-size: 1.2rem;
  }

  /* Hero Experts Mobile */
  .hero-experts {
    margin-top: 60px;
  }

  .experts-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .experts-header p {
    font-size: 1rem;
    padding: 0 10px;
  }
  
  .hero-experts .expert-card {
    padding: 35px 25px;
    margin: 0 10px;
  }
  
  .hero-experts .expert-image {
    width: 110px;
    height: 110px;
    margin-bottom: 20px;
  }
  
  .hero-experts .expert-info h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  
  .hero-experts .expert-info h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  
  .hero-experts .expert-info p {
    font-size: 0.95rem;
  }

  /* Hero CTA Mobile */
  .hero-cta-section {
    margin-top: 60px;
  }

  .cta-urgency {
    padding: 10px 20px;
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .cta-button {
    min-width: 260px;
    padding: 18px 30px;
    margin-bottom: 25px;
  }
  
  .cta-text {
    font-size: 1.1rem;
  }
  
  .cta-date {
    font-size: 0.9rem;
  }
  
  .cta-benefits {
    gap: 15px;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .benefit-item {
    font-size: 0.85rem;
    flex-basis: calc(50% - 10px);
    justify-content: center;
  }

  /* General Sections Mobile */
  h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding: 0 10px;
  }

  p {
    font-size: 1rem;
    padding: 0 10px;
  }

  section {
    padding: 50px 0;
  }

  /* Workshop Section Mobile */
  .registration-form {
    margin: 0 10px;
    padding: 30px 20px;
  }
  
  .workshop-info p {
    font-size: 1.1rem;
    padding: 0 10px;
  }

  /* Course Modules Mobile */
  .course-modules {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .module {
    padding: 25px 20px;
  }

  /* Eligibility Mobile */
  .eligibility-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .eligibility-card {
    padding: 25px 20px;
    margin: 0 10px;
  }

  .motivation-points {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .eligibility-footer {
    padding: 25px 20px;
    margin: 20px 10px;
  }

  /* Testimonials Mobile */
  .testimonial {
    flex: 0 0 100% !important;
    padding: 30px 20px;
    margin: 0 5px;
  }
  
  .testimonial-content p {
    font-size: 1rem;
  }

  .testimonial-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0 10px;
  }

  .stat h3 {
    font-size: 2rem;
  }

  /* AI Tools Carousel Mobile */
  .tool-item {
    flex: 0 0 140px;
    font-size: 0.8rem;
    padding: 10px 12px;
    margin: 0 5px;
  }

  .carousel-track {
    width: calc(140px * 20);
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-140px * 10 - 50px));
    }
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Extra small mobile adjustments */
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 35px;
  }
  
  .hero-badge {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .experts-header h2 {
    font-size: 1.8rem;
  }
  
  .hero-experts .expert-card {
    padding: 25px 15px;
  }
  
  .hero-experts .expert-image {
    width: 100px;
    height: 100px;
  }
  
  .hero-experts .expert-info h3 {
    font-size: 1.2rem;
  }
  
  .hero-experts .expert-info h4 {
    font-size: 1.1rem;
  }
  
  .cta-button {
    min-width: 240px;
    padding: 20px 25px;
    font-size: 1rem;
  }
  
  .cta-button::after {
    font-size: 0.6rem;
    padding: 3px 12px;
    top: -30px;
  }
  
  .cta-text {
    font-size: 1rem;
  }
  
  .benefit-item {
    font-size: 0.8rem;
    flex-basis: 100%;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .registration-form {
    margin: 0 5px;
    padding: 25px 15px;
  }
  
  .tool-item {
    flex: 0 0 120px;
    font-size: 0.75rem;
    padding: 8px 10px;
  }
  
  .carousel-track {
    width: calc(120px * 20);
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-120px * 10 - 40px));
    }
  }
}

/* Success Message */
.success-message {
  background: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
  border: 1px solid #c3e6cb;
}