/* Ensure nested dropdowns (submenu inside submenu) are not clipped */
.main-nav .nav .sub-menu {
  overflow: visible !important;
}


@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
div pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
figure,
header,
nav,
section,
article,
aside,
footer,
figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header,
nav,
section,
article,
aside,
footer,
hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  font-family: 'Poppins', sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--yoga-brown);
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 500;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 15px;
  line-height: 28px;
  color: var(--yoga-text-light);
}

img {
  width: 100%;
  overflow: hidden;
}

/* 
---------------------------------------------
Traditional Yoga School Design System
--------------------------------------------- 
*/

/* Traditional Color Palette - Earthy & Serene */
:root {
  --yoga-beige: #f5f1e8;
  --yoga-cream: #faf8f3;
  --yoga-sage: #8b9a7e;
  --yoga-sage-dark: #6b7a5e;
  --yoga-terracotta: #c49a6c;
  --yoga-terracotta-dark: #a67c52;
  --yoga-brown: #5d4e37;
  --yoga-brown-dark: #3d2e1f;
  --yoga-white: #ffffff;
  --yoga-text: #3d2e1f;
  --yoga-text-light: #6b5d4a;
  --yoga-border: #e8e0d4;
}

html,
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--yoga-cream);
  color: var(--yoga-text);
}

::selection {
  background: var(--yoga-sage);
  color: var(--yoga-white);
}

::-moz-selection {
  background: var(--yoga-sage);
  color: var(--yoga-white);
}

.section {
  padding-top: 30px;
  margin-top: 120px;
}

.section-heading {
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 36px;
  font-weight: 500;
  text-transform: none;
  margin: 20px 0;
  line-height: 1.4;
  color: var(--yoga-brown);
  letter-spacing: -0.5px;
}

.section-heading h2 em {
  color: var(--yoga-sage);
  font-style: normal;
  font-weight: 600;
}

.section-heading h6 {
  color: var(--yoga-sage);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
}

.main-button a {
  display: inline-block;
  background-color: var(--yoga-sage);
  color: var(--yoga-white);
  font-size: 14px;
  font-weight: 500;
  height: 44px;
  line-height: 44px;
  padding: 0px 32px;
  border-radius: 4px;
  transition: all .3s ease;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.main-button a:hover {
  background-color: var(--yoga-sage-dark);
  color: var(--yoga-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 154, 126, 0.3);
}

/* 
---------------------------------------------
Pre-loader Style (soft yoga loader)
--------------------------------------------- 
*/

.js-preloader {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 243, 214, 0.95), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(255, 155, 63, 0.16), transparent 55%),
    var(--yoga-cream);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@-webkit-keyframes preloader-spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes preloader-spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes preloader-breathe {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    box-shadow: 0 16px 40px rgba(61, 46, 31, 0.18);
  }
  50% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(61, 46, 31, 0.24);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    box-shadow: 0 16px 40px rgba(61, 46, 31, 0.18);
  }
}

@keyframes preloader-breathe {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    box-shadow: 0 16px 40px rgba(61, 46, 31, 0.18);
  }
  50% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(61, 46, 31, 0.24);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    box-shadow: 0 16px 40px rgba(61, 46, 31, 0.18);
  }
}

.preloader-inner {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--yoga-border);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-animation: preloader-breathe 2.4s ease-in-out infinite;
          animation: preloader-breathe 2.4s ease-in-out infinite;
}

/* Outer ring */
.preloader-inner .dot {
  position: absolute;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  border: 3px solid rgba(139, 154, 126, 0.25);
  border-top-color: var(--yoga-sage);
  border-right-color: var(--yoga-terracotta);
  -webkit-animation: preloader-spin 1.4s linear infinite;
          animation: preloader-spin 1.4s linear infinite;
}

/* Inner logo circle */
.preloader-inner::before {
  content: "";
  position: absolute;
  inset: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.9), transparent 60%),
    #ffffff url("../images/logo.png") center center/60% no-repeat;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Calm loading dots under the circle – reuse existing markup */
.preloader-inner .dots {
  position: absolute;
  bottom: -38px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
}

.preloader-inner .dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yoga-sage);
  opacity: 0.35;
}

.preloader-inner .dots span:nth-child(2) {
  opacity: 0.7;
}

.preloader-inner .dots span:nth-child(3) {
  opacity: 1;
}



/* 
---------------------------------------------
Header Style
--------------------------------------------- 
*/

.background-header {
  background-color: var(--yoga-white) !important;
  border-bottom: 1px solid var(--yoga-border) !important;
  border-radius: 0 !important;
  height: 80px !important;
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

.header-area {
  position: fixed;
  background-color: var(--yoga-white);
  border-bottom: 1px solid var(--yoga-border);
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Always apply nav-wrapper styling - no change on scroll */
.header-area .nav-wrapper {
  background: var(--yoga-white);
  padding: 12px 40px;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  min-height: 80px;
  border-bottom: 1px solid var(--yoga-border);
}

.header-area .main-nav {
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.header-area .container-fluid {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 992px) {
  .header-area .nav-wrapper,
  .background-header .nav-wrapper {
    background: var(--yoga-white);
  }

  .header-area .main-nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 80px;
  }

  .header-area .main-nav .logo {
    order: 2;
  }

  .header-area .main-nav .nav {
    order: 1;
    justify-content: flex-start;
  }

  .background-header .main-nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 80px;
  }

  .background-header .main-nav .logo {
    display: inline-flex !important;
    align-items: center;
  }

  .header-area .main-nav .logo img {
    height: 64px;
  }

  .background-header .main-nav .nav {
    margin-top: 0;
  }

  .background-header .main-nav .nav li {
    height: 52px;
    line-height: 52px;
  }

  .header-area .main-nav .nav li {
    display: flex;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .header-area .main-nav .logo img {
    height: 72px;
  }
}

.header-area .main-nav .logo {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: inline-flex;
  align-items: center;
  text-align: center;
  height: 100%;
}

.header-area .main-nav .logo img {
  height: 48px;
  width: auto;
}

.header-area .main-nav .logo h1 {
  font-size: 36px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin: 0;
  padding: 0;
  border-right: none;
  letter-spacing: 1px;
}

.background-header .main-nav .logo,
.background-header .main-nav #search {
  margin-top: 0;
}

.header-area .main-nav #search {
  position: relative;
}

.header-area .main-nav #search input {
  background-color: rgba(255, 255, 255, 0.10);
  height: 44px;
  width: 250px;
  border-radius: 23px;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  padding: 0px 20px 0px;
}

.header-area .main-nav #search input::placeholder {
  color: rgba(250, 250, 250, 0.75);
}

.header-area .main-nav #search i {
  position: absolute;
  color: #fff;
  right: 20px;
  top: 15px;
  font-size: 16px;
}

.header-area .main-nav ul.nav {
  border-radius: 0px 0px 25px 25px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 4px;
  flex-basis: 100%;
  margin-right: 0px;
  justify-content: center;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
  height: 100%;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
}

.header-area .main-nav .nav li {
  padding-left: 5px;
  padding-right: 5px;
  height: 40px;
  line-height: 40px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.header-area .main-nav .nav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 0;
  font-weight: 400;
  font-size: 15px;
  height: 40px;
  line-height: 40px;
  text-transform: none;
  color: var(--yoga-text);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border: none;
  letter-spacing: 0.3px;
  position: relative;
}

.header-area .main-nav .nav li a::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 6px;
  height: 2px;
  background: var(--yoga-sage);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.header-area .main-nav .nav li:hover a::before,
.header-area .main-nav .nav li a.active::before {
  transform: scaleX(1);
  opacity: 1;
}

.background-header .main-nav .nav {
  margin-top: 0;
}

.background-header .main-nav .nav li {
  height: 52px;
  line-height: 52px;
}

.header-area .main-nav .nav li:hover a {
  color: var(--yoga-sage);
  background-color: transparent;
  opacity: 1;
}

.header-area .main-nav .nav li a.active {
  color: var(--yoga-sage);
  background-color: transparent;
  opacity: 1;
}

.background-header .main-nav .nav li:hover a {
  color: var(--yoga-sage);
  background-color: transparent;
  opacity: 1;
}

.background-header .main-nav .nav li a.active {
  color: var(--yoga-sage);
  background-color: transparent;
  opacity: 1;
}

/* Dropdown Menu Styles */
.header-area .main-nav .nav li.has-sub {
  position: relative;
}

.header-area .main-nav .nav li.has-sub>a {
  position: relative;
  padding-right: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-area .main-nav .nav li.has-sub>a:after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 11px;
  transition: transform 0.3s ease;
  line-height: 1;
}

.header-area .main-nav .nav li.has-sub.is-open-sub>a:after {
  transform: translateY(-50%) rotate(180deg);
}

.header-area .main-nav .nav li.has-sub .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background-color: var(--yoga-white);
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--yoga-border);
  padding: 8px 0;
  margin-top: 8px;
  display: none;
  z-index: 1000;
  list-style: none;
}

.header-area .main-nav .nav li.has-sub .sub-menu li {
  padding: 0;
  height: auto;
  line-height: normal;
  white-space: normal;
}

.header-area .main-nav .nav li.has-sub .sub-menu li a {
  display: block;
  padding: 12px 20px;
  color: var(--yoga-text);
  font-size: 14px;
  text-transform: none;
  border-radius: 0;
  height: auto;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.header-area .main-nav .nav li.has-sub .sub-menu li a:hover {
  background-color: var(--yoga-beige);
  color: var(--yoga-sage);
  opacity: 1;
}

.header-area .main-nav .nav li.has-sub .sub-menu li:first-child a {
  border-radius: 8px 8px 0 0;
}

.header-area .main-nav .nav li.has-sub .sub-menu li:last-child a {
  border-radius: 0 0 8px 8px;
}

/* Nested submenu styles (submenu within submenu) */
.header-area .main-nav .nav li.has-sub .sub-menu li.has-sub {
  position: relative;
}

.header-area .main-nav .nav li.has-sub .sub-menu li.has-sub>a {
  padding-right: 35px;
}

.header-area .main-nav .nav li.has-sub .sub-menu li.has-sub>a:after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
  font-size: 11px;
  transition: transform 0.3s ease;
}

.header-area .main-nav .nav li.has-sub .sub-menu li.has-sub.is-open-sub>a:after {
  transform: translateY(-50%) rotate(90deg);
}

.header-area .main-nav .nav li.has-sub .sub-menu li.has-sub .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 250px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  margin-left: 8px;
  display: none;
  z-index: 1000;
}

@media (min-width: 1201px) {
  .header-area .main-nav .nav li.has-sub .sub-menu li.has-sub:hover .sub-menu {
    display: block;
  }
}

/* Mobile dropdown styles */
@media (max-width: 1200px) {
  .header-area .main-nav .nav li.has-sub .sub-menu {
    position: static;
    box-shadow: none;
    background-color: transparent;
    margin-top: 0;
    padding: 0;
  }

  .header-area .main-nav .nav li.has-sub .sub-menu li a {
    padding-left: 40px;
    color: #666;
    font-size: 14px;
    background-color: #fafafa;
  }

  .header-area .main-nav .nav li.has-sub .sub-menu li a:hover {
    background-color: rgba(5, 83, 70, 0.15);
    color: #055346;
  }

  /* Nested submenu mobile styles */
  .header-area .main-nav .nav li.has-sub .sub-menu li.has-sub .sub-menu {
    position: static;
    box-shadow: none;
    background-color: transparent;
    margin-left: 0;
    padding: 0;
    display: none;
  }

  .header-area .main-nav .nav li.has-sub .sub-menu li.has-sub.is-open-sub .sub-menu {
    display: block;
  }

  .header-area .main-nav .nav li.has-sub .sub-menu li.has-sub>a {
    padding-right: 40px;
  }

  .header-area .main-nav .nav li.has-sub .sub-menu li.has-sub>a:after {
    right: 20px;
    color: #666;
  }

  .header-area .main-nav .nav li.has-sub .sub-menu li.has-sub.is-open-sub>a:after {
    color: #055346;
  }

  .header-area .main-nav .nav li.has-sub .sub-menu li.has-sub .sub-menu li a {
    padding-left: 60px;
    color: #666;
    font-size: 13px;
    background-color: #f5f5f5;
  }

  .header-area .main-nav .nav li.has-sub .sub-menu li.has-sub .sub-menu li a:hover {
    background-color: rgba(5, 83, 70, 0.15);
    color: #055346;
  }
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  position: absolute;
  top: 33px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  left: 20px;
  right: auto;
  display: none;
}

.background-header .main-nav .menu-trigger {
  top: 20px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #fff;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #fff;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #fff;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #fff;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #fff;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #fff;
}

.header-area.header-sticky .nav li a.active {
  color: #fff;
}

.visible {
  display: inline !important;
}

body.mobile-menu-open {
  overflow: hidden;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  /* No visual darkening behind the mobile slide-sheet menu */
  background: transparent !important;
  display: none !important;
}

.mobile-menu-overlay.show,
body.mobile-menu-open .mobile-menu-overlay {
  /* Keep it disabled even when JS adds .show */
  display: none !important;
}

/* Mobile Submenu Sidebar */
.mobile-submenu-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background-color: #fff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 10001;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mobile-submenu-sidebar.open {
  right: 0;
}

.mobile-submenu-header {
  display: flex;
  align-items: center;
  padding: 20px 16px;
  background-color: #055346;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 70px;
}

.mobile-submenu-back {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  margin-right: 12px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.mobile-submenu-back:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-submenu-back i {
  font-size: 18px;
}

.mobile-submenu-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  flex: 1;
  line-height: 1.4;
}

.mobile-submenu-content {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

.mobile-submenu-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-submenu-content li {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-submenu-content li:last-child {
  border-bottom: none;
}

.mobile-submenu-content a {
  display: block;
  padding: 16px 20px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  transition: background-color 0.2s ease, color 0.2s ease;
  line-height: 1.5;
  position: relative;
}

.mobile-submenu-content li.has-sub>a {
  padding-right: 45px;
}

.mobile-submenu-content li.has-sub>a:after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 16px;
}

.mobile-submenu-content a:hover,
.mobile-submenu-content a:active {
  background-color: rgba(5, 83, 70, 0.1);
  color: #055346;
}

.mobile-submenu-overlay {
  position: fixed;
  inset: 0;
  /* Disable any darkening behind the submenu slide-sheet */
  background: transparent !important;
  display: none !important;
}

.mobile-submenu-overlay.show {
  display: none !important;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 2px;
    padding-right: 2px;
  }

  .header-area .main-nav .nav li a {
    padding-left: 10px;
    padding-right: 10px;
  }

}

@media (max-width: 767px) {
  .main-banner {
    padding-top: 0;
  }

  .main-banner .item {
    padding: 0;
    margin: 0;
    min-height: 100vh;
    /* Ensure banner background image is perfectly centered on mobile */
    background-position: center center !important;
  }

  /* Equal left/right space for hero banner on mobile */
  .main-banner .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .main-banner .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  .main-banner .col-lg-12 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .main-banner .owl-banner .owl-stage-outer {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Mobile slide-out menu base styles */
  .background-header .main-nav .nav,
  .header-area .main-nav .nav {
    background-color: #111111;
  }

  .background-header .main-nav .nav li a,
  .header-area .main-nav .nav li a {
    line-height: 56px;
    height: 56px;
    font-weight: 400;
    color: #ffffff;
    background-color: transparent;
    border-radius: 0;
    padding-left: 24px;
    padding-right: 24px;
    transition: all 0.25s ease;
    font-size: 15px;
    display: flex;
    align-items: center;
    position: relative;
  }

  .header-area .main-nav .nav li a:hover,
  .header-area .main-nav .nav li a.active {
    background-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    padding-left: 24px;
  }

  /* Hide any old active underline indicator on mobile */
  .header-area .main-nav .nav li a.active:before {
    display: none;
  }

  .header-area .main-nav .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    right: auto;
  }

  .background-header .main-nav .logo {
    top: 0px;
  }

  .background-header .main-nav .border-button {
    top: 0px !important;
  }

  .header-area .main-nav .border-button {
    position: absolute;
    top: 15px;
    right: 70px;
  }

  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.25) !important;
    opacity: 1;
  }

  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }

  .header-area {
    background-color: rgba(57, 55, 53, 0.95);
    padding: 0;
    height: 70px;
    box-shadow: none;
    text-align: center;
  }

  .header-area .logo {
    margin: 0;
    position: absolute;
    left: 50%;
    top: 12px;
    transform: translateX(-50%);
  }

  /* Ensure navbar (hamburger) icon is shown only on mobile and aligned to the left on all pages */
  .header-area .main-nav .menu-trigger,
  .header-area .menu-trigger {
    display: block !important;
    position: absolute;
    left: 16px;
    right: auto;
    top: 18px;
  }

  .header-area .main-nav {
    overflow: visible;
    align-items: flex-start;
    gap: 0;
  }

  .header-area .main-nav .nav {
    float: none;
    width: 75%;
    max-width: 320px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    left: auto;
    bottom: 0;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    padding: 0;
    padding-top: 0;
    padding-bottom: 0;
    background: #1a1a1a;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 0;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }

  /* Ensure nav items container grows to fill space */
  .header-area .main-nav .nav>li:not(.mobile-menu-header):not(.mobile-menu-footer) {
    flex: 0 0 auto;
  }

  /* Mobile Menu Header */
  .header-area .main-nav .nav .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
    flex-shrink: 0;
    border-top: none;
    width: 100%;
    margin: 0;
  }

  .header-area .main-nav .nav .mobile-menu-header a {
    height: auto;
    line-height: 1;
    padding: 0;
  }

  .header-area .main-nav .nav .mobile-menu-header .mobile-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
  }

  .header-area .main-nav .nav .mobile-menu-header .mobile-logo img {
    max-height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
  }

  .header-area .main-nav .nav .mobile-menu-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
  }

  .header-area .main-nav .nav .mobile-menu-close:hover {
    opacity: 0.7;
  }

  .header-area .main-nav .nav .mobile-menu-close i {
    line-height: 1;
  }

  /* When submenu sidebar is open, slightly dim the main menu */
  body.mobile-submenu-open .header-area .main-nav .nav {
    opacity: 0.6;
    pointer-events: none;
  }

  .header-area .main-nav .nav.open {
    right: 0;
  }

  /* Add padding at bottom for last item */
  .header-area .main-nav .nav li:last-child {
    margin-bottom: 0;
  }

  .header-area .main-nav .nav li:last-child a {
    border-bottom: none;
  }

  /* Ensure content area is scrollable and fills remaining space */
  .header-area .main-nav .nav>li {
    position: relative;
    z-index: 2;
  }

  /* Menu items */
  .header-area .main-nav .nav>li {
    flex-shrink: 0;
  }

  /* Add spacing between nav items (except header and footer) */
  .header-area .main-nav .nav>li:not(.mobile-menu-header):not(.mobile-menu-footer) {
    margin-bottom: 0;
  }

  /* Add spacing after last nav item before footer */
  .header-area .main-nav .nav>li:not(.mobile-menu-header):not(.mobile-menu-footer):last-of-type {
    margin-bottom: 24px;
  }

  .background-header .main-nav .nav li,
  .header-area .main-nav .nav li {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: transparent;
    height: auto;
    border-radius: 0;
    margin: 0;
    position: relative;
  }

  .background-header .main-nav .nav li:first-child,
  .header-area .main-nav .nav li:first-child,
  .header-area .main-nav .nav li.mobile-menu-header {
    border-top: none;
  }

  /* Custom scrollbar for slide sheet */
  .header-area .main-nav .nav::-webkit-scrollbar {
    width: 4px;
  }

  .header-area .main-nav .nav::-webkit-scrollbar-track {
    background: transparent;
  }

  .header-area .main-nav .nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
  }

  .header-area .main-nav .nav::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
  }

  .header-area .main-nav .nav li.has-sub>a {
    position: relative;
    padding-right: 40px;
  }

  .header-area .main-nav .nav li.has-sub>a:after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
    transition: transform 0.3s ease, color 0.2s ease;
    line-height: 1;
  }

  .header-area .main-nav .nav li.has-sub.is-open-sub>a:after {
    transform: translateY(-50%) rotate(180deg);
    color: #fff;
  }

  .header-area .main-nav .nav li.has-sub>a:hover:after {
    color: #fff;
  }

  .header-area.header-sticky .nav {
    margin-top: 0px !important;
  }

  .background-header.header-sticky .nav {
    margin-top: 0px !important;
  }

  .header-area .main-nav .nav li {
    width: 100%;
    background: transparent;
    padding-left: 0px !important;
    padding-right: 0px !important;
    margin: 0;
  }

  .header-area .main-nav .nav li a {
    width: 100%;
    display: block;
    text-align: left;
    justify-content: flex-start;
  }

  /* Mobile Menu Footer */
  .header-area .main-nav .nav .mobile-menu-footer {
    margin-top: auto;
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #1a1a1a;
    flex-shrink: 0;
    width: 100%;
  }

  .header-area .main-nav .nav .mobile-menu-footer a {
    height: auto;
    line-height: 1.5;
  }

  .mobile-footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    margin-bottom: 32px;
  }

  .mobile-footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-footer-column a {
    color: #999;
    font-size: 13px;
    text-decoration: none;
    line-height: 1.5;
    height: auto;
    padding: 0;
    transition: color 0.2s ease;
  }

  .mobile-footer-column a:hover {
    color: #fff;
    background: transparent;
  }

  .mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    line-height: 1;
    height: auto;
  }

  .mobile-cta-primary {
    background: #2a2a2a;
    color: #fff;
    gap: 8px;
  }

  .mobile-cta-primary:hover {
    background: #333;
    color: #fff;
  }

  .mobile-cta-primary i {
    font-size: 12px;
  }

  .mobile-cta-secondary {
    background: #2a2a2a;
    color: #fff;
  }

  .mobile-cta-secondary:hover {
    background: #333;
    color: #fff;
  }

  /* Hide mobile menu header and footer on desktop */
  @media (min-width: 768px) {

    .header-area .main-nav .nav .mobile-menu-header,
    .header-area .main-nav .nav .mobile-menu-footer {
      display: none;
    }
  }

}

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner {
  background-image: none;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0;
}

.main-banner .container {
  max-width: 100%;
  padding: 0;
}

.main-banner .item-1 {
  background-image: url(../images/banner-item-01.jpg);
}

.main-banner .item-2 {
  background-image: url(../images/banner-item-02.jpg);
}

.main-banner .item-3 {
  background-image: url(../images/banner-item-03.jpg);
}

.main-banner .item {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 0;
  padding: 100px 100px;
  margin-left: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.main-banner .owl-banner,
.main-banner .owl-banner .owl-stage-outer {
  border-radius: 0;
  overflow: hidden;
}

.main-banner .item span.category {
  background-color: var(--yoga-sage);
  color: var(--yoga-white);
  font-size: 13px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 0;
  display: inline-block;
  margin-bottom: 30px;
  letter-spacing: 1px;
  font-weight: 500;
}

.main-banner .item h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 70px;
  width: 60%;
  margin-bottom: 40px;
}

.main-banner .item p {
  color: #fff;
  width: 65%;
}

.main-banner .item .buttons {
  display: flex;
  margin-top: 50px;
}

.main-banner .item .buttons .main-button {
  margin-right: 30px;
}

.main-banner .item .buttons .main-button a {
  font-size: 14px;
  color: var(--yoga-white);
  background-color: var(--yoga-sage);
  display: inline-block;
  height: 48px;
  line-height: 48px;
  padding: 0px 32px;
  border-radius: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.main-banner .item .buttons .icon-button i {
  color: #055346;
  background-color: #fff;
  display: inline-block;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 16px;
}

.main-banner .item .buttons .icon-button a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.main-banner .owl-nav {
  position: absolute;
  max-width: 1320px;
  bottom: 25px;
  left: 0;
  right: 0;
  transform: none;
  text-align: center;
}

.main-banner .owl-nav .owl-prev i,
.main-banner .owl-nav .owl-next i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  display: inline-block;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}

.main-banner .owl-nav .owl-prev i {
  position: absolute;
  left: 25px;
  bottom: 0;
  transform: none;
}

.main-banner .owl-nav .owl-next i {
  position: absolute;
  right: 25px;
  bottom: 0;
}

.main-banner .owl-nav .owl-prev i:hover,
.main-banner .owl-nav .owl-next i:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.5);
}

/* Ensure inner page hero headings sit clearly below the fixed header */
.main-banner h1 {
  margin-top: 40px;
}

@media (min-width: 768px) and (max-width: 992px) {
  .main-banner h1 {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .main-banner h1 {
    margin-top: 60px;
  }
}


/* 
---------------------------------------------
Services Style
--------------------------------------------- 
*/

.services .service-item:hover .icon img {
  margin-top: -10px;
}

.services .service-item {
  position: relative;
  margin-top: 95px;
}

.services .service-item .icon {
  width: 190px;
  height: 190px;
  display: inline-block;
  text-align: center;
  line-height: 0;
  background-color: var(--yoga-sage);
  border-radius: 0;
  position: absolute;
  right: 0;
  top: -95px;
  overflow: hidden;
}

.services .service-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: all .2s;
}

.services .service-item .main-content {
  border-radius: 0;
  padding: 80px 30px 50px 30px;
  background-color: var(--yoga-beige);
  margin-bottom: 30px;
  margin-right: 80px;
  transition: all .3s;
  border: 1px solid var(--yoga-border);
}

.services .service-item.icon-left .icon {
  right: auto;
  left: 0;
}

.services .service-item.icon-left .main-content {
  margin-right: 0;
  margin-left: 80px;
}

.services .service-item h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 30px;
  transition: all .4s;
}

.services .service-item p {
  color: #4a4a4a;
  margin-bottom: 25px;
}

.services .service-item .card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.services .service-item .card-link:hover {
  text-decoration: none;
  color: inherit;
}

.services .service-item .card-link-text {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.services .service-item .card-link-text:hover {
  text-decoration: none;
  color: inherit;
}

/* 
---------------------------------------------
About Style
--------------------------------------------- 
*/

.about-us {
  position: relative;
  padding: 0px;
  margin-top: 130px;
}

.about-us:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 84%;
  height: 100%;
  background-color: var(--yoga-beige);
  content: '';
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion {
  margin-top: -40px;
  margin-bottom: -40px;
  background-color: var(--yoga-white);
  border-radius: 0;
  padding: 80px 50px 50px 50px;
  border: 1px solid var(--yoga-border);
}

.accordion-item {
  background-color: var(--yoga-cream);
  border-radius: 0 !important;
  margin-bottom: 20px;
  border: 1px solid var(--yoga-border) !important;
}

.accordion-item .accordion-button {
  outline: none;
  box-shadow: none;
  border-radius: 40px !important;
}

.accordion-button:not(.collapsed) {
  color: var(--yoga-sage);
  background-color: var(--yoga-cream);
}

h2.accordion-header button {
  padding: 15px 25px;
  font-family: 'Poppins';
  font-size: 16px;
  font-weight: 600;
}

.accordion-button::after {
  font-size: 18px;
  font-weight: 500;
  background-image: none;
  content: '+';
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  border-radius: 0;
  background-color: var(--yoga-sage);
  color: var(--yoga-white);
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  line-height: 32px;
  content: '-';
}

.accordion-body {
  padding: 0px 25px 30px 25px;
  font-size: 14px;
  line-height: 28px;
  color: #4a4a4a;
}

.about-us .section-heading {
  margin-left: 60px;
  margin-bottom: 0px;
}

.about-us .section-heading .main-button {
  margin-top: 50px;
}


/* 
---------------------------------------------
Courses Style
--------------------------------------------- 
*/

.courses {
  margin-top: 160px;
}

.event_filter {
  text-align: center;
}

.event_filter {
  background-color: var(--yoga-beige);
  border-radius: 0;
  padding: 15px 40px;
  list-style: none;
  margin: 0 auto 70px;
  max-width: max-content;
  border: 1px solid var(--yoga-border);
}

.event_filter li {
  display: inline-block;
  margin: 0px 20px;
}

.event_filter li a {
  font-size: 14px;
  font-weight: 500;
  color: #1e1e1e;
  transition: all .3s;
}

.event_filter li .event_filter li a.is_active,
.event_filter li a:hover {
  color: var(--yoga-sage);
}

.events_item .thumb {
  position: relative;
  border-radius: 25px 25px 0 0;
  overflow: hidden;
  display: block;
}

.events_item .thumb a {
  position: relative;
  display: block;
  overflow: hidden;
}

.events_item .thumb img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  margin-bottom: 0;
}

/* Course Overlay */
.course-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(5, 83, 70, 0) 0%, rgba(5, 83, 70, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 10;
}

.course-overlay a {
  z-index: 11;
  position: relative;
}

.course-link-btn {
  background: #fff;
  color: #055346;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.course-link-btn i {
  transition: transform 0.3s ease;
}

.course-link-btn:hover {
  background: #055346;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.course-link-btn:hover i {
  transform: translateX(4px);
}

.events_item .thumb span.category {
  position: absolute;
  left: 30px;
  top: 30px;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--yoga-white);
  background-color: var(--yoga-sage);
  padding: 6px 18px;
  border-radius: 0;
  font-weight: 500;
  display: inline-block;
  z-index: 3;
  letter-spacing: 1px;
}

.events_item .thumb span.price {
  position: absolute;
  right: -30px;
  top: -50px;
  background-color: rgba(122, 106, 216, 0.95);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: inline-block;
  transition: all .3s;
  z-index: 3;
}

.events_item .thumb span.price h6 {
  margin-top: 72px;
  margin-left: 22px;
  font-size: 28px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
}

.events_item .thumb span.price em {
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  vertical-align: top;
}

.events_item {
  background: var(--yoga-white);
  border-radius: 0;
  margin-bottom: 30px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--yoga-border);
}

.events_item .course-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.events_item .course-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.events_item .down-content {
  padding: 25px 30px 30px 30px;
  background: #fff;
  border-radius: 0 0 25px 25px;
}

.events_item .down-content span.author {
  color: var(--yoga-sage);
  font-size: 14px;
  display: inline-block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.events_item .down-content h4 {
  font-size: 22px;
  font-weight: 500;
  transition: all .3s;
  margin-bottom: 15px;
  line-height: 1.4;
  color: var(--yoga-brown);
}

/* Course Read More Link */
.course-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #055346;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.8;
  margin-top: 5px;
}

.course-read-more i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.course-read-more:hover {
  color: #055346;
  opacity: 1;
  gap: 12px;
}

.course-read-more:hover i {
  transform: translateX(4px);
}

.events_item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: var(--yoga-sage);
}

.events_item:hover .thumb img {
  transform: scale(1.15);
  filter: brightness(0.9);
}

.events_item:hover .course-overlay {
  opacity: 1;
}

.events_item:hover .down-content h4 {
  color: #055346;
}

.events_item:hover .thumb span.price {
  transform: scale(1.2);
}

/* Subtle gradient accents for course cards - modern design */
.event_box .event_outer:nth-child(1) .events_item {
  border-top: 4px solid #FF6B35;
}

.event_box .event_outer:nth-child(1) .events_item:hover {
  border-top-color: #FF6B35;
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.event_box .event_outer:nth-child(2) .events_item {
  border-top: 4px solid #055346;
}

.event_box .event_outer:nth-child(2) .events_item:hover {
  border-top-color: #055346;
  box-shadow: 0 15px 40px rgba(5, 83, 70, 0.2);
}

.event_box .event_outer:nth-child(3) .events_item {
  border-top: 4px solid #FF6B35;
}

.event_box .event_outer:nth-child(3) .events_item:hover {
  border-top-color: #FF6B35;
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.event_box .event_outer:nth-child(4) .events_item {
  border-top: 4px solid #055346;
}

.event_box .event_outer:nth-child(4) .events_item:hover {
  border-top-color: #FF6B35;
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.event_box .event_outer:nth-child(5) .events_item {
  border-top: 4px solid #055346;
}

.event_box .event_outer:nth-child(5) .events_item:hover {
  border-top-color: #FF6B35;
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.event_box .event_outer:nth-child(6) .events_item {
  border-top: 4px solid #055346;
}

.event_box .event_outer:nth-child(6) .events_item:hover {
  border-top-color: #055346;
  box-shadow: 0 15px 40px rgba(5, 83, 70, 0.2);
}

/* Ensure text is readable */
.event_box .events_item .down-content h4 {
  color: #055346;
}

.event_box .events_item:hover .down-content h4 {
  color: #055346;
}


/* 
---------------------------------------------
Facts Style
---------------------------------------------
*/

.fun-facts {
  position: relative;
  padding: 120px 0px 80px 0px;
  overflow: hidden;
}

.fun-facts:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 95%;
  height: 100%;
  background-color: var(--yoga-sage);
  content: '';
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.fun-facts:after {
  background: url(../images/contact-dec-01.png);
  position: absolute;
  left: 15%;
  opacity: 0.5;
  top: 0;
  width: 318px;
  height: 119px;
  content: '';
  z-index: 2;
}

.fun-facts .counter {
  text-align: center;
  margin-bottom: 40px;
}

.fun-facts h2 {
  color: var(--yoga-white);
  font-size: 48px;
  font-weight: 500;
}

.fun-facts h2::after {
  content: '+';
  margin-left: 5px;
}

.fun-facts p {
  color: var(--yoga-white);
  font-size: 15px;
  font-weight: 400;
  margin-top: 15px;
}


/* 
---------------------------------------------
Team Style
--------------------------------------------- 
*/

.team {
  margin-top: 100px;
  padding-top: 140px;
}

.team-member {
  position: relative;
}

.team-member:hover img {
  top: -120px;
}

.team-member img {
  max-width: 220px;
  border-radius: 50%;
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-110px);
  transition: all .3s;
}

.team-member .main-content {
  border-radius: 25px;
  padding: 140px 30px 40px 30px;
  background-color: #FFF4E6;
  text-align: center;
}

.team-member .main-content span.category {
  color: #055346;
  font-size: 15px;
}

.team-member .main-content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 15px;
}

.team-member .main-content ul li {
  display: inline-block;
  margin: 0px 2px;
}

.team-member .main-content ul li a {
  background-color: #fff;
  color: #055346;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all .3s;
}

.team-member .main-content ul li a:hover {
  background-color: #055346;
  color: #fff;
}


/* 
---------------------------------------------
Testimonials Style
--------------------------------------------- 
*/

.testimonials {
  position: relative;
  padding: 80px 0px;
  margin-top: 150px;
}

.testimonials:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 65%;
  height: 100%;
  background-color: var(--yoga-beige);
  content: '';
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.testimonials .section-heading {
  margin-bottom: 0px;
  margin-left: 60px;
  vertical-align: middle;
}

.testimonials .section-heading p {
  margin-top: 50px;
}

.testimonials .item {
  background-color: var(--yoga-white);
  border-radius: 0;
  padding: 80px;
  border: 1px solid var(--yoga-border);
}

.testimonials .item p {
  font-size: 18px;
  line-height: 32px;
  color: var(--yoga-text);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 40px;
}

.testimonials .item img {
  border-radius: 50%;
  max-width: 100px;
  float: left;
  margin-right: 25px;
}

.testimonials .item span {
  display: inline-block;
  margin-top: 20px;
  font-size: 15px;
  color: var(--yoga-text-light);
}

.testimonials .item h4 {
  color: var(--yoga-brown);
  font-size: 22px;
  font-weight: 500;
  margin-top: 8px;
}

.testimonials .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-5px);
  right: -25px;
  text-align: right;
}

.testimonials .owl-nav .owl-prev i,
.testimonials .owl-nav .owl-next i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  display: inline-block;
  color: #055346;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.10);
  opacity: 1;
  transition: all .3s;
}

.testimonials .owl-nav .owl-prev i {
  position: absolute;
  bottom: 65px;
}

.testimonials .owl-nav .owl-prev i:hover,
.testimonials .owl-nav .owl-next i:hover {
  opacity: 1;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}


/* 
---------------------------------------------
Events Style
--------------------------------------------- 
*/

.events .section-heading {
  margin-bottom: 100px;
}

.events .item {
  background-color: #FFF4E6;
  border-radius: 25px;
  position: relative;
  padding: 40px;
  margin-bottom: 96px;
}

.events .item .image {
  position: relative;
}

.events .item .image img {
  position: absolute;
  border-radius: 25px;
  max-width: 260px;
  left: 0;
  top: -70px;
}

.events .item ul li {
  display: inline-block;
  width: 17.5%;
  vertical-align: middle;
}

.events .item ul li:first-child {
  width: 35%;
}

.events .item ul li:nth-of-type(2) {
  width: 28%;
}

.events .item ul li span.category {
  font-size: 14px;
  text-transform: uppercase;
  color: #055346;
  background-color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 20px;
}

.events .item ul li h4 {
  font-size: 22px;
  font-weight: 600;
}

.events .item ul li span {
  display: inline-block;
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 10px;
}

.events .item ul li h6 {
  font-size: 16px;
  color: #055346;
  font-weight: 600;
}

.events .item a {
  position: absolute;
  right: 0;
  top: 22px;
  background-color: #055346;
  width: 60px;
  height: 120px;
  display: inline-block;
  text-align: center;
  line-height: 120px;
  font-size: 18px;
  z-index: 1;
  color: #fff;
  border-radius: 60px 0px 0px 60px;
}


/* 
---------------------------------------------
Contact Style
--------------------------------------------- 
*/

.contact-us {
  margin-top: 80px;
  position: relative;
  padding: 50px 0px;
  scroll-margin-top: 100px;
}

.contact-us:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 65%;
  height: 100%;
  background-color: var(--yoga-beige);
  content: '';
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}


.contact-us .section-heading {
  margin-right: 110px;
  margin-bottom: 0px;
}

.contact-us .section-heading p {
  margin-top: 50px;
}

.contact-us .special-offer {
  margin-top: 50px;
  background-color: #fff;
  border-radius: 25px;
  padding: 30px 120px;
  display: inline-block;
  position: relative;
}

.contact-us .special-offer span.offer {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #055346;
  width: 80px;
  padding: 30px 8px;
  line-height: 25px;
  height: 120px;
  border-radius: 15px 60px 60px 15px;
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  text-align: left;
}

.contact-us .special-offer span.offer em {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
}

.contact-us .special-offer h6 {
  font-size: 15px;
  color: #4a4a4a;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 15px;
}

.contact-us .special-offer h6 em {
  font-style: normal;
  color: #055346;
  font-weight: 600;
}

.contact-us .special-offer h4 {
  font-size: 22px;
  font-weight: 600;
}

.contact-us .special-offer h4 em {
  font-style: normal;
  color: #055346;
}

.contact-us .special-offer a {
  position: absolute;
  right: 30px;
  top: 35px;
  width: 50px;
  height: 50px;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  background-color: #055346;
  color: #fff;
  border-radius: 50%;
}

.contact-us .contact-us-content {
  border-radius: 0;
  padding: 80px;
  background-color: var(--yoga-white);
  position: relative;
  z-index: 1;
  border: 1px solid var(--yoga-border);
}

.contact-us .contact-us-content::before {
  background: url(../images/contact-dec-01.png);
  position: absolute;
  left: 50%;
  transform: translateX(-149px);
  opacity: 0.5;
  top: 0;
  width: 318px;
  height: 119px;
  content: '';
  z-index: 2;
}

.contact-us .contact-us-content::after {
  background: url(../images/contact-dec-02.png);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 183px;
  height: 149px;
  content: '';
  z-index: 2;
}

#contact-form input {
  width: 100%;
  height: 50px;
  border-radius: 0;
  background-color: var(--yoga-cream);
  border: 1px solid var(--yoga-border);
  outline: none;
  font-weight: 400;
  padding: 0px 20px;
  font-size: 14px;
  color: var(--yoga-text);
  margin-bottom: 20px;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}

#contact-form input:focus {
  border-color: var(--yoga-sage);
  background-color: var(--yoga-white);
}

#contact-form input::placeholder {
  color: var(--yoga-text-light);
}

#contact-form textarea {
  width: 100%;
  height: 120px;
  border-radius: 0;
  background-color: var(--yoga-cream);
  border: 1px solid var(--yoga-border);
  outline: none;
  font-weight: 400;
  padding: 20px;
  font-size: 14px;
  color: var(--yoga-text);
  margin-bottom: 20px;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}

#contact-form textarea:focus {
  border-color: var(--yoga-sage);
  background-color: var(--yoga-white);
}

#contact-form textarea::placeholder {
  color: var(--yoga-text-light);
}

#contact-form button {
  border: none;
  height: 50px;
  font-size: 14px;
  font-weight: 500;
  background-color: var(--yoga-sage);
  padding: 0px 32px;
  border-radius: 0;
  color: var(--yoga-white);
  transition: all .3s ease;
  position: relative;
  z-index: 3;
  letter-spacing: 0.5px;
}

#contact-form button:hover {
  background-color: var(--yoga-sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 154, 126, 0.3);
}

#contact-form button:hover {
  opacity: 0.8;
}

.contact-us-content .more-info {
  text-align: center;
  background: rgb(85, 0, 227);
  background: linear-gradient(90deg, rgba(5, 83, 70, 1) 0%, rgba(255, 107, 53, 1) 100%);
  border-radius: 0px 0px 23px 23px;
  padding: 45px 30px 15px 30px;
}

.contact-us-content .more-info .info-item {
  text-align: center;
  margin-bottom: 30px;
}

.contact-us-content .more-info i {
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
}

.contact-us-content .more-info h4 a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

footer {
  margin-top: 120px;
  position: relative;
  background: #2d2418;
  color: #f5f1e8;
  border-radius: 0;
  padding: 80px 0 40px;
  overflow: hidden;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

/* ---------------------------------------------
Modern Footer (Override)
--------------------------------------------- */

.footer-contact {
  --footer-bg-1: #2d2418;
  --footer-bg-2: #3a2e20;
  --footer-text: rgba(245, 241, 232, 0.95);
  --footer-text-strong: rgba(255, 255, 255, 0.98);
  --footer-border: rgba(255, 255, 255, 0.15);
  --footer-card: rgba(255, 255, 255, 0.08);
  --footer-card-border: rgba(255, 255, 255, 0.15);
  --footer-accent: #10B981;

  margin-top: 110px;
  padding: 72px 0 28px;
  background: radial-gradient(1200px 500px at 20% 0%, rgba(255, 255, 255, 0.08), transparent 55%),
              linear-gradient(180deg, var(--footer-bg-2), var(--footer-bg-1));
  color: var(--footer-text);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.18);
}

.footer-contact a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-contact .footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.25fr;
  gap: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--footer-border);
}

.footer-contact .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact .footer-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.footer-contact .footer-brand-logo img {
  max-width: 170px;
  height: auto;
  filter: invert(1) grayscale(1) brightness(1.2);
  opacity: 0.95;
}

.footer-contact .footer-tagline {
  margin: 0;
  line-height: 1.65;
  font-size: 14px;
  color: var(--footer-text);
  max-width: 44ch;
}

.footer-contact .footer-col h4 {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--footer-text-strong);
}

.footer-contact .footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-contact .footer-links-list a {
  font-size: 14px;
  opacity: 0.95;
}

.footer-contact .footer-links-list a:hover {
  transform: translateX(2px);
}

.footer-contact .footer-contact-card {
  background: var(--footer-card);
  border: 1px solid var(--footer-card-border);
  border-radius: 14px;
  padding: 16px 16px;
}

.footer-contact .footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-contact .footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact .footer-contact-item i {
  margin-top: 3px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  width: 18px;
  text-align: center;
  flex: 0 0 18px;
}

.footer-contact .footer-contact-item strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2px;
}

.footer-contact .footer-contact-item span,
.footer-contact .footer-contact-item a {
  display: inline-block;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact .footer-cta {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-contact .footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.footer-contact .footer-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.10);
}

.footer-contact .footer-btn.footer-btn-accent {
  border-color: rgba(16, 185, 129, 0.45);
  background: rgba(16, 185, 129, 0.14);
}

.footer-contact .footer-btn.footer-btn-accent:hover {
  background: rgba(16, 185, 129, 0.22);
}

.footer-contact .footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 6px;
}

.footer-contact .footer-social-icons .social-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-contact .footer-social-icons .social-icon:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

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

.footer-contact .footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact .footer-legal {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0;
}

.footer-contact .footer-legal .separator {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.25);
  display: inline-block;
  align-self: center;
}

@media (max-width: 991px) {
  .footer-contact {
    padding: 60px 0 24px;
  }

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

  .footer-contact .footer-legal {
    justify-content: flex-start;
    margin-top: 10px;
  }
}

@media (max-width: 575px) {
  .footer-contact .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-contact .footer-brand-logo img {
    max-width: 150px;
  }
}

/* Legacy footer markup support (pages still using .footer-main-content) */
.footer-contact .footer-main-content {
  padding: 0 0 34px;
  margin: 0 0 22px;
  border-bottom: 1px solid var(--footer-border);
}

.footer-contact .footer-column {
  margin-bottom: 18px;
}

.footer-contact .footer-column h4 {
  color: var(--footer-text-strong);
  font-weight: 700;
}

.footer-contact .footer-contact-mini {
  background: var(--footer-card);
  border: 1px solid var(--footer-card-border);
  border-radius: 14px;
  padding: 16px;
}

.footer-contact .footer-mini-item + .footer-mini-item {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 12px;
  margin-top: 12px;
}

.footer-contact .footer-mini-item i {
  width: 18px;
  text-align: center;
}

.footer-contact .footer-mini-item strong {
  color: rgba(255, 255, 255, 0.90);
}

.footer-contact .footer-logo {
  text-align: left;
  margin-bottom: 14px;
}

.footer-contact .footer-logo img {
  margin: 0;
  max-width: 170px;
}

.footer-contact {
  background: #2d2418;
}

footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-contact-row {
  align-items: flex-start;
  padding: 40px 0;
}

/* Footer Main Content Section */
.footer-main-content {
  padding: 40px 0 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
  margin-bottom: 30px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.footer-column h4 {
  color: var(--yoga-cream);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: rgba(245, 241, 232, 0.8);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links-list a:hover {
  color: var(--yoga-cream);
  transform: translateX(3px);
}

/* Footer Contact Small Section */
.footer-contact-small {
  padding-right: 20px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.footer-contact-mini {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-mini-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.footer-mini-item i {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-mini-item strong {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-mini-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  line-height: 1.5;
  margin: 0;
}

.footer-mini-item a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-mini-item a:hover {
  color: #fff;
}

/* Footer Right Section - Newsletter */
.footer-right-section {
  padding-left: 40px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.footer-logo {
  margin-bottom: 25px;
  text-align: center;
  display: block;
}

.footer-logo a {
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-logo img {
  max-width: 150px;
  width: auto;
  height: auto;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
  filter: invert(1);
  opacity: 1;
  visibility: visible;
}

.footer-logo:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

.footer-newsletter h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.newsletter-form {
  margin-bottom: 30px;
}

.newsletter-input-group {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-input-group input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  outline: none;
  font-size: 14px;
  color: #1e1e1e;
  background: transparent;
}

.newsletter-input-group input::placeholder {
  color: rgba(30, 30, 30, 0.5);
}

.newsletter-submit {
  padding: 14px 30px;
  background: #10B981;
  color: #1e1e1e;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit:hover {
  background: #055346;
  transform: scale(1.02);
}

/* Footer Social Icons */
.footer-social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.footer-social-icons .social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social-icons .social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-social-icons .social-icon i {
  color: #fff;
}

/* Footer Left Section: Logo and Contact Info */
.footer-left-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 0;
}

.footer-logo img {
  max-width: 180px;
  height: auto;
  filter: invert(1) grayscale(1) brightness(1.2);
  transition: all 0.3s ease;
}

.footer-logo:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Footer Contact Info Section */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-left: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  border-radius: 0;
  margin-bottom: 0;
}

.footer-contact .contact-item:last-child {
  border-bottom: none;
}

.footer-contact .contact-item:hover {
  background: transparent;
  transform: translateX(5px);
  padding-left: 10px;
}

.footer-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.footer-icon:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.footer-icon.location {
  background-color: #1dc570;
}

.footer-icon.phone {
  background-color: #fff;
  color: #2c2c2c;
}

.footer-icon.whatsapp {
  background-color: #25d366;
}

.footer-icon.mail {
  background-color: #fff;
  color: #2c2c2c;
}

.footer-contact h4 {
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.footer-contact p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 14px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.9);
  display: inline-block;
  margin-right: 12px;
  margin-bottom: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 14px;
}

.footer-contact a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-links a {
  display: block;
  margin-right: 0;
}

.footer-social-section {
  margin-top: 0;
  padding-top: 20px;
  border-top: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
}

.footer-social-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: right;
}

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

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.social-icon:hover::before {
  width: 100%;
  height: 100%;
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.social-icon i {
  position: relative;
  z-index: 1;
}

.social-icon.facebook {
  background: linear-gradient(135deg, #1877f2, #0d5dbf);
}

.social-icon.instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.twitter {
  background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-icon.pinterest {
  background: linear-gradient(135deg, #e60023, #b7071e);
}

.social-icon.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-icon.linkedin {
  background: linear-gradient(135deg, #0077b5, #005885);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: 30px 0 25px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 25px;
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-align: left;
}

.footer-legal {
  text-align: right;
  margin-bottom: 0;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0;
}

.footer-legal a:hover {
  color: #fff;
}

.footer-legal .separator {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 8px;
}

footer::before {
  content: none;
}

/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/

body {
  overflow-x: hidden;
}

/* 
---------------------------------------------
Footer Style (Final Overrides)
--------------------------------------------- 
These rules intentionally live near the end of the file to win the cascade.
*/

.footer-contact.footer-contact {
  position: relative;
  margin-top: 80px;
  padding: 72px 0 28px;
  color: rgba(245, 241, 232, 0.95);
  background:
    radial-gradient(900px 400px at 20% -10%, rgba(255, 255, 255, 0.1), transparent 60%),
    radial-gradient(700px 300px at 90% 0%, rgba(255, 107, 53, 0.08), transparent 55%),
    linear-gradient(180deg, #3a2e20 0%, #2d2418 60%, #251e15 100%);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.18);
}

.footer-contact.footer-contact::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  height: 1px;
}

.footer-contact.footer-contact .footer-main-content {
  padding: 0 0 28px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-contact.footer-contact .footer-column h4 {
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.footer-contact.footer-contact .footer-links-list a {
  color: rgba(245, 241, 232, 0.78);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-contact.footer-contact .footer-links-list a:hover {
  color: rgba(255, 255, 255, 0.98);
  transform: translateX(4px);
}

.footer-contact.footer-contact .footer-mini-item i {
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact.footer-contact .footer-mini-item strong {
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.08em;
}

.footer-contact.footer-contact .footer-mini-item p,
.footer-contact.footer-contact .footer-mini-item a {
  color: rgba(255, 255, 255, 0.70);
}

.footer-contact.footer-contact .footer-mini-item a:hover {
  color: rgba(255, 255, 255, 0.95);
}

.footer-contact.footer-contact .footer-logo img {
  filter: invert(1) grayscale(1) brightness(1.15);
  opacity: 0.98;
}

.footer-contact.footer-contact .footer-social-icons {
  gap: 12px;
  margin-top: 14px;
}

.footer-contact.footer-contact .footer-social-icons .social-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.footer-contact.footer-contact .footer-social-icons .social-icon:hover {
  transform: translateY(-4px) scale(1.07);
}

.footer-contact.footer-contact .footer-bottom {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact.footer-contact .footer-bottom p {
  color: rgba(255, 255, 255, 0.70);
}

.footer-contact.footer-contact .footer-legal a {
  color: rgba(255, 255, 255, 0.70);
}

.footer-contact.footer-contact .footer-legal a:hover {
  color: rgba(255, 255, 255, 0.98);
}

/* Footer readability safeguard:
   Some pages include additional theme CSS that can inadvertently override text colors.
   These rules keep footer content visible without changing layout. */
.footer-contact {
  color: rgba(255, 255, 255, 0.86);
}

.footer-contact .footer-grid,
.footer-contact .footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-contact p,
.footer-contact a,
.footer-contact span,
.footer-contact li,
.footer-contact strong,
.footer-contact h4 {
  color: inherit;
}

.footer-contact a {
  opacity: 0.95;
}

.footer-contact a:hover {
  opacity: 1;
  color: #ffffff;
}

@media (max-width: 991px) {
  .footer-contact.footer-contact {
    margin-top: 56px;
    padding: 56px 0 22px;
  }

  .footer-contact.footer-contact .footer-column {
    margin-bottom: 22px;
  }

  .footer-contact.footer-contact .footer-bottom p,
  .footer-contact.footer-contact .footer-legal {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .header-area {
    /* Fixed dark top bar on mobile so header text/icons stay visible */
    top: 0;
    background-color: #033d33 !important;
    height: 72px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    text-align: center;
  }

  /* Ensure the scrolled state header also stays dark on mobile */
  .background-header {
    background-color: #033d33 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12) !important;
    border-radius: 0 0 20px 20px;
  }

  /* Hide existing desktop-style navbar on small screens so you can redesign mobile nav */
  .header-area .main-nav ul.nav {
    display: none !important;
  }

  /* Show hamburger on the left, like the reference screenshot */
  .header-area .main-nav .menu-trigger,
  .header-area .menu-trigger {
    display: block !important;
    position: absolute;
    left: 16px;
    right: auto;
    top: 22px;
  }

  /* Compact mobile header with centered logo inside the top bar */
  .header-area .nav-wrapper,
  .background-header .nav-wrapper {
    box-shadow: none;
    padding: 10px 16px 8px;
    min-height: auto;
    display: flex;
    justify-content: center;
    border-radius: 0 0 20px 20px;
  }

  .header-area .main-nav {
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-direction: row;
  }

  .header-area .main-nav .logo {
    /* Centered logo without extra card; similar to reference layout */
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 55%;
    margin-top: 0;
  }

  .header-area .main-nav .logo img {
    max-width: 100%;
    height: 32px;
    width: auto;
  }

  .header-area .main-nav .logo h1 {
    border-right: none;
  }

  /* Mobile hero layout - keep a darker overlay so text stays readable */
  .main-banner {
    /* Space for the fixed header bar + logo */
    padding-top: 118px;
    padding-bottom: 16px;
    /* Solid background behind the banner card on mobile */
    background: #055346; /* change this value to tweak the mobile banner BG color */
  }

  .main-banner .item {
    position: relative;
    padding: 0 !important;
    /* Bottom spacing below the banner card */
    margin: 0 0 12px;
    min-height: calc(100vh - 110px);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
    /* Solid card color + ensure background image is centered nicely */
    background-color: #055346;
    background-position: center center !important;
    background-size: cover;
  }

  /* Dark overlay on top of banner image for contrast on mobile */
  .main-banner .item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.6));
    z-index: 0;
  }

  /* Keep owl wrapper transparent, card handles its own background */
  .main-banner,
  .main-banner .owl-banner,
  .main-banner .owl-banner .owl-stage-outer {
    background-color: transparent;
  }

  /* Equal left/right spacing for the hero banner card on mobile */
  .main-banner .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .main-banner .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  .main-banner .col-lg-12 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .main-banner .owl-banner .owl-stage-outer {
    padding-left: 1px;
    padding-right: 5px;
  }


  /* Ensure the text block inside the banner also has matching inner padding */
  .main-banner .header-text {
    position: relative;
    z-index: 1;
    padding: 32px 20px 26px;
    width: 100%;
    color: #ffffff;
    text-align: center;
  }

  .main-banner .header-text h2 {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.9);
  }

  .main-banner .header-text .buttons {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .main-banner .header-text .buttons .main-button a {
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    border-radius: 20px;
    font-size: 13px;
  }

  .main-banner .owl-nav {
    left: 30px !important;
  }

  .event_filter {
    padding: 15px 20px;
  }

  .event_filter li {
    display: inline-block;
    margin: 0px 10px;
  }

  /* Course cards responsive styles */
  .events_item .thumb img {
    height: 220px;
  }

  .events_item .down-content {
    padding: 20px 20px 25px 20px;
  }

  .events_item .down-content h4 {
    font-size: 18px;
  }

  .course-link-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .course-read-more {
    font-size: 13px;
  }
}

@media (max-width: 992px) {

  .header-area .main-nav #search input,
  .header-area .main-nav #search i {
    display: none;
  }

  .header-area .main-nav .logo h1 {
    font-size: 34px;
  }

  .header-area .main-nav .logo {
    border-right: none;
  }

  .main-banner {
    padding-top: 100px;
  }

  .main-banner .item {
    padding: 100px 60px 140px 60px;
    margin-left: 0px;
    text-align: center;
  }

  .main-banner .item h2,
  .main-banner .item p {
    width: 100%;
  }

  .main-banner .item h2 {
    font-size: 36px;
    line-height: 50px;
  }

  .main-banner .item .buttons {
    display: inline-block;
    text-align: center;
  }

  .main-banner .item .buttons .main-button {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .main-banner .owl-nav {
    left: 50% !important;
    transform: translateX(-60px) !important;
    bottom: 60px;
  }

  .main-banner .owl-nav .owl-prev i {
    bottom: 0px;
  }

  .main-banner .owl-nav .owl-next i {
    bottom: 0px;
    position: absolute;
    left: 65px;
  }

  .services {
    margin-top: 80px;
  }

  .about-us {
    margin-top: 100px;
  }

  .accordion {
    padding: 40px 25px 10px 25px;
  }

  .services .service-item .icon {
    width: 170px;
    height: 170px;
    line-height: 170px;
  }

  .services .service-item.icon-left .main-content {
    margin-left: 60px;
  }

  .about-us .section-heading {
    margin-left: 0px;
    margin-top: 120px;
  }

  .about-us::before,
  .testimonials::before,
  .contact-us::before {
    display: none;
  }

  .about-us .section-heading p,
  .testimonials .section-heading p,
  .contact-us .section-heading p {
    margin-top: 30px;
  }

  .about-us .section-heading .main-button {
    margin-top: 30px;
  }

  .about-us .main-button a {
    background-color: #055346;
    color: #fff;
  }

  .courses {
    margin-top: 100px;
  }

  .event_filter ul li {
    display: block;
    margin: 12px 5px;
  }

  .fun-facts {
    margin-top: 70px;
  }

  .fun-facts::before {
    width: 95%;
  }

  .team {
    margin-top: 160px;
  }

  .team-member {
    margin-bottom: 140px;
  }

  .testimonials {
    margin-top: -50px;
    padding: 0px;
  }

  .testimonials .section-heading {
    margin-left: 0px;
    margin-top: 40px;
  }

  .testimonials .item {
    padding: 40px 40px 60px 40px;
  }

  .testimonials .item h4 {
    font-size: 17px;
  }

  .testimonials .item img {
    margin-right: 15px;
  }

  .testimonials .owl-nav {
    display: none;
  }

  .events {
    margin-top: 80px;
  }

  .events .item {
    margin-bottom: 66px;
  }

  .events .item .image img {
    position: relative;
    max-width: 100%;
  }

  .events .item ul {
    margin-top: -40px;
  }

  .events .item ul li:first-child {
    width: 100% !important;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
  }

  .events .item ul li:nth-child(2) {
    width: 40% !important;
  }

  .events .item ul li {
    display: inline-block;
    width: 28% !important;
  }

  .events .item ul li:last-child {
    text-align: right;
  }

  .events .item a {
    bottom: 150px;
    top: auto;
  }

  .events .item ul li h6 {
    font-size: 14px;
  }

  .contact-us {
    padding-top: 20px;
  }

  .contact-us .section-heading {
    margin-right: 0px;
  }

  .contact-us .special-offer {
    background-color: #FFF4E6;
    margin-bottom: 60px;
    padding: 34px 30px 34px 100px;
    width: 100%;
  }

  .contact-us .special-offer h4 {
    font-size: 17px;
  }

  .contact-us .special-offer a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 15px;
    right: 15px;
  }

  .contact-us .contact-us-content {
    padding: 30px;
  }

  footer {
    margin-top: 30px;
  }
}

@media (max-width: 1200px) {
  .header-area .main-nav #search input {
    width: 200px;
  }

  .header-area .main-nav .nav li.has-sub>a:after {
    right: 10px;
  }

  .fun-facts:before {
    width: 95%;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  box-shadow: 3px 3px 5px #666;
}

.whatsapp-float i {
  margin-top: 0;
  line-height: 60px;
}

/* WhatsApp Popup Overlay */
.whatsapp-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Remove dark dimming overlay behind the popup so page content stays visible */
  background-color: transparent !important;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* WhatsApp Popup */
.whatsapp-popup {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 370px;
  max-width: calc(100vw - 40px);
  height: 500px;
  max-height: calc(100vh - 120px);
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.3s ease;
}

.whatsapp-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* WhatsApp Popup Header */
.whatsapp-popup-header {
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
  padding: 15px 20px;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.whatsapp-popup-header-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-popup-avatar {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.whatsapp-popup-info h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.whatsapp-popup-info p {
  margin: 2px 0 0 0;
  font-size: 12px;
  opacity: 0.9;
  color: #fff;
}

.whatsapp-popup-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
  transition: opacity 0.2s;
}

.whatsapp-popup-close:hover {
  opacity: 0.7;
}

/* WhatsApp Popup Body */
.whatsapp-popup-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background-color: #f0f0f0;
}

.whatsapp-popup-message {
  background-color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.whatsapp-popup-message p {
  margin: 0;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

/* WhatsApp Popup Footer */
.whatsapp-popup-footer {
  padding: 15px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  gap: 10px;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
}

.whatsapp-popup-footer input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.whatsapp-popup-footer input:focus {
  border-color: #25d366;
}

.whatsapp-popup-send {
  width: 45px;
  height: 45px;
  background-color: #25d366;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.2s;
}

.whatsapp-popup-send:hover {
  background-color: #20ba5a;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    left: 15px;
    font-size: 25px;
  }

  .whatsapp-float i {
    line-height: 50px;
  }

  .whatsapp-popup {
    bottom: 75px;
    right: 15px;
    left: 15px;
    width: auto;
    height: 450px;
    max-height: calc(100vh - 100px);
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #055346 0%, #FF6B35 100%);
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 24px;
  box-shadow: 0 10px 25px rgba(245, 164, 37, 0.35);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 14px 30px rgba(245, 164, 37, 0.45);
}

.scroll-to-top i {
  margin-top: 0;
  line-height: 60px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.scroll-to-top::before,
.scroll-to-top::after {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 50%);
  opacity: 0.6;
  filter: blur(10px);
  transform: scale(0.8);
  transition: opacity 0.4s ease, transform 0.4s ease;
  animation: scrollPulse 2.4s ease-in-out infinite;
}

.scroll-to-top::after {
  inset: -60%;
  background: radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.18), transparent 55%);
  animation-delay: 0.6s;
}

.scroll-to-top.show {
  animation: scrollFloat 3.5s ease-in-out infinite;
}

.scroll-to-top:hover::before,
.scroll-to-top:hover::after {
  opacity: 0.9;
  transform: scale(1);
}

@media (max-width: 768px) {
  .scroll-to-top {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
    font-size: 20px;
  }

  .scroll-to-top i {
    line-height: 50px;
  }
}

@keyframes scrollFloat {

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

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

@keyframes scrollPulse {
  0% {
    transform: scale(0.8);
    opacity: 0.4;
  }

  50% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(0.8);
    opacity: 0.4;
  }
}

/* Yoga TTC Programs */
.ttc-programs {
  background: #f7f7f7;
  padding-bottom: 40px;
}

.ttc-programs .container {
  max-width: 100%;
}

@media (min-width: 1200px) {
  .ttc-programs .container {
    max-width: 1400px;
  }
}

@media (min-width: 1600px) {
  .ttc-programs .container {
    max-width: 1600px;
  }
}

.ttc-programs .section-heading p {
  max-width: 780px;
  margin: 0 auto;
}

.ttc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
  width: 100%;
  align-items: stretch;
}

/* Tablet and small desktop - 2 columns */
@media (min-width: 768px) and (max-width: 1199px) {
  .ttc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Large desktop - 3 columns with special layout */
@media (min-width: 1200px) {
  .ttc-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Make big cards span 2 rows */
  .ttc-card.big {
    grid-row: span 2;
  }
}

/* Extra large screens - 4 columns */
@media (min-width: 1400px) {
  .ttc-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    gap: 32px;
  }

  /* Big cards on left and right */
  .ttc-card.big.ttc-left {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }

  .ttc-card.big.ttc-right {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
  }

  /* Center cards in 2x2 grid */
  .ttc-card:not(.big):nth-of-type(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .ttc-card:not(.big):nth-of-type(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }

  .ttc-card:not(.big):nth-of-type(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .ttc-card:not(.big):nth-of-type(5) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
  }
}

.ttc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 350px;
  padding: 28px;
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4 / 5;
  width: 100%;
  isolation: isolate;
}

.ttc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 0;
  transition: opacity 0.3s ease;
}

.ttc-card span {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  margin-bottom: 8px;
}

/* Big cards - taller aspect ratio */
.ttc-card.big {
  aspect-ratio: 3 / 4;
  min-height: 500px;
}

@media (min-width: 768px) {
  .ttc-card {
    min-height: 380px;
  }

  .ttc-card.big {
    min-height: 600px;
  }
}

@media (min-width: 1200px) {
  .ttc-card:not(.big) {
    aspect-ratio: 1 / 1;
    min-height: 400px;
  }

  .ttc-card.big {
    aspect-ratio: 2 / 3;
    min-height: 650px;
  }
}

.ttc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.ttc-card:hover::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.ttc-card .main-button {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.ttc-card .main-button a {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #055346 0%, #FF6B35 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(238, 90, 111, 0.4);
  text-transform: uppercase;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
  overflow: hidden;
  line-height: 1.2;
}

.ttc-card .main-button a:hover {
  background: linear-gradient(135deg, #033d33 0%, #FF6B35 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(238, 90, 111, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile - single column */
@media (max-width: 767px) {
  .ttc-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .ttc-card {
    aspect-ratio: 4 / 5;
    min-height: 320px;
    padding: 24px;
  }

  .ttc-card.big {
    aspect-ratio: 4 / 5;
    min-height: 320px;
  }

  .ttc-card span {
    font-size: 18px;
  }

  .ttc-card .main-button a {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Footer Wide Screen - No Container Boxes */
@media (min-width: 769px) {
  .footer-column {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    margin-bottom: 30px;
  }

  .footer-contact-small {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 20px 0 0 !important;
    box-shadow: none !important;
    margin-bottom: 0;
  }

  .footer-mini-item {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
  }
}

/* Footer Responsive Styles - Mobile Enhanced Design */
footer {
  padding: 35px 12px 20px;
  border-radius: 30px 30px 0 0;
  margin-top: 60px;
  background: linear-gradient(180deg, #3a2e20 0%, #2d2418 100%);
  color: #f5f1e8;
}

.footer-main-content {
  padding: 20px 0 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main-content .row {
  margin: 0;
}

.footer-main-content .col-lg-8,
.footer-main-content .col-lg-4 {
  padding: 0 8px;
}

.footer-right-section {
  padding-left: 0;
  margin-top: 25px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 25px 15px;
  margin-bottom: 20px;
}

.footer-logo {
  text-align: center;
  margin-bottom: 25px;
}

.footer-logo img {
  max-width: 130px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.footer-column {
  margin-bottom: 20px;
  text-align: left;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 20px 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.footer-column:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 18px;
  color: #fff;
  text-align: left;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), transparent);
  border-radius: 2px;
}

.footer-links-list {
  text-align: left;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.footer-links-list a::before {
  content: '→';
  margin-right: 10px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links-list a:hover {
  color: #fff;
  transform: translateX(5px);
  padding-left: 5px;
}

.footer-links-list a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-small {
  padding-right: 0;
  margin-bottom: 20px;
  text-align: left;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 20px 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-contact-mini {
  gap: 25px;
  align-items: flex-start;
}

.footer-mini-item {
  gap: 12px;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.footer-mini-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.footer-mini-item i {
  font-size: 20px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-mini-item:hover i {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
}

.footer-mini-item strong {
  font-size: 14px;
  margin-bottom: 8px;
  color: #fff;
  display: block;
}

.footer-mini-item p,
.footer-mini-item a {
  font-size: 13px;
  line-height: 1.6;
  word-wrap: break-word;
  color: rgba(255, 255, 255, 0.7);
}

.footer-mini-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-mini-item a:hover {
  color: #fff;
}

.footer-mini-item>div {
  flex: 1;
}

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

.footer-social-icons {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.footer-social-icons .social-icon {
  width: 45px;
  height: 45px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-social-icons .social-icon:hover {
  transform: translateY(-5px) scale(1.1);
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .row {
  margin: 0;
}

.footer-bottom .col-lg-6 {
  padding: 0 12px;
  margin-bottom: 12px;
}

.footer-bottom p {
  font-size: 12px;
  text-align: center;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom .col-lg-6:first-child p {
  text-align: left;
}

.footer-legal {
  text-align: right;
  margin-top: 0;
}

.footer-legal a {
  display: inline-block;
  margin: 0 10px 5px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #fff;
}

.footer-legal .separator {
  display: inline-block;
  color: rgba(255, 255, 255, 0.3);
}

.footer-contact-row {
  padding: 30px 0;
}

.footer-left-section {
  text-align: center;
  margin-bottom: 30px;
  align-items: center;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 150px;
}

.footer-contact-info {
  margin-bottom: 30px;
  width: 100%;
}

.footer-contact .contact-item {
  padding: 15px 0;
  margin-bottom: 0;
  border-left: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact .contact-item:last-child {
  border-bottom: none;
}

.footer-icon {
  width: 45px;
  height: 45px;
  font-size: 20px;
}

.footer-social-section {
  margin-top: 0;
  padding-top: 30px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-title {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
}

.footer-social-icons {
  gap: 12px;
  justify-content: center;
}

.social-icon {
  width: 45px;
  height: 45px;
  font-size: 18px;
}


@media (max-width: 576px) {
  footer {
    padding: 30px 10px 18px;
    border-radius: 25px 25px 0 0;
    margin-top: 50px;
  }

  .footer-main-content {
    padding: 18px 0 12px;
    margin-bottom: 15px;
  }

  .footer-main-content .col-lg-8,
  .footer-main-content .col-lg-4 {
    padding: 0 8px;
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .footer-main-content .row>[class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 15px;
  }

  .footer-column {
    margin-bottom: 15px;
    width: 100%;
    padding: 18px 12px;
    border-radius: 10px;
  }

  .footer-column h4 {
    font-size: 15px;
    margin-bottom: 15px;
    text-align: left;
  }

  .footer-links-list {
    text-align: left;
  }

  .footer-links-list li {
    margin-bottom: 10px;
  }

  .footer-links-list a {
    font-size: 13px;
  }

  .footer-contact-small {
    padding-right: 0;
    margin-bottom: 15px;
    padding: 18px 12px;
  }

  .footer-contact-mini {
    gap: 15px;
  }

  .footer-mini-item {
    gap: 12px;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 12px;
  }

  .footer-mini-item i {
    font-size: 18px;
    margin-bottom: 0;
    width: 36px;
    height: 36px;
  }

  .footer-mini-item strong {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .footer-mini-item p,
  .footer-mini-item a {
    font-size: 12px;
    line-height: 1.5;
    word-wrap: break-word;
    max-width: 100%;
  }

  .footer-mini-item>div {
    flex: 1;
  }

  .footer-right-section {
    margin-top: 15px;
    padding-left: 0;
    padding: 20px 12px;
    border-radius: 12px;
  }

  .footer-logo {
    text-align: center;
    margin: 0 auto 20px;
  }

  .footer-logo a {
    display: inline-block;
  }

  .footer-logo img {
    max-width: 110px;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .footer-social-icons {
    justify-content: center;
    flex-wrap: nowrap;
    gap: 6px;
  }

  .footer-social-icons .social-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

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

  .footer-bottom .col-lg-6 {
    padding: 0 10px;
    margin-bottom: 10px;
  }

  .footer-bottom p {
    font-size: 11px;
    text-align: center;
    line-height: 1.5;
    padding: 0 8px;
  }

  .footer-legal {
    text-align: center;
    margin-top: 0;
  }

  .footer-legal a {
    display: block;
    margin: 6px 0;
    font-size: 11px;
  }

  .footer-legal .separator {
    display: none;
  }

  .newsletter-input-group {
    flex-direction: column;
    border-radius: 15px;
  }

  .newsletter-input-group input {
    border-radius: 15px 15px 0 0;
  }

  .newsletter-submit {
    border-radius: 0 0 15px 15px;
    width: 100%;
  }

  .footer-left-section {
    margin-bottom: 25px;
  }

  .footer-logo {
    margin-bottom: 20px;
  }

  .footer-logo img {
    max-width: 120px;
  }

  .footer-contact .contact-item {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }

  .footer-icon {
    margin: 0 auto 15px;
  }

  .footer-social-icons {
    gap: 6px;
    flex-wrap: nowrap;
  }

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

  .footer-bottom p {
    font-size: 12px;
    padding: 0 15px;
  }
}

/* Extra small devices (phones, 400px and down) */
@media (max-width: 400px) {
  footer {
    padding: 25px 8px 15px;
    border-radius: 20px 20px 0 0;
  }

  .footer-main-content {
    padding: 15px 0 10px;
  }

  .footer-column {
    padding: 15px 10px;
    border-radius: 8px;
  }

  .footer-column h4 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .footer-links-list a {
    font-size: 12px;
  }

  .footer-contact-small {
    padding: 15px 10px;
  }

  .footer-mini-item {
    padding: 10px;
    gap: 10px;
  }

  .footer-mini-item i {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .footer-mini-item strong {
    font-size: 12px;
  }

  .footer-mini-item p,
  .footer-mini-item a {
    font-size: 11px;
  }

  .footer-right-section {
    padding: 18px 10px;
  }

  .footer-logo img {
    max-width: 100px;
  }

  .footer-social-icons {
    flex-wrap: nowrap;
    gap: 5px;
  }

  .footer-social-icons .social-icon {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .footer-bottom p {
    font-size: 10px;
  }

  .footer-legal a {
    font-size: 10px;
  }
}

/* 
  ----------------------------------------------------------------
  Mobile Overlay Safety
  ----------------------------------------------------------------
  On some mobile browsers a stuck overlay (menu / submenu / WhatsApp
  / preloader) can cover the page if JavaScript fails. These rules
  guarantee that on small screens the content is always visible.
*/
@media (max-width: 1024px) {

  #js-preloader,
  .js-preloader,
  .mobile-menu-overlay,
  .mobile-submenu-overlay,
  .whatsapp-popup-overlay {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

/* Logo with white container background - bigger size - Applied to all pages */
.header-area .main-nav .logo {
  background: #ffffff !important;
  padding: 12px 20px !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
}

.header-area .main-nav .logo:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-2px) !important;
}

.header-area .main-nav .logo img {
  height: 80px !important;
  width: auto !important;
  display: block !important;
}

@media (min-width: 1200px) {
  .header-area .main-nav .logo {
    padding: 16px 24px !important;
    border-radius: 14px !important;
  }
  
  .header-area .main-nav .logo img {
    height: 110px !important;
  }
}

.background-header .main-nav .logo {
  background: #ffffff !important;
  padding: 14px 22px !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.background-header .main-nav .logo img {
  height: 90px !important;
}

/* Mobile logo with white container */
@media (max-width: 991.98px) {
  .ny-mobile-logo {
    background: #ffffff !important;
    padding: 10px 16px !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .ny-mobile-logo img {
    height: 70px !important;
    width: auto !important;
  }
}

/* Fix banner padding-top to account for larger logo - prevents heading overlap */
.main-banner {
  padding-top: 160px !important;
}

@media (min-width: 1200px) {
  .main-banner {
    padding-top: 200px !important;
  }
}

@media (max-width: 991.98px) {
  .main-banner {
    padding-top: 140px !important;
  }
}

/*
============================================================
SITE-WIDE REDESIGN OVERRIDES (applies to ALL pages)
- Purpose: unify look across pages that have per-page <style> blocks
- Strategy: override key tokens + components using !important
============================================================
*/

:root {
  /* Premium Yoga palette (calm + modern) */
  --ny-bg: #fbfaf7;
  --ny-surface: #ffffff;
  --ny-text: #1f2937;
  --ny-text-muted: #4b5563;
  --ny-border: rgba(31, 41, 55, 0.12);
  --ny-primary: #2bb673;         /* calm green */
  --ny-primary-dark: #1f8f59;
  --ny-accent: #ff9b3f;          /* warm accent */
  --ny-accent-dark: #f27c0a;
  --ny-radius: 16px;
  --ny-radius-sm: 12px;
  --ny-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --ny-shadow-md: 0 10px 28px rgba(15, 23, 42, 0.10);
  --ny-shadow-lg: 0 18px 50px rgba(15, 23, 42, 0.14);
  --ny-ring: 0 0 0 4px rgba(43, 182, 115, 0.18);
}

html,
body {
  background: var(--ny-bg) !important;
  color: var(--ny-text) !important;
}

body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
  line-height: 1.65 !important;
  text-rendering: optimizeLegibility;
}

p {
  color: var(--ny-text-muted) !important;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--ny-text) !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em;
}

/* Make sections breathe (template uses big margin-top; keep but reduce) */
.section {
  margin-top: 72px !important;
  padding-top: 30px !important;
}

@media (max-width: 991.98px) {
  .section {
    margin-top: 56px !important;
  }
}

.section-heading h6 {
  color: var(--ny-primary) !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
}

.section-heading h2 {
  color: var(--ny-text) !important;
}

/* Global links */
a {
  color: inherit;
}

a:hover {
  color: var(--ny-primary) !important;
}

/* Buttons (normalizes template buttons + per-page overrides) */
.main-button a,
.orange-button,
#contact-form button,
button,
.btn,
.btn-modern {
  border-radius: 999px !important;
}

.main-button a {
  background: linear-gradient(135deg, var(--ny-primary) 0%, #46d38b 100%) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 16px 40px rgba(43, 182, 115, 0.28) !important;
  font-weight: 600 !important;
  padding: 0.9rem 1.9rem !important;
}

.main-button a:hover {
  background: linear-gradient(135deg, var(--ny-primary-dark) 0%, var(--ny-primary) 100%) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 20px 55px rgba(43, 182, 115, 0.36) !important;
}

.orange-button {
  background: linear-gradient(120deg, var(--ny-accent) 0%, #ffb25e 45%, #ffd28b 100%) !important;
  color: #1f2937 !important;
  border: none !important;
  box-shadow: 0 18px 48px rgba(242, 124, 10, 0.20) !important;
  font-weight: 700 !important;
}

.orange-button:hover {
  background: linear-gradient(120deg, var(--ny-accent-dark) 0%, var(--ny-accent) 45%, #ffd28b 100%) !important;
  transform: translateY(-1px) !important;
}

/* Cards + blocks (services/events/testimonials/contact) */
.services .service-item .main-content,
.events_item,
.testimonials .item,
.contact-us .contact-us-content,
.modern-card,
.footer-column,
.footer-contact-small,
.footer-mini-item {
  background: var(--ny-surface) !important;
  border: 1px solid var(--ny-border) !important;
  border-radius: var(--ny-radius) !important;
  box-shadow: var(--ny-shadow-md) !important;
}

.services .service-item:hover .main-content,
.events_item:hover,
.testimonials .item:hover,
.contact-us .contact-us-content:hover,
.modern-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--ny-shadow-lg) !important;
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
textarea,
select {
  border-radius: 12px !important;
  border: 1px solid var(--ny-border) !important;
  background: #ffffff !important;
  color: var(--ny-text) !important;
}

input:focus,
textarea:focus,
select:focus {
  outline: none !important;
  box-shadow: var(--ny-ring) !important;
  border-color: rgba(43, 182, 115, 0.55) !important;
}

/* Images */
img {
  border-radius: 14px;
}

/* Footer: keep your layout but match new palette */
footer {
  background: linear-gradient(180deg, #3a2e20 0%, #2d2418 100%) !important;
  color: #f5f1e8 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
}

/* Reduce very strong template rounding on tiny screens (keeps clean edges) */
@media (max-width: 400px) {
  footer {
    border-radius: 0 !important;
  }
}