/* =========================================
   HOME TERMS & CONDITIONS
========================================= */

.home-terms-section {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  padding: 90px 0;
}

.home-terms-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(247, 152, 103, 0.06);
  top: -180px;
  right: -180px;
  pointer-events: none;
}

.home-terms-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(36, 99, 184, 0.05);
  bottom: -170px;
  left: -170px;
  pointer-events: none;
}

/* Header */

.home-terms-subtitle {
  display: inline-block;
  color: #2463b8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.home-terms-title {
  color: #172b4d;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.home-terms-line {
  width: 65px;
  height: 4px;
  background: #f79867;
  border-radius: 10px;
  margin: 18px auto;
}

.home-terms-intro {
  max-width: 720px;
  margin: 0 auto;
  color: #68768a;
  font-size: 16px;
  line-height: 1.8;
}

/* Intro Card */

.home-terms-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: #f8fbff;
  border: 1px solid #e6edf5;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 12px 35px rgba(36, 99, 184, 0.06);
}

.home-terms-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2463b8;
  color: #ffffff;
  border-radius: 14px;
  font-size: 22px;
}

.home-terms-card h2 {
  color: #172b4d;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
}

.home-terms-card p {
  color: #66758a;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

/* Terms Items */

.home-terms-content {
  position: relative;
}

.home-terms-item {
  position: relative;
  display: flex;
  gap: 28px;
  padding: 38px 10px;
  border-bottom: 1px solid #e9eef5;
}

.home-terms-number {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff4ee;
  border: 1px solid rgba(247, 152, 103, 0.25);
  color: #f07843;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
}

.home-terms-body {
  flex: 1;
}

.home-terms-body h2 {
  color: #172b4d;
  font-size: 23px;
  font-weight: 700;
  margin: 3px 0 13px;
}

.home-terms-body p {
  color: #657489;
  font-size: 15px;
  line-height: 1.85;
  margin: 0 0 10px;
}

.home-terms-body p:last-child {
  margin-bottom: 0;
}

.home-terms-body strong {
  color: #2463b8;
  font-weight: 600;
}

/* Contact */

.home-terms-contact-item {
  border-bottom: 0;
}

.home-terms-contact-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.home-contact-detail {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px;
  background: #f8fbff;
  border: 1px solid #e6edf5;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.home-contact-detail:hover {
  transform: translateY(-3px);
  border-color: rgba(36, 99, 184, 0.25);
  box-shadow: 0 10px 25px rgba(36, 99, 184, 0.08);
}

.home-contact-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff0e9;
  color: #f07843;
  border-radius: 10px;
}

.home-contact-detail small {
  display: block;
  color: #8793a4;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.home-contact-detail strong,
.home-contact-detail a {
  color: #2463b8;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}

/* Updated */

.home-terms-updated {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #8995a5;
  font-size: 13px;
  margin-top: 20px;
}

.home-terms-updated i {
  color: #f79867;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .home-terms-section {
    padding: 70px 0;
  }

  .home-terms-title {
    font-size: 42px;
  }

  .home-terms-contact-box {
    grid-template-columns: 1fr;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .home-terms-section {
    padding: 55px 0;
  }

  .home-terms-title {
    font-size: 34px;
  }

  .home-terms-intro {
    font-size: 14px;
    line-height: 1.7;
  }

  .home-terms-card {
    padding: 22px;
    gap: 15px;
  }

  .home-terms-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .home-terms-card h2 {
    font-size: 19px;
  }

  .home-terms-card p {
    font-size: 14px;
  }

  .home-terms-item {
    gap: 16px;
    padding: 28px 4px;
  }

  .home-terms-number {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    font-size: 12px;
  }

  .home-terms-body h2 {
    font-size: 19px;
    margin-top: 1px;
  }

  .home-terms-body p {
    font-size: 14px;
    line-height: 1.75;
  }

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

}


/* =========================================
   SMALL MOBILE - 480px
========================================= */

@media (max-width: 480px) {

  .home-terms-section {
    padding: 45px 0;
  }

  .home-terms-title {
    font-size: 29px;
  }

  .home-terms-subtitle {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .home-terms-line {
    width: 50px;
    height: 3px;
    margin: 14px auto;
  }

  .home-terms-card {
    display: block;
    padding: 20px;
    border-radius: 14px;
  }

  .home-terms-icon {
    margin-bottom: 15px;
  }

  .home-terms-item {
    gap: 12px;
    padding: 25px 0;
  }

  .home-terms-number {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    font-size: 10px;
  }

  .home-terms-body h2 {
    font-size: 18px;
  }

  .home-terms-body p {
    font-size: 13.5px;
  }

  .home-contact-detail {
    align-items: flex-start;
  }

}


/* =========================================
   EXTRA SMALL - 360px
========================================= */

@media (max-width: 360px) {

  .home-terms-section {
    padding: 40px 0;
  }

  .home-terms-title {
    font-size: 26px;
  }

  .home-terms-card {
    padding: 17px;
  }

  .home-terms-item {
    gap: 10px;
  }

  .home-terms-number {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    font-size: 9px;
  }

  .home-terms-body h2 {
    font-size: 17px;
  }

  .home-terms-body p {
    font-size: 13px;
  }

  .home-contact-detail {
    padding: 13px;
  }

}


/* ==========================================
   AVATAR YOGA SCHOOL
   PRIVACY POLICY SECTION
========================================== */

.home-privacy-section {
  position: relative;
  padding: 90px 0;
  background: #ffffff;
  overflow: hidden;
}

.home-privacy-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -200px;
  right: -180px;
  border-radius: 50%;
  background: rgba(247, 152, 103, 0.06);
  pointer-events: none;
}

.home-privacy-section::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  bottom: -180px;
  left: -180px;
  border-radius: 50%;
  background: rgba(36, 99, 184, 0.05);
  pointer-events: none;
}


/* ==========================================
   HEADER
========================================== */

.home-privacy-subtitle {
  display: inline-block;
  margin-bottom: 12px;
  color: #2463b8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.home-privacy-title {
  margin: 0;
  color: #172b4d;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.home-privacy-line {
  width: 65px;
  height: 4px;
  margin: 18px auto;
  border-radius: 20px;
  background: #f79867;
}

.home-privacy-intro {
  max-width: 750px;
  margin: 0 auto;
  color: #68768a;
  font-size: 16px;
  line-height: 1.8;
}


/* ==========================================
   WELCOME BOX
========================================== */

.home-privacy-welcome {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 32px;
  border: 1px solid #e5edf6;
  border-radius: 18px;
  background: #f8fbff;
  box-shadow: 0 12px 35px rgba(36, 99, 184, 0.06);
}

.home-privacy-welcome-icon {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: #2463b8;
  color: #ffffff;
  font-size: 23px;
}

.home-privacy-welcome-content {
  flex: 1;
}

.home-privacy-welcome-content h2 {
  margin: 0 0 10px;
  color: #172b4d;
  font-size: 23px;
  font-weight: 700;
}

.home-privacy-welcome-content p {
  margin: 0 0 8px;
  color: #66758a;
  font-size: 15px;
  line-height: 1.8;
}

.home-privacy-welcome-content p:last-child {
  margin-bottom: 0;
}

.home-privacy-welcome-content strong {
  color: #2463b8;
}


/* ==========================================
   PRIVACY CONTENT
========================================== */

.home-privacy-content {
  position: relative;
}

.home-privacy-item {
  display: flex;
  gap: 28px;
  padding: 38px 10px;
  border-bottom: 1px solid #e9eef5;
}

.home-privacy-number {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 152, 103, 0.25);
  border-radius: 50%;
  background: #fff4ee;
  color: #f07843;
  font-size: 15px;
  font-weight: 700;
}

.home-privacy-body {
  flex: 1;
}

.home-privacy-body h2 {
  margin: 3px 0 14px;
  color: #172b4d;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.35;
}

.home-privacy-body p {
  margin: 0 0 11px;
  color: #657489;
  font-size: 15px;
  line-height: 1.85;
}

.home-privacy-body p:last-child {
  margin-bottom: 0;
}

.home-privacy-body strong {
  color: #2463b8;
}


/* ==========================================
   LIST
========================================== */

.home-privacy-list {
  margin: 15px 0 17px;
  padding: 0;
  list-style: none;
}

.home-privacy-list li {
  position: relative;
  padding: 6px 0 6px 28px;
  color: #657489;
  font-size: 15px;
  line-height: 1.7;
}

.home-privacy-list li::before {
  content: "\f00c";
  position: absolute;
  top: 8px;
  left: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff0e9;
  color: #f07843;
  font-family: "Font Awesome 6 Free";
  font-size: 9px;
  font-weight: 900;
}


/* ==========================================
   PRIVACY REQUEST NOTICE
========================================== */

.home-privacy-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 4px solid #f79867;
  border-radius: 8px;
  background: #fff8f4;
}

.home-privacy-notice > i {
  padding-top: 3px;
  color: #f07843;
  font-size: 17px;
}

.home-privacy-notice p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.home-privacy-notice a {
  color: #2463b8;
  font-weight: 600;
  text-decoration: none;
}

.home-privacy-notice a:hover {
  color: #f07843;
}


/* ==========================================
   CONTACT SECTION
========================================== */

.home-privacy-contact-item {
  border-bottom: 0;
}

.home-privacy-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.home-privacy-contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 16px 18px;
  border: 1px solid #e5edf6;
  border-radius: 12px;
  background: #f8fbff;
  transition: all 0.3s ease;
}

.home-privacy-contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(36, 99, 184, 0.25);
  box-shadow: 0 10px 25px rgba(36, 99, 184, 0.08);
}

.home-privacy-contact-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff0e9;
  color: #f07843;
  font-size: 15px;
}

.home-privacy-contact-card small {
  display: block;
  margin-bottom: 3px;
  color: #8793a4;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.home-privacy-contact-card strong,
.home-privacy-contact-card a {
  display: block;
  color: #2463b8;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  word-break: break-word;
}

.home-privacy-contact-card a:hover {
  color: #f07843;
}

.home-privacy-address-card {
  grid-column: 1 / -1;
}


/* ==========================================
   LAST UPDATED
========================================== */

.home-privacy-updated {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  color: #8995a5;
  font-size: 13px;
}

.home-privacy-updated i {
  color: #f79867;
}


/* ==========================================
   TABLET - 991px
========================================== */

@media (max-width: 991px) {

  .home-privacy-section {
    padding: 70px 0;
  }

  .home-privacy-title {
    font-size: 42px;
  }

  .home-privacy-contact-grid {
    grid-template-columns: 1fr;
  }

  .home-privacy-address-card {
    grid-column: auto;
  }

}


/* ==========================================
   MOBILE - 767px
========================================== */

@media (max-width: 767px) {

  .home-privacy-section {
    padding: 55px 0;
  }

  .home-privacy-title {
    font-size: 34px;
  }

  .home-privacy-intro {
    font-size: 14px;
    line-height: 1.7;
  }

  .home-privacy-welcome {
    padding: 23px;
    gap: 16px;
  }

  .home-privacy-welcome-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    font-size: 19px;
  }

  .home-privacy-welcome-content h2 {
    font-size: 20px;
  }

  .home-privacy-welcome-content p {
    font-size: 14px;
  }

  .home-privacy-item {
    gap: 16px;
    padding: 29px 4px;
  }

  .home-privacy-number {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    font-size: 12px;
  }

  .home-privacy-body h2 {
    margin-top: 1px;
    font-size: 20px;
  }

  .home-privacy-body p,
  .home-privacy-list li {
    font-size: 14px;
  }

}


/* ==========================================
   MOBILE - 480px
========================================== */

@media (max-width: 480px) {

  .home-privacy-section {
    padding: 45px 0;
  }

  .home-privacy-subtitle {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .home-privacy-title {
    font-size: 29px;
  }

  .home-privacy-line {
    width: 50px;
    height: 3px;
    margin: 14px auto;
  }

  .home-privacy-welcome {
    display: block;
    padding: 20px;
    border-radius: 14px;
  }

  .home-privacy-welcome-icon {
    margin-bottom: 15px;
  }

  .home-privacy-item {
    gap: 12px;
    padding: 26px 0;
  }

  .home-privacy-number {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    font-size: 10px;
  }

  .home-privacy-body h2 {
    font-size: 18px;
  }

  .home-privacy-body p,
  .home-privacy-list li {
    font-size: 13.5px;
  }

  .home-privacy-list li {
    padding-left: 25px;
  }

  .home-privacy-notice {
    padding: 15px;
  }

  .home-privacy-contact-card {
    padding: 14px;
  }

}


/* ==========================================
   EXTRA SMALL - 360px
========================================== */

@media (max-width: 360px) {

  .home-privacy-section {
    padding: 40px 0;
  }

  .home-privacy-title {
    font-size: 26px;
  }

  .home-privacy-welcome {
    padding: 17px;
  }

  .home-privacy-item {
    gap: 9px;
  }

  .home-privacy-number {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    font-size: 9px;
  }

  .home-privacy-body h2 {
    font-size: 17px;
  }

  .home-privacy-body p,
  .home-privacy-list li {
    font-size: 13px;
  }

  .home-privacy-contact-card {
    padding: 12px;
    gap: 10px;
  }

  .home-privacy-contact-icon {
    flex: 0 0 37px;
    width: 37px;
    height: 37px;
  }

}

/* ==========================================
   AVATAR YOGA SCHOOL
   DISCLAIMER SECTION
========================================== */

.home-disclaimer-section {
  position: relative;
  padding: 90px 0;
  background: #ffffff;
  overflow: hidden;
}

.home-disclaimer-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -200px;
  right: -180px;
  border-radius: 50%;
  background: rgba(247, 152, 103, 0.06);
  pointer-events: none;
}

.home-disclaimer-section::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  bottom: -180px;
  left: -180px;
  border-radius: 50%;
  background: rgba(36, 99, 184, 0.05);
  pointer-events: none;
}


/* ==========================================
   HEADER
========================================== */

.home-disclaimer-subtitle {
  display: inline-block;
  margin-bottom: 12px;
  color: #2463b8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.home-disclaimer-title {
  margin: 0;
  color: #172b4d;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.home-disclaimer-line {
  width: 65px;
  height: 4px;
  margin: 18px auto;
  border-radius: 20px;
  background: #f79867;
}

.home-disclaimer-intro {
  max-width: 760px;
  margin: 0 auto;
  color: #68768a;
  font-size: 16px;
  line-height: 1.8;
}


/* ==========================================
   WELCOME BOX
========================================== */

.home-disclaimer-welcome {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 32px;
  border: 1px solid #e5edf6;
  border-radius: 18px;
  background: #f8fbff;
  box-shadow: 0 12px 35px rgba(36, 99, 184, 0.06);
}

.home-disclaimer-welcome-icon {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: #2463b8;
  color: #ffffff;
  font-size: 23px;
}

.home-disclaimer-welcome-content {
  flex: 1;
}

.home-disclaimer-welcome-content h2 {
  margin: 0 0 10px;
  color: #172b4d;
  font-size: 23px;
  font-weight: 700;
}

.home-disclaimer-welcome-content p {
  margin: 0 0 8px;
  color: #66758a;
  font-size: 15px;
  line-height: 1.8;
}

.home-disclaimer-welcome-content p:last-child {
  margin-bottom: 0;
}

.home-disclaimer-welcome-content strong {
  color: #2463b8;
}


/* ==========================================
   DISCLAIMER CONTENT
========================================== */

.home-disclaimer-content {
  position: relative;
}

.home-disclaimer-item {
  display: flex;
  gap: 28px;
  padding: 38px 10px;
  border-bottom: 1px solid #e9eef5;
}

.home-disclaimer-number {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 152, 103, 0.25);
  border-radius: 50%;
  background: #fff4ee;
  color: #f07843;
  font-size: 15px;
  font-weight: 700;
}

.home-disclaimer-body {
  flex: 1;
}

.home-disclaimer-body h2 {
  margin: 3px 0 14px;
  color: #172b4d;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.35;
}

.home-disclaimer-body p {
  margin: 0 0 11px;
  color: #657489;
  font-size: 15px;
  line-height: 1.85;
}

.home-disclaimer-body p:last-child {
  margin-bottom: 0;
}

.home-disclaimer-body strong {
  color: #2463b8;
}


/* ==========================================
   CONTACT
========================================== */

.home-disclaimer-contact-item {
  border-bottom: 0;
}

.home-disclaimer-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.home-disclaimer-contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 16px 18px;
  border: 1px solid #e5edf6;
  border-radius: 12px;
  background: #f8fbff;
  transition: all 0.3s ease;
}

.home-disclaimer-contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(36, 99, 184, 0.25);
  box-shadow: 0 10px 25px rgba(36, 99, 184, 0.08);
}

.home-disclaimer-contact-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff0e9;
  color: #f07843;
  font-size: 15px;
}

.home-disclaimer-contact-card small {
  display: block;
  margin-bottom: 3px;
  color: #8793a4;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.home-disclaimer-contact-card strong,
.home-disclaimer-contact-card a {
  display: block;
  color: #2463b8;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  word-break: break-word;
}

.home-disclaimer-contact-card a:hover {
  color: #f07843;
}


/* ==========================================
   LAST UPDATED
========================================== */

.home-disclaimer-updated {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  color: #8995a5;
  font-size: 13px;
}

.home-disclaimer-updated i {
  color: #f79867;
}


/* ==========================================
   TABLET - 991px
========================================== */

@media (max-width: 991px) {

  .home-disclaimer-section {
    padding: 70px 0;
  }

  .home-disclaimer-title {
    font-size: 42px;
  }

  .home-disclaimer-contact-grid {
    grid-template-columns: 1fr;
  }

}


/* ==========================================
   MOBILE - 767px
========================================== */

@media (max-width: 767px) {

  .home-disclaimer-section {
    padding: 55px 0;
  }

  .home-disclaimer-title {
    font-size: 34px;
  }

  .home-disclaimer-intro {
    font-size: 14px;
    line-height: 1.7;
  }

  .home-disclaimer-welcome {
    padding: 23px;
    gap: 16px;
  }

  .home-disclaimer-welcome-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    font-size: 19px;
  }

  .home-disclaimer-welcome-content h2 {
    font-size: 20px;
  }

  .home-disclaimer-welcome-content p {
    font-size: 14px;
  }

  .home-disclaimer-item {
    gap: 16px;
    padding: 29px 4px;
  }

  .home-disclaimer-number {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    font-size: 12px;
  }

  .home-disclaimer-body h2 {
    margin-top: 1px;
    font-size: 20px;
  }

  .home-disclaimer-body p {
    font-size: 14px;
  }

}


/* ==========================================
   MOBILE - 480px
========================================== */

@media (max-width: 480px) {

  .home-disclaimer-section {
    padding: 45px 0;
  }

  .home-disclaimer-subtitle {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .home-disclaimer-title {
    font-size: 29px;
  }

  .home-disclaimer-line {
    width: 50px;
    height: 3px;
    margin: 14px auto;
  }

  .home-disclaimer-welcome {
    display: block;
    padding: 20px;
    border-radius: 14px;
  }

  .home-disclaimer-welcome-icon {
    margin-bottom: 15px;
  }

  .home-disclaimer-item {
    gap: 12px;
    padding: 26px 0;
  }

  .home-disclaimer-number {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    font-size: 10px;
  }

  .home-disclaimer-body h2 {
    font-size: 18px;
  }

  .home-disclaimer-body p {
    font-size: 13.5px;
  }

  .home-disclaimer-contact-card {
    padding: 14px;
  }

}


/* ==========================================
   EXTRA SMALL - 360px
========================================== */

@media (max-width: 360px) {

  .home-disclaimer-section {
    padding: 40px 0;
  }

  .home-disclaimer-title {
    font-size: 26px;
  }

  .home-disclaimer-welcome {
    padding: 17px;
  }

  .home-disclaimer-item {
    gap: 9px;
  }

  .home-disclaimer-number {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    font-size: 9px;
  }

  .home-disclaimer-body h2 {
    font-size: 17px;
  }

  .home-disclaimer-body p {
    font-size: 13px;
  }

  .home-disclaimer-contact-card {
    padding: 12px;
    gap: 10px;
  }

  .home-disclaimer-contact-icon {
    flex: 0 0 37px;
    width: 37px;
    height: 37px;
  }

}

/* =========================================
   PREMIUM YOGA REVIEW SECTION
========================================= */

.home-review-premium {
    position: relative;
    overflow: hidden;
}


/* Decorative background */

.home-review-premium::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    left: -300px;
    top: -250px;
    border-radius: 50%;
    border: 1px solid rgba(36, 99, 184, 0.08);
}

.home-review-premium::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -250px;
    bottom: -220px;
    border-radius: 50%;
    background: rgba(247, 152, 103, 0.07);
}


/* =========================================
   HEADING
========================================= */

.home-review-heading {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto 55px;
}

.home-review-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #2463b8;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
}

.home-review-heading h2 {
    margin: 0;
    color: #172b4d;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.25;
}

.home-review-heading h2 span {
    color: #2463b8;
}

.home-review-heading p {
    max-width: 610px;
    margin: 16px auto 0;
    color: #758397;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   REVIEW STAGE
========================================= */

.home-review-stage {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    min-height: 470px;
    margin: auto;
    padding: 65px 80px;
    display: flex;
    align-items: center;
    border-radius: 35px;
    background: #ffffff;
    border: 1px solid #e6ebf1;
    box-shadow: 0 30px 80px rgba(36, 99, 184, 0.09);
    overflow: hidden;
}


/* Orange accent */

.home-review-stage::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 7px;
    height: 100%;
    background: #f79867;
}


/* =========================================
   LARGE NUMBER
========================================= */

.home-review-number {
    position: absolute;
    right: 40px;
    top: 20px;
    color: rgba(36, 99, 184, 0.045);
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
}


/* =========================================
   VISUAL AREA
========================================= */

.home-review-visual {
    position: relative;
    z-index: 2;
    width: 40%;
    padding-right: 65px;
    text-align: center;
}

.home-review-circle {
    position: relative;
    width: 205px;
    height: 205px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        radial-gradient(
            circle at center,
            #ffffff 0%,
            #f5f9fd 55%,
            #eaf1f8 100%
        );
    border: 1px solid #dfe8f1;
    box-shadow:
        0 0 0 15px rgba(36, 99, 184, 0.035),
        0 25px 50px rgba(36, 99, 184, 0.12);
}


/* Ring */

.home-review-circle::before {
    content: "";
    position: absolute;
    inset: 13px;
    border: 1px dashed rgba(36, 99, 184, 0.25);
    border-radius: 50%;
}

.home-review-circle::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    top: 8px;
    right: 25px;
    border-radius: 50%;
    background: #f79867;
    border: 5px solid #ffffff;
}


/* Initials */

.home-review-initials {
    position: relative;
    z-index: 2;
    color: #2463b8;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 2px;
}


/* Om */

.home-review-om {
    position: absolute;
    bottom: 18px;
    right: 20px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2463b8;
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(36, 99, 184, 0.2);
}


/* Country */

.home-review-country {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: #f5f8fb;
    color: #667589;
    font-size: 11px;
    font-weight: 700;
}

.home-review-country span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f79867;
}


/* =========================================
   REVIEW BODY
========================================= */

.home-review-body {
    position: relative;
    z-index: 2;
    width: 60%;
    padding-left: 65px;
    border-left: 1px solid #e5ebf1;
}


/* Top */

.home-review-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.home-review-stars {
    color: #f79867;
    font-size: 14px;
    letter-spacing: 2px;
}

.home-review-score {
    color: #8b98a8;
    font-size: 10px;
    font-weight: 700;
}


/* Quote */

.home-review-quote {
    height: 48px;
    margin-top: 10px;
    color: #2463b8;
    font-family: Georgia, serif;
    font-size: 100px;
    line-height: 0.8;
}


/* Text */

.home-review-text {
    max-width: 620px;
    margin: 10px 0 35px;
    color: #4f6073;
    font-size: 17px;
    font-style: italic;
    line-height: 1.9;
}


/* Person */

.home-review-person {
    display: flex;
    align-items: center;
    gap: 20px;
}

.home-review-person h3 {
    margin: 0 0 4px;
    color: #172b4d;
    font-size: 17px;
    font-weight: 800;
}

.home-review-person span {
    color: #8b98a8;
    font-size: 10px;
}

.home-review-person strong {
    color: #2463b8;
    font-size: 10px;
    white-space: nowrap;
}

.home-review-line {
    width: 45px;
    height: 1px;
    background: #d9e2eb;
}


/* =========================================
   ARROWS
========================================= */

.home-review-arrow {
    position: absolute;
    z-index: 10;
    top: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dce5ee;
    border-radius: 50%;
    background: #ffffff;
    color: #2463b8;
    font-size: 12px;
    transform: translateY(-50%);
    box-shadow: 0 10px 30px rgba(36, 99, 184, 0.12);
    transition: all 0.3s ease;
}

.home-review-arrow:hover {
    background: #2463b8;
    color: #ffffff;
    border-color: #2463b8;
}

.home-review-arrow-prev {
    left: -24px;
}

.home-review-arrow-next {
    right: -24px;
}


/* =========================================
   BOTTOM NAVIGATION
========================================= */

.home-review-navigation {
    max-width: 1100px;
    margin: 28px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-review-progress {
    width: 180px;
    height: 2px;
    background: #dfe6ee;
    overflow: hidden;
}

.home-review-progress span {
    display: block;
    width: 25%;
    height: 100%;
    background: #f79867;
}

.home-review-nav-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.home-review-nav-text strong {
    color: #2463b8;
    font-size: 9px;
    letter-spacing: 2px;
}

.home-review-nav-text small {
    color: #9aa5b3;
    font-size: 9px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .home-review-premium {
        padding: 85px 0;
    }

    .home-review-heading h2 {
        font-size: 38px;
    }

    .home-review-stage {
        min-height: auto;
        padding: 55px 50px;
    }

    .home-review-visual {
        width: 35%;
        padding-right: 35px;
    }

    .home-review-body {
        width: 65%;
        padding-left: 40px;
    }

    .home-review-circle {
        width: 170px;
        height: 170px;
    }

    .home-review-initials {
        font-size: 38px;
    }

    .home-review-text {
        font-size: 15px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .home-review-premium {
        padding: 65px 0;
    }

    .home-review-heading {
        margin-bottom: 35px;
    }

    .home-review-heading h2 {
        font-size: 31px;
    }

    .home-review-heading p {
        font-size: 13px;
    }

    .home-review-stage {
        display: block;
        padding: 40px 28px;
        border-radius: 25px;
    }

    .home-review-number {
        right: 20px;
        top: 15px;
        font-size: 75px;
    }

    .home-review-visual {
        width: 100%;
        padding: 0 0 35px;
    }

    .home-review-circle {
        width: 145px;
        height: 145px;
        margin-bottom: 18px;
    }

    .home-review-initials {
        font-size: 32px;
    }

    .home-review-body {
        width: 100%;
        padding: 30px 0 0;
        border-left: 0;
        border-top: 1px solid #e5ebf1;
    }

    .home-review-quote {
        font-size: 75px;
    }

    .home-review-text {
        margin-bottom: 25px;
        font-size: 14px;
        line-height: 1.8;
    }

    .home-review-person {
        flex-wrap: wrap;
        gap: 8px 15px;
    }

    .home-review-line {
        display: none;
    }

    .home-review-arrow {
        width: 38px;
        height: 38px;
    }

    .home-review-arrow-prev {
        left: -8px;
    }

    .home-review-arrow-next {
        right: -8px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .home-review-premium {
        padding: 55px 0;
    }

    .home-review-heading h2 {
        font-size: 27px;
    }

    .home-review-stage {
        padding: 32px 22px;
    }

    .home-review-circle {
        width: 125px;
        height: 125px;
    }

    .home-review-initials {
        font-size: 28px;
    }

    .home-review-om {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .home-review-stars {
        font-size: 11px;
    }

    .home-review-text {
        font-size: 12.5px;
    }

    .home-review-person h3 {
        font-size: 15px;
    }

    .home-review-navigation {
        display: block;
    }

    .home-review-progress {
        width: 100%;
        margin-bottom: 15px;
    }

    .home-review-nav-text {
        justify-content: space-between;
    }

}


/* =========================================
   360px
========================================= */

@media (max-width: 360px) {

    .home-review-heading h2 {
        font-size: 24px;
    }

    .home-review-stage {
        padding: 28px 18px;
    }

    .home-review-circle {
        width: 110px;
        height: 110px;
    }

    .home-review-initials {
        font-size: 24px;
    }

    .home-review-text {
        font-size: 12px;
    }

    .home-review-arrow {
        width: 34px;
        height: 34px;
    }

}

/* =========================================================
   TEACHER SECTION
========================================================= */

.home-teacher-section {
    position: relative;
    padding: 90px 0 100px;
    background: #F2F7F3;
    overflow: hidden;
}


/* Decorative background */

.home-teacher-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    top: -180px;
    left: -150px;
    border-radius: 50%;
    background: rgba(36, 99, 184, 0.05);
}

.home-teacher-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -130px;
    bottom: -150px;
    border-radius: 50%;
    background: rgba(247, 152, 103, 0.07);
}

.home-teacher-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.teacher-section-heading {
    max-width: 750px;
    margin: 0 auto 48px;
}

.teacher-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #F79867;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.teacher-subtitle-line {
    width: 28px;
    height: 2px;
    border-radius: 10px;
    background: #F79867;
}

.teacher-section-heading h2 {
    margin: 0 0 15px;
    color: #172B4D;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.teacher-section-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: #65748b;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   CAROUSEL
========================================================= */

.teacher-carousel {
    position: relative;
    padding: 0 55px;
}

.teacher-carousel .carousel-inner {
    overflow: visible;
}


/* =========================================================
   TEACHER CARD
========================================================= */

.teacher-card {
    position: relative;
    height: 100%;
    padding: 18px 15px 25px;
    border: 1px solid rgba(36, 99, 184, 0.09);
    border-radius: 22px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 12px 35px rgba(23, 43, 77, 0.07);
    transition: all 0.4s ease;
}

.teacher-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(23, 43, 77, 0.13);
    border-color: rgba(247, 152, 103, 0.35);
}


/* =========================================================
   TEACHER IMAGE
========================================================= */

.teacher-image-wrap {
    position: relative;
    width: 190px;
    height: 190px;
    margin: 0 auto 22px;
}

.teacher-image {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 6px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #2463B8,
        #F79867
    );
}

.teacher-image::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: #ffffff;
}

.teacher-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    transition: transform 0.5s ease;
}

.teacher-card:hover .teacher-image img {
    transform: scale(1.05);
}


/* =========================================================
   NUMBER BADGE
========================================================= */

.teacher-number {
    position: absolute;
    right: 3px;
    bottom: 12px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 4px solid #ffffff;
    border-radius: 50%;
    background: #2463B8;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(36, 99, 184, 0.2);
}


/* =========================================================
   TEACHER INFO
========================================================= */

.teacher-info h5 {
    margin: 0 0 7px;
    color: #172B4D;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.teacher-info p {
    margin: 0;
    color: #F79867;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}


/* =========================================================
   SLIDER ARROWS
========================================================= */

.teacher-control {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-top: -23px;
    border: 0;
    border-radius: 50%;
    background: #2463B8;
    color: #ffffff;
    opacity: 1;
    box-shadow: 0 8px 20px rgba(36, 99, 184, 0.20);
    transition: all 0.3s ease;
}

.teacher-control span {
    font-size: 19px;
    line-height: 1;
}

.teacher-prev {
    left: 0;
}

.teacher-next {
    right: 0;
}

.teacher-control:hover {
    background: #F79867;
    color: #ffffff;
    transform: scale(1.08);
}


/* =========================================================
   VIEW MORE BUTTON
========================================================= */

.teacher-more-btn {
    margin-top: 45px;
}

.teacher-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 205px;
    padding: 14px 22px;
    border: 1px solid #2463B8;
    border-radius: 50px;
    background: #2463B8;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s ease;
}

.teacher-view-btn i {
    font-style: normal;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.teacher-view-btn:hover {
    background: #F79867;
    border-color: #F79867;
    color: #ffffff !important;
    transform: translateY(-3px);
}

.teacher-view-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .home-teacher-section {
        padding: 70px 0 80px;
    }

    .teacher-section-heading h2 {
        font-size: 36px;
    }

    .teacher-carousel {
        padding: 0 45px;
    }

    .teacher-image-wrap {
        width: 165px;
        height: 165px;
    }

    .teacher-card {
        padding: 15px 12px 22px;
    }

    .teacher-info h5 {
        font-size: 15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .home-teacher-section {
        padding: 55px 0 65px;
    }

    .teacher-section-heading {
        margin-bottom: 32px;
        padding: 0 15px;
    }

    .teacher-subtitle {
        font-size: 10px;
        letter-spacing: 1px;
        gap: 8px;
    }

    .teacher-subtitle-line {
        width: 20px;
    }

    .teacher-section-heading h2 {
        font-size: 28px;
        line-height: 1.25;
    }

    .teacher-section-heading p {
        font-size: 13px;
        line-height: 1.7;
    }

    .teacher-carousel {
        padding: 0 32px;
    }

    .teacher-carousel .row {
        --bs-gutter-x: 10px;
        --bs-gutter-y: 10px;
    }

    .teacher-card {
        padding: 12px 8px 17px;
        border-radius: 16px;
    }

    .teacher-image-wrap {
        width: 115px;
        height: 115px;
        margin-bottom: 14px;
    }

    .teacher-image {
        padding: 4px;
    }

    .teacher-image::before {
        inset: 4px;
    }

    .teacher-number {
        right: -2px;
        bottom: 4px;
        width: 27px;
        height: 27px;
        border-width: 3px;
        font-size: 8px;
    }

    .teacher-info h5 {
        margin-bottom: 4px;
        font-size: 12px;
        line-height: 1.3;
    }

    .teacher-info p {
        font-size: 9px;
        line-height: 1.3;
    }

    .teacher-control {
        width: 32px;
        height: 32px;
        margin-top: -16px;
    }

    .teacher-control span {
        font-size: 14px;
    }

    .teacher-prev {
        left: 0;
    }

    .teacher-next {
        right: 0;
    }

    .teacher-more-btn {
        margin-top: 30px;
    }

    .teacher-view-btn {
        min-width: 175px;
        padding: 11px 18px;
        font-size: 11px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .home-teacher-section {
        padding: 45px 0 55px;
    }

    .teacher-section-heading h2 {
        font-size: 24px;
    }

    .teacher-section-heading p {
        font-size: 12px;
    }

    .teacher-carousel {
        padding: 0 27px;
    }

    .teacher-carousel .row {
        --bs-gutter-x: 7px;
        --bs-gutter-y: 8px;
    }

    .teacher-card {
        padding: 9px 5px 14px;
        border-radius: 13px;
    }

    .teacher-image-wrap {
        width: 95px;
        height: 95px;
        margin-bottom: 11px;
    }

    .teacher-info h5 {
        font-size: 10px;
    }

    .teacher-info p {
        font-size: 7.5px;
    }

    .teacher-number {
        width: 23px;
        height: 23px;
        font-size: 7px;
    }

    .teacher-control {
        width: 28px;
        height: 28px;
        margin-top: -14px;
    }

    .teacher-control span {
        font-size: 12px;
    }

}


/* =========================================================
   EXTRA SMALL — 360px
========================================================= */

@media (max-width: 360px) {

    .teacher-carousel {
        padding: 0 23px;
    }

    .teacher-image-wrap {
        width: 82px;
        height: 82px;
    }

    .teacher-info h5 {
        font-size: 9px;
    }

    .teacher-info p {
        font-size: 7px;
    }

    .teacher-number {
        width: 21px;
        height: 21px;
        font-size: 6px;
    }

    .teacher-control {
        width: 25px;
        height: 25px;
        margin-top: -12px;
    }

}

/*Short Courses Cards Start*/

/* CARD */

.home-short-card {
    height: 100%;
    background: #ffffff;
    border: 2px solid #f79867;
    border-radius: 18px;
    overflow: hidden;
    transition: all .4s ease;
}

.home-short-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(36, 99, 184, 0.15);
}


/* IMAGE */

.home-short-image {
    position: relative;
    height: 235px;
    overflow: hidden;
}

.home-short-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.home-short-card:hover .home-short-image img {
    transform: scale(1.08);
}

.home-short-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f79867;
    color: #ffffff;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
}


/* CONTENT */

.home-short-content {
    padding: 25px 22px 23px;
}

.home-short-label {
    color: #f79867;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
}

.home-short-content h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    margin: 8px 0 10px;
}

.home-short-content p {
    font-size: 14px;
    line-height: 1.7;
    min-height: 72px;
    margin-bottom: 18px;
}


/* PRICE */

.home-short-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid #edf0f4;
    border-bottom: 1px solid #edf0f4;
    margin-bottom: 17px;
}

.home-short-bottom strong {
    color: #7b8798;
    font-size: 12px;
    font-weight: 500;
}

.home-short-bottom span {
    color: #2463b8;
    font-size: 21px;
    font-weight: 800;
}


/* COURSE BUTTON */

.home-short-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-decoration: none;
    background: #2463b8;
    color: #ffffff;
    padding: 12px 17px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: all .3s ease;
}

.home-short-btn i {
    font-size: 11px;
    transition: transform .3s ease;
}

.home-short-btn:hover {
    background: #f79867;
    color: #ffffff;
}

.home-short-btn:hover i {
    transform: translateX(4px);
}


/* ARROWS */

.home-short-prev,
.home-short-next {
    width: 48px;
    opacity: 1;
}

.home-short-prev {
    left: -65px;
}

.home-short-next {
    right: -65px;
}

.home-short-arrow {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #2463b8;
    border: 1px solid #e5eaf1;
    box-shadow: 0 7px 20px rgba(23, 43, 77, .10);
    transition: all .3s ease;
}

.home-short-prev:hover .home-short-arrow,
.home-short-next:hover .home-short-arrow {
    background: #2463b8;
    color: #ffffff;
}


/* ALL COURSES BUTTON */

.home-short-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 27px;
    background: #172b4d;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all .3s ease;
}

.home-short-main-btn:hover {
    background: #f79867;
    color: #ffffff;
}

.home-short-main-btn i {
    transition: transform .3s ease;
}

.home-short-main-btn:hover i {
    transform: translateX(4px);
}


/* ================= TABLET ================= */

@media (max-width: 1199px) {

    .home-short-prev {
        left: -15px;
    }

    .home-short-next {
        right: -15px;
    }

}


/* ================= 991px ================= */

@media (max-width: 991px) {

    .home-short-title {
        font-size: 36px;
    }

    .home-short-image {
        height: 220px;
    }

    .home-short-content {
        padding: 22px 18px;
    }

    .home-short-content h3 {
        font-size: 19px;
    }

    .home-short-content p {
        min-height: auto;
    }

    .home-short-prev {
        left: -10px;
    }

    .home-short-next {
        right: -10px;
    }

}


/* ================= MOBILE 767px ================= */

@media (max-width: 767px) {

    .home-short-courses-section {
        padding-top: 55px !important;
        padding-bottom: 55px !important;
    }

    .home-short-title {
        font-size: 31px;
    }

    .home-short-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .home-short-slider {
        padding: 0 25px;
    }

    .home-short-image {
        height: 230px;
    }

    .home-short-card {
        max-width: 430px;
        margin: 0 auto;
    }

    .home-short-prev {
        left: -2px;
    }

    .home-short-next {
        right: -2px;
    }

    .home-short-arrow {
        width: 38px;
        height: 38px;
        font-size: 12px;
    }

}


/* ================= MOBILE 480px ================= */

@media (max-width: 480px) {

    .home-short-title {
        font-size: 27px;
    }

    .home-short-subtitle {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .home-short-description {
        font-size: 13px;
    }

    .home-short-slider {
        padding: 0 18px;
    }

    .home-short-image {
        height: 210px;
    }

    .home-short-content {
        padding: 20px 17px;
    }

    .home-short-content h3 {
        font-size: 19px;
    }

    .home-short-content p {
        font-size: 13px;
    }

    .home-short-prev {
        left: -4px;
    }

    .home-short-next {
        right: -4px;
    }

}


/* ================= MOBILE 360px ================= */

@media (max-width: 360px) {

    .home-short-title {
        font-size: 24px;
    }

    .home-short-image {
        height: 190px;
    }

    .home-short-content h3 {
        font-size: 17px;
    }

    .home-short-bottom span {
        font-size: 18px;
    }

    .home-short-slider {
        padding: 0 14px;
    }

}

/*Short Courses Cards End*/


/* =========================================
   AVATAR YOGA SCHOOL
   RETREATS ENROLLMENT FORM
========================================= */

.avatar-enrollment-section {
  width: 100%;
  padding: 70px 20px;
}

/* =========================================
   WRAPPER
========================================= */

.avatar-enrollment-wrapper {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

/* =========================================
   TOP ICON
========================================= */

.avatar-enrollment-top-icon {
  width: 48px;
  height: 48px;

  margin: 0 auto 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #ffffff;
  color: #2563b8;

  font-size: 18px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

/* =========================================
   SMALL TITLE
========================================= */

.avatar-enrollment-small-title {
  text-align: center;

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 2px;

  color: #f79867;

  margin-bottom: 10px;
}

/* =========================================
   MAIN HEADING
========================================= */

.avatar-enrollment-wrapper h1 {
  margin: 0 0 35px;
  text-align: center;
  font-size: 30px;
  line-height: 1.4;
  font-weight: 500;
  color: #222222;

}

/* =========================================
   FORM BOX
========================================= */

.avatar-enrollment-form-box {
  width: 100%;

  padding: 40px;

  background: #ffffff;

  border-radius: 18px;

  border: 1px solid rgba(60, 94, 64, 0.1);

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* =========================================
   SECTION TITLE
========================================= */

.avatar-form-section-title {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 20px;
}

.avatar-form-section-title > span {
  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 50%;

  background: #eaf2fc;
  color: #2563b8;

  font-size: 12px;
}

.avatar-form-section-title h4 {
  margin: 0;

  font-size: 15px;
  line-height: 1.4;

  font-weight: 700;

  letter-spacing: 1px;

  color: #2563b8;
}

/* =========================================
   FORM GRID
========================================= */

.avatar-form-row-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 20px;
}

/* =========================================
   FORM GROUP
========================================= */

.avatar-form-group {
  width: 100%;

  margin-bottom: 20px;
}

/* =========================================
   LABEL
========================================= */

.avatar-form-group > label {
  display: block;

  margin-bottom: 8px;

  font-size: 15px;
  line-height: 1.4;

  font-weight: 500;

  color: #444444;
}

.avatar-form-group > label > span {
  color: #ff9b69;
}

/* =========================================
   INPUT / SELECT / TEXTAREA
========================================= */

.avatar-form-group input,
.avatar-form-group select,
.avatar-form-group textarea {
  width: 100%;

  min-height: 48px;

  padding: 12px 15px;

  border: 1px solid #d5ded6;

  border-radius: 7px;

  outline: none;

  background: #fbfcfb;

  color: #333333;

  font-family: inherit;

  font-size: 15px;

  line-height: 1.4;

  transition: border-color 0.25s ease, box-shadow 0.25s ease,
    background 0.25s ease;
}

/* =========================================
   FOCUS
========================================= */

.avatar-form-group input:focus,
.avatar-form-group select:focus,
.avatar-form-group textarea:focus {
  border-color: #3c5e40;
  accent-color: #2563b8;
  background: #ffffff;

  box-shadow: 0 0 0 3px rgba(60, 94, 64, 0.1);
}

/* =========================================
   PLACEHOLDER
========================================= */

.avatar-form-group input::placeholder,
.avatar-form-group textarea::placeholder {
  color: #9b9b9b;

  opacity: 1;
}

/* =========================================
   SELECT
========================================= */

.avatar-form-group select {
  cursor: pointer;
}

/* =========================================
   TEXTAREA
========================================= */

.avatar-form-group textarea {
  min-height: 125px;

  resize: vertical;
}

/* =========================================
   PHONE INPUT
========================================= */

.avatar-form-group .iti {
  width: 100%;
}

.avatar-form-group .iti input {
  width: 100%;

  padding-left: 90px;
}

.avatar-form-group .iti__selected-dial-code {
  font-size: 14px;
}

/* =========================================
   GENDER
========================================= */

.avatar-gender-options {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 20px;
}

.avatar-radio-option {
  display: inline-flex !important;

  align-items: center;

  gap: 7px;

  margin: 0 !important;

  cursor: pointer;

  font-size: 15px !important;

  font-weight: 400 !important;

  color: #555555 !important;
}

.avatar-radio-option input {
  width: 16px !important;
  height: 16px !important;

  min-height: auto !important;

  padding: 0 !important;

  margin: 0;

  accent-color: #2563b8;

  cursor: pointer;
}

/* =========================================
   DIVIDER
========================================= */

.avatar-form-divider {
  width: 100%;

  height: 1px;

  margin: 10px 0 28px;

  background: #e8ece8;
}

/* =========================================
   PRIVACY CHECKBOX
========================================= */

.avatar-privacy-checkbox {
  margin-bottom: 22px;
}

.avatar-privacy-checkbox > label {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  cursor: pointer;
}

.avatar-privacy-checkbox input {
  width: 17px;
  height: 17px;

  min-height: auto;

  padding: 0;

  margin: 3px 0 0;

  flex-shrink: 0;

  accent-color: #2563b8;

  cursor: pointer;
}

.avatar-privacy-text {
  font-size: 15px;

  line-height: 1.5;

  color: #666666;
}

/* =========================================
   FORM RESULT
========================================= */

.avatar-form-result {
  display: none;

  padding: 14px 16px;

  margin-bottom: 20px;

  border-radius: 8px;

  font-size: 15px;

  line-height: 1.5;

  text-align: center;
}

.avatar-form-loading {
  display: block;

  color: #555555;

  background: #f5f5f5;

  border: 1px solid #dddddd;
}

.avatar-form-success {
  display: block;

  color: #236837;

  background: #eaf7ed;

  border: 1px solid #b9e1c2;
}

.avatar-form-error {
  display: block;

  color: #b42318;

  background: #fff0f0;

  border: 1px solid #f0b7b7;
}

/* =========================================
   SUBMIT BUTTON
========================================= */

.avatar-enrollment-submit-btn {
  width: 100%;

  min-height: 50px;

  padding: 13px 20px;

  border: none;

  border-radius: 50px;

  outline: none;

  cursor: pointer;

  background: #2563b8;

  color: #ffffff;

  font-family: inherit;

  font-size: 15px;

  font-weight: 600;

  line-height: 1.4;

  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.avatar-enrollment-submit-btn:hover {
  background: #1d4f91;
  box-shadow: 0 10px 25px rgba(37, 99, 184, 0.25);
  transform: translateY(-2px);
}

.avatar-enrollment-submit-btn:disabled {
  opacity: 0.7;

  cursor: not-allowed;

  transform: none;
}

/* =========================================
   BUTTON LOADER
========================================= */

.avatar-button-loader {
  display: none;
}

.avatar-enrollment-submit-btn.loading .avatar-button-text {
  display: none;
}

.avatar-enrollment-submit-btn.loading .avatar-button-loader {
  display: inline-block;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {
  .avatar-enrollment-section {
    padding: 55px 18px;
  }

  .avatar-enrollment-form-box {
    padding: 30px 25px;
  }

  .avatar-enrollment-wrapper h1 {
    font-size: 27px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {
  .avatar-enrollment-section {
    padding: 40px 12px;
  }

  .avatar-enrollment-form-box {
    padding: 25px 16px;

    border-radius: 14px;
  }

  .avatar-enrollment-wrapper h1 {
    font-size: 23px;

    line-height: 1.4;

    margin-bottom: 25px;
  }

  /* TWO COLUMNS → ONE COLUMN */

  .avatar-form-row-grid {
    grid-template-columns: 1fr;

    gap: 0;
  }

  .avatar-form-section-title {
    margin-bottom: 18px;
  }

  .avatar-form-section-title h4 {
    font-size: 15px;
  }

  .avatar-gender-options {
    gap: 15px;
  }

  .avatar-form-group input,
  .avatar-form-group select,
  .avatar-form-group textarea {
    font-size: 15px;
  }
}

/* =========================================
   EXTRA SMALL MOBILE
========================================= */

@media (max-width: 360px) {
  .avatar-enrollment-section {
    padding-left: 8px;

    padding-right: 8px;
  }

  .avatar-enrollment-form-box {
    padding: 20px 12px;
  }

  .avatar-enrollment-wrapper h1 {
    font-size: 21px;
  }

  .avatar-gender-options {
    gap: 12px;
  }
}
