.elementor .e-9dd225b{padding:0px;flex-direction:column;}.elementor .e-474f8e5-a88438d{padding:0px;flex-direction:column;}.elementor .e-f4685f7-43cfabb{padding:0px;flex-direction:column;}.elementor .e-0b70ebf{padding:0px;flex-direction:column;}.elementor .e-42c034e-be901c9{padding:0px;flex-direction:column;}.elementor .e-e5c4529-09a9b97{padding:0px;flex-direction:column;.jmc-course-problems {
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
  font-family: "Inter", Arial, sans-serif;
  color: #1c2421;
  background:
    radial-gradient(circle at 8% 18%, rgba(183, 126, 55, 0.12), transparent 25%),
    radial-gradient(circle at 92% 82%, rgba(111, 77, 116, 0.11), transparent 27%),
    linear-gradient(180deg, #fffdf8 0%, #f7f2e9 100%);
}

.jmc-course-problems *,
.jmc-course-problems *::before,
.jmc-course-problems *::after {
  box-sizing: border-box;
}

.jmc-course-problems::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -130px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(183, 126, 55, 0.17);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(183, 126, 55, 0.035),
    0 0 0 110px rgba(111, 77, 116, 0.025);
  pointer-events: none;
}

.jmc-course-problems::after {
  content: "";
  position: absolute;
  bottom: -170px;
  left: -150px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(111, 77, 116, 0.05);
  pointer-events: none;
}

.jmc-course-problems__container {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
}

/* Section Heading */
.jmc-course-problems__header {
  max-width: 790px;
  margin: 0 auto 58px;
  text-align: center;
}

.jmc-course-problems__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #9b672b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.jmc-course-problems__eyebrow::before,
.jmc-course-problems__eyebrow::after {
  content: "";
  width: 42px;
  height: 1px;
  background: #b77e37;
}

.jmc-course-problems__title {
  margin: 0;
  color: #1c2421;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.jmc-course-problems__title span {
  color: #725078;
}

.jmc-course-problems__intro {
  max-width: 690px;
  margin: 22px auto 0;
  color: #626864;
  font-size: 17px;
  line-height: 1.8;
}

/* Card Grid */
.jmc-course-problems__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  perspective: 1300px;
}

/*
 * The outer card controls the floating animation.
 * The inner card controls the hover interaction.
 */
.jmc-problem-card {
  min-width: 0;
  animation: jmc-problem-floating 5.8s ease-in-out infinite;
}

.jmc-problem-card:nth-child(2) {
  animation-delay: -1.2s;
}

.jmc-problem-card:nth-child(3) {
  animation-delay: -2.4s;
}

.jmc-problem-card:nth-child(4) {
  animation-delay: -0.7s;
}

.jmc-problem-card:nth-child(5) {
  animation-delay: -1.9s;
}

.jmc-problem-card:nth-child(6) {
  animation-delay: -3.1s;
}

.jmc-problem-card__inner {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  border: 1px solid rgba(65, 48, 67, 0.11);
  border-radius: 26px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(249, 244, 235, 0.96)
    );
  box-shadow:
    0 25px 55px rgba(54, 45, 48, 0.12),
    0 8px 18px rgba(54, 45, 48, 0.07),
    inset 1px 1px 0 rgba(255, 255, 255, 0.95);
  transform-style: preserve-3d;
  transition:
    transform 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.jmc-problem-card__inner::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 20px;
  border: 1px solid rgba(183, 126, 55, 0.08);
  pointer-events: none;
}

.jmc-problem-card__inner::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(183, 126, 55, 0.07);
  transition:
    transform 0.5s ease,
    background-color 0.5s ease;
  pointer-events: none;
}

.jmc-problem-card:hover .jmc-problem-card__inner,
.jmc-problem-card:focus-within .jmc-problem-card__inner {
  border-color: rgba(114, 80, 120, 0.32);
  box-shadow:
    0 35px 75px rgba(54, 45, 48, 0.18),
    0 14px 26px rgba(54, 45, 48, 0.1);
  transform: translateY(-10px) rotateX(4deg) rotateY(-3deg);
}

.jmc-problem-card:hover .jmc-problem-card__inner::after,
.jmc-problem-card:focus-within .jmc-problem-card__inner::after {
  background: rgba(114, 80, 120, 0.11);
  transform: scale(1.25);
}

/* Front and Hover Content */
.jmc-problem-card__front,
.jmc-problem-card__back {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px 28px;
  text-align: center;
  transition:
    opacity 0.4s ease,
    transform 0.45s ease,
    visibility 0.4s ease;
}

.jmc-problem-card__front {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.jmc-problem-card__back {
  opacity: 0;
  visibility: hidden;
  transform: translateY(28px) scale(0.96);
}

.jmc-problem-card:hover .jmc-problem-card__front,
.jmc-problem-card:focus-within .jmc-problem-card__front {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-25px) scale(0.94);
}

.jmc-problem-card:hover .jmc-problem-card__back,
.jmc-problem-card:focus-within .jmc-problem-card__back {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Number */
.jmc-problem-card__number {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 1;
  color: rgba(114, 80, 120, 0.09);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
}

/* Front Icon */
.jmc-problem-card__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(145deg, #805d86, #5c3d62);
  box-shadow:
    0 17px 30px rgba(91, 60, 97, 0.24),
    inset 2px 2px 5px rgba(255, 255, 255, 0.25);
  transform: translateZ(30px);
}

.jmc-problem-card:nth-child(even) .jmc-problem-card__icon {
  background: linear-gradient(145deg, #c4914c, #956228);
  box-shadow:
    0 17px 30px rgba(149, 98, 40, 0.23),
    inset 2px 2px 5px rgba(255, 255, 255, 0.24);
}

.jmc-problem-card__icon .dashicons {
  width: auto;
  height: auto;
  font-size: 32px;
  line-height: 1;
}

.jmc-problem-card__title {
  max-width: 280px;
  margin: 0;
  color: #202621;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.3;
}

.jmc-problem-card__hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  color: #8a6a3e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jmc-problem-card__hint .dashicons {
  width: auto;
  height: auto;
  font-size: 16px;
  line-height: 1;
}

/* Hover Explanation */
.jmc-problem-card__back-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #ffffff;
  background: #725078;
  box-shadow: 0 11px 24px rgba(114, 80, 120, 0.22);
}

.jmc-problem-card:nth-child(even) .jmc-problem-card__back-icon {
  background: #a86d2c;
}

.jmc-problem-card__back-icon .dashicons {
  width: auto;
  height: auto;
  font-size: 21px;
  line-height: 1;
}

.jmc-problem-card__label {
  display: block;
  margin-bottom: 14px;
  color: #9a682f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.jmc-problem-card__explanation {
  max-width: 290px;
  margin: 0;
  color: #4f5752;
  font-size: 16px;
  line-height: 1.75;
}

/* Invisible Focus Button Enables Keyboard and Mobile Tap */
.jmc-problem-card__trigger {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 26px;
  background: transparent;
  cursor: pointer;
}

.jmc-problem-card__trigger:focus {
  outline: none;
}

.jmc-problem-card__trigger:focus-visible {
  outline: 3px solid rgba(114, 80, 120, 0.45);
  outline-offset: 5px;
}

@keyframes jmc-problem-floating {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

/* Tablet */
@media (max-width: 980px) {
  .jmc-course-problems {
    padding: 82px 24px;
  }

  .jmc-course-problems__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 640px) {
  .jmc-course-problems {
    padding: 68px 16px;
  }

  .jmc-course-problems__header {
    margin-bottom: 38px;
  }

  .jmc-course-problems__eyebrow {
    font-size: 11px;
    letter-spacing: 0.11em;
  }

  .jmc-course-problems__eyebrow::before,
  .jmc-course-problems__eyebrow::after {
    width: 24px;
  }

  .jmc-course-problems__title {
    font-size: 39px;
  }

  .jmc-course-problems__intro {
    font-size: 15px;
    line-height: 1.7;
  }

  .jmc-course-problems__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .jmc-problem-card {
    animation: none;
  }

  .jmc-problem-card__inner {
    min-height: 275px;
    border-radius: 22px;
  }

  .jmc-problem-card:hover .jmc-problem-card__inner,
  .jmc-problem-card:focus-within .jmc-problem-card__inner {
    transform: translateY(-4px);
  }

  .jmc-problem-card__front,
  .jmc-problem-card__back {
    padding: 30px 22px;
  }

  .jmc-problem-card__title {
    font-size: 24px;
  }

  .jmc-problem-card__explanation {
    font-size: 15px;
  }

  .jmc-problem-card__hint {
    margin-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jmc-problem-card {
    animation: none;
  }

  .jmc-problem-card__inner,
  .jmc-problem-card__front,
  .jmc-problem-card__back {
    transition: none;
  }
}\n}.elementor .e-ff5ba2f-76b7533{padding:0px;flex-direction:column;.jmc-learning-outcomes {
  position: relative;
  overflow: hidden;
  padding: 90px 20px;
  font-family: "Inter", Arial, sans-serif;
  color: #1f2724;
  
}

.jmc-learning-outcomes *,
.jmc-learning-outcomes *::before,
.jmc-learning-outcomes *::after {
  box-sizing: border-box;
}

.jmc-learning-outcomes__container {
  position: relative;
  z-index: 2;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.jmc-learning-outcomes__header {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.jmc-learning-outcomes__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #9b672d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.jmc-learning-outcomes__eyebrow::before,
.jmc-learning-outcomes__eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background: #b98549;
}

.jmc-learning-outcomes__title {
  margin: 0;
  color: #1e2623;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.7vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.jmc-learning-outcomes__title span {
  color: #31685d;
}

.jmc-learning-outcomes__intro {
  max-width: 680px;
  margin: 20px auto 0;
  color: #68706c;
  font-size: 17px;
  line-height: 1.75;
}

.jmc-learning-outcomes__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.jmc-outcome-card {
  position: relative;
  min-width: 0;
  min-height: 330px;
  overflow: hidden;
  padding: 32px 28px 30px;
  border: 1px solid rgba(48, 87, 78, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(249, 246, 239, 0.97)
    );
  box-shadow:
    0 20px 45px rgba(45, 55, 51, 0.09),
    0 6px 16px rgba(45, 55, 51, 0.05);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.jmc-outcome-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #31685d, #bf8748);
}

.jmc-outcome-card::after {
  content: "";
  position: absolute;
  right: -65px;
  bottom: -75px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(191, 135, 72, 0.07);
  transition: transform 0.4s ease;
}

.jmc-outcome-card:hover {
  transform: translateY(-9px);
  border-color: rgba(49, 104, 93, 0.3);
  box-shadow:
    0 30px 65px rgba(45, 55, 51, 0.14),
    0 12px 24px rgba(45, 55, 51, 0.08);
}

.jmc-outcome-card:hover::after {
  transform: scale(1.25);
}

.jmc-outcome-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.jmc-outcome-card__icon {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(145deg, #3d756a, #28584f);
  box-shadow:
    0 14px 24px rgba(49, 104, 93, 0.22),
    inset 2px 2px 5px rgba(255, 255, 255, 0.22);
}

.jmc-outcome-card:nth-child(even) .jmc-outcome-card__icon {
  background: linear-gradient(145deg, #c69250, #9a652d);
  box-shadow:
    0 14px 24px rgba(154, 101, 45, 0.2),
    inset 2px 2px 5px rgba(255, 255, 255, 0.22);
}

.jmc-outcome-card__icon .dashicons {
  width: auto;
  height: auto;
  font-size: 29px;
  line-height: 1;
}

.jmc-outcome-card__number {
  color: rgba(49, 104, 93, 0.2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.jmc-outcome-card__content {
  position: relative;
  z-index: 2;
}

.jmc-outcome-card__label {
  display: block;
  margin-bottom: 10px;
  color: #9e6b32;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.jmc-outcome-card__title {
  margin: 0 0 16px;
  color: #202724;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.28;
  letter-spacing: -0.015em;
}

.jmc-outcome-card__text {
  margin: 0;
  color: #646d68;
  font-size: 15px;
  line-height: 1.72;
}

/* Tablet: 2 × 2 */
@media (max-width: 980px) {
  .jmc-learning-outcomes {
    padding: 78px 24px;
  }

  .jmc-learning-outcomes__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .jmc-outcome-card {
    min-height: 300px;
  }
}

/* Mobile: 4 cards in one column */
@media (max-width: 620px) {
  .jmc-learning-outcomes {
    padding: 64px 16px;
  }

  .jmc-learning-outcomes__header {
    margin-bottom: 38px;
  }

  .jmc-learning-outcomes__eyebrow {
    font-size: 11px;
    letter-spacing: 0.11em;
  }

  .jmc-learning-outcomes__eyebrow::before,
  .jmc-learning-outcomes__eyebrow::after {
    width: 24px;
  }

  .jmc-learning-outcomes__title {
    font-size: 39px;
  }

  .jmc-learning-outcomes__intro {
    font-size: 15px;
    line-height: 1.7;
  }

  .jmc-learning-outcomes__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .jmc-outcome-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .jmc-outcome-card__top {
    margin-bottom: 22px;
  }

  .jmc-outcome-card__title {
    font-size: 23px;
  }

  .jmc-outcome-card__text {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jmc-outcome-card,
  .jmc-outcome-card::after {
    transition: none;
  }
}\n}.elementor .e-749f19d-dca8f40{padding:0px;flex-direction:column;/* =========================================
 JMC LEARNING JOURNEY SECTION
========================================= */

.jmc-learning-journey {
position: relative;
overflow: hidden;
padding: 90px 20px;
font-family: "Inter", Arial, sans-serif;
color: #202724;
background:
  radial-gradient(circle at 10% 15%, rgba(181, 126, 62, 0.1), transparent 25%),
  radial-gradient(circle at 90% 85%, rgba(50, 103, 91, 0.09), transparent 27%),
  linear-gradient(180deg, #fffdfa 0%, #f8f4ed 100%);
}

.jmc-learning-journey *,
.jmc-learning-journey *::before,
.jmc-learning-journey *::after {
box-sizing: border-box;
}

.jmc-learning-journey__container {
position: relative;
z-index: 2;
width: min(1220px, 100%);
margin: 0 auto;
}

/* Section Heading */

.jmc-learning-journey__header {
max-width: 760px;
margin: 0 auto 58px;
text-align: center;
}

.jmc-learning-journey__eyebrow {
display: inline-flex;
align-items: center;
gap: 12px;
margin-bottom: 17px;
color: #9b672d;
font-size: 13px;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
}

.jmc-learning-journey__eyebrow::before,
.jmc-learning-journey__eyebrow::after {
content: "";
width: 42px;
height: 1px;
background: #b98549;
}

.jmc-learning-journey__title {
margin: 0;
color: #202724;
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(38px, 4.8vw, 62px);
line-height: 1.08;
letter-spacing: -0.035em;
}

.jmc-learning-journey__title span {
color: #32685d;
}

.jmc-learning-journey__intro {
max-width: 680px;
margin: 20px auto 0;
color: #666e6a;
font-size: 17px;
line-height: 1.75;
}

/* Timeline Grid */

.jmc-learning-journey__timeline {
position: relative;
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 26px;
align-items: stretch;
}

/* Horizontal timeline line */

.jmc-learning-journey__timeline::before {
content: "";
position: absolute;
top: 62px;
left: 9%;
right: 9%;
height: 2px;
background: linear-gradient(
  90deg,
  rgba(50, 104, 93, 0.25),
  rgba(185, 133, 73, 0.55),
  rgba(50, 104, 93, 0.25)
);
z-index: 0;
}

/* Journey Card */

.jmc-journey-card {
position: relative;
z-index: 2;
aspect-ratio: 1 / 1.08;
min-width: 0;
padding: 28px 22px;
border: 1px solid rgba(50, 104, 93, 0.13);
border-radius: 24px;
background:
  linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.99),
    rgba(248, 244, 236, 0.97)
  );
box-shadow:
  0 20px 45px rgba(45, 55, 51, 0.1),
  0 7px 18px rgba(45, 55, 51, 0.05);
text-align: center;
transition:
  transform 0.35s ease,
  box-shadow 0.35s ease,
  border-color 0.35s ease;
}

.jmc-journey-card:hover {
transform: translateY(-9px);
border-color: rgba(185, 133, 73, 0.38);
box-shadow:
  0 30px 65px rgba(45, 55, 51, 0.15),
  0 12px 25px rgba(45, 55, 51, 0.08);
}

/* Step Circle */

.jmc-journey-card__step {
position: relative;
z-index: 3;
width: 68px;
height: 68px;
display: grid;
place-items: center;
margin: 0 auto 23px;
border: 7px solid #f8f4ed;
border-radius: 50%;
color: #ffffff;
background: linear-gradient(145deg, #3e776b, #28574e);
box-shadow:
  0 13px 25px rgba(50, 104, 93, 0.23),
  inset 2px 2px 5px rgba(255, 255, 255, 0.22);
}

.jmc-journey-card:nth-child(even) .jmc-journey-card__step {
background: linear-gradient(145deg, #c79351, #98632c);
box-shadow:
  0 13px 25px rgba(152, 99, 44, 0.22),
  inset 2px 2px 5px rgba(255, 255, 255, 0.22);
}

.jmc-journey-card__step .dashicons {
width: auto;
height: auto;
font-size: 28px;
line-height: 1;
}

/* Card Content */

.jmc-journey-card__number {
display: block;
margin-bottom: 9px;
color: #a06d34;
font-size: 11px;
font-weight: 800;
letter-spacing: 0.13em;
text-transform: uppercase;
}

.jmc-journey-card__title {
margin: 0 0 14px;
color: #202724;
font-family: Georgia, "Times New Roman", serif;
font-size: 26px;
line-height: 1.2;
}

.jmc-journey-card__text {
margin: 0;
color: #656d69;
font-size: 14px;
line-height: 1.65;
}



/* Tablet: 2 × 2 grid with final card centred */

@media (max-width: 980px) {
.jmc-learning-journey {
  padding: 78px 24px;
}

.jmc-learning-journey__timeline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.jmc-learning-journey__timeline::before,
. {
  display: none;
}

.jmc-journey-card {
  aspect-ratio: auto;
  min-height: 285px;
}

.jmc-journey-card:last-child {
  grid-column: 1 / -1;
  width: calc(50% - 12px);
  justify-self: center;
}
}

/* Mobile: 4/5 cards in one column */

@media (max-width: 620px) {
.jmc-learning-journey {
  padding: 64px 16px;
}

.jmc-learning-journey__header {
  margin-bottom: 40px;
}

.jmc-learning-journey__eyebrow {
  font-size: 11px;
  letter-spacing: 0.11em;
}

.jmc-learning-journey__eyebrow::before,
.jmc-learning-journey__eyebrow::after {
  width: 24px;
}

.jmc-learning-journey__title {
  font-size: 39px;
}

.jmc-learning-journey__intro {
  font-size: 15px;
  line-height: 1.7;
}

.jmc-learning-journey__timeline {
  grid-template-columns: 1fr;
  gap: 18px;
}

.jmc-journey-card,
.jmc-journey-card:last-child {
  width: 100%;
  min-height: auto;
  grid-column: auto;
  padding: 28px 24px;
}

.jmc-journey-card__step {
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
}

.jmc-journey-card__title {
  font-size: 25px;
}

.jmc-journey-card__text {
  font-size: 15px;
}
}

@media (prefers-reduced-motion: reduce) {
.jmc-journey-card {
  transition: none;
}
}\n}.elementor .e-e6ac1aa-a8be67a{padding:0px;flex-direction:column;/* =========================================
 JMC COURSE CURRICULUM SECTION
========================================= */

.jmc-course-curriculum {
position: relative;
overflow: hidden;
padding: 90px 20px;
font-family: "Inter", Arial, sans-serif;
color: #202724;

}

.jmc-course-curriculum *,
.jmc-course-curriculum *::before,
.jmc-course-curriculum *::after {
box-sizing: border-box;
}

.jmc-course-curriculum::before {
content: "";
position: absolute;
top: -180px;
left: -160px;
width: 410px;
height: 410px;
border: 1px solid rgba(192, 142, 72, 0.15);
border-radius: 50%;
box-shadow:
  0 0 0 55px rgba(192, 142, 72, 0.025),
  0 0 0 105px rgba(38, 91, 81, 0.018);
pointer-events: none;
}

.jmc-course-curriculum__container {
position: relative;
z-index: 2;
width: min(1220px, 100%);
margin: 0 auto;
}

/* Section Heading */

.jmc-course-curriculum__header {
max-width: 780px;
margin: 0 auto 55px;
text-align: center;
}

.jmc-course-curriculum__eyebrow {
display: inline-flex;
align-items: center;
gap: 12px;
margin-bottom: 17px;
color: #9a672e;
font-size: 13px;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
}

.jmc-course-curriculum__eyebrow::before,
.jmc-course-curriculum__eyebrow::after {
content: "";
width: 42px;
height: 1px;
background: #bd8848;
}

.jmc-course-curriculum__title {
margin: 0;
color: #1e2824;
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(39px, 5vw, 64px);
line-height: 1.08;
letter-spacing: -0.035em;
}

.jmc-course-curriculum__title span {
color: #285f55;
}

.jmc-course-curriculum__intro {
max-width: 690px;
margin: 20px auto 0;
color: #676f6b;
font-size: 17px;
line-height: 1.75;
}

/* Curriculum Grid */

.jmc-course-curriculum__grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 24px;
align-items: stretch;
}

/* Curriculum Card */

.jmc-curriculum-card {
position: relative;
min-width: 0;
min-height: 410px;
overflow: hidden;
display: flex;
flex-direction: column;
padding: 30px 26px 27px;
border: 1px solid rgba(180, 126, 58, 0.28);
border-radius: 24px;
background:
  linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.99),
    rgba(250, 246, 238, 0.97)
  );
box-shadow:
  0 20px 45px rgba(54, 56, 51, 0.09),
  0 7px 17px rgba(54, 56, 51, 0.05);
text-align: center;
transition:
  transform 0.35s ease,
  box-shadow 0.35s ease,
  border-color 0.35s ease;
}

.jmc-curriculum-card::before {
content: "";
position: absolute;
right: -72px;
bottom: -80px;
width: 190px;
height: 190px;
border-radius: 50%;
background: rgba(190, 137, 70, 0.07);
transition: transform 0.4s ease;
pointer-events: none;
}

.jmc-curriculum-card:hover {
transform: translateY(-9px);
border-color: rgba(40, 95, 85, 0.34);
box-shadow:
  0 31px 65px rgba(54, 56, 51, 0.14),
  0 12px 25px rgba(54, 56, 51, 0.08);
}

.jmc-curriculum-card:hover::before {
transform: scale(1.25);
}

/* Icon */

.jmc-curriculum-card__icon {
position: relative;
z-index: 2;
width: 76px;
height: 76px;
flex: 0 0 76px;
display: grid;
place-items: center;
margin: 0 auto 23px;
border: 5px solid #f7f1e7;
border-radius: 50%;
color: #ffffff;
background: linear-gradient(145deg, #367568, #204f46);
box-shadow:
  0 15px 28px rgba(40, 95, 85, 0.23),
  inset 2px 2px 5px rgba(255, 255, 255, 0.23);
}

.jmc-curriculum-card:nth-child(even) .jmc-curriculum-card__icon {
background: linear-gradient(145deg, #cc9a50, #a36a27);
box-shadow:
  0 15px 28px rgba(163, 106, 39, 0.22),
  inset 2px 2px 5px rgba(255, 255, 255, 0.23);
}

.jmc-curriculum-card__icon .dashicons {
width: auto;
height: auto;
font-size: 33px;
line-height: 1;
}

/* Card Content */

.jmc-curriculum-card__unit {
position: relative;
z-index: 2;
display: block;
margin-bottom: 11px;
color: #a16c2e;
font-size: 12px;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
}

.jmc-curriculum-card__title {
position: relative;
z-index: 2;
min-height: 62px;
display: flex;
align-items: center;
justify-content: center;
margin: 0;
color: #214a42;
font-family: Georgia, "Times New Roman", serif;
font-size: 25px;
line-height: 1.25;
letter-spacing: -0.015em;
}

.jmc-curriculum-card__divider {
position: relative;
z-index: 2;
width: 70px;
height: 1px;
margin: 20px auto;
background: rgba(176, 121, 53, 0.5);
}

.jmc-curriculum-card__divider::after {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 7px;
height: 7px;
background: #b87b35;
transform: translate(-50%, -50%) rotate(45deg);
}

.jmc-curriculum-card__text {
position: relative;
z-index: 2;
margin: 0;
color: #626b67;
font-size: 15px;
line-height: 1.7;
}

.jmc-curriculum-card__meta {
position: relative;
z-index: 2;
display: flex;
align-items: center;
justify-content: center;
gap: 7px;
margin-top: auto;
padding-top: 23px;
color: #875b2b;
font-size: 13px;
font-weight: 800;
}

.jmc-curriculum-card__meta .dashicons {
width: auto;
height: auto;
font-size: 18px;
line-height: 1;
}

/* Bottom Summary */

.jmc-course-curriculum__summary {
display: flex;
align-items: center;
justify-content: center;
gap: 28px;
flex-wrap: wrap;
max-width: 760px;
margin: 40px auto 0;
padding: 18px 24px;
border: 1px solid rgba(40, 95, 85, 0.13);
border-radius: 18px;
background: rgba(255, 255, 255, 0.72);
box-shadow: 0 12px 30px rgba(54, 56, 51, 0.06);
}

.jmc-course-curriculum__summary-item {
display: inline-flex;
align-items: center;
gap: 8px;
color: #4e5d57;
font-size: 14px;
font-weight: 700;
}

.jmc-course-curriculum__summary-item .dashicons {
width: auto;
height: auto;
color: #a46c2d;
font-size: 20px;
line-height: 1;
}

/* Tablet: 2 × 2 */

@media (max-width: 980px) {
.jmc-course-curriculum {
  padding: 78px 24px;
}

.jmc-course-curriculum__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.jmc-curriculum-card {
  min-height: 380px;
}
}

/* Mobile: Four Cards in One Column */

@media (max-width: 620px) {
.jmc-course-curriculum {
  padding: 64px 14px;
}

.jmc-course-curriculum__header {
  margin-bottom: 38px;
}

.jmc-course-curriculum__eyebrow {
  font-size: 11px;
  letter-spacing: 0.11em;
}

.jmc-course-curriculum__eyebrow::before,
.jmc-course-curriculum__eyebrow::after {
  width: 24px;
}

.jmc-course-curriculum__title {
  font-size: 39px;
}

.jmc-course-curriculum__intro {
  font-size: 15px;
  line-height: 1.7;
}

.jmc-course-curriculum__grid {
  grid-template-columns: 1fr;
  gap: 20px;
}

.jmc-curriculum-card {
  width: calc(100% - 24px);
  max-width: 390px;
  min-height: auto;
  justify-self: center;
  padding: 26px 22px;
  border-radius: 21px;
}

.jmc-curriculum-card__icon {
  width: 66px;
  height: 66px;
  flex-basis: 66px;
  margin-bottom: 19px;
}

.jmc-curriculum-card__icon .dashicons {
  font-size: 29px;
}

.jmc-curriculum-card__title {
  min-height: auto;
  font-size: 23px;
}

.jmc-curriculum-card__divider {
  margin: 17px auto;
}

.jmc-curriculum-card__text {
  font-size: 14px;
  line-height: 1.65;
}

.jmc-course-curriculum__summary {
  width: calc(100% - 24px);
  margin-top: 30px;
  gap: 12px;
  padding: 17px 18px;
}

.jmc-course-curriculum__summary-item {
  width: 100%;
  justify-content: center;
}
}

@media (prefers-reduced-motion: reduce) {
.jmc-curriculum-card,
.jmc-curriculum-card::before {
  transition: none;
}
}\n}.elementor .e-6eac4dd-f7d3e9d{padding:0px;flex-direction:column;/* =========================================
 JMC WHAT IS INCLUDED SECTION
========================================= */

.jmc-course-included {
position: relative;
overflow: hidden;
padding: 90px 20px;
font-family: "Inter", Arial, sans-serif;
color: #202724;
  background:
  radial-gradient(circle at 5% 10%, rgba(192, 142, 72, 0.1), transparent 24%),
  radial-gradient(circle at 95% 85%, rgba(38, 91, 81, 0.08), transparent 26%),
  linear-gradient(180deg, #fffdfa 0%, #f8f3ea 100%);
}

.jmc-course-included *,
.jmc-course-included *::before,
.jmc-course-included *::after {
box-sizing: border-box;
}

.jmc-course-included::before {
content: "";
position: absolute;
top: -180px;
right: -150px;
width: 420px;
height: 420px;
border: 1px solid rgba(188, 135, 67, 0.15);
border-radius: 50%;
box-shadow:
  0 0 0 55px rgba(188, 135, 67, 0.025),
  0 0 0 105px rgba(43, 98, 87, 0.018);
pointer-events: none;
}

.jmc-course-included__container {
position: relative;
z-index: 2;
width: min(1220px, 100%);
margin: 0 auto;
}

/* Section Header */

.jmc-course-included__header {
max-width: 780px;
margin: 0 auto 54px;
text-align: center;
}

.jmc-course-included__eyebrow {
display: inline-flex;
align-items: center;
gap: 12px;
margin-bottom: 17px;
color: #99662d;
font-size: 13px;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
}

.jmc-course-included__eyebrow::before,
.jmc-course-included__eyebrow::after {
content: "";
width: 42px;
height: 1px;
background: #bd8848;
}

.jmc-course-included__title {
margin: 0;
color: #1e2824;
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(39px, 5vw, 64px);
line-height: 1.08;
letter-spacing: -0.035em;
}

.jmc-course-included__title span {
color: #2b6257;
}

.jmc-course-included__intro {
max-width: 700px;
margin: 20px auto 0;
color: #676f6b;
font-size: 17px;
line-height: 1.75;
}

/* Main Cards Grid */

.jmc-course-included__grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 22px;
}

.jmc-included-card {
position: relative;
min-width: 0;
min-height: 280px;
overflow: hidden;
padding: 28px 24px;
border: 1px solid rgba(43, 98, 87, 0.12);
border-radius: 23px;
background:
  linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.99),
    rgba(249, 245, 237, 0.97)
  );
box-shadow:
  0 19px 42px rgba(48, 56, 52, 0.09),
  0 6px 16px rgba(48, 56, 52, 0.05);
transition:
  transform 0.35s ease,
  box-shadow 0.35s ease,
  border-color 0.35s ease;
}

.jmc-included-card::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background: linear-gradient(90deg, #2b6257, #bc8743);
}

.jmc-included-card::after {
content: "";
position: absolute;
right: -65px;
bottom: -75px;
width: 175px;
height: 175px;
border-radius: 50%;
background: rgba(188, 135, 67, 0.065);
transition: transform 0.4s ease;
pointer-events: none;
}

.jmc-included-card:hover {
transform: translateY(-8px);
border-color: rgba(188, 135, 67, 0.34);
box-shadow:
  0 29px 62px rgba(48, 56, 52, 0.14),
  0 11px 24px rgba(48, 56, 52, 0.08);
}

.jmc-included-card:hover::after {
transform: scale(1.24);
}

.jmc-included-card__icon {
position: relative;
z-index: 2;
width: 62px;
height: 62px;
display: grid;
place-items: center;
margin-bottom: 23px;
border-radius: 19px;
color: #ffffff;
background: linear-gradient(145deg, #397367, #25554d);
box-shadow:
  0 14px 25px rgba(43, 98, 87, 0.22),
  inset 2px 2px 5px rgba(255, 255, 255, 0.22);
}

.jmc-included-card:nth-child(even) .jmc-included-card__icon {
background: linear-gradient(145deg, #c79551, #99642d);
box-shadow:
  0 14px 25px rgba(153, 100, 45, 0.21),
  inset 2px 2px 5px rgba(255, 255, 255, 0.22);
}

.jmc-included-card__icon .dashicons {
width: auto;
height: auto;
font-size: 29px;
line-height: 1;
}

.jmc-included-card__title {
position: relative;
z-index: 2;
min-height: 58px;
display: flex;
align-items: center;
margin: 0 0 13px;
color: #202724;
font-family: Georgia, "Times New Roman", serif;
font-size: 22px;
line-height: 1.28;
letter-spacing: -0.012em;
}

.jmc-included-card__text {
position: relative;
z-index: 2;
margin: 0;
color: #646d68;
font-size: 14px;
line-height: 1.7;
}

/* Compact Supporting Features Strip */

.jmc-course-included__extras {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 1px;
overflow: hidden;
margin-top: 36px;
border: 1px solid rgba(43, 98, 87, 0.12);
border-radius: 20px;
background: rgba(43, 98, 87, 0.12);
box-shadow: 0 13px 32px rgba(48, 56, 52, 0.07);
}

.jmc-course-included__extra {
min-width: 0;
display: flex;
align-items: center;
justify-content: center;
gap: 11px;
min-height: 82px;
padding: 18px 16px;
background: rgba(255, 255, 255, 0.94);
color: #42524c;
text-align: center;
}

.jmc-course-included__extra-icon {
width: 39px;
height: 39px;
flex: 0 0 39px;
display: grid;
place-items: center;
border-radius: 12px;
color: #2b6257;
background: rgba(43, 98, 87, 0.09);
}

.jmc-course-included__extra:nth-child(even)
.jmc-course-included__extra-icon {
color: #99642d;
background: rgba(188, 135, 67, 0.11);
}

.jmc-course-included__extra-icon .dashicons {
width: auto;
height: auto;
font-size: 20px;
line-height: 1;
}

.jmc-course-included__extra-text {
font-size: 15px;
font-weight: 600;
line-height: 1.35;
}

/* Tablet: 2 × 4 */

@media (max-width: 980px) {
.jmc-course-included {
  padding: 78px 24px;
}

.jmc-course-included__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.jmc-included-card {
  min-height: 260px;
}

.jmc-course-included__extras {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

/* Mobile: One Card Per Row */

@media (max-width: 620px) {
.jmc-course-included {
  padding: 64px 14px;
}

.jmc-course-included__header {
  margin-bottom: 38px;
}

.jmc-course-included__eyebrow {
  font-size: 11px;
  letter-spacing: 0.11em;
}

.jmc-course-included__eyebrow::before,
.jmc-course-included__eyebrow::after {
  width: 24px;
}

.jmc-course-included__title {
  font-size: 39px;
}

.jmc-course-included__intro {
  font-size: 15px;
  line-height: 1.7;
}

.jmc-course-included__grid {
  grid-template-columns: 1fr;
  gap: 18px;
}

.jmc-included-card {
  width: calc(100% - 24px);
  max-width: 390px;
  min-height: auto;
  justify-self: center;
  padding: 25px 22px;
  border-radius: 21px;
}

.jmc-included-card__icon {
  width: 57px;
  height: 57px;
  margin-bottom: 19px;
}

.jmc-included-card__icon .dashicons {
  font-size: 26px;
}

.jmc-included-card__title {
  min-height: auto;
  margin-bottom: 10px;
  font-size: 22px;
}

.jmc-included-card__text {
  font-size: 14px;
  line-height: 1.65;
}

.jmc-course-included__extras {
  width: calc(100% - 24px);
  max-width: 390px;
  grid-template-columns: 1fr;
  margin: 28px auto 0;
  border-radius: 18px;
}

.jmc-course-included__extra {
  justify-content: flex-start;
  min-height: 68px;
  padding: 14px 17px;
  text-align: left;
}
}

@media (prefers-reduced-motion: reduce) {
.jmc-included-card,
.jmc-included-card::after {
  transition: none;
}
}\n}.elementor .e-2e490d3-1cd6060{padding:0px;flex-direction:column;/* =========================================
 JMC COURSE EDUCATOR SECTION
========================================= */

.jmc-course-educator,
.jmc-course-educator * {
box-sizing: border-box;
}

.jmc-course-educator {
position: relative;
width: 100%;
overflow: hidden;
padding: 80px 20px 0;

color: #1e2824;
font-family: "Inter", Arial, sans-serif;

}

.jmc-course-educator::before {
content: "";
position: absolute;
top: -180px;
right: -150px;
width: 420px;
height: 420px;
border: 1px solid rgba(188, 135, 67, 0.14);
border-radius: 50%;
box-shadow:
  0 0 0 55px rgba(188, 135, 67, 0.025),
  0 0 0 105px rgba(43, 98, 87, 0.018);
pointer-events: none;
}

.jmc-course-educator__wrap {
position: relative;
z-index: 2;
width: min(1200px, 100%);
margin: 0 auto;
}

/* Eyebrow */

.jmc-course-educator__eyebrow {
width: max-content;
max-width: 100%;
margin: 0 auto 50px;
padding: 10px 28px;
border: 1px solid rgba(43, 98, 87, 0.17);
border-radius: 999px;
background: rgba(255, 255, 255, 0.75);
color: #2b6257;
font-size: 13px;
font-weight: 800;
letter-spacing: 0.15em;
text-align: center;
text-transform: uppercase;
box-shadow: 0 10px 24px rgba(47, 56, 52, 0.06);
}

.jmc-course-educator__grid {
display: grid;
grid-template-columns: 42% 58%;
align-items: stretch;
gap: 60px;
}

.jmc-course-educator__image-box {
position: relative;
display: flex;
min-height: 550px;
align-self: stretch;
align-items: flex-end;
justify-content: center;
margin-bottom: 0;
}

.jmc-course-educator__circle {
position: absolute;
top: 35px;
left: 50%;
width: 465px;
height: 465px;
border: 3px solid rgba(43, 98, 87, 0.75);
border-radius: 50%;
background:
  radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.95), transparent 32%),
  linear-gradient(145deg, #f3eadb 0%, #dbc7a5 100%);
box-shadow:
  0 25px 50px rgba(47, 56, 52, 0.14),
  inset 0 3px 6px rgba(255, 255, 255, 0.8);
transform: translateX(-50%);
}

.jmc-course-educator__circle::before {
content: "";
position: absolute;
inset: 18px;
border: 1px dashed rgba(188, 135, 67, 0.48);
border-radius: 50%;
}

.jmc-course-educator__img {
position: relative;
z-index: 2;
width: 100%;
max-width: 430px;
object-fit: contain;
}

/* Content */

.jmc-course-educator__content {
position: relative;
}

.jmc-course-educator__content::after {
content: "“";
position: absolute;
top: -48px;
right: 5px;
color: rgba(43, 98, 87, 0.09);
font-family: Georgia, "Times New Roman", serif;
font-size: 180px;
font-weight: 700;
line-height: 1;
pointer-events: none;
}

.jmc-course-educator__heading {
position: relative;
z-index: 2;
margin: 0;
color: #202724;
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(40px, 4.4vw, 60px);
font-weight: 700;
line-height: 1.08;
letter-spacing: -0.035em;
}

.jmc-course-educator__heading span {
color: #2b6257;
}

.jmc-course-educator__line {
width: 82px;
height: 4px;
margin: 20px 0 24px;
border-radius: 30px;
background: linear-gradient(90deg, #2b6257, #bc8743);
}

.jmc-course-educator__name {
margin: 0 0 6px;
color: #2b6257;
font-family: Georgia, "Times New Roman", serif;
font-size: 34px;
font-weight: 700;
}

.jmc-course-educator__designation {
margin: 0;
color: #5e6762;
font-size: 18px;
font-weight: 700;
line-height: 1.55;
}

.jmc-course-educator__intro {
max-width: 720px;
margin: 19px 0 0;
color: #606965;
font-size: 16px;
line-height: 1.75;
}

.jmc-course-educator__divider {
position: relative;
width: 100%;
height: 1px;
margin: 27px 0;
border-top: 2px dotted rgba(43, 98, 87, 0.27);
}

.jmc-course-educator__divider::after {
content: "";
position: absolute;
top: -6px;
left: 50%;
width: 10px;
height: 10px;
border-radius: 50%;
background: #bc8743;
}

/* Credentials */

.jmc-course-educator__credentials {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 13px;
margin-bottom: 27px;
}

.jmc-course-educator__credential {
display: flex;
min-height: 58px;
align-items: center;
gap: 12px;
padding: 13px 15px;
border: 1px solid rgba(43, 98, 87, 0.13);
border-radius: 13px;
background: rgba(255, 255, 255, 0.78);
color: #303b36;
font-size: 15px;
font-weight: 800;
line-height: 1.4;
box-shadow: 0 8px 18px rgba(47, 56, 52, 0.055);
transition:
  transform 0.3s ease,
  border-color 0.3s ease,
  box-shadow 0.3s ease;
}

.jmc-course-educator__credential:hover {
transform: translateY(-4px);
border-color: rgba(188, 135, 67, 0.38);
box-shadow: 0 14px 27px rgba(47, 56, 52, 0.09);
}

.jmc-course-educator__credential:last-child {
grid-column: 1 / -1;
}

.jmc-course-educator__credential .dashicons {
width: auto;
height: auto;
flex: 0 0 auto;
color: #2b6257;
font-size: 24px;
line-height: 1;
}

.jmc-course-educator__credential:nth-child(even) .dashicons {
color: #a76c2e;
}

/* Expertise Tags */

.jmc-course-educator__expertise {
display: flex;
flex-wrap: wrap;
gap: 9px;
margin: 0 0 27px;
}

.jmc-course-educator__tag {
display: inline-flex;
align-items: center;
min-height: 34px;
padding: 7px 13px;
border: 1px solid rgba(43, 98, 87, 0.15);
border-radius: 999px;
background: rgba(43, 98, 87, 0.065);
color: #2b6257;
font-size: 12px;
font-weight: 800;
}

/* Educator Message */

.jmc-course-educator__message {
position: relative;
margin: 0;
padding: 23px 25px 23px 30px;
border: 1px solid rgba(188, 135, 67, 0.25);
border-left: 5px solid #bc8743;
border-radius: 0 15px 15px 0;
background: rgba(255, 255, 255, 0.82);
color: #29332f;
font-family: Georgia, "Times New Roman", serif;
font-size: 19px;
font-style: italic;
line-height: 1.55;
box-shadow: 0 13px 28px rgba(47, 56, 52, 0.075);
}

/* Tablet */

@media (max-width: 1024px) {
.jmc-course-educator {
  padding: 76px 24px 0;
}

.jmc-course-educator__grid {
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: center;
}

.jmc-course-educator__image-box {
  min-height: 490px;
}

.jmc-course-educator__content {
  max-width: 820px;
  margin: 0 auto;
}

.jmc-course-educator__line {
  margin-right: auto;
  margin-left: auto;
}

.jmc-course-educator__intro {
  margin-right: auto;
  margin-left: auto;
}

.jmc-course-educator__credential,
.jmc-course-educator__message {
  text-align: left;
}

.jmc-course-educator__expertise {
  justify-content: center;
}
}

/* Mobile */

@media (max-width: 767px) {
.jmc-course-educator {
  padding: 62px 16px 0;
}

.jmc-course-educator__eyebrow {
  margin-bottom: 32px;
  padding: 8px 19px;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.jmc-course-educator__image-box {
  min-height: 370px;
}

.jmc-course-educator__circle {
  width: 315px;
  height: 315px;
}

.jmc-course-educator__img {
  max-width: 310px;
}

.jmc-course-educator__content {
  padding-bottom: 34px;
}

.jmc-course-educator__heading {
  font-size: 37px;
}

.jmc-course-educator__name {
  font-size: 29px;
}

.jmc-course-educator__designation {
  font-size: 16px;
}

.jmc-course-educator__intro {
  font-size: 15px;
}

.jmc-course-educator__content::after {
  top: -15px;
  right: 0;
  font-size: 95px;
}

.jmc-course-educator__credentials {
  grid-template-columns: 1fr;
}

.jmc-course-educator__credential:last-child {
  grid-column: auto;
}

.jmc-course-educator__credential {
  min-height: 54px;
  font-size: 14px;
  text-align: left;
}

.jmc-course-educator__expertise {
  justify-content: center;
}

.jmc-course-educator__message {
  padding: 20px 18px 20px 22px;
  font-size: 17px;
  text-align: left;
}
}

@media (max-width: 370px) {
.jmc-course-educator__circle {
  width: 280px;
  height: 280px;
}

.jmc-course-educator__img {
  max-width: 280px;
}

.jmc-course-educator__image-box {
  min-height: 330px;
}
}

@media (prefers-reduced-motion: reduce) {
.jmc-course-educator__credential {
  transition: none;
}
}

/* UGC-NET qualified text */
.jmc-net-qualified-item {
overflow: visible;
}

.jmc-net-qualified-label {
position: relative;
display: inline-block;
padding-right: 48px;

font-family: Georgia, "Times New Roman", serif;
}

/* x²-style superscript */
.jmc-net-qualified-count {
position: absolute;
top: -8px;
right: 0;

margin: 0;

color: #d79a00;

font-family: Georgia, "Times New Roman", serif;
font-size: 11px;
line-height: 1;
font-style: italic;
font-weight: 700;
letter-spacing: 0;
white-space: nowrap;
}

@media (max-width: 767px) {
.jmc-net-qualified-label {
  padding-right: 43px;
}

.jmc-net-qualified-count {
  top: -7px;
  font-size: 10px;
}
}\n}.elementor .e-d0706b5-0531e44{padding:0px;flex-direction:column;/* =========================================
 JMC COURSE ENROLMENT PROCESS
 Desktop: 4 Cards in One Row
 Tablet: 2 × 2 Grid
 Mobile: Vertical Column
========================================= */

.jmc-enrolment-process,
.jmc-enrolment-process * {
box-sizing: border-box;
}

.jmc-enrolment-process {
position: relative;
width: 100%;
overflow: hidden;
padding: 90px 24px;
  background:
  radial-gradient(circle at 5% 10%, rgba(192, 142, 72, 0.1), transparent 24%),
  radial-gradient(circle at 95% 85%, rgba(38, 91, 81, 0.08), transparent 26%),
  linear-gradient(180deg, #fffdfa 0%, #f8f3ea 100%);
color: #202724;
font-family: "Inter", Arial, sans-serif;
}

.jmc-enrolment-process::before {
content: "";
position: absolute;
top: 60px;
left: -150px;
width: 340px;
height: 340px;
border: 1px solid rgba(44, 98, 87, 0.07);
border-radius: 50%;
pointer-events: none;
}

.jmc-enrolment-process::after {
content: "";
position: absolute;
right: -160px;
bottom: -170px;
width: 390px;
height: 390px;
border: 1px solid rgba(189, 136, 72, 0.09);
border-radius: 50%;
pointer-events: none;
}

.jmc-enrolment-process__wrap {
position: relative;
z-index: 2;
width: 100%;
max-width: 1320px;
margin: 0 auto;
}

/* Section Heading */

.jmc-enrolment-process__heading {
max-width: 850px;
margin: 0 auto 54px;
text-align: center;
}

.jmc-enrolment-process__label {
display: flex;
align-items: center;
justify-content: center;
gap: 14px;
margin-bottom: 18px;
color: #9b672d;
font-size: 13px;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
}

.jmc-enrolment-process__label span {
display: block;
width: 42px;
height: 1px;
background: #bd8848;
}

.jmc-enrolment-process__heading h2 {
margin: 0;
color: #202724;
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(39px, 4.8vw, 62px);
font-weight: 700;
line-height: 1.08;
letter-spacing: -0.035em;
}

.jmc-enrolment-process__heading h2 strong {
color: #2c6257;
font-weight: 700;
}

.jmc-enrolment-process__heading-line {
width: 68px;
height: 4px;
margin: 21px auto;
border-radius: 10px;
background: linear-gradient(90deg, #2c6257, #bd8848);
}

.jmc-enrolment-process__heading p {
max-width: 720px;
margin: 0 auto;
color: #666e6a;
font-size: 17px;
line-height: 1.75;
}

/* Cards Grid */

.jmc-enrolment-process__grid {
display: grid;
grid-template-columns:
  minmax(0, 1fr)
  48px
  minmax(0, 1fr)
  48px
  minmax(0, 1fr)
  48px
  minmax(0, 1fr);
align-items: center;
gap: 12px;
width: 100%;
}

.jmc-enrolment-card {
position: relative;
display: flex;
width: 100%;
min-height: 350px;
flex-direction: column;
align-items: center;
overflow: hidden;
padding: 56px 24px 0;
border: 1px solid rgba(44, 98, 87, 0.12);
border-radius: 22px;
background:
  linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.99),
    rgba(249, 245, 237, 0.97)
  );
text-align: center;
box-shadow:
  0 20px 42px rgba(47, 56, 52, 0.1),
  0 7px 17px rgba(47, 56, 52, 0.05);
transition:
  transform 0.35s ease,
  box-shadow 0.35s ease,
  border-color 0.35s ease;
}

.jmc-enrolment-card::before {
content: "";
position: absolute;
top: -58px;
right: -54px;
width: 155px;
height: 155px;
border-radius: 50%;
background: currentColor;
opacity: 0.055;
pointer-events: none;
}

.jmc-enrolment-card:hover {
z-index: 4;
transform: translateY(-9px);
border-color: rgba(189, 136, 72, 0.35);
box-shadow:
  0 30px 62px rgba(47, 56, 52, 0.15),
  0 12px 24px rgba(47, 56, 52, 0.08);
}

/* Step Badge */

.jmc-enrolment-card__step {
position: absolute;
top: 16px;
left: 16px;
padding: 8px 13px;
border-radius: 9px;
background: rgba(255, 255, 255, 0.88);
color: currentColor;
font-size: 12px;
font-weight: 800;
line-height: 1;
box-shadow: 0 7px 14px rgba(31, 39, 35, 0.1);
}

/* Icon */

.jmc-enrolment-card__icon {
display: flex;
width: 84px;
height: 84px;
flex: 0 0 84px;
align-items: center;
justify-content: center;
margin-bottom: 22px;
border: 2px solid currentColor;
border-radius: 22px;
background: rgba(255, 255, 255, 0.84);
box-shadow:
  0 13px 22px rgba(47, 56, 52, 0.1),
  inset 0 2px 3px rgba(255, 255, 255, 0.95);
}

.jmc-enrolment-card__icon .dashicons {
width: auto;
height: auto;
font-size: 42px;
line-height: 1;
}

.jmc-enrolment-card h3 {
margin: 0;
color: currentColor;
font-family: Georgia, "Times New Roman", serif;
font-size: 29px;
font-weight: 700;
line-height: 1.15;
}

.jmc-enrolment-card__line {
width: 44px;
height: 3px;
margin: 14px 0 16px;
border-radius: 10px;
background: currentColor;
}

.jmc-enrolment-card p {
margin: 0;
color: #59635e;
font-size: 15px;
line-height: 1.7;
}

.jmc-enrolment-card__bottom {
display: flex;
width: calc(100% + 48px);
min-height: 50px;
align-items: center;
justify-content: center;
margin-top: auto;
padding: 10px 16px;
background: currentColor;
color: #ffffff;
font-size: 14px;
font-weight: 800;
line-height: 1.25;
}

/* Card Themes */

.jmc-enrolment-card--choose {
color: #2c6257;
}

.jmc-enrolment-card--purchase {
color: #a76d2e;
}

.jmc-enrolment-card--access {
color: #6f5678;
}

.jmc-enrolment-card--learn {
color: #3d6750;
}

/* Arrows */

.jmc-enrolment-process__arrow {
position: relative;
display: flex;
width: 48px;
height: 48px;
align-items: center;
justify-content: center;
border: 2px dashed rgba(44, 98, 87, 0.3);
border-radius: 50%;
background: #fffdfa;
color: #2c6257;
}

.jmc-enrolment-process__arrow .dashicons {
width: auto;
height: auto;
font-size: 24px;
line-height: 1;
}

/* Support Strip */

.jmc-enrolment-process__support {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 1px;
overflow: hidden;
margin-top: 38px;
border: 1px solid rgba(44, 98, 87, 0.12);
border-radius: 18px;
background: rgba(44, 98, 87, 0.12);
box-shadow: 0 13px 30px rgba(47, 56, 52, 0.07);
}

.jmc-enrolment-process__support-item {
display: flex;
min-height: 78px;
align-items: center;
justify-content: center;
gap: 10px;
padding: 16px;
background: rgba(255, 255, 255, 0.94);
color: #46534e;
text-align: center;
}

.jmc-enrolment-process__support-item .dashicons {
width: auto;
height: auto;
color: #2c6257;
font-size: 22px;
line-height: 1;
}

.jmc-enrolment-process__support-item:nth-child(even) .dashicons {
color: #a76d2e;
}

.jmc-enrolment-process__support-item span:last-child {
font-size: 14px;
font-weight: 800;
line-height: 1.35;
}

/* Help Box */

.jmc-enrolment-process__help {
display: flex;
max-width: 860px;
align-items: center;
justify-content: space-between;
gap: 24px;
margin: 34px auto 0;
padding: 22px 26px;
border: 1px solid rgba(189, 136, 72, 0.24);
border-radius: 17px;
background: rgba(255, 255, 255, 0.82);
box-shadow: 0 13px 28px rgba(47, 56, 52, 0.07);
}

.jmc-enrolment-process__help-content h3 {
margin: 0 0 5px;
color: #26312c;
font-family: Georgia, "Times New Roman", serif;
font-size: 23px;
}

.jmc-enrolment-process__help-content p {
margin: 0;
color: #626b67;
font-size: 14px;
line-height: 1.6;
}

.jmc-enrolment-process__help-button {
flex: 0 0 auto;
display: inline-flex;
min-height: 45px;
align-items: center;
justify-content: center;
gap: 8px;
padding: 11px 20px;
border-radius: 999px;
background: #2c6257;
color: #ffffff;
text-decoration: none;
font-size: 14px;
font-weight: 800;
transition:
  transform 0.25s ease,
  background-color 0.25s ease;
}

.jmc-enrolment-process__help-button:hover {
background: #214e46;
color: #ffffff;
transform: translateY(-2px);
}

/* Tablet: 2 × 2 */

@media screen and (max-width: 1050px) {
.jmc-enrolment-process__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 850px;
  margin: 0 auto;
}

.jmc-enrolment-process__arrow {
  display: none;
}

.jmc-enrolment-card {
  min-height: 340px;
}

.jmc-enrolment-process__support {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

/* Mobile */

@media screen and (max-width: 620px) {
.jmc-enrolment-process {
  padding: 62px 14px;
}

.jmc-enrolment-process__heading {
  margin-bottom: 38px;
}

.jmc-enrolment-process__label {
  gap: 9px;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.jmc-enrolment-process__label span {
  width: 24px;
}

.jmc-enrolment-process__heading h2 {
  font-size: 38px;
}

.jmc-enrolment-process__heading p {
  font-size: 15px;
  line-height: 1.7;
}

.jmc-enrolment-process__grid {
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 420px;
}

.jmc-enrolment-card {
  width: calc(100% - 24px);
  min-height: 320px;
  justify-self: center;
  padding: 52px 22px 0;
}

.jmc-enrolment-card__icon {
  width: 74px;
  height: 74px;
  flex-basis: 74px;
  margin-bottom: 18px;
}

.jmc-enrolment-card__icon .dashicons {
  font-size: 37px;
}

.jmc-enrolment-card h3 {
  font-size: 26px;
}

.jmc-enrolment-card p {
  font-size: 14px;
}

.jmc-enrolment-process__support {
  width: calc(100% - 24px);
  max-width: 396px;
  grid-template-columns: 1fr;
  margin: 28px auto 0;
}

.jmc-enrolment-process__support-item {
  justify-content: flex-start;
  min-height: 66px;
  padding: 14px 18px;
  text-align: left;
}

.jmc-enrolment-process__help {
  width: calc(100% - 24px);
  max-width: 396px;
  flex-direction: column;
  align-items: stretch;
  padding: 21px 19px;
  text-align: center;
}

.jmc-enrolment-process__help-button {
  width: 100%;
}
}

@media (prefers-reduced-motion: reduce) {
.jmc-enrolment-card,
.jmc-enrolment-process__help-button {
  transition: none;
}

.jmc-enrolment-card:hover,
.jmc-enrolment-process__help-button:hover {
  transform: none;
}
}\n}.elementor .e-e21290b-f2d4c6a{padding:0px;flex-direction:column;/* =========================================
 JMC COURSE FAQ SECTION
 Desktop/Tablet: Two Columns
 Mobile: One Column
========================================= */

.jmc-course-faq,
.jmc-course-faq * {
box-sizing: border-box;
}

.jmc-course-faq {
position: relative;
width: 100%;
overflow: hidden;
padding: 90px 22px;
color: #202724;
font-family: "Inter", Arial, sans-serif;
background:
  radial-gradient(circle at 7% 15%, rgba(190, 137, 70, 0.09), transparent 24%),
  radial-gradient(circle at 93% 85%, rgba(44, 98, 87, 0.08), transparent 26%),
  linear-gradient(180deg, #fffdfa 0%, #f8f4ed 100%);
}

.jmc-course-faq::before {
content: "";
position: absolute;
top: -170px;
right: -150px;
width: 410px;
height: 410px;
border: 1px solid rgba(190, 137, 70, 0.14);
border-radius: 50%;
box-shadow:
  0 0 0 55px rgba(190, 137, 70, 0.022),
  0 0 0 105px rgba(44, 98, 87, 0.017);
pointer-events: none;
}

.jmc-course-faq__container {
position: relative;
z-index: 2;
width: min(1180px, 100%);
margin: 0 auto;
}

/* Section Header */

.jmc-course-faq__header {
max-width: 790px;
margin: 0 auto 52px;
text-align: center;
}

.jmc-course-faq__eyebrow {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 12px;
margin-bottom: 17px;
color: #9b672d;
font-size: 13px;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
}

.jmc-course-faq__eyebrow::before,
.jmc-course-faq__eyebrow::after {
content: "";
width: 42px;
height: 1px;
background: #bd8848;
}

.jmc-course-faq__title {
margin: 0;
color: #202724;
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(39px, 4.8vw, 62px);
font-weight: 700;
line-height: 1.08;
letter-spacing: -0.035em;
}

.jmc-course-faq__title span {
color: #2c6257;
}

.jmc-course-faq__intro {
max-width: 700px;
margin: 20px auto 0;
color: #666e6a;
font-size: 17px;
line-height: 1.75;
}

/* FAQ Columns */

.jmc-course-faq__columns {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
align-items: start;
gap: 22px;
}

.jmc-course-faq__column {
display: flex;
min-width: 0;
flex-direction: column;
gap: 16px;
}

/* FAQ Item */

.jmc-faq-item {
position: relative;
overflow: hidden;
border: 1px solid rgba(44, 98, 87, 0.13);
border-radius: 18px;
background: rgba(255, 255, 255, 0.9);
box-shadow:
  0 14px 32px rgba(47, 56, 52, 0.07),
  0 5px 12px rgba(47, 56, 52, 0.04);
transition:
  border-color 0.3s ease,
  box-shadow 0.3s ease,
  transform 0.3s ease;
}

.jmc-faq-item:hover {
border-color: rgba(189, 136, 72, 0.36);
box-shadow:
  0 20px 40px rgba(47, 56, 52, 0.1),
  0 8px 16px rgba(47, 56, 52, 0.05);
transform: translateY(-2px);
}

.jmc-faq-item[open] {
border-color: rgba(44, 98, 87, 0.32);
background:
  linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98),
    rgba(248, 244, 236, 0.96)
  );
}

/* FAQ Question */

.jmc-faq-item__question {
position: relative;
display: flex;
min-height: 82px;
align-items: center;
gap: 15px;
padding: 20px 60px 20px 21px;
color: #28332e;
font-family: Georgia, "Times New Roman", serif;
font-size: 19px;
font-weight: 700;
line-height: 1.4;
list-style: none;
cursor: pointer;
}

.jmc-faq-item__question::-webkit-details-marker {
display: none;
}

.jmc-faq-item__number {
width: 36px;
height: 36px;
flex: 0 0 36px;
display: grid;
place-items: center;
border-radius: 11px;
color: #ffffff;
background: #2c6257;
font-family: "Inter", Arial, sans-serif;
font-size: 12px;
font-weight: 800;
line-height: 1;
box-shadow: 0 8px 16px rgba(44, 98, 87, 0.2);
}

.jmc-faq-item:nth-child(even) .jmc-faq-item__number {
background: #a86d2e;
box-shadow: 0 8px 16px rgba(168, 109, 46, 0.18);
}

/* Plus/Minus Icon */

.jmc-faq-item__question::before,
.jmc-faq-item__question::after {
content: "";
position: absolute;
top: 50%;
right: 23px;
width: 18px;
height: 2px;
border-radius: 999px;
background: #2c6257;
transform: translateY(-50%);
transition: transform 0.3s ease;
}

.jmc-faq-item__question::after {
transform: translateY(-50%) rotate(90deg);
}

.jmc-faq-item[open] .jmc-faq-item__question::after {
transform: translateY(-50%) rotate(0deg);
}

.jmc-faq-item[open] .jmc-faq-item__question {
color: #2c6257;
}

/* FAQ Answer */

.jmc-faq-item__answer {
padding: 0 24px 22px 72px;
}

.jmc-faq-item__answer p {
margin: 0;
padding-top: 17px;
border-top: 1px solid rgba(44, 98, 87, 0.11);
color: #626b67;
font-size: 15px;
line-height: 1.75;
}

/* Help Strip */

.jmc-course-faq__support {
display: flex;
max-width: 860px;
align-items: center;
justify-content: space-between;
gap: 24px;
margin: 38px auto 0;
padding: 23px 26px;
border: 1px solid rgba(189, 136, 72, 0.25);
border-radius: 18px;
background: rgba(255, 255, 255, 0.84);
box-shadow: 0 14px 30px rgba(47, 56, 52, 0.07);
}

.jmc-course-faq__support-content {
display: flex;
align-items: center;
gap: 15px;
}

.jmc-course-faq__support-icon {
width: 50px;
height: 50px;
flex: 0 0 50px;
display: grid;
place-items: center;
border-radius: 15px;
color: #ffffff;
background: linear-gradient(145deg, #397367, #25554d);
box-shadow: 0 11px 20px rgba(44, 98, 87, 0.2);
}

.jmc-course-faq__support-icon .dashicons {
width: auto;
height: auto;
font-size: 25px;
line-height: 1;
}

.jmc-course-faq__support-text h3 {
margin: 0 0 5px;
color: #29332f;
font-family: Georgia, "Times New Roman", serif;
font-size: 22px;
}

.jmc-course-faq__support-text p {
margin: 0;
color: #666e6a;
font-size: 14px;
line-height: 1.55;
}

.jmc-course-faq__support-button {
flex: 0 0 auto;
display: inline-flex;
min-height: 44px;
align-items: center;
justify-content: center;
gap: 8px;
padding: 11px 20px;
border-radius: 999px;
background: #2c6257;
color: #ffffff;
text-decoration: none;
font-size: 14px;
font-weight: 800;
transition:
  background-color 0.25s ease,
  transform 0.25s ease;
}

.jmc-course-faq__support-button:hover {
background: #214e46;
color: #ffffff;
transform: translateY(-2px);
}

/* Tablet */

@media screen and (max-width: 900px) {
.jmc-course-faq {
  padding: 78px 22px;
}

.jmc-course-faq__columns {
  gap: 18px;
}

.jmc-faq-item__question {
  min-height: 88px;
  padding-right: 52px;
  font-size: 18px;
}
}

/* Mobile */

@media screen and (max-width: 680px) {
.jmc-course-faq {
  padding: 62px 14px;
}

.jmc-course-faq__header {
  margin-bottom: 38px;
}

.jmc-course-faq__eyebrow {
  gap: 9px;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.jmc-course-faq__eyebrow::before,
.jmc-course-faq__eyebrow::after {
  width: 24px;
}

.jmc-course-faq__title {
  font-size: 38px;
}

.jmc-course-faq__intro {
  font-size: 15px;
  line-height: 1.7;
}

.jmc-course-faq__columns {
  width: calc(100% - 20px);
  max-width: 420px;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0 auto;
}

.jmc-course-faq__column {
  gap: 16px;
}

.jmc-faq-item {
  border-radius: 16px;
}

.jmc-faq-item__question {
  min-height: 76px;
  gap: 12px;
  padding: 17px 48px 17px 17px;
  font-size: 17px;
  line-height: 1.4;
}

.jmc-faq-item__number {
  width: 32px;
  height: 32px;
  flex-basis: 32px;
  font-size: 11px;
}

.jmc-faq-item__question::before,
.jmc-faq-item__question::after {
  right: 18px;
  width: 15px;
}

.jmc-faq-item__answer {
  padding: 0 18px 19px;
}

.jmc-faq-item__answer p {
  padding-top: 15px;
  font-size: 14px;
  line-height: 1.7;
}

.jmc-course-faq__support {
  width: calc(100% - 20px);
  max-width: 420px;
  flex-direction: column;
  align-items: stretch;
  margin-top: 28px;
  padding: 20px 18px;
  text-align: center;
}

.jmc-course-faq__support-content {
  flex-direction: column;
}

.jmc-course-faq__support-button {
  width: 100%;
}
}

@media (prefers-reduced-motion: reduce) {
.jmc-faq-item,
.jmc-faq-item__question::after,
.jmc-course-faq__support-button {
  transition: none;
}
}

/* =========================================
 SMOOTH FAQ OPEN / CLOSE ANIMATION
========================================= */

.jmc-faq-item__answer {
display: grid;
grid-template-rows: 0fr;
padding: 0 24px;
opacity: 0;
visibility: hidden;
transition:
  grid-template-rows 0.4s ease,
  opacity 0.3s ease,
  padding-bottom 0.4s ease,
  visibility 0.4s ease;
}

/* Override the browser's instant hiding of closed details content */
.jmc-faq-item:not([open]) > .jmc-faq-item__answer {
display: grid;
}

.jmc-faq-item[open] .jmc-faq-item__answer {
grid-template-rows: 1fr;
padding-bottom: 22px;
opacity: 1;
visibility: visible;
}

.jmc-faq-item__answer p {
min-height: 0;
overflow: hidden;
margin: 0;
padding-top: 17px;
border-top: 1px solid rgba(44, 98, 87, 0.11);
color: #626b67;
font-size: 15px;
line-height: 1.75;
}

.jmc-faq-item__question {
transition:
  color 0.3s ease,
  padding-bottom 0.3s ease,
  background-color 0.3s ease;
}

.jmc-faq-item__question::before,
.jmc-faq-item__question::after {
transition:
  transform 0.35s ease,
  background-color 0.3s ease;
}

.jmc-faq-item[open] .jmc-faq-item__question {
color: #2c6257;
background: rgba(44, 98, 87, 0.035);
}

.jmc-faq-item[open] .jmc-faq-item__question::after {
transform: translateY(-50%) rotate(180deg);
}

@media screen and (max-width: 680px) {
.jmc-faq-item__answer {
  padding-right: 18px;
  padding-left: 18px;
}

.jmc-faq-item[open] .jmc-faq-item__answer {
  padding-bottom: 19px;
}

.jmc-faq-item__answer p {
  padding-top: 15px;
  font-size: 14px;
  line-height: 1.7;
}
}\n}.elementor .e-cbc7086-90e4b12{padding:0px;flex-direction:column;/* =========================================
 JMC EXPLORE MORE COURSES SECTION
 Desktop: 4 Cards in One Row
 Tablet: 2 × 2 Grid
 Mobile: 4 Cards in One Column
========================================= */

.jmc-more-courses,
.jmc-more-courses * {
box-sizing: border-box;
}

.jmc-more-courses {
position: relative;
width: 100%;
overflow: hidden;
padding: 90px 22px;
color: #202724;
font-family: "Inter", Arial, sans-serif;

}

.jmc-more-courses::before {
content: "";
position: absolute;
top: -170px;
left: -150px;
width: 410px;
height: 410px;
border: 1px solid rgba(188, 135, 67, 0.14);
border-radius: 50%;
box-shadow:
  0 0 0 55px rgba(188, 135, 67, 0.022),
  0 0 0 105px rgba(44, 98, 87, 0.017);
pointer-events: none;
}

.jmc-more-courses__container {
position: relative;
z-index: 2;
width: min(1220px, 100%);
margin: 0 auto;
}

/* Section Header */

.jmc-more-courses__header {
max-width: 800px;
margin: 0 auto 52px;
text-align: center;
}

.jmc-more-courses__eyebrow {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 12px;
margin-bottom: 17px;
color: #9b672d;
font-size: 13px;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
}

.jmc-more-courses__eyebrow::before,
.jmc-more-courses__eyebrow::after {
content: "";
width: 42px;
height: 1px;
background: #bd8848;
}

.jmc-more-courses__title {
margin: 0;
color: #202724;
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(39px, 4.8vw, 62px);
font-weight: 700;
line-height: 1.08;
letter-spacing: -0.035em;
}

.jmc-more-courses__title span {
color: #2c6257;
}

.jmc-more-courses__intro {
max-width: 700px;
margin: 20px auto 0;
color: #666e6a;
font-size: 17px;
line-height: 1.75;
}

/* Course Grid */

.jmc-more-courses__grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 24px;
align-items: stretch;
}

/* Course Card */

.jmc-more-course-card {
position: relative;
min-width: 0;
overflow: hidden;
display: flex;
min-height: 440px;
flex-direction: column;
border: 1px solid rgba(44, 98, 87, 0.12);
border-radius: 24px;
background: rgba(255, 255, 255, 0.94);
box-shadow:
  0 20px 44px rgba(47, 56, 52, 0.09),
  0 7px 17px rgba(47, 56, 52, 0.05);
transition:
  transform 0.35s ease,
  box-shadow 0.35s ease,
  border-color 0.35s ease;
}

.jmc-more-course-card:hover {
transform: translateY(-8px);
border-color: rgba(188, 135, 67, 0.35);
box-shadow:
  0 30px 62px rgba(47, 56, 52, 0.14),
  0 12px 24px rgba(47, 56, 52, 0.08);
}

/* Thumbnail */

.jmc-more-course-card__media {
position: relative;
width: 100%;
aspect-ratio: 16 / 9;
overflow: hidden;
background: #e9e4da;
}

.jmc-more-course-card__media::after {
content: "";
position: absolute;
inset: 0;
background:
  linear-gradient(
    180deg,
    transparent 48%,
    rgba(23, 35, 31, 0.28) 100%
  );
pointer-events: none;
}

.jmc-more-course-card__image {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
transition: transform 0.45s ease;
}

.jmc-more-course-card:hover .jmc-more-course-card__image {
transform: scale(1.045);
}

.jmc-more-course-card__type {
position: absolute;
z-index: 2;
top: 15px;
left: 15px;
display: inline-flex;
min-height: 30px;
align-items: center;
padding: 6px 11px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.9);
color: #2c6257;
font-size: 11px;
font-weight: 800;
letter-spacing: 0.07em;
text-transform: uppercase;
box-shadow: 0 7px 17px rgba(32, 39, 36, 0.12);
backdrop-filter: blur(6px);
}

/* Card Content */

.jmc-more-course-card__content {
display: flex;
flex: 1;
flex-direction: column;
padding: 25px 23px 22px;
}

.jmc-more-course-card__category {
display: block;
margin-bottom: 10px;
color: #9c692f;
font-size: 11px;
font-weight: 800;
letter-spacing: 0.1em;
text-transform: uppercase;
}

.jmc-more-course-card__title {
margin: 0 0 13px;
color: #22302a;
font-family: Georgia, "Times New Roman", serif;
font-size: 24px;
line-height: 1.25;
letter-spacing: -0.015em;
}

.jmc-more-course-card__description {
margin: 0;
color: #626b67;
font-size: 14px;
line-height: 1.7;
}

.jmc-more-course-card__meta {
display: flex;
align-items: center;
gap: 8px;
margin-top: 18px;
color: #53615b;
font-size: 13px;
font-weight: 700;
}

.jmc-more-course-card__meta .dashicons {
width: auto;
height: auto;
color: #2c6257;
font-size: 18px;
line-height: 1;
}

/* Card Button */

.jmc-more-course-card__button {
display: inline-flex;
width: 100%;
min-height: 46px;
align-items: center;
justify-content: space-between;
gap: 12px;
margin-top: auto;
padding: 12px 16px;
border-radius: 13px;
background: #2c6257;
color: #ffffff;
text-decoration: none;
font-size: 14px;
font-weight: 800;
transition:
  background-color 0.25s ease,
  transform 0.25s ease;
}

.jmc-more-course-card:nth-child(even) .jmc-more-course-card__button {
background: #a86d2e;
}

.jmc-more-course-card__button:hover {
background: #214e46;
color: #ffffff;
transform: translateY(-2px);
}

.jmc-more-course-card:nth-child(even)
.jmc-more-course-card__button:hover {
background: #875522;
}

.jmc-more-course-card__button .dashicons {
width: auto;
height: auto;
font-size: 19px;
line-height: 1;
}

/* Bottom CTA */

.jmc-more-courses__footer {
display: flex;
max-width: 900px;
align-items: center;
justify-content: space-between;
gap: 26px;
margin: 40px auto 0;
padding: 24px 27px;
border: 1px solid rgba(44, 98, 87, 0.13);
border-radius: 18px;
background: rgba(255, 255, 255, 0.84);
box-shadow: 0 14px 32px rgba(47, 56, 52, 0.07);
}

.jmc-more-courses__footer-content h3 {
margin: 0 0 6px;
color: #29332f;
font-family: Georgia, "Times New Roman", serif;
font-size: 24px;
line-height: 1.25;
}

.jmc-more-courses__footer-content p {
margin: 0;
color: #666e6a;
font-size: 14px;
line-height: 1.6;
}

.jmc-more-courses__footer-button {
flex: 0 0 auto;
display: inline-flex;
min-height: 46px;
align-items: center;
justify-content: center;
gap: 9px;
padding: 12px 21px;
border-radius: 999px;
background: #2c6257;
color: #ffffff;
text-decoration: none;
font-size: 14px;
font-weight: 800;
transition:
  background-color 0.25s ease,
  transform 0.25s ease;
}

.jmc-more-courses__footer-button:hover {
background: #214e46;
color: #ffffff;
transform: translateY(-2px);
}

.jmc-more-courses__footer-button .dashicons {
width: auto;
height: auto;
font-size: 19px;
line-height: 1;
}

/* Tablet: 2 × 2 */

@media screen and (max-width: 980px) {
.jmc-more-courses {
  padding: 78px 22px;
}

.jmc-more-courses__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 850px;
  margin: 0 auto;
}

.jmc-more-course-card {
  min-height: 430px;
}
}

/* Mobile: 4 Cards in One Column */

@media screen and (max-width: 620px) {
.jmc-more-courses {
  padding: 62px 14px;
}

.jmc-more-courses__header {
  margin-bottom: 38px;
}

.jmc-more-courses__eyebrow {
  gap: 9px;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.jmc-more-courses__eyebrow::before,
.jmc-more-courses__eyebrow::after {
  width: 24px;
}

.jmc-more-courses__title {
  font-size: 38px;
}

.jmc-more-courses__intro {
  font-size: 15px;
  line-height: 1.7;
}

.jmc-more-courses__grid {
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 420px;
}

.jmc-more-course-card {
  width: calc(100% - 24px);
  min-height: auto;
  justify-self: center;
  border-radius: 20px;
}

.jmc-more-course-card__content {
  padding: 22px 20px 20px;
}

.jmc-more-course-card__title {
  font-size: 22px;
}

.jmc-more-course-card__description {
  font-size: 14px;
  line-height: 1.65;
}

.jmc-more-course-card__button {
  margin-top: 22px;
}

.jmc-more-courses__footer {
  width: calc(100% - 24px);
  max-width: 396px;
  flex-direction: column;
  align-items: stretch;
  margin-top: 30px;
  padding: 21px 19px;
  text-align: center;
}

.jmc-more-courses__footer-button {
  width: 100%;
}
}

@media (prefers-reduced-motion: reduce) {
.jmc-more-course-card,
.jmc-more-course-card__image,
.jmc-more-course-card__button,
.jmc-more-courses__footer-button {
  transition: none;
}

.jmc-more-course-card:hover,
.jmc-more-course-card__button:hover,
.jmc-more-courses__footer-button:hover {
  transform: none;
}
}\n}.elementor .e-9436c73-1a1acfc{padding:0px;flex-direction:column;/* =========================================
 JMC FINAL CONVERSION SECTION
 Plum + Burgundy + Muted Teal Theme
========================================= */

.jmc-final-conversion,
.jmc-final-conversion * {
box-sizing: border-box;
}

.jmc-final-conversion {
position: relative;
width: 100%;
overflow: hidden;
padding: 96px 22px;
font-family: "Inter", Arial, sans-serif;
color: #ffffff;
background:
  radial-gradient(
    circle at 12% 18%,
    rgba(255, 255, 255, 0.09),
    transparent 28%
  ),
  radial-gradient(
    circle at 88% 82%,
    rgba(92, 173, 158, 0.18),
    transparent 30%
  ),
  linear-gradient(
    135deg,
    #2d1838 0%,
    #54263f 45%,
    #24564f 100%
  );
}

.jmc-final-conversion::before {
content: "";
position: absolute;
top: -180px;
right: -120px;
width: 430px;
height: 430px;
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 50%;
box-shadow:
  0 0 0 60px rgba(255, 255, 255, 0.025),
  0 0 0 120px rgba(255, 255, 255, 0.018);
pointer-events: none;
}

.jmc-final-conversion::after {
content: "";
position: absolute;
bottom: -210px;
left: -160px;
width: 430px;
height: 430px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.045);
pointer-events: none;
}

.jmc-final-conversion__container {
position: relative;
z-index: 2;
width: min(1040px, 100%);
margin: 0 auto;
text-align: center;
}

/* Eyebrow */

.jmc-final-conversion__eyebrow {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 12px;
margin-bottom: 22px;
color: #d9cfe1;
font-size: 13px;
font-weight: 800;
letter-spacing: 0.17em;
text-transform: uppercase;
}

.jmc-final-conversion__eyebrow::before,
.jmc-final-conversion__eyebrow::after {
content: "";
width: 44px;
height: 1px;
background: rgba(217, 207, 225, 0.7);
}

/* Heading */

.jmc-final-conversion__title {
max-width: 980px;
margin: 0 auto;
color: #ffffff;
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(45px, 6vw, 76px);
font-weight: 700;
line-height: 1.05;
letter-spacing: -0.04em;
}

.jmc-final-conversion__title span {
color: #9dd6ca;
}

/* Supporting Text */

.jmc-final-conversion__text {
max-width: 760px;
margin: 25px auto 0;
color: rgba(255, 255, 255, 0.82);
font-size: 18px;
line-height: 1.75;
}

/* CTA Button */

.jmc-final-conversion__button {
display: inline-flex;
min-height: 56px;
align-items: center;
justify-content: center;
gap: 11px;
margin-top: 34px;
padding: 15px 31px;
border: 1px solid rgba(255, 255, 255, 0.45);
border-radius: 999px;
background: #f7f2f4;
color: #3d2039;
text-decoration: none;
font-size: 15px;
font-weight: 800;
box-shadow:
  0 18px 38px rgba(20, 10, 24, 0.3),
  inset 0 1px 0 rgba(255, 255, 255, 0.85);
transition:
  transform 0.3s ease,
  background-color 0.3s ease,
  color 0.3s ease,
  box-shadow 0.3s ease;
}

.jmc-final-conversion__button:hover,
.jmc-final-conversion__button:focus-visible {
background: #9dd6ca;
color: #203b36;
transform: translateY(-3px);
box-shadow:
  0 24px 46px rgba(20, 10, 24, 0.36),
  inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.jmc-final-conversion__button .dashicons {
width: auto;
height: auto;
font-size: 20px;
line-height: 1;
}

/* Tablet */

@media screen and (max-width: 900px) {
.jmc-final-conversion {
  padding: 82px 22px;
}

.jmc-final-conversion__title {
  max-width: 780px;
}
}

/* Mobile */

@media screen and (max-width: 767px) {
.jmc-final-conversion {
  padding: 68px 18px;
}

.jmc-final-conversion__eyebrow {
  gap: 9px;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.jmc-final-conversion__eyebrow::before,
.jmc-final-conversion__eyebrow::after {
  width: 24px;
}

.jmc-final-conversion__title {
  font-size: 42px;
  line-height: 1.08;
}

.jmc-final-conversion__text {
  max-width: 520px;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.7;
}

.jmc-final-conversion__button {
  width: min(100%, 320px);
  min-height: 51px;
  margin-top: 28px;
  padding: 14px 23px;
}
}

@media screen and (max-width: 390px) {
.jmc-final-conversion {
  padding: 60px 15px;
}

.jmc-final-conversion__title {
  font-size: 37px;
}

.jmc-final-conversion__text {
  font-size: 15px;
}
}

@media (prefers-reduced-motion: reduce) {
.jmc-final-conversion__button {
  transition: none;
}

.jmc-final-conversion__button:hover {
  transform: none;
}
}\n}