/* ------------------- HERO ------------------------------ */


.courses-section h2 {
  padding: 30px;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}


/* ================= COURSES SECTION ================= */
.courses-section {
  padding: 50px 20px;
  width: 60%;
  margin: auto;
}

/* MAIN TITLE */
.courses-title {
  font-size: 30px;
  font-weight: 700;
  color: #05052d;
  margin-bottom: 22px;
  text-align: center;
}

/* LIST */
.courses-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 32px;
width: 90%;
}

.courses-list li {
  /* background: #ffffff; */
      background: #53535394;
  padding: 14px 18px;
  margin-bottom: 12px;
  border-left: 5px solid #5b5bf0;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.4;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* NOTE */
.course-note {
  font-weight: 600;
  color: #3f3fdc;
}

/* POPULAR TITLE */
.popular-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #05052d;
}

/* TAGS */
.course-tags {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.course-tags span {
  background: linear-gradient(135deg, #5b5bf0, #3f3fdc);
  /* color: #ffffff; */
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(91, 91, 240, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.course-tags span:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(91, 91, 240, 0.55);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 480px) {
  .courses-title {
    font-size: 24px;
  }

  .popular-title {
    font-size: 18px;
  }

  .courses-list li {
    font-size: 14px;
  }
}






/* ================= NEED HELP BAR ================= */
.footer-help {
  background: linear-gradient(135deg, #02021f, #05052d);
  color: #ffffff;
  padding: 18px 22px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 20px;
  flex-wrap: wrap;
}

.footer-help p {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
}

/* ================= WHATSAPP BUTTON ================= */
.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55);
}

/* ================= ENQUIRY FORM ================= */


/* ================= ENQUIRY SECTION ================= */
.footer-enquiry {
  background: linear-gradient(135deg, #02021f, #05052d);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

/* CARD */
.enquiry-card {
  background: #ffffff;
  width: 100%;
  max-width: 460px;
  padding: 32px 28px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  text-align: center;
}

/* TITLE */
.enquiry-card h3 {
  font-size: 26px;
  color: #05052d;
  margin-bottom: 6px;
}

.enquiry-sub {
  font-size: 14px;
  color: #555;
  margin-bottom: 26px;
}

/* FORM */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* INPUT GROUP */
.form-group {
  display: flex;
  align-items: center;
  background: #f5f6ff;
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid transparent;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-group .icon {
  margin-right: 10px;
  font-size: 16px;
}

.form-group input,
.form-group textarea {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 14px;
  outline: none;
}

.form-group textarea {
  resize: none;
  min-height: 100px;
}

.form-group:focus-within {
  border-color: #5b5bf0;
  box-shadow: 0 0 0 3px rgba(91, 91, 240, 0.25);
}

/* BUTTON */
.enquiry-form button {
  margin-top: 10px;
  background: linear-gradient(135deg, #5b5bf0, #3f3fdc);
  color: #ffffff;
  padding: 14px;
  border-radius: 14px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(91, 91, 240, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.enquiry-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(91, 91, 240, 0.55);
}

/* ================= MOBILE ================= */
@media (max-width: 480px) {
  .enquiry-card {
    padding: 26px 20px;
  }

  .enquiry-card h3 {
    font-size: 22px;
  }
}


/* ================= BUTTON ================= */


/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .footer-help {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .footer-enquiry h3 {
    font-size: 22px;
  }
}


/* ========== HERO WRAPPER ========== */
.hero {
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
}

/* CONTAINER */
.hero-inner {
  /* width: 100%; */
  /* max-width: 52rem; */
  width: 600px;
  text-align: center;
}

/* TOP LABEL */
.hero-top span {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 18px;
  border: 1px solid #000;
  margin-bottom: 1rem;
}

/* IMAGE */
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
}

/* TEXT BELOW IMAGE */
.hero-text {
  margin-top: 1rem;
}

.hero-text h1 {
  font-family: "Neuton", serif;
  font-size: clamp(18px, 4vw, 32px);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.3;
}

/* ========== TABLET ========== */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 1.4rem;
  }
}

/* ========== MOBILE ========== */
@media (max-width: 480px) {
  .hero {
    padding: 1.25rem;
  }

  .hero-top span {
    font-size: 0.8rem;
    padding: 5px 14px;
  }

  .hero-text h1 {
    font-size: 1.2rem;
  }
}


/*---------------------------- STATS SECTION --------------------------------*/
.stats {
  padding: 20px 25px;
}

.stats-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 24px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

/* Each stat item */
.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 200px;
  color: #000;
}

/* Icon */
.stat-item img {
  width: 36px;
  height: 36px;

  transition: transform 0.3s ease;
}

.stat-item:hover img {
  transform: scale(1.2) rotate(-3deg);
}

/* Text */
.stat-text h3 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.stat-text p {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  margin-top: 4px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {




  .testimonial-card video {
    width: 100% !important;
    height: auto !important;
    border-radius: 20px;
    background: transparent;
}


  .stats-card {
    justify-content: center;
  }

  .stat-item {
    flex: 1 1 45%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stats-card {
    padding: 1rem;
    gap: 1rem;
  }

  .stat-item {
    min-width: auto;
    flex: 1 1 100%;
  }
}

/* @media (min-width: 768px) and (max-width: 948px) {
  .stats-card {
    gap: 12px;
    padding: 14px 16px;
    flex-wrap: nowrap;
  }

  .stat-item {
    flex: 1;
    gap: 8px;
    min-width: 0;
  }

  .stat-item img {
    width: 28px;
    height: 28px;
  }

  .stat-text h3 {
    font-size: 16px;
  }

  .stat-text p {
    font-size: 12px;
  }
} */

/*---------------------------------- CATEGORIES -------------------------------------*/
.categories {
  text-align: center;
  padding: 40px 20px;
  color: #fff;
}

.categories h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.categories .subtitle {
  color: #ffffff;
  font-weight: 500;
  font-size: 20px;
  max-width: 650px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

/* FLEX CONTAINER */
.category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

/* CARD */
.category-item {
  background: #eedcdc;

  display: flex;
  align-items: center;
  gap: 12px;
  background: #f3eaea;
  padding: 14px 20px;
  border-radius: 14px;
  color: #000;
  font-weight: 500;
  min-width: 240px;
  flex: 1 1 240px;
  max-width: 280px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.category-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
}

/* ICON IMAGE */
.category-item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  /* flex-shrink: 0; */
}

/* TEXT */
.category-item span {
  font-size: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; /* prevent overflow */
  color: #000000;
  font-weight: 500;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 768px) {
  .categories h2 {
    font-size: 26px;
  }

  .category-item {
    min-width: 200px;
    padding: 12px 16px;
  }

  .category-item img {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .category-list {
    gap: 16px;
  }

  .category-item {
    /* min-width: 100%;
    max-width: 100%; */
    justify-content: center;

    gap: 0.75rem;
  }

  .category-item span {
    white-space: normal;
    text-align: center;
    font-size: 1rem;
  }
}

/*-------------------------------- LEARNING SECTION -----------------------------------*/
.learning-section {
  background: #0a0a2a;
  padding: 40px 20px;
  color: #fff;
  text-align: center;
}

/* HEADER */
.learning-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.learning-header p {
  color: #ffffff;
  font-weight: 500;
  font-size: 20px;
  max-width: 650px;
  /* max-width: auto; */
  margin: 0 auto 40px;
  opacity: 0.9;
}

/* IMAGE */
.learning-image {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.learning-image img {
  width: 100%;
  max-width: 50rem;
  height: auto;
  border-radius: 16px;
  object-fit: contain;

  /* width: auto;
  max-height: 380px;
  object-fit: cover; */
}

/* MODES (Flexbox) */
.learning-modes {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* SINGLE MODE */
.mode {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f4eaea;
  color: #000;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 500;
  min-width: 200px;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.mode:hover {
  background: #ffffff;
  transform: translateY(-5px);
}

/* ICON */
.mode img {
  width: 26px;
  height: 26px;

  transition: transform 0.3s ease;
}

.mode:hover img {
  transform: translateX(6px);
}

/* -------- RESPONSIVE -------- */

@media (max-width: 768px) {
  .learning-header h2 {
    font-size: 26px;
  }

  .learning-header p {
    font-size: 15px;
  }

  .mode {
    min-width: 180px;
    padding: 12px 18px;
  }
}

@media (max-width: 480px) {
  .learning-modes {
    gap: 16px;
  }

  .mode {
    width: 100%;
    justify-content: center;
  }

  .learning-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/*---------------------------- MENTOR SECTION -------------------------------------*/
.mentor-section {
  border-radius: 12px;
  padding: 40px 20px;
  overflow: hidden;
}

/* IMAGE */
.mentor-image {
  display: flex;
  justify-content: center;
}

.mentor-image img {
  width: 100%;
  max-width: 50rem;
  height: auto;
  border-radius: 16px;
  object-fit: contain;

  /* width: 100%;
  max-width: auto; */
  /* object-fit: cover; */
}

/* CONTENT */
.mentor-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  color: #fff;
}

.mentor-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.mentor-content p {
  color: #ffffff;
  font-weight: 500;
  font-size: 20px;
  max-width: 650px;
  margin: 0 auto 40px;
  opacity: 0.9;
}




/* ---------- RESPONSIVE ---------- */

@media (max-width: 768px) {
  .mentor-content h2 {
    font-size: 24px;
  }

  /* .mentor-image img {
    max-height: 300px;
  } */
}

@media (max-width: 480px) {
  .mentor-content h2 {
    font-size: 20px;
  }

  .mentor-content p {
    font-size: 14px;
  }
}

/*------------------------------- TESTIMONIALS  Section -----------------------------------*/
/* ================= TESTIMONIALS ================= */
.testimonials-section {
  background: #05052d;
  /* padding: 70px 20px; */
  padding-bottom: 60px;
  color: #fff;
  text-align: center;
}

.testimonials-header {
  margin-bottom: 40px;
}

.badge {
  display: inline-block;
  background: #5eead4;
  color: #000;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 10px;
}

.testimonials-header h2 {
  font-size: clamp(22px, 3vw, 32px);
}

/* SLIDER */
.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 0 10px;
}

.testimonial-card video {
  /* width: 100%; */
  /* width: 500px; */
  height: 500px;
  border-radius: 20px;
  background: transparent;
}

/* BUTTONS */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 28px;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: 0.3s;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .slider-btn {
    font-size: 22px;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 0;
  }
}




/* ================================== */





        /* ================= MAP SECTION ================= */
   
        




/* ================================================= */







