* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input:focus,
a:focus,
button:focus,
textarea:focus,
select:focus {
  outline: none !important;
  box-shadow: none !important;
}

a,
img,
button,
input[type="submit"],
div {
  transition: all 0.5s ease;
}

img {
  max-width: 100%;
}

.fa.fa-twitter {
  font-family: sans-serif;
}

.fa.fa-twitter::before {
  content: "𝕏";
  font-size: 1.2em;
}

body {
  font-family: "Inter Tight", sans-serif !important;
  font-weight: 400 !important;
  background: #fff !important;
  color: #000 !important;
  margin: 0 !important;
}

header.site-header {
  margin: 0;
  padding: 15px 0;
  position: relative;
  background: #181818;
  width: 100%;
  border-bottom: 5px solid #efa753;
}

header.site-header .row {
  align-items: center;
}

header.site-header .main-menu {
  margin: 0;
  padding: 0;
  display: flex;
  list-style-type: none;
  flex-wrap: wrap;
  justify-content: center;
}

header.site-header .main-menu li {
  margin: 0;
  padding: 0;
  position: relative;
}

header.site-header .main-menu li a {
  margin: 0;
  padding: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

header.site-header .user-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: relative;
  display: flex;
  gap: 15px;
}


header.site-header {
  position: relative;
  width: 100%;
  z-index: 99;
  transition: transform 0.4s ease;
}

/* Fixed header - slides down */
header.site-header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  animation: slideDown 0.6s forwards;
}

/* Keyframes for smooth slide */
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

header.site-header.fixed-header .site-logo img {
  max-height: 80px;
  object-fit: contain;
}

header.site-header .user-list li {
  margin: 0;
  padding: 0;
}

header.site-header .user-list li a {
  color: #fff;
  text-decoration: none;
  font-size: 21px;
}

header.site-header .user-list li a:hover {
  color: #efa753;
}

header.site-header .header-right {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
  justify-content: flex-end;
}

header.site-header .custom-btn {
  margin: 0;
  padding: 0;
  position: relative;
}

header.site-header .custom-btn a {
  position: relative;
  height: 50px;
  padding: 0 30px;
  border: 3px solid #fff;
  background: #5c5c5c;
  user-select: none;
  white-space: nowrap;
  transition: all 0.05s linear;
  font-family: inherit;
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

header.site-header .custom-btn a:hover {
  background: #efa753;
  color: #000;
}

header.site-header .custom-btn a:before,
header.site-header .custom-btn a:after {
  content: "";
  position: absolute;
  background: #5c5c5c;
  transition: all 0.2s linear;
}

header.site-header .custom-btn a:before {
  width: calc(100% + 6px);
  height: calc(100% - 16px);
  top: 8px;
  left: -3px;
}

header.site-header .custom-btn a:after {
  width: calc(100% - 16px);
  height: calc(100% + 6px);
  top: -3px;
  left: 8px;
}

header.site-header .custom-btn a:hover:before {
  height: calc(100% - 32px);
  top: 16px;
  background: #efa753;
}

header.site-header .custom-btn a:hover:after {
  width: calc(100% - 32px);
  left: 16px;
  background: #efa753;
}

header.site-header .custom-btn a span {
  font-size: 15px;
  z-index: 3;
  position: relative;
  font-weight: 600;
}

.home-banner {
  margin: 0;
  padding: 120px 0;
  text-align: center;
  color: #fff;
  background: url("../images/home-banner-bg.jpg") no-repeat center center;
  background-size: cover !important;
  position: relative;
  z-index: 1;
}

.home-banner:before {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.7);
  content: "";
  left: 0;
  top: 0;
}

.home-banner .sub-title {
  font-size: 18px;
  text-transform: uppercase;
}

.home-banner .title {
  font-size: 55px;
  font-family: "DM Serif Display", serif;
  line-height: normal;
}

.home-banner .custom-btn {
  margin: 30px 0 0 0;
  padding: 0;
  position: relative;
}

.home-banner .custom-btn a {
  position: relative;
  height: 50px;
  padding: 0 30px;
  border: 3px solid #000;
  background: #efa753;
  user-select: none;
  white-space: nowrap;
  transition: all 0.05s linear;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  color: #000;
  text-decoration: none;
}

.home-banner .custom-btn a:before,
.home-banner .custom-btn a:after {
  content: "";
  position: absolute;
  background: #efa753;
  transition: all 0.2s linear;
}

.home-banner .custom-btn a:before {
  width: calc(100% + 6px);
  height: calc(100% - 16px);
  top: 8px;
  left: -3px;
}

.home-banner .custom-btn a:after {
  width: calc(100% - 16px);
  height: calc(100% + 6px);
  top: -3px;
  left: 8px;
}

.home-banner .custom-btn a:hover:before {
  height: calc(100% - 32px);
  top: 16px;
}

.home-banner .custom-btn a:hover:after {
  width: calc(100% - 32px);
  left: 16px;
}

.home-banner .custom-btn a span {
  font-size: 15px;
  display: flex;
  color: #000;
  z-index: 3;
  position: relative;
  font-weight: 600;
}

.home-banner .owl-dots {
  text-align: center;
  margin: 30px 0 0 0;
}

.home-banner .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background: #fff !important;
  margin: 0 10px;
  border-radius: 100%;
}

.home-banner .owl-dots .owl-dot.active {
  background: #efa753 !important;
}

.company-info {
  margin: 0;
  padding: 60px 0;
  color: #000;
  background: url("../images/company-info-bg.jpg") no-repeat center center;
  background-size: cover !important;
  position: relative;
}

.company-info .row {
  align-items: center;
}

.company-info .sub-title {
  font-size: 18px;
  text-transform: uppercase;
  color: #444;
}

.company-info h1 {
  font-size: 48px;
  font-family: "DM Serif Display", serif;
  line-height: normal;
  margin: 0 0 15px 0;
}

.company-info p {
  text-align: justify;
}

.company-info .custom-btn {
  margin: 30px 0 0 0;
  padding: 0;
  position: relative;
}

.company-info .custom-btn a {
  position: relative;
  height: 50px;
  padding: 0 30px;
  border: 3px solid #000;
  background: #efa753;
  user-select: none;
  white-space: nowrap;
  transition: all 0.05s linear;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  color: #000;
  text-decoration: none;
}

.company-info .custom-btn a:before,
.custom-btn a:after {
  content: "";
  position: absolute;
  background: #efa753;
  transition: all 0.2s linear;
}

.company-info .custom-btn a:before {
  width: calc(100% + 6px);
  height: calc(100% - 16px);
  top: 8px;
  left: -3px;
}

.company-info .custom-btn a:after {
  width: calc(100% - 16px);
  height: calc(100% + 6px);
  top: -3px;
  left: 8px;
}

.company-info .custom-btn a:hover:before {
  height: calc(100% - 32px);
  top: 16px;
}

.company-info .custom-btn a:hover:after {
  width: calc(100% - 32px);
  left: 16px;
}

.company-info .custom-btn a span {
  font-size: 15px;
  display: flex;
  color: #000;
  z-index: 3;
  position: relative;
  font-weight: 600;
}

.company-info .counter-list {
  margin: 15px 0 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}

.company-info .counter-list li {
  margin: 0;
  padding: 0 15px;
  text-align: center;
  border-left: 1px solid #ccc;
}

.company-info .counter-list li:first-child {
  border-left: none;
}

.company-info .title {
  text-transform: uppercase;
  font-size: 16px;
}

.company-info .value {
  font-size: 48px;
  font-family: "DM Serif Display", serif;
}

.company-info .img-box {
  position: relative;
  padding-left: 90px;
}

.company-info .img-box .thumb {
  position: absolute;
  left: 30px;
  top: 10%;
  width: 180px;
  border: 10px solid #ffedd8;
}

.our-programs {
  margin: 0;
  padding: 60px 0;
  text-align: center;
  color: #000;
  background: url("../images/our-programs-bg.jpg") no-repeat center center;
  background-size: cover !important;
  position: relative;
}

.our-programs .sub-title {
  font-size: 18px;
  text-transform: uppercase;
  color: #444;
}

.our-programs h2 {
  font-size: 48px;
  font-family: "DM Serif Display", serif;
  line-height: normal;
  margin: 0 0 15px 0;
}

.our-programs .slide-content .img-box img {
  height: 250px;
  object-fit: cover;
}

.our-programs .slide-content {
  text-align: left;
}

.our-programs .programs-slide {
  margin-top: 30px;
}

.our-programs .slide-content p:last-child {
  margin-bottom: 0;
}

.our-programs .slide-content .title {
  font-size: 18px;
  font-weight: 500;
  margin: 15px 0 0 0;
}

.our-programs .slide-content p {
  color: #444;
}

.our-programs .owl-dots {
  text-align: center;
  margin: 30px 0 0 0;
}

.our-programs .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background: #b9b9b9 !important;
  margin: 0 10px;
  border-radius: 100%;
}

.our-programs .owl-dots .owl-dot.active {
  background: #efa753 !important;
}

.start-today {
  margin: 0;
  padding: 60px 0;
  color: #fff;
  background: #000;
  position: relative;
  z-index: 1;
}

.start-today:before {
  position: absolute;
  left: 0;
  width: 100%;
  height: 15px;
  content: "";
  background: url("../images/black-square.png") repeat-x left top;
  top: -15px;
}

.start-today:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 15px;
  content: "";
  background: url("../images/black-square.png") repeat-x left bottom;
  bottom: -15px;
}

.start-today .row {
  align-items: center;
}

.start-today .sub-title {
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
}

.start-today h3 {
  font-size: 48px;
  font-family: "DM Serif Display", serif;
  line-height: normal;
  margin: 0 0 15px 0;
  color: #efa753;
}

.start-today p {
  text-align: justify;
}

.start-today .custom-btn {
  margin: 30px 0 0 0;
  padding: 0;
  position: relative;
}

.start-today .custom-btn a {
  position: relative;
  height: 50px;
  padding: 0 30px;
  border: 3px solid #fff;
  background: #efa753;
  user-select: none;
  white-space: nowrap;
  transition: all 0.05s linear;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  color: #000;
  text-decoration: none;
}

.start-today .custom-btn a:before,
.start-today .custom-btn a:after {
  content: "";
  position: absolute;
  background: #efa753;
  transition: all 0.2s linear;
}

.start-today .custom-btn a:before {
  width: calc(100% + 6px);
  height: calc(100% - 16px);
  top: 8px;
  left: -3px;
}

.start-today .custom-btn a:after {
  width: calc(100% - 16px);
  height: calc(100% + 6px);
  top: -3px;
  left: 8px;
}

.start-today .custom-btn a:hover:before {
  height: calc(100% - 32px);
  top: 16px;
}

.start-today .custom-btn a:hover:after {
  width: calc(100% - 32px);
  left: 16px;
}

.start-today .custom-btn a span {
  font-size: 15px;
  display: flex;
  color: #000;
  z-index: 3;
  position: relative;
  font-weight: 600;
}

.start-today .img-box {
  position: relative;
  padding-right: 90px;
}

.start-today .img-box .thumb {
  position: absolute;
  right: 30px;
  top: 10%;
  width: 180px;
  border: 10px solid #000;
}

.client-reviews {
  margin: 0;
  padding: 60px 0;
  text-align: center;
  color: #000;
  background: url("../images/our-programs-bg.jpg") no-repeat center center;
  background-size: cover !important;
  position: relative;
}

.client-reviews .sub-title {
  font-size: 18px;
  text-transform: uppercase;
  color: #444;
}

.client-reviews h3 {
  font-size: 48px;
  font-family: "DM Serif Display", serif;
  line-height: normal;
  margin: 0 0 15px 0;
}

.client-reviews .review-slide {
  margin-top: 30px;
}

.client-reviews .owl-dots {
  text-align: center;
  margin: 30px 0 0 0;
}

.client-reviews .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background: #b9b9b9 !important;
  margin: 0 10px;
  border-radius: 100%;
}

.client-reviews .owl-dots .owl-dot.active {
  background: #efa753 !important;
}

.client-reviews .slide-content {
  padding: 15px;
  border: 1px solid #bdbdbd;
  background: #fafafa;
  text-align: left;
  height: 260px;
}

.client-reviews .slide-content .custom-btn a {
  display: none;
}

.client-reviews .slide-content .img-box {
  width: auto;
}

.client-reviews .slide-content .row {
  margin-bottom: 15px;
}

.client-reviews .slide-content .content {
  width: auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.client-reviews .slide-content .img-box img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  max-height: 60px;
}

.client-reviews .slide-content p {
  color: #444;
}

.client-reviews .slide-content .rating i {
  color: #ffb732;
}

.client-reviews .slide-content .content .auther-name {
  color: #000;
  font-weight: 500;
}

.client-reviews .slide-content .custom-btn a {
  color: #444;
}

.client-reviews .slide-content .custom-btn a:hover {
  color: #ffb732;
}

.instagram-feed {
  margin: 0;
  padding: 60px 0;
  text-align: center;
  color: #fff;
  background: #000;
  position: relative;
  z-index: 1;
}

.instagram-feed:before {
  position: absolute;
  left: 0;
  width: 100%;
  height: 15px;
  content: "";
  background: url("../images/black-square.png") repeat-x left top;
  top: -15px;
}

.instagram-feed:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 15px;
  content: "";
  background: url("../images/black-square.png") repeat-x left bottom;
  bottom: -15px;
}

.instagram-feed h3 {
  font-size: 48px;
  font-family: "DM Serif Display", serif;
  line-height: normal;
  margin: 0 0 15px 0;
  color: #fff;
}

.instagram-feed img {
  width: 100%;
}

.contact-us {
  margin: 0;
  padding: 60px 0;
  color: #000;
  background: url("../images/our-programs-bg.jpg") no-repeat center center;
  background-size: cover !important;
  position: relative;
}

.contact-us .sub-title {
  font-size: 18px;
  text-transform: uppercase;
  color: #444;
}

.contact-us form p {
  margin-bottom: 0
}

.contact-us h3 {
  font-size: 32px;
  font-family: "DM Serif Display", serif;
  line-height: normal;
  margin: 0 0 15px 0;
}

.contact-us .bg {
  background: #e3e3e3;
  padding: 25px 25px 0 25px;
  border-radius: 15px;
}

.contact-us .bg .row {
  align-items: center;
}

.contact-us input,
.contact-us select {
  width: 100%;
  padding: 10px;
  border: none;
  margin: 0 0 25px 0;
}

.contact-us input[type="submit"] {
  background: #000 url("../images/white-arrow.png") no-repeat 63% center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.contact-us input[type="submit"]:hover {
  background-color: #efa753;
}

.latest-blog {
  margin: 0;
  padding: 60px 0;
  color: #000;
  text-align: center;
  background: url("../images/company-info-bg.jpg") no-repeat center center;
  background-size: cover !important;
  position: relative;
}

.latest-blog .row {
  align-items: center;
}

.latest-blog .sub-title {
  font-size: 18px;
  text-transform: uppercase;
  color: #444;
}

.latest-blog h3 {
  font-size: 48px;
  font-family: "DM Serif Display", serif;
  line-height: normal;
  margin: 0 0 15px 0;
}

.latest-blog .blog-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
}

.latest-blog .blog-list li {
  width: 33.333%;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}

.latest-blog .content {
  padding: 10px 0 0 0;
}

.latest-blog .content .title {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin: 0 0 10px 0;
}

.latest-blog .custom-btn a {
  color: #444;
}

.latest-blog .custom-btn a:hover {
  color: #ffb732;
}

.page-titles {
  margin: 0;
  padding: 90px 0;
  text-align: center;
  color: #fff;
  background: url("../images/inner-banner.jpg") no-repeat center center;
  background-size: cover !important;
  position: relative;
  z-index: 1;
}

.page-titles:before {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.7);
  content: "";
  left: 0;
  top: 0;
}

.page-titles h1 {
  font-size: 48px;
  font-family: "DM Serif Display", serif;
  line-height: normal;
  margin: 0 0 15px 0;
}

.page-titles .breadcrumb {
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-left: 0;
}

.page-titles li.breadcrumb-item.active {
  color: #fff;
}

.page-titles .breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}

.page-titles .breadcrumb li a {
  color: #efa753;
  text-decoration: none;
}

.page-titles .breadcrumb li a:hover {
  color: #fff;
}

.contact-page {
  margin: 0;
  padding: 60px 0;
  background: #fff;
  position: relative;
}

.contact-page h2 {
  font-size: 36px;
  font-family: "DM Serif Display", serif;
  line-height: normal;
  margin: 0px 0px 15px;
}

.contact-page .social-list {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 15px;
  font-size: 18px;
  font-weight: 500;
  list-style-type: none;
  align-items: center;
}

.contact-page .contact-info {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
}

.contact-page .contact-info li {
  display: flex;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 15px 0;
  gap: 10px;
  width: 100%;
}

.contact-page .contact-info li span {
  color: #ffb732;
  font-size: 24px;
}

.contact-page input,
.contact-page select {
  width: 100%;
  border: 1px solid #ccc;
  padding: 12px;
  margin: 0 0 25px 0;
}

.contact-page textarea {
  height: 120px;
}

.contact-page input[type="submit"] {
  background: #000 url("../images/white-arrow.png") no-repeat 60% center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.contact-page .form-container {
  background: #e3e3e3;
  padding: 30px;
  border-radius: 15px;
}

.contact-page input[type="submit"]:hover {
  background-color: #efa753;
}

.yoga-programs {
  margin: 0;
  padding: 60px 0;
  background: #fff;
  position: relative;
  text-align: center;
}

.yoga-programs h2 {
  font-size: 42px;
  text-align: center;
  font-family: "DM Serif Display", serif;
  line-height: normal;
  margin: 0px 0px 15px;
}

.yoga-programs .img-box {
  overflow: hidden;
  width: 100%;
}

.yoga-programs .img-box:hover img {
  transform: scale(1.1);
}

.yoga-programs .program-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}

.yoga-programs .program-list li {
  display: flex;
  margin: 0 0 30px 0;
  padding: 0 15px;
  width: 33.333%;
}

.yoga-programs .content-box {
  border: 1px solid #ccc;
  border-bottom: 4px solid #ccc;
  overflow: hidden;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.yoga-programs .content-box .content {
  padding: 15px;
  background: #fff;
}

.yoga-programs .content-box .content .title {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 10px 0;
}

.yoga-programs .custom-btn {
  margin: 15px 0 10px 0;
  padding: 0;
  position: relative;
}

.yoga-programs .custom-btn a {
  position: relative;
  height: 50px;
  padding: 0 30px;
  border: 3px solid #000;
  background: #efa753;
  user-select: none;
  white-space: nowrap;
  transition: all 0.05s linear;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  color: #000;
  text-decoration: none;
}

.yoga-programs .custom-btn a:before,
.custom-btn a:after {
  content: "";
  position: absolute;
  background: #efa753;
  transition: all 0.2s linear;
}

.yoga-programs .custom-btn a:before {
  width: calc(100% + 6px);
  height: calc(100% - 16px);
  top: 8px;
  left: -3px;
}

.yoga-programs .custom-btn a:after {
  width: calc(100% - 16px);
  height: calc(100% + 6px);
  top: -3px;
  left: 8px;
}

.yoga-programs .custom-btn a:hover:before {
  height: calc(100% - 32px);
  top: 16px;
}

.yoga-programs .custom-btn a:hover:after {
  width: calc(100% - 32px);
  left: 16px;
}

.yoga-programs .custom-btn a span {
  font-size: 15px;
  display: flex;
  color: #000;
  z-index: 3;
  position: relative;
  font-weight: 600;
}

.yoga-programs .img-box img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}

.yoga-sec {
  margin: 0;
  padding: 60px 0;
  background: #fff;
  position: relative;
}

.yoga-sec h2 {
  font-size: 36px;
  font-family: "DM Serif Display", serif;
  line-height: normal;
  margin: 0px 0px 15px 0;
}

.yoga-sec h3 {
  font-size: 30px;
  font-family: "DM Serif Display", serif;
  line-height: normal;
  margin: 0px 0px 15px 0;
}

.yoga-sec .custom-btn {
  margin: 15px 0 15px 0;
  padding: 0;
  position: relative;
}

.yoga-sec .custom-btn a {
  position: relative;
  height: 50px;
  padding: 0 30px;
  border: 3px solid #000;
  background: #efa753;
  user-select: none;
  white-space: nowrap;
  transition: all 0.05s linear;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  color: #000;
  text-decoration: none;
}

.yoga-sec .custom-btn a:before,
.custom-btn a:after {
  content: "";
  position: absolute;
  background: #efa753;
  transition: all 0.2s linear;
}

.yoga-sec .custom-btn a:before {
  width: calc(100% + 6px);
  height: calc(100% - 16px);
  top: 8px;
  left: -3px;
}

.yoga-sec .custom-btn a:after {
  width: calc(100% - 16px);
  height: calc(100% + 6px);
  top: -3px;
  left: 8px;
}

.yoga-sec .custom-btn a:hover:before {
  height: calc(100% - 32px);
  top: 16px;
}

.yoga-sec .custom-btn a:hover:after {
  width: calc(100% - 32px);
  left: 16px;
}

.yoga-sec .custom-btn a span {
  font-size: 15px;
  display: flex;
  color: #000;
  z-index: 3;
  position: relative;
  font-weight: 600;
}

.yoga-sec .list-items {
  margin: 0 0 0 20px;
  padding: 0;
}

.yoga-sec .list-items li {
  margin: 0 0 10px 0;
}

.yoga-sec .img-box {
  position: relative;
  z-index: 1;
}

.yoga-sec .img-box img {
  width: 100%;
}

.yoga-sec .row {
  margin-top: 30px;
  margin-bottom: 30px;
}

.yoga-sec .img-box:before {
  border: 1px solid #ccc;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 30px;
  top: 12px;
  width: calc(100% - 30px);
  height: 100%;
  content: "";
  z-index: -1;
}

.yoga-sec .img-box,
.yoga-sec .content-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.yoga-sec .img-box img {
  object-fit: cover;
  height: 100%;
}

.meet-instructor {
  margin: 0;
  padding: 60px 0;
  background: #fff;
  position: relative;
}

.meet-instructor .instructor-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}

.meet-instructor .instructor-list li {
  margin: 0 0 30px 0;
  padding: 25px;
  border-radius: 15px;
  background: #f2f2f2;
  border-bottom: 3px solid #ccc;
}

.meet-instructor .instructor-list .title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 15px 0;
}

.meet-instructor .img-box,
.meet-instructor .content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.meet-instructor .img-box img {
  height: 100%;
  border-radius: 15px;
  max-height: 400px;
  object-fit: cover;
}

.about-sec {
  margin: 0;
  padding: 60px 0;
  background: #fff;
  position: relative;
}

.about-sec h2 {
  font-size: 36px;
  font-family: "DM Serif Display", serif;
  line-height: normal;
  margin: 0px 0px 15px 0;
}

.about-sec .custom-btn {
  margin: 15px 0 15px 0;
  padding: 0;
  position: relative;
}

.about-sec .custom-btn a {
  position: relative;
  height: 50px;
  padding: 0 30px;
  border: 3px solid #000;
  background: #efa753;
  user-select: none;
  white-space: nowrap;
  transition: all 0.05s linear;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  color: #000;
  text-decoration: none;
}

.about-sec .custom-btn a:before,
.custom-btn a:after {
  content: "";
  position: absolute;
  background: #efa753;
  transition: all 0.2s linear;
}

.about-sec .custom-btn a:before {
  width: calc(100% + 6px);
  height: calc(100% - 16px);
  top: 8px;
  left: -3px;
}

.about-sec .custom-btn a:after {
  width: calc(100% - 16px);
  height: calc(100% + 6px);
  top: -3px;
  left: 8px;
}

.about-sec .custom-btn a:hover:before {
  height: calc(100% - 32px);
  top: 16px;
}

.about-sec .custom-btn a:hover:after {
  width: calc(100% - 32px);
  left: 16px;
}

.about-sec .custom-btn a span {
  font-size: 15px;
  display: flex;
  color: #000;
  z-index: 3;
  position: relative;
  font-weight: 600;
}

.about-sec .img-box {
  position: relative;
  z-index: 1;
}

.about-sec .img-box img {
  width: 100%;
}

.about-sec .row {
  margin-top: 30px;
  margin-bottom: 30px;
}

.about-sec .img-box:before {
  border: 1px solid #ccc;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 30px;
  top: 12px;
  width: calc(100% - 30px);
  height: 100%;
  content: "";
  z-index: -1;
}

.about-sec .img-box,
.yoga-sec .content-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.about-sec .img-box img {
  object-fit: cover;
  height: 100%;
}

.faq-sec {
  margin: 0;
  padding: 60px 0;
  background: #fff;
  position: relative;
}

.faq-sec h2 button {
  font-size: 26px;
  font-family: "DM Serif Display", serif;
  line-height: normal;
  margin: 0;
}

.faq-sec .accordion-item {
  margin: 0 0 15px 0;
  border: 1px solid #ccc;
}

.faq-sec .accordion-item:first-of-type>.accordion-header .accordion-button,
.faq-sec .accordion-item:first-of-type {
  border-radius: 0 !important;
}

.faq-sec .accordion-button:not(.collapsed) {
  background: #efa753;
  color: #000;
}

.faq-sec .accordion-body {
  color: #444;
}

.location-sec {
  margin: 0;
  padding: 60px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.location-sec .img-box {
  position: relative;
  z-index: 1;
}

.location-sec .img-box img {
  width: 100%;
}

.location-sec .row {
  margin-top: 30px;
  margin-bottom: 60px;
}

.location-sec .img-box:before {
  border: 1px solid #ccc;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 30px;
  top: 12px;
  width: calc(100% - 30px);
  height: 100%;
  content: "";
  z-index: -1;
}

.location-sec .img-box,
.location-sec .content-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.location-sec .img-box img {
  object-fit: cover;
  height: 100%;
}

.schedule-sec {
  margin: 0;
  padding: 60px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.schedule-sec thead tr th {
  background: #efa753 !important;
  text-align: center;
  vertical-align: middle;
  font-size: 24px;
  font-family: "DM Serif Display", serif;
  line-height: normal;
  margin: 0px 0px 15px 0;
  font-weight: 500;
}

.schedule-sec tbody td {
  font-size: 15px;
  padding: 15px;
  background: #fff;
}

.schedule-sec tbody tr:nth-child(odd) td {
  background: #f2f2f2;
}

.schedule-sec td strong {
  font-size: 16px;
  margin-bottom: 5px;
  display: block;
  font-weight: 600;
  color: #000;
}

footer.site-footer {
  background: #181818;
  color: #fff;
  position: relative;
  margin: 0;
  padding: 45px 0 15px 0;
}

footer.site-footer .footer-top .row {
  align-items: center;
}

footer.site-footer .quick-link {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}

footer.site-footer .quick-link li {
  width: 50%;
  padding: 0 15px;
  margin: 0 0 10px 0;
}

footer.site-footer .quick-link li a {
  text-decoration: none;
  color: #fff;
}

footer.site-footer .quick-link li a:hover {
  color: #ffb732;
}

footer.site-footer .service-link {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}

footer.site-footer .service-link li {
  width: 100%;
  padding: 0;
  margin: 0 0 10px 0;
}

footer.site-footer .service-link li a {
  text-decoration: none;
  color: #fff;
}

footer.site-footer .service-link li a:hover {
  color: #ffb732;
}

footer.site-footer .social-list {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 15px;
  list-style-type: none;
  align-items: center;
}

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

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

footer.site-footer .book-now {
  text-align: right;
}

footer.site-footer .copy-rights {
  text-align: center;
  color: #fff;
}

footer.site-footer .copy-rights a {
  color: #ffb732;
  text-decoration: none;
}

footer.site-footer .copy-rights a:hover {
  color: #fff;
}

footer.site-footer .copy-rights hr {
  margin: 15px 0;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  height: 1px;
}

footer.site-footer .footer-top hr {
  margin: 30px 0;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  height: 1px;
}

footer.site-footer .contact-info {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
}

footer.site-footer .contact-info li {
  display: flex;
  color: #fff;
  margin: 0 0 10px 0;
  gap: 10px;
  width: 100%;
}

footer.site-footer .contact-info li span {
  color: #ffb732;
  font-size: 18px;
}

footer.site-footer h5 {
  margin: 0 0 15px 0;
  font-size: 24px;
}

footer.site-footer .custom-btn {
  margin: 30px 0 0 0;
  padding: 0;
  position: relative;
}

footer.site-footer .custom-btn a {
  position: relative;
  height: 50px;
  padding: 0 30px;
  border: 3px solid #fff;
  background: #5c5c5c;
  user-select: none;
  white-space: nowrap;
  transition: all 0.05s linear;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

footer.site-footer .custom-btn a:before,
footer.site-footer .custom-btn a:after {
  content: "";
  position: absolute;
  background: #5c5c5c;
  transition: all 0.2s linear;
}

footer.site-footer .custom-btn a:before {
  width: calc(100% + 6px);
  height: calc(100% - 16px);
  top: 8px;
  left: -3px;
}

footer.site-footer .custom-btn a:after {
  width: calc(100% - 16px);
  height: calc(100% + 6px);
  top: -3px;
  left: 8px;
}

footer.site-footer .custom-btn a:hover:before {
  height: calc(100% - 32px);
  top: 16px;
}

footer.site-footer .custom-btn a:hover:after {
  width: calc(100% - 32px);
  left: 16px;
}

footer.site-footer .custom-btn a span {
  font-size: 15px;
  display: flex;
  z-index: 3;
  position: relative;
  font-weight: 600;
}

.menu-item-has-children .sub-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

header.site-header .menu-item-has-children .sub-menu {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 215px;
  background: #efa753;
  position: absolute;
  z-index: 99;
}

header.site-header .menu-item-has-children .sub-menu a {
  display: block;
  padding: 5px 16px;
}

header.site-header .menu-item-has-children .sub-menu {
  display: none;
}

header.site-header .menu-item-has-children .sub-menu a {
  display: block;
  padding: 5px 16px;
  border-bottom: 1px solid #ffffff57;
}

.menu-item-has-children a::after {
  content: "\f107";
  font: normal normal normal 14px/1 FontAwesome;
  position: relative;
  top: 0px;
  margin-left: 5px;
}

.sub-menu a::after {
  display: none;
}


/*  new css*/
/* ===== Single Post Styling ===== */
footer.site-footer .custom-btn a:hover,
footer.site-footer .custom-btn a:hover:before,
footer.site-footer .custom-btn a:hover:after {
  background: #efa753;
  color: #000;
}

.single-post article {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

/* Title */
.single-post .entry-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
  line-height: 1.3;
}

/* Meta */
.single-post .entry-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 25px;
}

.single-post .entry-meta a {
  color: #0e58d1;
  text-decoration: none;
}

.single-post .entry-meta a:hover {
  text-decoration: underline;
}

/* Featured Image */
.single-post .entry-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 25px;
}

/* Content */
.single-post .entry-content {
  font-size: 1.05rem;
  color: #444;
}

.single-post .entry-content p {
  margin-bottom: 1.2em;
}

.single-post .entry-content h2 {
  margin: 1.5em 0 0.8em;
  font-size: 1.6rem;
  font-weight: 600;
  color: #222;
}

.single-post .entry-content h3 {
  margin: 1.2em 0 0.6em;
  font-size: 1.3rem;
  font-weight: 600;
}

.single-post .entry-content ul {
  padding-left: 1.5em;
  margin-bottom: 1.2em;
}

.single-post .entry-content a {
  color: #0e58d1;
  font-weight: 500;
  text-decoration: none;
}

.single-post .entry-content a:hover {
  text-decoration: underline;
}

/* Footer */
.single-post .entry-footer {
  margin-top: 25px;
  font-size: 14px;
  color: #666;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.single-post .entry-footer a {
  color: #0e58d1;
}

/* Navigation (Prev/Next Posts) */
.single-post .post-navigation {
  max-width: 850px;
  margin: 30px auto;
  padding: 20px 0;
  border-top: 1px solid #eee;
  font-size: 14px;
}

.single-post .post-navigation a {
  color: #0e58d1;
  text-decoration: none;
  font-weight: 500;
}

.single-post .post-navigation a:hover {
  text-decoration: underline;
}

main#primary a {
  color: #efa753;
}

/* Comments */
.single-post #comments {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 20px 30px;
  background: #f9f9f9;
  border-radius: 10px;
}

.single-post #comments h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.single-post #comments textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
}

.single-post #comments input.submit {
  background: #0e58d1;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.single-post #comments input.submit:hover {
  background: #073a90;
}

.latest-blog .blog-list {
  gap: 20px;
}

.latest-blog .blog-list li {
  flex: 1 1 calc(33.333% - 30px);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.latest-blog .blog-list .img-box {
  width: 100%;
  height: 220px;
  /* fixed height for all images */
  overflow: hidden;
}

.latest-blog .blog-list .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ensure image covers the box */
  display: block;
}

.latest-blog .blog-list .content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.latest-blog .blog-list .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #000;
}

.latest-blog .blog-list .custom-btn a {
  font-size: 14px;
  color: #efa753;
  text-decoration: none;
  font-weight: 500;
}

.latest-blog .blog-list .custom-btn a:hover {
  text-decoration: underline;
}



/*------------ Responsive 26 Sep 2025 ---------*/

@media(min-width:1200px) {}

@media(max-width:1199px) {}

@media(min-width:992px) {}

@media(min-width:768px) {
  .single-post {
    padding: 20px 0;
  }

  .single-post article {
    padding: 20px;
  }

  .single-post .entry-title {
    font-size: 1.6rem;
  }

  .single-post .entry-content h2 {
    font-size: 1.3rem;
  }

  header.site-header .menu-item-has-children:hover .sub-menu {
    display: block;
  }
}

@media(max-width:991px) {
  .schedule-sec thead tr th {
    font-size: 18px
  }

  .schedule-sec .wp-block-table table,
  .schedule-sec .responsive-table table {
    width: 800px
  }

  .schedule-sec .responsive-table {
    overflow-x: auto
  }

  .yoga-sec .wixzy-editor {
    width: 100%;
    max-width: 100%
  }
}




@media(max-width:767px) {
  .home-banner .title {
    font-size: 36px
  }

  .home-banner {
    padding: 45px 0
  }

  .company-info .counter-list li {
    border-left: none;
    border-bottom: 1px solid #ccc;
    width: 100%;
    text-align: center;
    padding-bottom: 30px
  }

  .company-info .counter-list li:last-child {
    border-bottom: none;
    padding-bottom: 0
  }

  .latest-blog,
  .instagram-feed,
  .contact-us,
  .client-reviews,
  .start-today,
  .our-programs,
  .company-info {
    padding: 30px 0
  }

  .latest-blog h3,
  .instagram-feed h3,
  .contact-us h3,
  .client-reviews h3,
  .start-today h3,
  .our-programs h2,
  .company-info h1 {
    font-size: 32px
  }

  .latest-blog .blog-list li {
    width: 100%;
    margin-bottom: 30px
  }

  .latest-blog .blog-list li:last-child {
    margin-bottom: 0
  }

  .contact-us .img-box {
    margin: 0 0 15px 0
  }

  .start-today .img-box {
    padding-right: 15px;
    margin-bottom: 15px
  }

  .company-info .img-box {
    padding-left: 15px;
    margin-top: 15px
  }

  .company-info .img-box .thumb {
    left: 5px;
    top: 0;
    width: 120px
  }

  .start-today .img-box .thumb {
    right: 5px;
    top: 0;
    width: 120px
  }

  .contact-us input[type="submit"] {
    background-position: 75% center
  }

  .contact-us .bg {
    padding: 15px 15px 0 15px;
    margin-top: 15px
  }

  .schedule-sec {
    padding: 30px 0
  }


  footer.site-footer {
    padding-top: 30px
  }

  footer.site-footer .logo {
    text-align: left;
    padding-top: 15px
  }

  footer.site-footer .book-now {
    text-align: left
  }

  footer.site-footer .contact-info li {
    flex-direction: column;
    position: relative;
    padding-left: 25px
  }

  footer.site-footer .contact-info li span {
    position: absolute;
    left: 0;
    top: -1px
  }












  header.site-header .site-logo img {
    height: 80px;
    object-fit: contain;
  }

  header.site-header .header-right {
    justify-content: center;
    margin-top: 5px
  }

  header.site-header .menu-item-has-children a::after {
    display: none
  }

  header.site-header .header-menu .mobile-menu {
    opacity: 1;
    position: absolute;
    z-index: 9;
    right: 15px;
    top: 35px;
    background: #efa753;
    padding: 5px 10px;
    border-radius: 5px;
  }

  header.site-header .header-menu .mobile-menu .bar1,
  header.site-header .header-menu .mobile-menu .bar2,
  header.site-header .header-menu .mobile-menu .bar3 {
    width: 35px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: 0.4s;
  }

  header.site-header .header-menu .mobile-menu.close .bar1 {
    transform: translate(0, 8px) rotate(-45deg);
  }

  header.site-header .header-menu .mobile-menu.close .bar3 {
    transform: translate(0, -8px) rotate(45deg);
  }

  header.site-header .header-menu .mobile-menu.close .bar2 {
    opacity: 0;
  }

  header.site-header .site-brand {
    padding-bottom: 15px;
    text-align: center;
  }

  header.site-header .main-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 95px;
    z-index: 9;
    width: 100%
  }

  header.site-header .main-menu {
    background: #000;
    padding: 0 15px;
  }

  header.site-header .main-menu li.menu-item-has-children:before {
    position: absolute;
    right: 0;
    top: 0px;
    content: "\f0dd ";
    font-family: 'FontAwesome';
    width: 42px;
    height: 42px;
    background: #efa753;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }

  header.site-header .main-menu li {
    border-bottom: 1px solid #ccc;
  }

  header.site-header .main-menu li:last-child {
    border-bottom: none
  }

  header.site-header .main-menu li .sub-menu {
    padding: 0;
    width: 100%;
    top: 0px;
    position: relative;
  }

  header.site-header .search-container {
    width: 100%;
    top: 49px;
    min-width: 100%
  }

  header.site-header .search-box .fa-search {
    position: relative;
    top: 5px
  }

  header.site-header .main-menu li a {
    padding: 10px 0;
    display: inline-block
  }


  .yoga-sec {
    padding: 30px 0;
  }

  .yoga-sec h3 {
    font-size: 24px;
    margin: 10px 0;
  }

  .yoga-sec h2 {
    font-size: 32px;
  }

  .yoga-sec .img-box:before {
    display: none;
  }

  .yoga-sec ol,
  .yoga-sec ul {
    padding-left: 0rem !important;
  }

  .page-titles ul,
  .page-titles ol {
    margin: 0;
  }

  .page-titles h1 {
    font-size: 35px;
  }

  .yoga-programs .program-list li {
    width: 100%;
  }

  .yoga-programs h2 {
    font-size: 32px;
  }

  .location-sec {
    padding: 30px 0;
  }

  .location-sec .img-box {
    margin-top: 20px;
  }

  .location-sec .row {
    margin-top: 0px;
    margin-bottom: 30px;
  }

  .about-sec {
    padding: 30px 0;
  }

  .about-sec h2 {
    font-size: 30px;
  }

  .contact-page {
    padding: 30px 0;
  }

  .contact-page h2 {
    font-size: 32px;
  }

  .contact-page .social-list {
    margin-bottom: 30px;
  }

}


.client-reviews {
  padding: 80px 0;
}

.reviews-wrapper {
  max-width: 1200px;
  margin: auto;
  position: relative;
  overflow: visible;
  padding: 20px 0;   
}

.reviews-track {
  display: flex;
  gap: 30px;
}


.review-card {
  flex: 0 0 calc(33.333% - 20px);
  background: #fff;
  padding: 25px 22px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}


.review-card p {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
	padding-top:10px;
  margin-bottom: 15px;
}


.review-card h5 {
  font-size: 14px;
  font-weight: 600;
  color:#efa753;
  letter-spacing: 0.6px;
  margin: 0;
}
.review-card {
  position: relative;
}

.review-card::before {
  content: "❝";
  position: absolute;
  top: -21px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
/*   line-height: 1;  */
  padding-top: 10px; 

  color: #efa753;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
  .review-card {
    flex: 0 0 calc(50% - 15px);
  }
}


@media (max-width: 576px) {
  .reviews-track {
    flex-direction: column;
  }

  .review-card {
    flex: 0 0 100%;
  }
}