* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #0d0d0d;
  line-height: 1.5;
  padding-top: 70px;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: #7c3aed;
  border-radius: 4px;
}

/* Scroll Reveal Animation Base Styles */
.sr-hidden {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.sr-visible {
  opacity: 1;
  transform: translateY(0);
}

/* General Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: #7c3aed;
}

/* Navbar */
.navbar {
  background: #ffffff;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

.logo-short {
  display: none;
}

.logo-full {
  display: block;
  font-size: 1rem;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-menu li {
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu .highlight {
  color: white;
  background-color: #5c6ffb;
  padding: 10px 15px;
  font-weight: 600;
  border-radius: 6px;
}

.nav-menu .highlight:hover {
  background-color: yellow;
  color: black;
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
}

.call-text {
  font-weight: 500;
}

.phone {
  color: #7c3aed;
  font-weight: 600;
}

.mobile-toggle {
  display: none;
  font-size: 1.4rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  transition: transform 0.3s ease;
}

.mobile-toggle[aria-expanded="true"] {
  transform: rotate(90deg);
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.hero-content {
  background: linear-gradient(to right, #02002a, #040404);
  color: white;
  border-radius: 20px;
  padding: 60px 40px;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  gap: 30px;
}

.hero-text {
  flex: 1;
  text-align: left;
}

.hero-image {
  flex: 1;
  min-height: 200px;
  position: relative;
  display: block;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  color: white;
}

.hero-text-content {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.hero-text-content.fade {
  opacity: 0;
}

.highlight-blue {
  position: relative;
  display: inline-block;
  padding: 10px 30px;
  color: #fff;
  font-weight: 800;
  line-height: 1;
  z-index: 1;
}

.highlight-blue::before {
  content: "";
  position: absolute;
  left: -20px;
  top: -15px;
  width: calc(80% + 50px);
  height: calc(100% + 40px);
  background: #ffc107;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: rotate(-10deg);
  z-index: -1;
}

.highlight-green {
  display: inline-block;
  padding: 8px 18px;
  background: #7c3aed;
  color: #fff;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1;
}

.hero-content p {
  margin-top: 20px;
  font-size: 1rem;
  color: #ccc;
  max-width: 500px;
  line-height: 1.6;
}

.btn-learn {
  margin-top: 30px;
  background: #fff;
  color: #000;
  border: none;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-learn:hover {
  background: #e5e5e5;
}

/* Slideshow */
.slideshow {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Course Section */
.course-section {
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
  padding: 20px;
}

.course-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1b1b1b;
}

.course-section p {
  color: #555;
  font-size: 17px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 35px;
}

.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.feature {
  font-size: 16px;
  color: #222;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature i {
  color: #00c389;
  font-size: 16px;
}

.categories {
  display: flex;
  justify-content: center;
  gap: 20px;
  background: #fff2ea;
  padding: 18px 25px;
  border-radius: 20px;
  flex-wrap: wrap;
}

.categories button {
  border: none;
  background: transparent;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
}

.categories button i {
  font-size: 14px;
}

.categories button.active {
  background: #9b5cfb;
  color: #fff;
  font-weight: 600;
}

.categories button:hover:not(.active) {
  background: #f0e5ff;
}

/* Cards Section */
.cards-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.badge.green { background: #008f5d; }
.badge.purple { background: #9b5cfb; }
.badge.blue { background: #5c6ffb; }

.card-body {
  padding: 18px 16px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

.card-body p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
  margin-bottom: auto;
}

.btn {
  margin-top: 20px;
  padding: 12px 0;
  width: 100%;
  border: none;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #333;
}

/* Programs Section */
#programs {
  padding: 60px 0;
  background: #fff;
}

#programs h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1b1b1b;
  text-align: center;
  margin-bottom: 15px;
}

#programs .section-intro {
  font-size: 17px;
  color: #555;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.program-card {
  background: #faf6f1;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  text-align: left;
}

.program-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.program-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 15px;
}

.program-card ul {
  list-style: none;
  margin-bottom: 15px;
}

.program-card ul li {
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.program-card .learn-more {
  font-size: 14px;
  color: #7c3aed;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.program-card .learn-more:hover {
  color: #9b5cfb;
}

/* Why Join Section */
#why-join {
  padding: 60px 0;
  background: #f0e5ff;
}

#why-join h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1b1b1b;
  text-align: center;
  margin-bottom: 15px;
}

#why-join .section-intro {
  font-size: 17px;
  color: #555;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

.benefit-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  list-style: none;
}

.benefit-tiles li {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  text-align: center;
}

.benefit-tiles h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.benefit-tiles p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

/* Curriculum Snapshot Section */
#curriculum {
  padding: 60px 0;
  background: #fff;
}

#curriculum h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1b1b1b;
  text-align: center;
  margin-bottom: 15px;
}

#curriculum .section-intro {
  font-size: 17px;
  color: #555;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.track {
  background: #faf6f1;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.track h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
}

.track ol {
  list-style-position: inside;
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

.track ol li {
  margin-bottom: 8px;
}

.more-link {
  text-align: center;
  margin-top: 20px;
}

.more-link a {
  font-size: 15px;
  color: #7c3aed;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.more-link a:hover {
  color: #9b5cfb;
}

/* Success Stories Section */
:root {
  --bg: #ffffff;
  --ink: #0d0d0d;
  --muted: #5b5b5b;
  --chip-green: #1db954;
  --chip-yellow: #f5d90a;
  --ribbon: #7c62ff;
  --ribbon-text: #fff;
  --card-radius: 18px;
  --shadow: 0 12px 28px rgba(0,0,0,.18), 0 4px 10px rgba(0,0,0,.08);
}

.stories {
  padding: clamp(48px, 5vw, 72px) 0 64px;
  background: var(--bg);
}

.stories__title {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 3.6vw, 48px);
  text-align: center;
  margin: 0 0 16px;
}

.stories__subtitle {
  max-width: 880px;
  margin: 0 auto 28px;
  text-align: center;
  color: var(--muted);
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.6;
}

.stories__swiper {
  padding: 0 20px 40px;
  overflow: hidden;
}

.swiper-slide {
  height: auto;
  width: 100%;
  max-width: 400px;
  display: flex;
  justify-content: center;
}

.card {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.card__figure {
  position: relative;
  margin: 0;
  border-radius: var(--card-radius);
  overflow: hidden;
  background: #d9d9d9;
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
  isolation: isolate;
}

.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.32) 78%);
  z-index: 1;
}

.card__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(2px);
  outline: 6px solid rgba(255,255,255,.28);
  cursor: pointer;
  z-index: 2;
  transition: transform .18s ease, background .18s ease, outline-color .18s ease;
}

.card__play svg {
  width: 28px;
  height: 28px;
}

.card__play:hover {
  transform: scale(1.04);
  background: rgba(255,255,255,.28);
  outline-color: rgba(255,255,255,.38);
}

.card__caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

.ribbon {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ribbon-text);
  background: var(--ribbon);
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(124,98,255,.35);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: .02em;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0,0,0,.18);
  width: max-content;
}

.chip--name {
  font-size: 14px;
}

.chip--green {
  background: var(--chip-green);
  color: #062a12;
}

.chip--yellow {
  background: var(--chip-yellow);
  color: #221c00;
}

.badge {
  color: #fff;
  font-weight: 800;
  line-height: 1.05;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
}

.badge--xl {
  font-size: clamp(24px, 3.2vw, 34px);
}

.swiper-pagination {
  position: relative;
  bottom: 0;
}

.swiper-pagination-bullet {
  background: rgba(0,0,0,.3);
  opacity: 1;
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  background: #000;
}

.card__play:focus-visible {
  outline: 6px solid #fff;
  box-shadow: 0 0 0 4px rgba(0,0,0,.35) inset;
}

/* Schedule Section */
#schedule {
  padding: 60px 0;
  background: #f0e5ff;
}

#schedule h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1b1b1b;
  text-align: center;
  margin-bottom: 15px;
}

#schedule .section-intro {
  font-size: 17px;
  color: #555;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

.schedule-panel {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  text-align: center;
}

.schedule-panel p {
  font-size: 15px;
  color: #444;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.schedule-panel a {
  font-size: 15px;
  color: #7c3aed;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.schedule-panel a:hover {
  color: #9b5cfb;
}

/* How It Works Section */
#how-it-works {
  padding: 60px 0;
  background: #fff;
}

#how-it-works h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1b1b1b;
  text-align: center;
  margin-bottom: 15px;
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.steps li {
  background: #faf6f1;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  text-align: center;
}

.steps h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.steps p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

.secondary-cta {
  text-align: center;
  margin-top: 20px;
}

.btn-outline {
  padding: 12px 24px;
  border: 2px solid #7c3aed;
  border-radius: 8px;
  background: transparent;
  color: #7c3aed;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #7c3aed;
  color: #fff;
}

/* Testimonials Section */
#testimonials {
  padding: 60px 0;
  background: #f0e5ff;
}

#testimonials h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1b1b1b;
  text-align: center;
  margin-bottom: 15px;
}

.stats {
  font-size: 17px;
  color: #555;
  text-align: center;
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.testimonial {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.testimonial blockquote {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 15px;
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial img {
  border-radius: 50%;
}

.testimonial cite {
  font-size: 14px;
  color: #333;
  font-style: normal;
  font-weight: 600;
}

.more-testimonials {
  text-align: center;
  margin-top: 20px;
}

.more-testimonials a {
  font-size: 15px;
  color: #7c3aed;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.more-testimonials a:hover {
  color: #9b5cfb;
}

/* Mentors Section */
#mentors {
  padding: 60px 0;
  background: #fff;
}

#mentors h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1b1b1b;
  text-align: center;
  margin-bottom: 15px;
}

#mentors .section-intro {
  font-size: 17px;
  color: #555;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

.mentors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.mentor-card {
  background: #faf6f1;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  text-align: center;
}

.mentor-card img {
  border-radius: 50%;
  margin-bottom: 12px;
}

.mentor-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}

.mentor-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 8px;
}

.mentor-card p.small {
  font-size: 14px;
  color: #555;
}

.mentor-card a {
  font-size: 14px;
  color: #7c3aed;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.mentor-card a:hover {
  color: #9b5cfb;
}

/* Registration Form Section */
#register {
  padding: 60px 0;
  background: #f0e5ff;
}

#register h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1b1b1b;
  text-align: center;
  margin-bottom: 15px;
}

#register .section-intro {
  font-size: 17px;
  color: #555;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

#registration-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.form-row input,
.form-row select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  background: #faf6f1;
  transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row select:focus {
  border-color: #7c3aed;
  outline: none;
}

.form-actions {
  text-align: center;
}

.btn-primary {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  background: #7c3aed;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #9b5cfb;
}

.form-actions .small {
  font-size: 13px;
  color: #555;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Contact & Venue Section */
#contact {
  padding: 60px 0;
  background: #fff;
}

#contact h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1b1b1b;
  text-align: center;
  margin-bottom: 15px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.contact-grid h4 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
}

.contact-grid address {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
  font-style: normal;
}

.contact-grid address a {
  color: #7c3aed;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.contact-grid address a:hover {
  color: #9b5cfb;
}

.social ul {
  list-style: none;
}

.social ul li {
  margin-bottom: 8px;
}

.social ul a {
  font-size: 15px;
  color: #7c3aed;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.social ul a:hover {
  color: #9b5cfb;
}

.map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* FAQs Section */
#faqs {
  padding: 60px 0;
  background: #f0e5ff;
}

#faqs h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1b1b1b;
  text-align: center;
  margin-bottom: 15px;
}

.faqs-list {
  max-width: 700px;
  margin: 0 auto;
}

.faqs-list details {
  margin-bottom: 15px;
  background: #fff;
  border-radius: 14px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.faqs-list summary {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  padding: 5px 0;
}

.faqs-list p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  padding: 10px 0;
}

/* Partners Section */
#partners {
  padding: 60px 0;
  background: #fff;
}

#partners h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1b1b1b;
  text-align: center;
  margin-bottom: 15px;
}

#partners p {
  font-size: 17px;
  color: #555;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

.partners-logos {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.partners-logos img {
  max-width: 150px;
  height: auto;
}

/* Footer Section */
#footer {
  padding: 60px 0 20px;
  background: #1b1b1b;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-brand h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.5;
}

.footer-links h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul a {
  font-size: 15px;
  color: #ccc;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.footer-links ul a:hover {
  color: #fff;
}

.footer-contact h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-contact address {
  font-size: 15px;
  color: #ccc;
  line-height: 1.5;
  font-style: normal;
}

.footer-contact address a {
  color: #ccc;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-contact address a:hover {
  color: #fff;
}

.footer-social h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-social ul {
  list-style: none;
}

.footer-social ul li {
  margin-bottom: 8px;
}

.footer-social ul a {
  font-size: 15px;
  color: #ccc;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.footer-social ul a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
}

.footer-bottom p {
  font-size: 14px;
  color: #ccc;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
  .logo-short {
    display: none;
  }

  .logo-full {
    display: block;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 20px;
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .nav-menu li {
    margin: 10px 0;
    font-size: 1.1rem;
    width: 100%;
    justify-content: center;
  }

  .nav-right {
    display: none;
  }

  .nav-right.active {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
  }

  .mobile-toggle {
    display: block;
    z-index: 2000;
  }

  .hero-content {
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .hero-image {
    min-height: 150px;
    width: 100%;
  }

  .slideshow {
    aspect-ratio: 4 / 3;
  }

  .slide {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.85rem;
  }

  .hero-image {
    min-height: 120px;
  }

  .btn-learn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .course-section h2 {
    font-size: 24px;
  }

  .course-section p {
    font-size: 15px;
  }

  .features {
    gap: 20px;
  }

  .categories {
    padding: 12px 15px;
  }

  .categories button {
    font-size: 14px;
    padding: 8px 12px;
  }
}

@media (min-width: 769px) {
  .logo-short {
    display: block;
  }

  .logo-full {
    display: none;
  }

  .nav-menu {
    display: flex !important;
  }

  .nav-right {
    display: flex !important;
  }

  .mobile-toggle {
    display: none;
  }
}