:root {
  --color-bg-body: #fcf8f2;
  --color-bg-header: #fbf7ea;
  --color-text-logo: #3b2a13;
  --color-text-nav: #6b4b1a;
  --color-text-nav-active: #b5852b;
  --color-cta-primary: #905a05;
  --color-cta-bg: #f5ebd2;
  --color-white: #fff !important;
  --color-lite: #8e806a;
  --color-border: #cec3ac;
  --color-lite-black: #403729;
  --bold-5: 500;
}

@font-face {
  font-family: "figtree-regular";
  src: url(../fonts/Figtree-Regular.ttf);
}

@font-face {
  font-family: "Denton-Test-Medium";
  src: url(../fonts/Denton-Test-Medium.otf);
}

@font-face {
  font-family: "Denton-Test-Bold";
  src: url(../fonts/Denton-Test-Bold.otf);
}

@font-face {
  font-family: "figtree-Medium";
  src: url(../fonts/Figtree-Medium.ttf);
}

@font-face {
  font-family: "figtree-extra-bold";
  src: url(../fonts/Figtree-ExtraBold.ttf);
}

@font-face {
  font-family: "Figtree-SemiBold";
  src: url(../fonts/Figtree-SemiBold.ttf);
}

body {
  background-color: var(--color-bg-body);
  margin: 0 !important;
}

.custom-header {
  background: var(--color-bg-header);
  border-bottom: 1px solid #e1d8c6;
  position: sticky;
  top: 0;
  z-index: 1002;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-text-logo);
}

/* --- Menu Links --- */
.nav-link {
  color: #8e806a !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  font-size: 16px;
  font-family: "figtree-medium";
  position: relative;
  padding-bottom: 12px;
}

.nav-link.active {
  color: var(--color-cta-primary) !important;
}

.nav-link.active::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--color-cta-primary);
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.header-cta a {
  border: 1.5px solid var(--color-cta-primary);
  border-radius: 42px;
  color: var(--color-cta-primary);
  background-color: var(--color-cta-bg);
  text-decoration: none;
  display: inline-block;
  font-family: "figtree-semiBold";
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.header-cta a:hover {
  background-color: var(--color-cta-primary);
  color: var(--color-white);
}

.header-cta .btn-enroll-now {
  background-color: var(--color-cta-primary);
  color: var(--color-white);
}

@media (max-width: 991.98px) {
  .navbar-nav {
    align-items: center;
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-link {
    padding-bottom: 0.5rem;
    /* Reset padding */
  }

  .header-cta {
    margin-top: 15px;
    margin-bottom: 10px;
    text-align: center;
  }
}

.hero-section {
  background-image: url(../images/background-texture.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  background-color: #f9f2e9;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Lottie Background Layer - Full screen behind everything */
.hero-lottie-bg {
  position: absolute;
  top: 0;
  left: 0;
  /* width: 100%; */
  /* height: 100%; */
  z-index: 0;
  pointer-events: none;
}

.hero-lottie-bg lottie-player {
  width: 100%;
  height: 100%;
}

/* Content Wrapper - ensures content is above background */
.hero-content-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-left h1 {
  font-size: 60px;
  margin-bottom: 20px;
  font-weight: var(--bold-5);
  background: linear-gradient(to right, #3f2f17, #ad7723);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Denton-Test-Medium";
  background-clip: text;
  color: transparent;
  max-width: 500px;
}

.hero-left .sub-heading {
  font-size: 20px;
  margin-bottom: 45px;
  font-weight: var(--bold-5);
  background: linear-gradient(to right, #3f2f17, #ad7723);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.custom-padding {
  /* padding: 60px 60px; */
}

.hero-left .left-cta {
  width: fit-content;
  background: linear-gradient(
    60deg,
    rgba(144, 90, 5, 1) 70%,
    rgba(255, 200, 114, 0.95) 100%
  );
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: var(--bold-5);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-left .left-cta:hover {
  transform: translateY(-2px);
  box-shadow: rgba(144, 90, 5, 0.3) 0px 8px 20px;
}

.hero-left .left-cta .arrow {
  position: absolute;
  right: -100px;
  top: -46px;
  height: 100px;
  width: 100px;
}

.hero-left .left-cta a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: var(--bold-5);
}

.hero-left .description {
  color: var(--color-lite);
  margin-top: 20px;
}

.hero-left .description span {
  color: var(--color-cta-primary);
  font-weight: var(--bold-5);
}

.hero-left .trust {
  display: flex;
  border: 1px solid var(--color-border);
  border-right: none;
  border-left: none;
  max-width: 90%;
  text-align: center;
}

.hero-left .trust h2 {
  color: var(--color-cta-primary);
  font-family: "Denton-Test-Bold";
  font-size: 42px;
}

.hero-left .trust span {
  color: var(--color-lite);
  max-width: 200px;
}

.hero-left .trust .left-side {
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

.hero-left .trust .right-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

.hero-right {
  height: 100%;
  position: relative;
  z-index: 2;
}

.hero-right lottie-player {
  max-width: 100%;
  height: auto;
}

/* --- About Section --- */
.about-section {
  padding: 80px 0;
  background-color: #f9f2e9;
}

.about-image-frame {
  background-color: var(--color-cta-bg);
  border-radius: 300px;
  max-width: 400px;
}

.about-image-frame img {
  width: 100%;
  display: block;
}

.sparkle-icon {
  width: 30px;
  height: 30px;
}

.about-content p {
  color: var(--color-lite-black);
  font-size: 1rem;
  font-family: "figtree-regular";
  line-height: 1.7;
  max-width: 550px;
}

.about-content .read-more {
  color: var(--color-text-nav-active);
  text-decoration: underline;
  font-weight: 600;
}

.about-content .read-more:hover {
  color: var(--color-cta-primary);
}

/* .about-short p {
  margin: 0;
} */

.about-short .read-more-toggle {
  display: inline;
  margin-left: 3px;
  color: var(--color-text-nav-active);
  text-decoration: underline;
  font-weight: 600;
}

.about-full .read-more-toggle {
  display: inline-block;
  color: var(--color-text-nav-active);
  text-decoration: underline;
  font-weight: 600;
}

.btn-connect {
  width: fit-content;
  background: linear-gradient(
    60deg,
    rgba(144, 90, 5, 1) 70%,
    rgba(255, 200, 114, 0.95) 100%
  );
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: var(--bold-5);
  text-decoration: none;
  color: var(--color-white) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-connect:hover {
  transform: translateY(-4px);
  box-shadow: rgba(144, 90, 5, 0.3) 0px 8px 20px;
}

.about-headline {
  position: relative;
  width: fit-content;
}

.about-headline h2 {
  font-weight: var(--bold-5);
  background: linear-gradient(to right, #3f2f17, #ad7723);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-clip: text;
  font-family: "Denton-Test-Medium";
  font-size: 52px;
  color: transparent;
}

.about-headline .arrow {
  position: absolute;
  right: -70px;
  top: -52px;
  height: 100px;
  width: 100px;
}

@media (max-width: 991.98px) {
  .about-image-frame {
    margin-bottom: 40px;
  }

  .hero-left h1 {
    font-size: 52px;
  }

  .about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-headline h2 {
    font-size: 42px;
  }

  .about-headline {
    justify-content: center;
  }

  .about-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hero-content-wrapper {
    min-height: 140vh;
  }
}

@media (max-width: 576px) {
  .hero-left .trust {
    border: none;
    justify-content: center;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-left h1 {
    font-size: 42px;
    text-align: center;
  }

  .hero-left .description {
    text-align: center;
    margin-top: 10px;
  }

  .sub-heading {
    text-align: center;
  }

  .about-headline .arrow {
    right: -22px;
    top: -65px;
  }

  .about-headline h2 {
    font-size: 32px;
  }

  .hero-left .trust .left-side {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 20px 0;
    max-width: 320px;
  }

  .hero-left .trust .right-side {
    padding: 20px 0;
    max-width: 320px;
  }
}

/* Why Consult Me Section */
.why-consult-section {
  background-color: var(--color-white);
  padding: 80px 0;
}

.section-header {
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
}

.sparkle-icon-header {
  position: absolute;
  height: 100px;
  width: 100px;
  top: -60px;
  left: -73px;
}

.section-title {
  font-size: 52px;
  margin-bottom: 0px;
  font-weight: var(--bold-5);
  background: linear-gradient(to right, #3f2f17, #ad7723);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  position: relative;
  font-family: "Denton-Test-Medium";
}

.consult-card {
  position: relative;
  background: linear-gradient(to right, #efe6d6, #f8f2e9);
  border-radius: 20px;
  /* This is the radius */
  padding: 35px 30px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  min-height: 240px;
  align-items: center;
}

/* Gradient border with fade on right side */
.consult-card:hover::before {
  content: "";
  position: absolute;
  border-radius: none;
  inset: 0;
  border-radius: 20px;
  /* <-- ADD THIS LINE */
  padding: 2px;
  /* border thickness */
  background: linear-gradient(
    to right,
    rgba(144, 90, 5, 1) 0%,
    /* solid start */ rgba(144, 90, 5, 1) 70%,
    /* solid till 70% */ rgba(144, 90, 5, 0) 100% /* fade on right side */
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.consult-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(107, 75, 26, 0.1);
}

.card-icon img {
  width: 100px;
  height: 100px;
}

.card-content {
  flex: 1;
}

.card-title {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  color: var(--color-cta-primary);
  margin-bottom: 12px;
  line-height: 1.3;
  font-family: "Denton-Test-Medium";
}

.card-text {
  color: var(--color-lite-black);
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 1%;
  font-weight: var(--bold-5);
  margin: 0;
  font-family: "figtree-medium";
}

.btn-session {
  background: linear-gradient(
    60deg,
    rgba(144, 90, 5, 1) 70%,
    rgba(255, 200, 114, 0.95) 100%
  );
  color: var(--color-white);
  padding: 14px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-session:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(144, 90, 5, 0.3);
}

/* =========================
   Responsive Styles
========================= */

/* ---------- Tablet View ---------- */
@media (max-width: 991.98px) {
  .why-consult-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 42px;
    line-height: 1.3;
    text-align: center;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .consult-card {
    padding: 25px 22px;
    gap: 20px;
    min-height: 220px;
    border-radius: 18px;
  }

  .card-icon img {
    width: 80px;
    height: 80px;
  }

  .card-title {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .card-text {
    font-size: 15px;
    line-height: 1.5;
  }

  .btn-session {
    padding: 12px 32px;
    font-size: 15px;
  }
}

/* ---------- Mobile View ---------- */
@media (max-width: 575.98px) {
  .why-consult-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .sparkle-icon-header {
    position: absolute;
    height: 90px;
    width: 90px;
    top: -60px;
    left: -50px;
  }

  .consult-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
    gap: 15px;
    min-height: auto;
    border-radius: 16px;
  }

  .card-icon img {
    width: 70px;
    height: 70px;
  }

  .card-content {
    text-align: center;
  }

  .card-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .card-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .btn-session {
    display: inline-block;
    padding: 12px 28px;
    font-size: 14px;
    border-radius: 25px;
  }

  .row.g-4 {
    row-gap: 20px;
  }
}

/* Your Astro Plan Section */
.astro-plan-section {
  background: url(../images/11468965.png);
  padding: 80px 0;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  background-color: white;
}

.plan-section-title {
  font-size: 52px;
  font-weight: 500;
  background: linear-gradient(to right, #3f2f17, #ad7723);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  font-family: "Denton-Test-Medium";
}

.plan-section-subtitle {
  color: var(--color-lite-black);
  font-size: 16px;
  margin: 0 auto;
  font-family: "figtree-regular";
}

.plan-card {
  background-color: white;
  background-image: url(../images/flat\750x\075\f-pad\750x1000\f8f8f8-Photoroom\ 1.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  border: 2px solid var(--color-border);
  border-radius: 20px;
  padding: 40px 35px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(107, 75, 26, 0.15);
}

.plan-header {
  /* margin-bottom: 25px; */
}

.plan-name {
  font-family: "figtree-extra-bold";
  font-size: 24px;
  color: var(--color-lite-black);
  margin-bottom: 10px;
}

.plan-highlight {
  color: var(--color-cta-primary);
}

.plan-description {
  color: var(--color-lite-black);
  font-size: 16px;
  font-family: "figtree-medium";
  margin: 0;
}

.plan-pricing {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 30px;
}

.price-item {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.currency {
  font-size: 20px;
  color: var(--color-lite-black);
  font-weight: 600;
}

.amount {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-cta-primary);
}

.currency-label {
  font-size: 16px;
  color: #000000;
  font-weight: 600;
  font-family: "Figtree-SemiBold";
}

.price-divider {
  width: 1px;
  height: 40px;
  background-color: var(--color-border);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--color-lite-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  font-family: "figtree-regular";
}

.feature-item span {
  flex: 1;
}

.plan-cta {
  margin-top: auto;
}

.btn-plan {
  background: linear-gradient(
    60deg,
    rgba(144, 90, 5, 1) 70%,
    rgba(255, 200, 114, 0.95) 100%
  );
  color: var(--color-white);
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: block;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 15px;
}

.btn-plan:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(144, 90, 5, 0.3);
  color: var(--color-white);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .plan-section-title {
    font-size: 42px;
  }

  .plan-section-subtitle {
    font-size: 15px;
  }

  .astro-plan-section {
    min-height: 194vh;
  }

  .plan-card {
    padding: 30px 25px;
  }

  .plan-name {
    font-size: 24px;
  }

  .amount {
    font-size: 32px;
  }
}

@media (max-width: 767.98px) {
  .astro-plan-section {
    padding: 60px 0;
    min-height: 190vh;
  }

  .plan-section-title {
    font-size: 32px;
  }

  .plan-section-subtitle {
    font-size: 14px;
  }

  .plan-pricing {
    flex-direction: column;
    gap: 15px;
  }

  .price-divider {
    width: 40px;
    height: 1px;
  }

  .feature-item {
    font-size: 13px;
  }

  .btn-plan {
    font-size: 14px;
    padding: 12px 25px;
  }
}

@media (max-width: 575.98px) {
  .plan-card {
    padding: 25px 20px;
  }

  .plan-name {
    font-size: 20px;
  }

  .amount {
    font-size: 28px;
  }
}

/* =========================
   Karmic Compass Courses Section
   ========================= */

.courses-section {
  background-color: #fcf8f2;
  padding: 80px 0 !important;
}

/* -------------------------
   Header
------------------------- */
.courses-header {
  flex-wrap: wrap;
  gap: 20px;
}

.courses-title {
  font-size: 52px;
  background: linear-gradient(to right, #3f2f17, #ad7723);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  font-family: "Denton-Test-Medium";
  position: relative;
  width: fit-content;
}

.courses-title .star-icon {
  position: absolute;
  height: 100px;
  width: 100px;
  left: -70px;
  top: -62px;
}

.courses-subtitle {
  color: #8e806a;
  font-size: 18px;
  margin: 0;
  font-family: "figtree-regular";
}

.btn-browse {
  border: 1px solid #ad7723;
  border-radius: 30px;
  color: #3f2f17;
  background-color: transparent;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: "figtree-semiBold";
}

.btn-browse:hover {
  background-color: #ad7723;
  color: #fff;
}

/* -------------------------
   Slider Wrapper
------------------------- */
.courses-slider-wrapper {
  position: relative;
  padding-bottom: 60px !important;
}

.courses-slider {
  overflow: visible !important;
}

/* -------------------------
   Swiper Base
------------------------- */
.swiper {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  width: 100% !important;
}

/* -------------------------
   Course Card
------------------------- */
.course-card {
  background: linear-gradient(to right, #efe6d6, #ffffff);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(144, 90, 5, 0.1);
  border: 1px solid #e4d7bd;
  display: flex;
  flex-direction: row;
}

/* -------------------------
   Image Section
------------------------- */
.course-image {
  position: relative;
  flex: 1;
  min-width: 300px;
  max-height: 470px;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.course-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
}

.course-info h5 {
  font-family: "figtree-semiBold";
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.course-info p {
  font-family: "figtree-regular";
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

/* -------------------------
   Content Section
------------------------- */
.course-content {
  flex: 1;
  padding: 40px 35px;
  background: #fff;
  border-radius: 0 20px 20px 0;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.course-name {
  font-family: "Denton-Test-Medium";
  font-size: 36px;
  color: #7d510f;
  margin-bottom: 25px;
}

.course-features-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.course-feature-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(to right, #efe6d6, #ffffff);
  padding: 12px 20px;
  border-radius: 10px;
  color: var(--color-lite-black);
  font-family: "figtree-medium";
  font-size: 15px;
  font-weight: 500;
  width: fit-content;
}

.course-feature-badge img {
  width: 20px;
  height: 20px;
}

/* -------------------------
   Pricing Section
------------------------- */
.course-pricing-section {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}

.course-pricing-label {
  color: var(--color-lite-black);
  font-size: 18px;
  font-family: "figtree-medium";
  font-weight: 600;
  margin-bottom: 10px;
}

.course-pricing-values {
  flex: 1;
}

.course-price {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}

.price-currency {
  font-size: 18px;
  color: #3f2f17;
  font-weight: 600;
}

.price-amount {
  font-size: 36px;
  font-weight: 700;
  color: #7e520d;
  font-family: "figtree-semiBold";
}

.price-label {
  font-size: 12px;
  color: #8e806a;
  font-weight: 600;
}

.price-divider-vertical {
  width: 1px;
  height: 30px;
  background-color: #cec3ac;
}

/* -------------------------
   Enroll Button
------------------------- */
.btn-enroll {
  background: linear-gradient(
    60deg,
    rgba(144, 90, 5, 1) 70%,
    rgba(255, 200, 114, 0.95) 100%
  );
  color: #fff !important;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-family: "figtree-semiBold";
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.btn-enroll:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(144, 90, 5, 0.3);
  color: #fff !important;
}

/* -------------------------
   Slider Wrapper
------------------------- */
.courses-slider-wrapper {
  position: relative;
  padding-bottom: 60px !important;
  display: flex;
  align-items: center;
  gap: 20px;
}

.courses-slider {
  overflow: hidden !important;
  flex: 1;
}

/* -------------------------
   Custom External Navigation Arrows
------------------------- */
.course-arrow-prev,
.course-arrow-next {
  background-color: transparent !important;
  border: none;
  height: 50px !important;
  width: 50px !important;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10 !important;
  flex-shrink: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

.course-arrow-prev {
  left: -22px;
}

.course-arrow-next {
  right: -22px;
}

.course-arrow-prev img,
.course-arrow-next img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  display: block;
}

.course-arrow-prev:hover,
.course-arrow-next:hover {
  transform: scale(1.1);
}

/* Hide default Swiper arrows */
.swiper-button-prev,
.swiper-button-next {
  display: none !important;
}

/* -------------------------
   Pagination Dots
------------------------- */
.courses-slider-wrapper .swiper-pagination {
  position: absolute !important;
  bottom: 15px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: auto !important;
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
}

.swiper-pagination-bullet {
  background: #d1b88f !important;
  opacity: 0.6 !important;
  width: 10px !important;
  height: 10px !important;
  margin: 0 !important;
}

.swiper-pagination-bullet-active {
  background: #905a05 !important;
  opacity: 1 !important;
}

/* -------------------------
   Responsive Styles
------------------------- */
@media (max-width: 991.98px) {
  .courses-title {
    font-size: 42px;
  }

  .course-card {
    flex-direction: column;
  }

  .course-image {
    border-radius: 20px 20px 0 0;
    min-width: 100%;
    height: 300px;
  }

  .course-content {
    padding: 25px 20px;
    border-radius: 0 0 20px 20px;
  }

  .course-name {
    font-size: 28px;
  }

  .course-pricing-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-enroll {
    width: 100%;
    text-align: center;
  }

  .courses-slider-wrapper {
    gap: 15px;
  }

  .course-arrow-prev,
  .course-arrow-next {
    height: 45px !important;
    width: 45px !important;
  }
}

@media (max-width: 767.98px) {
  .courses-section {
    padding: 60px 0 !important;
  }

  .courses-header {
    flex-direction: column;
    align-items: flex-start !important;
    text-align: left;
  }

  .courses-title .star-icon {
    left: -50px;
    height: 100px;
    width: 100px;
  }

  .btn-browse {
    margin-top: 10px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    height: 40px !important;
    width: 40px !important;
  }

  .swiper-button-prev {
    left: 5px !important;
  }

  .swiper-button-next {
    right: 5px !important;
  }

  .courses-slider-wrapper {
    gap: 10px;
  }

  .course-arrow-prev,
  .course-arrow-next {
    height: 40px !important;
    width: 40px !important;
  }
}

@media (max-width: 575.98px) {
  .courses-title {
    font-size: 32px;
  }

  .courses-title .arrow {
    left: -38px;
    top: -75px;
  }

  .courses-title .star-icon {
    left: -8px;
    height: 70px;
    width: 70px;
    top: -60px;
  }

  .course-name {
    font-size: 22px;
  }

  .course-image {
    height: 250px;
  }

  .course-feature-badge {
    font-size: 14px;
    padding: 10px 15px;
  }

  .price-amount {
    font-size: 28px;
  }

  .courses-slider-wrapper {
    gap: 8px;
  }

  .course-arrow-prev {
    left: 0;
  }

  .course-arrow-next {
    right: 0;
  }

  .course-arrow-prev,
  .course-arrow-next {
    height: 35px !important;
    width: 35px !important;
    bottom: 0;
  }

  .courses-slider-wrapper {
    padding-bottom: 50px !important;
  }

  .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
  }
}

/* Testimonials Section */
.testimonials-section {
  background-color: #533e22;
  padding: 80px 0;
  position: relative;
}

.testimonials-title {
  font-family: "denton-test-medium";
  font-size: 52px;
  color: var(--color-white);
  margin-bottom: 15px;
}

.testimonials-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-family: "figtree-regular";
  margin: 0 auto;
}

.testimonials-slider-container {
  position: relative;
  margin-top: 50px;
}

.testimonial-slide-item {
  padding: 0 15px;
}

.testimonial-card {
  background-color: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 auto;
  max-width: 600px;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
  padding: 15px;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.testimonial-card:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.testimonial-info {
  padding: 20px 25px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-family: "figtree-semiBold";
  font-size: 22px;
  font-weight: 600;
  color: var(--color-lite-black);
  margin: 0 0 5px 0;
}

.testimonial-designation {
  font-size: 18px;
  color: var(--color-lite);
  font-family: "figtree-regular";
  margin: 0;
}

/* Controls Container */
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 50px 0px 0;
}

/* Arrow Buttons */
.testimonial-arrow-btn {
  width: 50px;
  height: 50px;
  display: flex;
  background: transparent;
  border: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
  flex-shrink: 0;
}

.testimonial-arrow-btn:hover {
  transform: scale(1.05);
}

/* Book Session Button */
.btn-book-session {
  background: linear-gradient(
    60deg,
    rgba(144, 90, 5, 1) 70%,
    rgba(255, 200, 114, 0.95) 100%
  );
  color: var(--color-white);
  padding: 14px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.testimonials-section .slick-initialized .slick-slide {
  border-radius: 24px;
  padding: 0;
  background-color: transparent;
  border: none;
}

.btn-book-session:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(144, 90, 5, 0.4);
  color: var(--color-white);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
  .testimonial-card {
    max-width: 450px;
  }
}

@media (max-width: 991.98px) {
  .testimonials-title {
    font-size: 42px;
  }

  .testimonials-subtitle {
    font-size: 15px;
  }

  .video-thumbnail {
    height: 280px;
  }

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

@media (max-width: 767.98px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-subtitle {
    font-size: 14px;
    padding: 0 20px;
  }

  .video-thumbnail {
    height: 250px;
  }

  .testimonial-name {
    font-size: 16px;
  }

  .testimonial-designation {
    font-size: 12px;
  }

  .play-button svg {
    width: 56px;
    height: 56px;
  }

  .testimonials-controls {
    gap: 20px;
    margin-top: 40px;
  }

  .testimonial-arrow-btn {
    width: 45px;
    height: 45px;
  }

  .testimonial-arrow-btn svg {
    width: 20px;
    height: 20px;
  }

  .btn-book-session {
    padding: 12px 30px;
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .testimonial-slide-item {
    padding: 0 10px;
  }

  .video-thumbnail {
    height: 220px;
  }

  .testimonials-title {
    font-size: 32px;
  }

  .testimonial-info {
    padding: 15px 20px;
  }

  .slick-initialized .slick-slide {
    border: none;
  }

  .testimonial-avatar {
    width: 45px;
    height: 45px;
  }

  .testimonials-controls {
    flex-direction: column;
    gap: 25px;
  }

  .testimonial-arrow-btn {
    order: 2;
  }

  .btn-book-session {
    order: 1;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .testimonials-controls {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .testimonial-prev-btn {
    order: 1;
  }

  .btn-book-session {
    order: 2;
    width: auto;
  }

  .testimonial-next-btn {
    order: 3;
  }
}

/* Contact Section */
.contact-section {
  background-color: #fcf8f2;
  padding: 80px 0 100px;
  position: relative;
}

.contact-info-wrapper {
  padding-right: 30px;
}

.contact-title {
  font-family: "Denton-Test-Medium";
  font-size: 52px;
  background: linear-gradient(to right, #3f2f17, #ad7723);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.3;
}

.contact-description {
  color: var(--color-lite-black);
  font-size: 18px;
  font-family: "figtree-regular";
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Contact Details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(to right, #f3ebdf, #fcf8f2);
  border-radius: 15px;
  padding: 20px;
  transition: all 0.3s ease;
}

.contact-detail-item:hover::before {
  content: "";
  position: absolute;
  border-radius: none;
  inset: 0;
  border-radius: 20px;
  /* <-- ADD THIS LINE */
  padding: 2px;
  /* border thickness */
  background: linear-gradient(
    to right,
    rgba(144, 90, 5, 1) 0%,
    /* solid start */ rgba(144, 90, 5, 1) 70%,
    /* solid till 70% */ rgba(144, 90, 5, 0) 100% /* fade on right side */
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.contact-detail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(107, 75, 26, 0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6b4b1a, #905a05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-text {
  flex: 1;
}

.contact-label {
  font-size: 16px;
  color: var(--color-lite-black);
  margin: 0 0 5px 0;
  font-weight: 500;
  font-family: "figtree-Medium";
}

.contact-value {
  font-size: 20px;
  color: var(--color-lite-black);
  margin: 0;
  font-weight: 600;
  font-family: "figtree-semiBold";
}

.contact-value a {
  color: inherit;
  text-decoration: none;
}

/* Contact Form */
.contact-form-wrapper {
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 0;
  padding: 10px 0;
}

.form-label {
  font-size: 15px;
  color: var(--color-lite-black);
  font-weight: 600;
  font-family: "figtree-semiBold";
  margin-bottom: 8px;
  display: block;
}

.form-control {
  width: 100%;
  padding: 12px 18px !important;
  border: none !important;
  border-radius: 10px !important;
  font-size: 15px;
  font-weight: var(--bold-5);
  color: var(--color-lite-black) !important;
  background-color: #f5f3f1;
  font-family: "figtree-medium";
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-cta-primary);
  box-shadow: 0 0 0 3px rgba(144, 90, 5, 0.1);
  background-color: var(--color-white);
}

.form-control::placeholder {
  color: var(--color-lite);
  opacity: 0.6;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-group p {
  margin: 0 !important;
}

.btn-submit-form {
  background: linear-gradient(
    60deg,
    rgba(144, 90, 5, 1) 70%,
    rgba(255, 200, 114, 0.95) 100%
  ) !important;
  color: var(--color-white) !important;
  padding: 14px 40px !important;
  border-radius: 30px !important;
  border: none !important;
  font-family: "figtree-medium";
  font-weight: 500;
  font-size: 18px;
  cursor: pointer !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.btn-submit-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(144, 90, 5, 0.3);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .contact-title {
    font-size: 42px;
  }

  .contact-info-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 767.98px) {
  .contact-section {
    padding: 60px 0 80px;
  }

  .contact-description {
    font-size: 15px;
  }

  .contact-detail-item {
    padding: 15px;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
  }

  .contact-icon svg {
    width: 20px;
    height: 20px;
  }

  .contact-value {
    font-size: 15px;
  }

  .contact-form-wrapper {
    padding: 25px 20px;
  }

  .form-control {
    padding: 10px 15px;
    font-size: 13px;
  }

  .btn-submit-form {
    width: 100%;
    padding: 12px 30px;
    font-size: 15px;
  }
}

@media (max-width: 575.98px) {
  .contact-title {
    font-size: 32px;
  }

  .contact-description {
    font-size: 14px;
  }

  .contact-details {
    gap: 15px;
  }

  .contact-detail-item {
    gap: 15px;
  }
}

/* Footer Section */
.footer-section {
  background-image: url(../images/background-texture-footer.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 350px;
  display: flex;
  align-items: end;
  padding-bottom: 50px;
}

.custom-border {
  border-top: 1px solid #cec3ac;
  border-bottom: 1px solid #cec3ac;
  padding: 30px 0;
}

/* Footer Logo */
.footer-logo-img {
  height: 50px;
  width: auto;
}

/* Footer Navigation */
.footer-nav {
  display: flex;
  justify-content: center;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-menu li a {
  color: var(--color-lite-black);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "figtree-medium";
  transition: color 0.3s ease;
}

.footer-menu li a:hover {
  color: var(--color-cta-primary);
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cta-primary);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  color: var(--color-white);
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 25px;
}

.footer-copyright {
  color: var(--color-lite-black);
  font-size: 16px;
  margin: 0;
  font-family: "figtree-medium";
  font-weight: 500;
}

.footer-links {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--color-lite-black);
  font-family: "figtree-medium";
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-cta-primary);
}

.footer-divider {
  color: var(--color-border);
  font-size: 14px;
}

/* ---------- Responsive Styles (replace your existing @media section with this) ---------- */

/* Tablet / small desktop */
@media (max-width: 991.98px) {
  .footer-logo {
    text-align: left;
    /* keep left on wider tablets but allow center on smaller */
  }

  .footer-logo-img {
    max-height: 60px;
  }

  .footer-nav {
    display: flex;
    justify-content: center;
  }

  .footer-menu {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .footer-social {
    display: flex;
    justify-content: flex-end;
  }

  .footer-section .custom-border > .row {
    align-items: center;
  }

  /* Footer bottom adjustments */
  .footer-bottom {
    padding-top: 20px;
  }

  .footer-links {
    justify-content: flex-end;
  }
}

/* Small tablets / large phones */
@media (max-width: 767.98px) {
  .footer-section {
    min-height: 550px;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-logo-img {
    max-height: 55px;
  }

  .footer-nav ul {
    padding-left: 0;
    margin-bottom: 0;
  }

  .footer-social {
    justify-content: center;
    margin-top: 6px;
  }

  .footer-bottom {
    margin-top: 24px;
    padding-top: 18px;
  }

  .footer-copyright {
    text-align: center;
    font-size: 13px;
  }

  .footer-links {
    justify-content: center;
    font-size: 13px;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .footer-logo-img {
    height: 40px;
    /* your original value retained where you specified it; keep it as mobile-friendly */
    max-height: 40px;
  }

  .footer-menu li a {
    font-size: 14px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }

  .social-icon svg {
    width: 18px;
    height: 18px;
  }

  /* Make rows stack nicely on very small screens */
  .custom-border .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom .row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}
/* ----------Course-Content Page Css-------------- */

/* Sidebar Styles */
.course-page-wrapper .sidebar {
  /* min-height: 100vh; */
  padding-left: 0;
  background-color: transparent;
}

.course-page-wrapper .sidebar-content {
  max-width: 100%;
}

.course-page-wrapper .mobile-course-title {
  background: linear-gradient(90deg, #ebc384 0%, #905a0500 100%);
  padding: 14px 20px;
  color: var(--color-cta-primary);
  font-family: "Denton-regular";
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 15px;
}

.course-page-wrapper .course-title {
  background: linear-gradient(90deg, #ebc384 0%, #905a0500 100%);
  padding: 14px 20px;
  width: 100%;
}

.course-page-wrapper .course-title h2 {
  color: var(--color-cta-primary);
  font-family: "Denton-regular";
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  padding-left: 10px;
}

.course-page-wrapper .list-container {
  padding: 0 20px 0 30px;
}
.course-page-wrapper .list-container .course-list {
  list-style: none;
  padding: 0;
}

.course-page-wrapper .course-item {
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #cec3ac;
  cursor: pointer;
  transition: background-color 0.3s ease, padding-left 0.3s ease;
}

.course-page-wrapper .course-item:hover {
  background-color: var(--color-bg-body);
}

.course-page-wrapper .check-icon {
  display: none;
  width: 24px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  transition: opacity 0.3s ease;
}

.course-page-wrapper .course-item.active .check-icon {
  display: inline-flex;
  opacity: 1;
}

.course-page-wrapper .item-text {
  flex: 1;
  color: var(--color-lite-black);
  font-size: 16px;
  font-family: "figtree-medium";
  font-weight: var(--bold-5);
}
.course-page-wrapper .course-item.active .item-text {
  color: var(--color-cta-primary);
  font-weight: 700;
  font-family: "figtree-semiBold";
  font-size: 16px;
}

.course-page-wrapper .course-item.active .arrow {
  margin-left: 0;
  transform: translateX(2px);
}

.course-page-wrapper .arrow img {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.course-page-wrapper .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main Content Styles */
.course-page-wrapper .main-content {
  padding: 0;
  background-color: #faf8f3;
}

.course-page-wrapper .hero-image {
  width: 100%;
  height: 450px;
}

.course-page-wrapper .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-page-wrapper .content-section {
  padding: 50px 60px 50px 40px;
  /* background-color: #faf8f3; */
}

.course-page-wrapper .content-title {
  font-family: "denton-test-medium";
  background: linear-gradient(to right, #3f2f17, #ad7723);
  -webkit-text-fill-color: transparent;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.course-page-wrapper .content-description {
  color: var(--color-lite-black);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 34px;
  font-family: "figtree-regular";
  font-weight: 400;
}

.course-page-wrapper .section-heading {
  color: var(--color-lite-black);
  font-family: "figtree-extra-bold";
  font-size: 18px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 8px;
}

.course-page-wrapper .topics-list {
  list-style: none;
  padding: 0;
}

.course-page-wrapper .topics-list li {
  display: flex;
  align-items: flex-start;
  padding: 8px 0;
  font-family: "figtree-regular";
  color: var(--color-lite-black);
  font-size: 18px;
  line-height: 1.5;
}

.course-page-wrapper .check-mark {
  margin-right: 12px;
}
.course-page-wrapper .check-mark img {
  width: 20px;
  height: 20px;
}

/* Mobile Responsive Styles */
@media (max-width: 991px) {
  .course-page-wrapper .hero-image {
    height: 300px;
  }

  .course-page-wrapper .content-section {
    padding: 20px 25px;
    display: block;
    opacity: 1;
  }

  .course-page-wrapper .sidebar {
    display: none !important;
  }
  .course-page-wrapper .content-title {
    font-size: 28px;
  }

  .course-page-wrapper .content-description {
    font-size: 16px;
  }

  .course-page-wrapper .topics-list li {
    font-size: 15px;
    padding: 5px;
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .course-page-wrapper .hero-image {
    height: 250px;
  }

  .course-page-wrapper .content-section {
    padding: 10px 14px;
  }

  .course-page-wrapper .content-title {
    font-size: 24px;
  }

  .course-page-wrapper .content-description {
    font-size: 15px;
  }
}

/* ----contact form - pop up modal css------ */
#contactFormModal .modal-content {
  border-radius: 20px;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.15);
  padding: 20px 40px;
}

#contactFormModal .modal-header-custom {
  width: 100%;
}

#contactFormModal .modal-dynamic-title {
  font-size: 24px;
  font-weight: var(--bold-5);
  font-family: "Denton-Test-Medium";
  color: var(--color-cta-primary);
}

#contactFormModal .btn-close {
  font-size: 20px;
  padding: 10px;
  margin: 0;
}
