/* ---------- GLOBAL THEME ---------- */
:root {
  --primary-dark: #060733;
  --primary-accent: #64055e;
  --text-light: #f5f5f5;
  --text-dark: #222;
  --card-bg: #ffffff;
  --gradient: linear-gradient(135deg, #060733, #64055e);
}

/* ---------- BASE STYLES ---------- */
body {
  font-family: 'Poppins', sans-serif;
  background: #f8f9fb;
  margin: 0;
  color: var(--text-dark);
  line-height: 1.6;
}

/* ---------- HEADER ---------- */
header {
  background: var(--gradient);
  color: var(--text-light);
  text-align: center;
  padding: 3rem 1rem;
  border-bottom: 5px solid #4b0450;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

header h1 {
  font-size: 2.3rem;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ---------- SECTION STYLES ---------- */
.course-overview, .chapters {
  max-width: 1000px;
  margin: 2.5rem auto;
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.course-overview:hover, .chapters:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

h2 {
  color: var(--primary-accent);
  margin-bottom: 1rem;
  border-left: 6px solid var(--primary-accent);
  padding-left: 0.8rem;
}

/* ---------- CHAPTER STYLES ---------- */
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.chapter {
  margin-bottom: 1.2rem;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 1rem;
}

.chapter h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
}

/* ---------- BUTTONS ---------- */
button {
  background: var(--gradient);
  color: var(--text-light);
  border: none;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: background 0.3s ease, transform 0.1s ease;
}

button:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #64055e, #060733);
}

/* ---------- DETAILS BOX ---------- */
.chapter-details {
  display: none;
  background: #f3f0fa;
  border-left: 4px solid var(--primary-accent);
  margin-top: 0.6rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  color: #333;
  line-height: 1.5;
}

/* ---------- LINKS ---------- */
a {
  color: var(--primary-accent);
  font-weight: 500;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--gradient);
  color: var(--text-light);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  margin-top: 3rem;
  box-shadow: 0 -3px 12px rgba(0,0,0,0.2);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.8rem;
  }
  .course-overview, .chapters {
    padding: 1.2rem;
  }
  button {
    padding: 0.45rem 0.9rem;
  }
}


/* ---------- HEADER BUTTONS ---------- */
.header-buttons {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn {
  background: var(--gradient);
  color: var(--text-light);
  padding: 0.7rem 1.3rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #64055e, #060733);
}

/* Outline style for secondary button */
.btn.outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

/* WhatsApp special button */
.btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}


/* ---------- NAVBAR / LOGO ---------- */
.navbar {
  background: var(--gradient);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo .smart {
  color: #ffffff;
  font-size: 3rem;
}

.logo .ai {
  color: #ffd700; /* Golden light */
  margin-left: 0.4rem;
  font-size: 3rem;
}

.course-overview {
  background: linear-gradient(135deg, #060733, #64055e);
  color: white;
  padding: 40px;
  border-radius: 20px;
  line-height: 1.8;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.course-overview h2 {
  color: #ffd700;
  text-align: center;
  margin-bottom: 20px;
}

.course-overview .register-btn {
  background-color: #ffd700;
  color: #060733;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.course-overview .register-btn:hover {
  background-color: white;
  color: #64055e;
}

/* ---------- CERTIFICATE SECTION ---------- */
.certificate-section {
  text-align: center;
  background: linear-gradient(135deg, #060733, #64055e);
  padding: 60px 20px;
  border-radius: 20px;
  margin: 50px auto;
  max-width: 900px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.certificate-section h2 {
  color: #ffd700;
  font-size: 2rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.certificate-section p {
  font-size: 1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  opacity: 0.95;
}

.certificate-img {
  width: 80%;
  max-width: 600px;
  border-radius: 15px;
  border: 3px solid #ffd700;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.6);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .certificate-section {
    padding: 40px 15px;
  }
  .certificate-img {
    width: 95%;
  }
}


/* ---------- COURSE HERO SECTION ---------- */
.course-hero {
  background: linear-gradient(135deg, #060733, #64055e);
  color: #fff;
  padding: 70px 30px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  max-width: 1200px;
  margin: 60px auto;
}

.course-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

/* ---------- IMAGE ---------- */
.course-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
  border: 3px solid #ffd700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.6);
}

/* ---------- DETAILS ---------- */
.course-details {
  flex: 1;
  max-width: 600px;
}

.course-details h2 {
  color: #ffd700;
  font-size: 2rem;
  margin-bottom: 15px;
}

.course-details p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ---------- META INFO ---------- */
.course-meta p {
  margin: 5px 0;
  font-size: 1rem;
}

/* ---------- PRICING ---------- */
.pricing {
  margin: 15px 0 25px;
}

.current-price {
  font-size: 2rem;
  font-weight: bold;
  color: #ffd700;
  margin-right: 15px;
}

.old-price {
  text-decoration: line-through;
  opacity: 0.8;
  margin-right: 10px;
}

.discount {
  background: #ffd700;
  color: #060733;
  padding: 3px 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- FEATURE BADGES ---------- */
.feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.feature-badges span {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.5);
  color: #ffd700;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.feature-badges span:hover {
  background: #ffd700;
  color: #060733;
  transform: translateY(-2px);
}

/* ---------- BUTTONS ---------- */
.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 15px;
}

.btn {
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 25px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn.enroll {
  background-color: #ffd700;
  color: #ffd700;
}

.btn.enroll:hover {
  background-color: #fff;
  color: #ffd700;
  transform: translateY(-2px);
}

.btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
}

.btn.whatsapp:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .course-container {
    flex-direction: column;
    text-align: center;
  }

  .course-image img {
    max-width: 350px;
  }

  .course-details h2 {
    font-size: 1.6rem;
  }

  .feature-badges {
    justify-content: center;
  }
}


/* ---------- Animated Features Section ---------- */
.animated-features {
  background: linear-gradient(135deg, #060733, #64055e);
  padding: 6rem 2rem;
  color: #fff;
  text-align: center;
}

.animated-features .container {
  max-width: 1400px;
  margin: 0 auto;
}

.animated-features h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffd700;
}

.animated-features .subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 4rem;
}

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

/* Feature Cards */
.feature-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateY(30px);
}

.feature-card .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #ffd700;
}

.feature-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Hover Effect */
.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
}

/* Animation Keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.cta-section {
  background: linear-gradient(135deg, #060733, #64055e);
  color: white;
  text-align: center;
  padding: 80px 20px;
  border-top: 4px solid #ffd700;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffd700;
  letter-spacing: 0.5px;
}

.cta-section p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #ffd700, #ffae00);
  color: #060733;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255,215,0,0.3);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #ffae00, #ffd700);
}


.social-footer {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 1rem 2rem;
  text-align: center;
  color: #fff;
}

.social-footer h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  color: #fff;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.social-icons a {
  color: #ffffff;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Hover Effects */
.social-icons a.linkedin:hover { color: #0A66C2; }
.social-icons a.instagram:hover { color: #E1306C; }
.social-icons a.gmail:hover { color: #EA4335; }
.social-icons a.whatsapp:hover { color: #1ebe5b; }


.stats-section {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 2rem;
  color: white;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}


.testimonials {
  background: rgba(255, 255, 255, 0.02);
  padding: 6rem 2rem;
  color: white;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonials-header p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
}

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

.testimonial {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 2px solid #ffd700;
  object-fit: cover;
}

.testimonial p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}

.testimonial h4 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.testimonial span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}


.video-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- COURSES SECTION (SmartNeurons Theme) ---------- */
.courses-section {
  padding: 80px 10%;
  background: linear-gradient(135deg, #060733, #64055e);
  color: var(--text-light);
  text-align: center;
  border-top: 4px solid #ffd700;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

.courses-section h2 {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.courses-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ---------- GRID LAYOUT ---------- */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
}

/* ---------- COURSE CARD ---------- */
.course-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.35s ease;
  cursor: pointer;
  max-width: 350px;
  text-align: left;
  backdrop-filter: blur(6px);
}

.course-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #ffd700;
}

/* ---------- COURSE TEXT ---------- */
.course-card h3 {
  font-size: 1.25rem;
  color: #ffd700;
  margin: 15px 15px 10px;
  font-weight: 600;
}

.course-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 15px 20px;
  line-height: 1.6;
}

/* ---------- HOVER EFFECTS ---------- */
.course-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.25);
}

.course-card:hover img {
  filter: brightness(1.15);
  transition: all 0.3s ease;
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 768px) {
  .courses-section {
    padding: 60px 5%;
  }

  .courses-section h2 {
    font-size: 2rem;
  }

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


.course-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 15px 25px;
}

.price-box {
  text-align: center;
  margin-bottom: 10px;
  align-items: flex-start;
}

.old-price {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 0.9rem;
  display: block;
}

.new-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #38bdf8;
  margin-top: 3px;
}

.register-btn {
  background: linear-gradient(90deg, #ffd700, #ffd700);
  border: none;
  padding: 10px 24px;
  color: #000000;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-align: center;
}

.register-workshop-btn {
  background: linear-gradient(90deg, #ffd900, #806f0f);
  border: none;
  padding: 10px 24px;
  color: #000000;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-align: center;
}


.pricing {
  display: flex;
  align-items: center;
  gap: 10px; /* space between price elements */
  justify-content: center; /* centers horizontally (use flex-start for left alignment) */
}

.current-price {
  font-size: 2.3rem;
  font-weight: 700;
  color: #22c55e; /* bright green for visibility */
}

.old-price {
  font-size: 1.4rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.discount {
  background: #ffd700;
  color: #0f172a;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
}

.course-link {
  text-decoration: none;
  color: inherit;
  display: block;
}





.cta-button {
background: #ffd700;
color: #000000;
border: none;
padding: 10px 20px;
font-size: 2rem;
border-radius: 5px;
font-weight: bold;
cursor: pointer;
}


/* Featured Workshop Banner */
  .workshop-banner {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: white;
    padding: 40px 20px;
    margin-top: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    margin-left: 40px;
    margin-right: 40px;
    text-align: center;
    cursor: pointer;
  }

  .banner-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .banner-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .cta-button {
    background: white;
    color: #ff5722;
    border: none;
    padding: 10px 20px;
    font-size: 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
  }


  .visite-btn {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}