/* =============================
   GENERAL RESET & BASE STYLES
============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}


body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  background-color: #fdf7f2;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

section {
  padding: 4rem 2rem;
}

/* =============================
   NAVIGATION
============================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #d94f2a;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 25px;
  height: 20px;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
}

.nav-links a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffd700;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #d94f2a;
    flex-direction: column;
    width: 200px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-radius: 0 0 5px 5px;
    padding: 1rem 0;
  }

  .nav-links.show {
    transform: translateX(0);
  }

  .hamburger {
    display: flex;
  }

  .nav-links li {
    margin: 1rem 0;
    text-align: center;
  }
}

/* =============================
   BUTTONS
============================= */
.btn-primary,
.btn-secondary {
  padding: 0.6rem 1.4rem;
  border-radius: 0.3rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.5rem; /* spacing from content above */
}

.btn-secondary {
  background-color: #fff;
  color: #d94f2a;
  border: 2px solid #d94f2a;
}

.btn-secondary:hover {
  background-color: #d94f2a;
  color: #fff;
}

/* Container for multiple buttons to add gap */
.button-group {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* space between buttons */
}

@media (min-width: 768px) {
  .button-group {
    flex-direction: row; /* horizontal on desktop */
    justify-content: flex-start; /* or center */
  }
}

/* =============================
   HERO SECTIONS
============================= */
.hero,
.services-hero,
.about-hero {
  background-color: #f7ede2;
  text-align: center;
  padding: 5rem 2rem;
}

.hero h1,
.services-hero h1,
.about-hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: #d94f2a;
  margin-bottom: 1rem;
}

.hero p,
.services-hero p,
.about-hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #333;
  max-width: 700px;
  margin: 0 auto;
}

/* Hero buttons spacing */
.hero-buttons {
  display: flex;
  flex-direction: column;
  margin-top: 2rem; /* space below hero text */
}

@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* =============================
   GRIDS AND CARDS
============================= */
.grid {
  display: grid;
  gap: 1.5rem;
}

.class-cards,
.teacher-cards,
.dashboard-cards,
.testimonial-cards {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.class-cards {
  grid-template-columns: repeat(2, 1fr) !important;
}

@media (max-width: 768px) {
  .class-cards {
    grid-template-columns: 1fr !important;
  }
}

.class-card,
.teacher-card,
.dashboard-card,
.testimonial-card {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 0.6rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.class-card:hover,
.teacher-card:hover,
.dashboard-card:hover,
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.class-card > button {
  padding: 12px;
  background: #d94f2a;
  border: none;
  color: #fff;
  border-radius: 8px;
  margin-top: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.1s ease;
}

.class-card > button:hover {
  background: #b23c1f;
}

.class-card > button:active {
  transform: scale(0.97);
}

/* =============================
   DASHBOARD PROGRESS BAR
============================= */
.progress-bar {
  width: 100%;
  background-color: #e0e0e0;
  border-radius: 0.3rem;
  margin-top: 0.5rem;
  height: 0.8rem;
}

.progress-fill {
  height: 0.8rem;
  background-color: #d94f2a;
  border-radius: 0.3rem;
}

/* =============================
   CURRICULUM LIST
============================= */
.curriculum-list {
  max-width: 700px;
  margin: 0 auto;
  padding-left: 1.2rem;
}

.curriculum-list li {
  margin-bottom: 0.8rem;
}

/* =============================
   COMMUNITY SECTION
============================= */
.community {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* =============================
   FAQ ACCORDION
============================= */
.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  background-color: #f7ede2;
  color: #d94f2a;
  cursor: pointer;
  padding: 0.9rem 1rem;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.05rem;
  font-weight: bold;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background-color: #e7c9b7;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1rem;
}

.faq-answer p {
  padding: 0.5rem 0;
}

/* =============================
   FOOTER
============================= */
footer {
  text-align: center;
  padding: 2rem;
  background-color: #d94f2a;
  color: #fff;
}

/* =============================
   RESPONSIVE TYPOGRAPHY & SPACING
============================= */
@media (min-width: 600px) {
  .hero,
  .services-hero,
  .about-hero {
    text-align: left;
    padding: 6rem 4rem;
  }
}

@media (min-width: 900px) {
  .grid {
    gap: 2rem;
  }

  .class-cards,
  .teacher-cards,
  .dashboard-cards,
  .testimonial-cards {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
/* =============================
   HERO SECTION UPDATE
============================= */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 6rem 2rem;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45); /* dark overlay for readability */
  z-index: 1;
}

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

/* =============================
   CEO SECTION
============================= */
.ceo {
  background-color: #fdf7f2;
  padding: 4rem 2rem;
  padding-bottom: 0;
}

.ceo-container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.ceo-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  /* max-height: 500px; */
  height: auto;
}

.ceo-details h2 {
  color: #d94f2a;
  margin-bottom: 1rem;
}

.ceo-details p {
  font-size: 1rem;
  line-height: 1.6;
}

.ceo-image {
  flex: 1;
  text-align: center;
}

.ceo-image img {
  /* max-width: 100%; */
  width: 100%;
  height: auto;
  max-height: 500px;
  border-radius: 8px;
  object-fit: cover;
}

/* Responsive CEO section */
@media (max-width: 768px) {
  .ceo-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .ceo-details,
  .ceo-detailss,
  .ceo-image {
    flex: unset;
  }

  .ceo-image img {
    max-width: 350px;
    margin: 0 auto;
  }
}

.ceo-detailss {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  height: auto;
}

.ceo-detailss h2 {
  color: #d94f2a;
  margin-bottom: 1rem;
}

.ceo-detailss p {
  font-size: 1rem;
  line-height: 1.6;
}

/* =============================
   DASHBOARD / CLASS CARDS
============================= */
.dashboard .class-cards .class-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* =============================
   TESTIMONIAL SECTION
============================= */
.testimonials {
  background-color: #f7ede2;
  padding: 4rem 2rem;
  text-align: center;
}

.testimonials h2 {
  color: #d94f2a;
  margin-bottom: 2rem;
}

/* Container */
.testimonial-container {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden; /* hide items beyond visible */
}

/* Slide wrapper */
.testimonial-slide {
  display: flex;
  transition: transform 0.5s ease;
}

/* Each testimonial item */
.testimonial-item {
  flex: 0 0 calc(100% / 3); /* 3 visible on desktop */
  box-sizing: border-box;
  padding: 1rem;
}

.testimonial-item p {
  font-style: italic;
  margin-bottom: 0.5rem;
}

.testimonial-item h4 {
  font-weight: bold;
  color: #d94f2a;
}

/* Arrows below slider */
.testimonial-arrows {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.testimonial-arrows .prev,
.testimonial-arrows .next {
  background-color: #d94f2a;
  color: #fff;
  border: none;
  padding: 0.6rem 1rem;
  cursor: pointer;
  border-radius: 4px;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}

.testimonial-arrows .prev:hover,
.testimonial-arrows .next:hover {
  background-color: #b23c1f;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .testimonial-item {
    flex: 0 0 50%; /* 2 visible on tablet */
  }
}

@media (max-width: 768px) {
  .testimonial-item {
    flex: 0 0 100%; /* 1 visible on mobile */
  }
}
/* Registration Section */
.register-section {
  padding: 3rem 1rem;
  max-width: 700px;
  margin: 3rem auto;
  background: #ffffff;
  border-radius: 0.8rem;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.register-section h1 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.register-form label {
  font-weight: 600;
  margin-top: 0.8rem;
  display: block;
}

.register-form input,
.register-form select {
  width: 100%;
  padding: 0.9rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 0.4rem;
  font-size: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row div {
  flex: 1;
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}

.register-form button {
  margin-top: 1.5rem;
  width: 100%;
}
/* Login Section */
.login-section {
  max-width: 400px;
  margin: 80px auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  animation: fadeIn 0.7s ease-in-out;
}

.login-section h1 {
  font-size: 26px;
  margin-bottom: 25px;
  color: #222;
  font-weight: 700;
}

/* Login Form */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}

.login-form label {
  text-align: left;
  font-weight: 600;
  color: #333;
  margin-bottom: -8px;
}

.login-form input {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.login-form input:focus {
  border-color: #c17bff;
  box-shadow: 0 0 6px rgba(193, 123, 255, 0.35);
}

/* Primary Button */
.btn-primary {
  padding: 12px;
  background: #d94f2a;
  border: none;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.1s ease;
}

.btn-primary:hover {
  background: #b23c1f;
}

.btn-primary:active {
  transform: scale(0.97);
}

/* Coming Soon Text */
.coming-soon {
  margin-top: 22px;
  font-size: 14px;
  color: #555;
}

.coming-soon strong {
  color: #7b2cbf;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 480px) {
  .login-section {
    margin: 40px 20px;
    padding: 25px;
  }
}
.pricing {
  text-align: center;
  padding: 50px 20px;
  background: #fafafa;
}

.pricing h2 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  animation: fadeDown 0.8s ease-in-out;
}

/* Layout */
.pricing-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: auto;
}

.pricing-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  max-width: 400px;
  width: 100%;
  margin: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 1s ease forwards;
}

/* Hover animation */
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* Icons */
.icon {
  font-size: 40px;
  color: #005bbb;
  margin-bottom: 15px;
}

.discount .icon {
  color: #ff5722;
}

/* Text */
.pricing-card h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.price {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: left;
}
.price-list {
  text-align: left;
  font-size: 1.05rem;
  line-height: 1.6;
  padding-left: 1.2rem; /* aligns bullets nicely */
  margin: 1rem 0 1.5rem;
}

.price-list li {
  margin-bottom: 0.5rem;
}


.coming-soon {
  color: #c47b00;
  font-weight: 600;
}

/* Discount styling */
.discount {
  background: #ffe8e4;
  border-left: 5px solid #ff7043;
}

/* Buttons */
.btn-enroll {
  background: #005bbb;
  color: #fff;
  padding: 12px 22px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.discount .btn-enroll {
  background: #ff5722;
}

.btn-enroll:hover {
  background: #003f8c;
  transform: scale(1.05);
}

.discount .btn-enroll:hover {
  background: #e64a19;
}

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

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

/* RESPONSIVE DESIGN */
@media (min-width: 768px) {
  .pricing-wrapper {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
}
/* Instructors Section */
.instructors {
  background-color: #fff;
  padding: 4rem 2rem;
}

.instructors-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.instructors-container h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #222;
}

/* Instructor Gallery */
.instructor-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

/* Instructor Card */
.instructor-card {
  background: #fafafa;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instructor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

/* Instructor Image */
.instructor-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

/* Instructor Name */
.instructor-card h4 {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
}
/* Benefits Section */
.benefits {
  background-color: #fdf7f2;
  padding: 4rem 2rem;
}

.benefits-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.benefits h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #222;
}

.benefits-intro {
  font-size: 1.05rem;
  max-width: 750px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  color: #555;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Benefit Card */
.benefit-card {
  background: #fff;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.15);
}

.benefit-card .icon {
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: #d94f2a;
}

.benefit-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

/* Difference Section */
.difference {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
  text-align: left;
}

.difference h3 {
  margin-bottom: 1.2rem;
  color: #222;
}

.difference ul {
  list-style: none;
  padding: 0;
}

.difference li {
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}

/* Audience & Vision */
.audience,
.vision {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.audience h3,
.vision h3 {
  color: #222;
  margin-bottom: 0.5rem;
}

.audience p,
.vision p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}
/* ================================
   WE ARE HIRING SECTION
================================ */

.hiring {
  background: #fff8f4;
  padding: 4rem 2rem;
}

.hiring-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.hiring h2 {
  color: #d94f2a;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hiring-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  font-size: 1rem;
}

/* Roles Grid */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop */
  gap: 1.5rem;
}

/* Role Card */
.role-card {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.role-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.15);
}

.role-icon {
  font-size: 2.3rem;
  display: inline-block;
  margin-bottom: 0.8rem;
  animation: float 3s ease-in-out infinite;
}

.role-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #333;
}

.role-card p {
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Hiring CTA */
.hiring-cta {
  margin-top: 4rem;
  background: #d94f2a;
  color: #ffffff;
  padding: 2.8rem 2rem;
  border-radius: 20px;
}

.hiring-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.hiring-cta p {
  margin-bottom: 1.4rem;
}

/* ================================
   RESPONSIVE BREAKPOINTS
================================ */

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

/* Mobile */
@media (max-width: 600px) {
  .hiring {
    padding: 3rem 1.2rem;
  }

  .roles-grid {
    grid-template-columns: repeat(2, 1fr); /* KEEP 2 per row */
    gap: 1rem;
  }

  .role-card {
    padding: 1.4rem 1.2rem;
  }

  .role-icon {
    font-size: 2rem;
    margin-bottom: 0.6rem;
  }

  .role-card h3 {
    font-size: 1rem;
  }

  .role-card p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .hiring-cta {
    margin-top: 3rem;
    padding: 2.2rem 1.5rem;
  }
}

/* Floating Icon Animation */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}
/* ================================
   CLASS LEVELS (ISOLATED STYLES)
================================ */

.levels-section {
  background: #fdf7f2;
  padding: 5rem 2rem;
}

.levels-title {
  text-align: center;
  font-size: 2.3rem;
  color: #222;
  margin-bottom: 3rem;
}

.levels-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.level-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.level-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
}

.level-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.level-header {
  padding: 1.6rem 1.6rem 0.5rem;
}

.level-header h3 {
  margin-bottom: 0.3rem;
  color: #d94f2a;
}

.level-subtitle {
  font-size: 0.95rem;
  color: #666;
}

.level-body {
  padding: 1rem 1.6rem;
}

.level-body h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.level-body i {
  color: #2e7d32;
  margin-right: 0.4rem;
}

.level-body p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.level-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.6rem;
  font-size: 0.85rem;
  color: #555;
}

.level-meta i {
  margin-right: 0.4rem;
  color: #d94f2a;
}

.level-btn {
  margin: 1.5rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .levels-grid {
    grid-template-columns: 1fr;
  }

  .level-image {
    height: 200px;
  }
}
/* ==========================
   VIDEO + LEARNING OUTCOMES
========================== */

.ceeo {
  background: #fdf7f2;
  padding: 4.5rem 2rem;
}

.ceeo-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Video */
.ceeo-video {
  flex: 1;
}

.ceeo-video video {
  width: 100%;
  max-height: 360px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* Details */
.ceeo-detailss {
  flex: 1;
}

.ceeo-detailss h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 1.5rem;
}

.ceeo-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ceeo-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #444;
}

.ceeo-list i {
  color: #d94f2a;
  font-size: 1rem;
  margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 768px) {
  .ceeo-container {
    flex-direction: column;
  }

  .ceeo-detailss h2 {
    text-align: center;
  }
}
.ceeo-video {
  position: relative;
}

.tap-to-unmute {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}
