/* Banner section  */
.banner__section {
  background-color: #f2f8fb;
  overflow: hidden;
}
.banner__section > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 12/5;
  position: relative;
  z-index: 1;
}
.banner__section .wrapper {
  position: relative;
  text-align: center;
}
.banner__section .wrapper::before {
  content: url(../img/banner-bg.png);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.banner__section .entry-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.banner__section .entry-content {
  position: relative;
  z-index: 1;
}
.banner__section .entry-container h1 {
  margin-bottom: clamp(8px, 2vw, 15px);
}
.banner__section .entry-container .btn {
  margin: 26px auto 0;
}
.banner__section p {
  font-weight: 700;
}
@media (max-width: 567px) {
  .banner__section .entry-container::before {
    content: unset;
  }
}
/* Banner section  */

/* Common section  */
.multiple-section > div:not(:last-child) {
  margin-bottom: clamp(30px, 4vw, 60px);
}
.upper-section {
  display: flex;
  align-items: center;
  justify-content: center;
}
.upper-section > div {
  width: 33.33%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.upper-section > div:first-child {
  border-radius: 10px 0 0 10px;
  width: 30%;
}
.upper-section > div:nth-child(3) {
  width: 30%;
  border-radius: 0 10px 10px 0;
}
.multiple-section .featured-image {
  position: relative;
  margin: 0;
}
.upper-section > div,
.upper-section > div .featured-image img {
  height: 550px;
  overflow: hidden;
}
.upper-section > div:nth-child(2),
.upper-section > div:nth-child(2) .featured-image img {
  height: 733px;
}
.upper-section > div img {
  width: 100%;
  object-fit: cover;
}
.upper-section .slick-dots,
.lower-section .slick-dots {
  bottom: 125px;
  background-color: #00000050;
  border-radius: 20px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: fit-content;
  margin: 0 auto;
  right: 0;
  left: 0;
}
.upper-section .slick-dots li,
.lower-section .slick-dots li {
  padding: 0;
  margin: 0;
  width: unset;
  height: unset;
}
.upper-section .slick-dots li.slick-active,
.lower-section .slick-dots li.slick-active {
  padding: 2px;
  border: 1px solid var(--light);
  border-radius: 50px;
}
.upper-section .slick-dots li button,
.lower-section .slick-dots li button {
  width: 8px;
  height: 8px;
  padding: 0;
  background-color: #ffffff71;
  border-radius: 50px;
}
.upper-section .slick-dots li.slick-active button,
.lower-section .slick-dots li.slick-active button {
  background-color: var(--light);
}
.upper-section .slick-dots li button::before,
.lower-section .slick-dots li button::before {
  content: unset;
}
.upper-section .main-title,
.upper-section .sub-title {
  background-color: var(--primary);
  width: 100%;
  padding: 12px;
  text-align: center;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.upper-section .sub-title {
  background-color: var(--secondary);
  top: auto;
  bottom: 0;
}
.upper-section h3 {
  color: var(--light);
  max-width: 320px;
}
.upper-section > div:nth-child(2) h3 {
  max-width: 365px;
}
.four-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(295px, 1fr));
  gap: 30px;
}
.lower-section .slick-dots {
  bottom: 25px;
}
.lower-section .entry-container {
  position: relative;
}
.lower-section .pricing,
.lower-section .date {
  display: flex;
  position: absolute;
  top: 20px;
  left: 0;
  color: var(--primary);
  background-color: var(--light);
  font-size: 14px;
  font-weight: 700;
  padding: 6px;
  border-radius: 0 50px 50px 0;
  z-index: 1;
}
.lower-section .featured-image {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
}
.lower-section img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.lower-section h3 a {
  color: var(--primary);
}
.lower-section .entry-content {
  margin-top: 6px;
}
.lower-section p {
  font-size: 14px;
}
.lower-section .btn {
  margin: 45px auto 0;
}
@media (max-width: 1600px) {
  .upper-section > div,
  .upper-section > div .featured-image img {
    height: 440px;
    overflow: hidden;
  }
  .upper-section > div:nth-child(2),
  .upper-section > div:nth-child(2) .featured-image img {
    height: 620px;
  }
}
@media (max-width: 1200px) {
  .upper-section > div {
    width: 33.33% !important;
  }
  .upper-section > div:nth-child(2),
  .upper-section > div:nth-child(2) .featured-image img {
    height: 600px;
  }
  .upper-section > div,
  .upper-section > div .featured-image img {
    height: 420px;
  }
}
@media (max-width: 989px) {
  .upper-section > div:nth-child(2),
  .upper-section > div:nth-child(2) .featured-image img {
    height: 500px;
  }
  .upper-section > div,
  .upper-section > div .featured-image img {
    height: 320px;
  }
  .upper-section .main-title,
  .upper-section .sub-title {
    min-height: 70px;
  }
}
@media (max-width: 767px) {
  .upper-section {
    flex-wrap: wrap;
    gap: 20px;
  }
  .upper-section > div {
    width: auto !important;
    border-radius: 10px !important;
  }
  .upper-section > div {
    height: unset !important;
  }
  .upper-section > div .featured-image img {
    height: 290px !important;
  }
  .upper-section .main-title,
  .upper-section .sub-title {
    position: unset;
  }
  .upper-section .slick-list {
    margin: 0 -12.5px;
  }
  .upper-section .entry-container {
    border-radius: 10px;
    overflow: hidden;
    margin: 0 12.5px;
  }
  .multiple-section .lower-section .entry-container:not(:nth-child(-n + 2)) {
    display: none;
  }
  .upper-section .slick-dots {
    bottom: 35px;
  }
}
@media (max-width: 567px) {
  .upper-section > div {
    width: 100% !important;
  }
  .upper-section .entry-container,
  .upper-section .slick-list {
    margin: 0;
  }
  .multiple-section .lower-section .entry-container:not(:nth-child(-n + 1)) {
    display: none;
  }
}
/* Common section  */

/* Sound Healing section  */
.sound-healing__section {
  background-image: url(../img/sound-healing-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.sound-healing__section .section-wrap h2 {
  background: radial-gradient(
    57.62% 57.62% at 50% 50%,
    #0570b6 0%,
    #a31d24 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sound-healing__section .lower-section h3 a {
  color: var(--secondary);
}
.sound-healing__section .upper-section p {
  color: var(--light);
}
.sound-healing__section .btn {
  background: var(--light);
  color: var(--primary);
}
/* Sound Healing section  */

/* Yoga & Wellness Retreat section  */
.yoga-wellness__section {
  border: 1px solid #0570b633;
  background-color: #f2f8fb;
}
/* Yoga & Wellness Retreat section  */

/* About us section  */
.about-us__section .lower-section .entry-container {
  overflow: hidden;
  border-radius: 10px;
}
.about-us__section .lower-section .featured-image {
  margin-bottom: 0;
}
.about-us__section .lower-section .featured-image img {
  height: 240px;
}
.about-us__section .lower-section .entry-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background-color: #000000ab;
}
.about-us__section .lower-section .entry-title a {
  color: var(--light);
}
/* About us section  */

/* Testimonials section  */
.testimonials__section,
.faqs__section{
  border: 1px solid #0570b633;
  background-color: #f2f8fb;
}
.blogs-update__section {
  border: 1px solid #0570b633;
  background-color: var(--light);
}
.testimonials__section iframe,
.testimonials__section video {
  width: 100%;
  height: 100%;
  padding-bottom: 85px;
}
.testimonials__section .upper-section > div {
  height: 450px;
}
.testimonials__section .upper-section > div:nth-child(2) {
  height: 580px;
}
.testimonials__section h3 {
  max-width: 100%;
  font-size: 21px;
  margin-bottom: 4px;
}
.testimonials__section .client-details p {
  font-size: 18px;
  margin-bottom: 4px;
}
.testimonials__section span {
  color: var(--light);
  font-size: 18px;
  font-weight: 900;
  display: block;
}
.rating i {
  color: #f4ad28;
  font-size: clamp(16px, 2vw, 20px);
}
.testimonials__section .client-image {
  margin-top: 30px;
  margin-bottom: 20px;
}
.testimonials__section .client-image > img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--light);
}
.testimonials__section .lower-section {
  position: relative;
}
.testimonials__section .lower-section::before {
  content: url(../img/testimonial-1.png);
  position: absolute;
  top: -60px;
  left: -80px;
}
.testimonials__section .lower-section::after {
  content: url(../img/testimonial-1.png);
  position: absolute;
  bottom: 0;
  right: -80px;
  transform: rotate(180deg);
}
.testimonials__section .four-grid {
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.testimonials__section .lower-section .entry-container {
  background-color: var(--light);
  box-shadow: 0px 0px 15px 0px #0570b61a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: var(--transition);
}
.testimonials__section .lower-section .entry-container:hover {
  background-color: var(--primary);
  color: var(--light);
}
.testimonials__section .lower-section .entry-container:hover h3 {
  color: var(--light);
}
.testimonials__section .lower-section .client-details {
  max-width: 200px;
  margin: 0 auto;
}
.testimonials__section .lower-section .client-image {
  margin-top: 25px;
  margin-bottom: 14px;
}
.testimonials__section .lower-section .client-image > img {
  width: 70px;
  height: 70px;
}
.testimonials__section .lower-section .rating {
  margin-bottom: 16px;
}
.testimonials__section .lower-section h3 {
  font-size: 17px;
}
.testimonials__section .lower-section .client-details p,
.testimonials__section .lower-section span {
  font-size: 14px;
}
.testimonials__section .lower-section span {
  color: var(--secondary);
  transition: var(--transition);
}
.testimonials__section .lower-section .entry-container:hover span {
  color: var(--light);
}
@media (max-width: 1600px) {
  .testimonials__section .upper-section p,
  .testimonials__section span {
    font-size: 16px;
  }
  .testimonials__section .client-image > img {
    width: 60px;
    height: 60px;
    border: 2px solid var(--light);
    margin: 0 auto;
  }
  .testimonials__section h3 {
    font-size: 19px;
  }
  .testimonials__section .client-image {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .testimonials__section .client-details p {
    font-size: 14px;
  }
  .testimonials__section .upper-section > div {
    height: 400px;
  }
  .testimonials__section .upper-section > div:nth-child(2) {
    height: 540px;
  }
}
@media (max-width: 1200px) {
  .testimonials__section .upper-section > div {
    height: 360px;
  }
  .testimonials__section .upper-section > div:nth-child(2) {
    height: 460px;
  }
}
@media (max-width: 1024px) {
  .testimonials__section .upper-section > div {
    height: 300px;
  }
  .testimonials__section .upper-section > div:nth-child(2) {
    height: 360px;
  }
  .testimonials__section .lower-section::before {
    content: unset;
  }
}
@media (max-width: 989px) {
  .testimonials__section iframe, .testimonials__section video {
    padding-bottom: 65px;
}
}
@media (max-width: 767px) {
  .testimonials__section iframe,
  .testimonials__section video {
    aspect-ratio: 5/5;
    padding-bottom: 0;
  }
}
/* Testimonials section  */

/* Course Training Page  */
.course-banner__section {
  position: relative;
}
.course-banner__section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 12/5;
}
.course-banner__section .entry-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(20px, 3vw, 50px) 20px;
  text-align: center;
  background-color: #00000050;
}
.course-banner__section h1 {
  color: var(--light);
  margin: 0 auto;
  max-width: 820px;
}
.course-banner__section p {
  color: var(--light);
  font-size: 18px;
  margin-top: 10px;
  font-weight: 700;
}
.course-filter__wrapper {
  display: flex;
  align-items: start;
  gap: 35px;
}
.course-filter__wrapper .sidebar-right {
  display: none;
}
.sidebar {
  min-width: 360px;
  width: 360px;
  position: sticky;
  top: 120px;
}
.sidebar > div:not(:last-child) {
  margin-bottom: 25px;
}
.sidebar .course-price,
.sidebar .course-class {
  background: radial-gradient(
    98.12% 133.14% at 2.01% 1.88%,
    rgba(5, 112, 182, 0.75) 0%,
    #0570b6 100%
  );
  border-radius: 10px;
  text-align: center;
}
.sidebar .course-price > div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.sidebar .course-price .btn-white {
  padding: 10px 20px;
}
.sidebar .course-price > div:nth-child(even) {
  border: 1px solid #00000033;
  border-left: unset;
  border-right: unset;
  background: #ffffff1a;
}
.sidebar .course-option {
  background: radial-gradient(
    95.04% 189.72% at 3.35% 6.82%,
    rgba(163, 29, 36, 0.75) 0%,
    #a31d24 100%
  );
  border-radius: 10px;
  padding: 25px;
}
.sidebar .course-class {
  padding: 25px;
  text-align: left;
}
.sidebar h3,
.sidebar p,
.sidebar ul li a {
  color: var(--light);
  line-height: 1.1;
}
.sidebar ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  background: #ffffff33;
  border: 1px solid #ffffff66;
  border-radius: 10px;
}
.sidebar ul li {
  padding: 13px 16px;
}
.sidebar ul li:not(:last-child) {
  border-bottom: 1px solid #ffffff1a;
}
.sidebar ul li:nth-child(even) {
  background: #ffffff0d;
}
.sidebar ul li a {
  font-size: 14px;
  font-weight: 600;
}

.course-filter {
  width: 100%;
  overflow: hidden;
}
.course-filter .tabs-filter {
  background: #fff;
  border: 1px solid #0570b659;
  border-radius: 50px;
  padding: 7px;
  margin: 0 0 25px;
  max-width: 100%;
  width: fit-content;
}
.course-filter ul.tabs {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 0;
  justify-content: start;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.course-filter .tabs::-webkit-scrollbar {
  display: none;
}
.course-filter ul.tabs li {
  font-size: 16px;
  flex-shrink: 0;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}
.course-filter ul.tabs li.active {
  color: var(--light);
  background-color: var(--primary);
  padding: 8px 12px;
  border-radius: 25px;
}
.course-filter .tab-content {
  display: none;
}
.course-filter .tab-content.active {
  display: block;
}
.course-filter .tab-content > div:not(:last-child) {
  margin-bottom: 40px;
}
.course-filter h2,
.course-filter h3 {
  margin-bottom: 14px;
}
.course-details {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 25px;
}
.course-details > div {
  border: 1px solid #0570b6;
  background-color: var(--light);
  border-radius: 10px;
  padding: 10px 15px;
}
.course-details span {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  display: block;
}
.course-details p {
  font-size: 14px;
}
.yoga-type ul {
  display: flex;
  gap: 10px;
  list-style: none;
  flex-wrap: wrap;
  margin: 20px 0 0;
  padding: 0;
}
.yoga-type ul li a {
  border: 1px solid #0570b6;
  background-color: var(--light);
  border-radius: 25px;
  display: block;
  color: var(--text);
  padding: 9px 12px;
  position: relative;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.yoga-type ul li a:hover {
  color: var(--light);
  background-color: var(--primary);
}
.yoga-type ul li a::after {
  content: url(../img/arrow-right.png);
  transition: var(--transition);
}
.yoga-type ul li a:hover::after {
  filter: brightness(0) invert(1);
}
.course-faqs .accordion {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}
.course-faqs .accordion > li {
  border-bottom: 1px solid #cccccc;
  padding: 12px 0;
}
.course-faqs > ul > li:first-child {
  border-top: 1px solid #cccccc;
}
.accordion-title {
  color: var(--text);
  font-size: 20px;
  position: relative;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
  margin: 0 !important;
  cursor: pointer;
}
.accordion-title::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  line-height: 1;
  margin-top: 6px;
  font-size: 16px;
  cursor: pointer;
}
.course-faqs .accordion > li.open .accordion-title {
  color: var(--primary);
}
.course-faqs .accordion > li.open .accordion-title::after {
  content: "\f106";
}
.course-faqs .accordion-content {
  display: none;
}
.course-faqs .accordion-content {
  margin-top: 15px;
}
.course-faqs .accordion-content,
.course-faqs .accordion-content p {
  font-size: 15px;
}
.course-faqs .accordion-content ul {
  list-style: disc;
  margin: 8px 0;
}
.course-faqs .accordion-content ul li::marker {
  color: var(--secondary);
}
.course-faqs .accordion-content ul li strong {
  display: block;
  color: var(--secondary);
  margin-bottom: 4px;
}
.course-faqs .accordion-content ul li:not(:last-child) {
  margin-bottom: 12px;
}
.food-accomodation-gallery {
  display: flex;
  align-items: start;
  gap: 20px;
  flex-wrap: wrap;
}
.food-accomodation-gallery > a {
  width: calc(50% - 10px);
  position: relative;
}
.food-accomodation-gallery > a img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.food-accomodation-gallery > a h3 {
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(10px, 2vw, 15px);
  background-color: #00000070;
  color: var(--light);
  font-size: clamp(14px, 2vw, 18px);
}
.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  display: none;
  padding: 10px 20px;
  z-index: 999;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-footer.show {
  transform: translateY(0);
}
.sticky-footer > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 14px;
}
.sticky-footer > div > div {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}
.sticky-footer p {
  font-size: 13px;
  color: var(--light);
}
.sticky-footer h3 {
  font-size: 18px;
  color: var(--light);
}
.sticky-footer .btn-white {
  padding: 7px 16px;
  font-size: 13px;
}

@media (max-width: 1200px) {
  .sidebar {
    min-width: 320px;
    width: 320px;
  }
}
@media (max-width: 1024px) {
  .food-accomodation-gallery > a img {
    height: 240px;
  }
}
@media (max-width: 767px) {
  .course-filter__wrapper {
    flex-direction: column;
    gap: 35px;
  }
  .sidebar {
    position: static;
    width: 100%;
    min-width: unset;
    top: unset;
  }
  .course-filter {
    overflow: unset;
  }
  .course-banner__section img {
    aspect-ratio: 12/8;
  }
  .sticky-footer {
    display: block;
  }
  .course-filter .tabs-filter {
    position: sticky;
    top: 70px;
    z-index: 9;
  }
  .course-filter .tabs-filter::before {
    content: "";
    background-color: var(--light);
    position: absolute;
    inset: 0;
    border-radius: 25px;
  }
  .course-filter .tab-content {
    display: block !important;
  }
  .course-filter .tab-content:not(:last-child) {
    margin-bottom: 45px;
  }
  .course-filter ul.tabs {
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth; /* smooth scroll */
    position: relative;
  }
  .course-filter ul.tabs li {
    display: inline-block;
    cursor: pointer;
  }
  .sidebar .course-option {
    display: none;
  }
  .sidebar.sidebar-right .course-option,
  .course-filter__wrapper .sidebar-right {
    display: block;
  }
}
@media (max-width: 567px) {
  .course-banner__section img {
    aspect-ratio: 12/9;
  }
  .food-accomodation-gallery {
    gap: 10px;
  }
  .food-accomodation-gallery > a {
    width: calc(50% - 5px);
  }
  .food-accomodation-gallery > a img {
    height: 170px;
  }
}
/* Course Training Page  */

/* Our Team Page  */
.banner__section span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  margin-top: -10px;
  margin-bottom: 16px;
}
.banner__section .featured-image {
  margin-top: 30px;
}
.our-team {
  width: 100%;
}
.our-team span,
.our-team__container span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin: 4px 0 30px;
}
.our-team__wrapper {
  column-count: 2;
  column-gap: clamp(15px, 3vw, 30px);
}
.our-team__container {
  background-color: #f3f8fb;
  border-radius: 10px;
  overflow: hidden;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: 30px;
  page-break-inside: avoid;
}
.our-team__container img {
  height: 310px;
  width: 100%;
  object-fit: cover;
}
.our-team__container .entry-container {
  padding: 20px 25px 25px;
}
.our-team__container h3 {
  margin: 0 !important;
}
.our-team__container span {
  font-size: 16px;
  margin: 4px 0 16px;
}
.our-team__container p {
  font-size: 14px;
}
.our-team__container .entry-content p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.our-team__container .entry-content.show p {
  -webkit-line-clamp: unset;
}
.our-team__container .entry-content span.btn {
  cursor: pointer;
  font-size: 14px;
  color: var(--light);
  margin: 20px 0 0;
  position: relative;
}
.our-team__container .entry-content span.btn::after {
  content: "\f063";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  color: var(--light);
  margin-left: 6px;
  font-size: 12px;
}
.our-team__container .entry-content.show span.btn::after {
  content: "\f062";
}
@media (max-width: 989px) {
  .our-team__container img {
    height: 270px;
  }
  .our-team__container .entry-container {
    padding: 15px 18px 18px;
  }
}
@media (max-width: 767px) {
}
@media (max-width: 567px) {
  .our-team__container img {
    height: 210px;
  }
  .our-team__container .entry-container {
    padding: 12px;
  }
}

/* Our Team Page  */

/* Contact us Page  */
.banner__section iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 12/5;
  position: relative;
  z-index: 1;
}
.contact-us {
  display: flex;
  gap: 35px;
  align-items: start;
  width: 100%;
}
.contact-us-form {
  background:
    linear-gradient(0deg, #d9ebfe, #d9ebfe),
    linear-gradient(
      295.38deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.5) 100%
    );
  border-radius: 10px;
  padding: 35px;
  width: 52%;
}
.contact-us-form h2 {
  background: linear-gradient(90deg, #125daa 0%, #072544 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 6px 0;
  margin-bottom: 16px;
}
.contact-us-form form > div:not(:last-child) {
  margin-bottom: 18px;
}
.contact-us-form label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #5d6166;
  margin-bottom: 4px;
}
.contact-us-form input,
.contact-us-form textarea {
  width: 100%;
  padding: 7px 14px;
  background-color: var(--light);
  border: 1px solid #00000033;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--primary-font);
  outline: none;
}
.contact-us-form textarea {
  border-radius: 15px;
  height: 144px;
  resize: none;
}
.contact-us-form input[type="submit"] {
  background: linear-gradient(90deg, #125daa 0%, #81bae6 100%);
  border: none;
  width: fit-content;
  color: var(--light);
  cursor: pointer;
  padding: 8px 16px;
  transition: var(--transition);
}
.contact-us-form input[type="submit"]:hover {
  transform: scale(1.05);
}
.contact-us-form form > div:nth-child(1) input {
  width: 80%;
}
.contact-us-form form > div:nth-child(3) input {
  width: 60%;
}
.contact-information {
  width: 48%;
}
.contact-information span {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-top: 6px;
}
.contact-information .contact-details {
  margin-top: 30px;
}
.contact-information .contact-details > div {
  padding: 18px 0;
  border-bottom: 1px solid #e5e5e5;
  margin: 0 !important;
}
.contact-information .contact-details > div:first-child {
  border-top: 1px solid #e5e5e5;
}
.contact-information .contact-details h3 {
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 1px;
}
.contact-information .contact-details p,
.contact-information .contact-details a {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
@media (max-width: 1024px) {
  .contact-us {
    flex-direction: column;
  }
  .contact-us-form,
  .contact-information {
    width: 100%;
  }
}
@media (max-width: 567px) {
  .contact-us-form form > div:nth-child(1) input,
  .contact-us-form form > div:nth-child(3) input {
    width: 100%;
  }
}
/* Contact us Page  */

/* Yoga Details Page  */
.yoga-detail {
  display: flex;
  gap: 25px;
  align-items: start;
  padding-top: 5px;
}
.yoga-detail .featured-image {
  width: 30%;
}
.yoga-detail .featured-image img {
  width: 100%;
}
.yoga-detail .entry-content {
  width: 70%;
}
@media (max-width: 567px) {
  .yoga-detail {
    flex-direction: column;
    gap: 15px;
  }
  .yoga-detail .featured-image,
  .yoga-detail .entry-content {
    width: 100%;
  }
}
/* Yoga Details Page  */

/* Dosa Test Page  */
.dosha-box > div {
  background: #eaf6fb;
  border-radius: 20px;
}
.dosha-box > div:not(:last-child) {
  margin-bottom: 25px;
}
.dosha-box > div > div {
  padding: 25px 30px;
}
.dosa-test__section h3 {
  border-bottom: 1px solid #fff;
  padding: 20px 30px;
  color: var(--text);
}
.dosha-group {
  margin-bottom: 25px;
}
.dosha-group p {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}
.dosha-group label {
  display: inline-block;
  margin-right: 25px;
  margin-top: 15px;
  font-size: 16px;
  color: #555;
  cursor: pointer;
}
.dosa-test__section input[type="radio"] {
  margin-right: 6px;
}
.dosa-test__section .submit-wrap {
  margin-top: 30px;
}
.dosa-test__section button {
  cursor: pointer;
  border: unset;
  font-family: var(--primary-font);
}
/* Dosa Test Page  */

/* Booking Page  */
.booking__section .wrapper-small {
  max-width: 810px;
}
.booking__section .entry-content {
  text-align: center;
  margin-bottom: 35px;
}
.booking__section .entry-content h2 {
  color: var(--primary);
  font-size: clamp(28px, 3vw, 40px);
  margin: 0 0 5px;
}
.booking__section .entry-content p {
  color: var(--secondary);
  font-size: 18px;
  font-weight: 700;
}
.booking-form-card {
  background:
    linear-gradient(0deg, #d9ebfe, #d9ebfe),
    linear-gradient(
      295.38deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.5) 100%
    );
  border-radius: 10px;
  padding: 36px 36px 40px;
}
.form-divider {
  height: 1px;
  background: var(--light);
  margin: 28px 0;
}
.field-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.field-label .req {
  color: #d94f3d;
  margin-left: 2px;
}
.field-input {
  width: 100%;
  background: var(--light);
  border: 1px solid #00000033;
  border-radius: 50px;
  padding: 13px 18px;
  font-family: var(--primary-font);
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  appearance: none;
}
.field-input::placeholder {
  color: #b0c4d8;
}
.field-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 168, 0.12);
}
textarea.field-input {
  resize: vertical;
  min-height: 130px;
  border-radius: 15px;
}
.select-wrapper {
  position: relative;
}
.select-wrapper select.field-input {
  cursor: pointer;
  padding-right: 44px;
}
.select-wrapper::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  rotate: 45deg;
  pointer-events: none;
  margin-top: -3px;
}
.room-toggle {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}
.room-option {
  position: relative;
}
.room-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.room-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 24px 16px;
  border-radius: 15px;
  border: 1px solid #00000033;
  background: var(--light);
  cursor: pointer;
  transition: all 0.22s ease;
  user-select: none;
}
.room-card:hover {
  border-color: var(--primary);
}
.room-card .room-type {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.room-card .room-price {
  font-size: 1.9rem;
  font-weight: 700;
  background: linear-gradient(90deg, #125daa 0%, #072544 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.room-option input[type="radio"]:checked + .room-card {
  background: linear-gradient(90deg, #125daa 0%, #81bae6 100%);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(37, 99, 168, 0.3);
  border: unset;
  padding: 19px 24px 17px;
}
.room-option input[type="radio"]:checked + .room-card .room-type {
  color: #fff;
}
.room-option input[type="radio"]:checked + .room-card .room-price {
  color: var(--light);
  background: unset;
  -webkit-text-fill-color: unset;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field-group {
  display: flex;
  flex-direction: column;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  user-select: none;
}
.checkbox-label input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #00000033;
  border-radius: 5px;
  background: var(--light);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: all 0.18s;
}
.checkbox-label input[type="checkbox"]:checked {
  background: var(--primary);
  border-color: var(--primary);
}
.checkbox-label input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 1px solid white;
  border-top: none;
  border-left: none;
  rotate: 45deg;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #125daa 0%, #81bae6 100%);
  color: var(--light);
  font-family: var(--primary-font);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 14px 34px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(37, 99, 168, 0.3);
  transition:
    transform 0.18s,
    box-shadow 0.18s,
    opacity 0.18s;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 168, 0.38);
}
.btn-submit:active {
  transform: translateY(0);
}
.btn-submit svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 520px) {
  .field-row {
    grid-template-columns: 1fr;
  }
  .booking-form-card {
    padding: 24px 18px 30px;
  }
  .room-toggle {
    flex-direction: column;
  }
}
/* Booking Page  */

/* All Testimonials section  */
.all-testimonials__section .lower-section::before,
.all-testimonials__section .lower-section::after {
  content: unset !important;
}
.all-testimonials__section .four-grid {
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  max-width: unset;
}
/* All Testimonials section  */

/* FAQs section  */
.faqs__section .wrapper-small {
  max-width: 900px;
}
/* FAQs section  */

/* Amenities section  */
.amenities__section .lower-section .featured-image {
  margin-bottom: 12px;
}
.amenities__section .entry-title {
  margin-bottom: 4px;
}
/* Amenities section  */

/* Single Blog section  */
.single-blog__wrapper {
  display: flex;
  align-items: start;
  gap: 35px;
}
.single-blog__wrapper .sidebar h3 {
  border-bottom: 1px solid #cdcdcd;
  padding-bottom: 12px;
  color: var(--dark);
}
.single-blog__wrapper .sidebar ul li a {
  font-size: 16px;
  color: var(--text);
  padding: 10px 0;
  display: block;
}
.single-blog__wrapper .sidebar ul li {
  padding: 0;
}
#toc {
  list-style: none;
  padding-left: 0;
}
#toc li.toc-h3 {
  padding-left: 10px;
}
#toc li.toc-h4 {
  padding-left: 15px;
}
#toc a:hover {
  color: var(--dark);
}
#toc li.active a {
  background-color: #056fb64b;
  padding-left: 5px;
  border-left: 5px solid var(--primary);
}
#toc li {
  transition: all 0.2s ease;
}
.single-blog__container h3,
.single-blog__container h4,
.single-blog__container h5 {
  color: var(--secondary);
}
@media (max-width: 767px) {
  .single-blog__wrapper {
    flex-direction: column;
  }
}
/* Single Blog section  */

/* ── Booking Payment Page ── */

.payment-page-wrap {
  padding: clamp(35px, 5vw, 70px) 0;
  background-color: #f2f8fb;
}
.payment-page-wrap .wrapper-small {
    max-width: 1000px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 30px;
  align-items: start;
}

.payment-card {
  background: linear-gradient(0deg, #d9ebfe, #d9ebfe),
              linear-gradient(295.38deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 100%);
  border-radius: 10px;
  overflow: hidden;
}

.card-header-bar {
  background: radial-gradient(98.12% 133.14% at 2.01% 1.88%, rgba(5,112,182,0.85) 0%, #0570b6 100%);
  padding: 18px 25px;
}
.card-header-bar h3 {
  color: var(--light) !important;
  font-size: 18px !important;
  font-weight: 700;
  margin: 0;
}
.card-header-bar.red {
  background: radial-gradient(95.04% 189.72% at 3.35% 6.82%, rgba(163,29,36,0.85) 0%, #a31d24 100%);
}

/* Summary */
.summary-body {
  padding: 20px 25px 25px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid #0570b620;
  gap: 15px;
}
.summary-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.summary-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  min-width: 110px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.summary-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-align: right;
}
.summary-value.amount {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(90deg, #a31d24 0%, #0570b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* Bank details */
.bank-body {
  padding: 20px 25px 25px;
}
.bank-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid #0570b620;
}
.bank-info-row:last-child {
  border-bottom: none;
}
.bank-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  min-width: 130px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.bank-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.qr-wrap {
  margin-top: 18px;
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid #0570b620;
}
.qr-wrap p {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.qr-image {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 10px;
  border: 3px solid var(--primary);
  padding: 6px;
  background: #fff;
}

/* Upload form */
.upload-body {
  padding: 25px 30px 30px;
}
.field-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* File upload area */
.file-upload-area {
  position: relative;
  border: 2px dashed #0570b660;
  border-radius: 10px;
  padding: 22px 20px;
  text-align: center;
  background: #fff;
  cursor: pointer;
  transition: var(--transition);
}
.file-upload-area:hover {
  border-color: var(--primary);
  background: #f2f8fb;
}
.file-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.file-upload-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  background: linear-gradient(270deg, #0570b6 0%, #6eb5e3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.file-upload-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.file-upload-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 3px;
}
.file-upload-hint {
  font-size: 12px;
  font-weight: 600;
  color: #888;
}

/* Image preview */
.img-preview-wrap {
  display: none;
  margin-top: 14px;
  text-align: center;
}
.img-preview-wrap img {
  max-width: 280px;
  max-height: 260px;
  object-fit: contain;
  border-radius: 8px;
  border: 2px solid #0570b640;
}
.remove-btn {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--primary-font);
  padding: 0;
}
.remove-btn:hover {
  text-decoration: underline;
}

/* Alert */
.alert-danger {
  background: #fff0f0;
  border: 1px solid #a31d2440;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 20px;
}
.alert-danger ul {
  margin: 0;
  padding-left: 18px;
}
.alert-danger li {
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
}

/* Responsive */
@media (max-width: 900px) {
  .payment-grid {
      grid-template-columns: 1fr;
  }
}
@media (max-width: 567px) {
  .upload-body {
      padding: 18px;
  }
  .summary-body,
  .bank-body {
      padding: 15px 18px 18px;
  }
  .field-row-2 {
      grid-template-columns: 1fr;
  }
}
/* ── Booking Payment Page ── */
