@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  text-decoration: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    opacity: 0;
  }
}
@keyframes spinClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spinAntiClockwise {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes cardSlideIn {
  0% {
    opacity: 0;
    transform: translateY(25px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
body::-webkit-scrollbar-track {
  background: #d61f33;
}
body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.no-scroll {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Philosopher", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

p,
ul,
li,
strong,
span,
a {
  font-size: clamp(13px, 1.5vw, 16px);
  font-family: "Poppins", sans-serif;
  display: inline-block;
  text-decoration: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
  color: #000000;
  font-weight: 300;
  box-sizing: border-box;
}

strong {
  font-weight: auto;
}

.nav-link {
  font-size: clamp(12px, 2.1vw, 15px);
}

.icon {
  width: 16px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.icon.email {
  background-image: url("../images/icons/email.svg");
}
.icon.phone {
  background-image: url("../images/icons/phone.svg");
}

.toggle-wrap {
  display: none;
}

header {
  position: relative;
  z-index: 999;
  background: #d61f33;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 999;
}
header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  animation: 1s forwards smoothScroll;
  z-index: 999;
}
@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0);
  }
}
header .logo-wrap {
  display: flex;
  align-items: center;
  padding: 0 10px;
  background-color: #f8f8f8;
  position: relative;
}
header .logo-wrap::before {
  z-index: -1;
  position: absolute;
  content: "";
  width: 38px;
  height: 100%;
  background-color: #f8f8f8;
  top: 0;
  transform: skewX(-20deg);
  right: -18px;
}
header .logo-wrap img {
  width: auto;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}
header .header-inner {
  width: calc(100% - 240px);
}
header .header-inner .top-header {
  width: 100%;
  background: linear-gradient(#dc3545, #d61f33);
  padding: 0 1rem;
  padding-right: 2rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
header .header-inner .top-header .contact-detail {
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 10px 0;
  gap: 5px;
  text-align: end;
}
header .header-inner .top-header .contact-detail a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  padding: 4px 10px;
  transition: 0.3s ease-in-out;
  position: relative;
  z-index: 4;
}
header .header-inner .top-header .contact-detail a::after {
  content: "";
  width: calc(100% + 40px);
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(to right, transparent, #fff, #fff, transparent);
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: 0.3s ease-in-out;
}
header .header-inner .top-header .contact-detail a .icon {
  filter: brightness(0) saturate(100%) invert(99%) sepia(23%) saturate(2%) hue-rotate(195deg) brightness(114%) contrast(100%);
  transition: 0.3s ease-in-out;
}
header .header-inner .top-header .contact-detail a:hover {
  color: #d61f33;
  transition: 0.3s ease-in-out;
}
header .header-inner .top-header .contact-detail a:hover:after {
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease-in-out;
}
header .header-inner .top-header .contact-detail a:hover .icon {
  filter: brightness(0) saturate(100%) invert(22%) sepia(55%) saturate(5698%) hue-rotate(343deg) brightness(86%) contrast(95%);
  transition: 0.3s ease-in-out;
}
header .header-inner .top-header .right-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  gap: 10px;
}
header .header-inner .top-header .right-box .host-btn {
  padding: 4px 16px;
  padding-right: 55px;
  background: radial-gradient(circle at 75% 50%, #dc3545, #dc3545);
  border: 1px solid rgba(243, 202, 207, 0.32);
  color: #d61f33;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
header .header-inner .top-header .right-box .host-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(214, 31, 51, 0.8), rgba(220, 53, 69, 0.8));
  transform: translateX(-100%);
  z-index: -1;
  transition: transform 0.6s ease;
}
header .header-inner .top-header .right-box .host-btn:hover {
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}
header .header-inner .top-header .right-box .host-btn:hover::before {
  transform: translateX(0);
}
header .header-inner .top-header .right-box .host-btn:hover .btn-imgwrap img {
  filter: brightness(0) saturate(100%) invert(22%) sepia(55%) saturate(5698%) hue-rotate(343deg) brightness(86%) contrast(95%) !important;
}
header .header-inner .top-header .right-box .host-btn:hover .btn-imgwrap img:first-child {
  transform: translate(-50%, calc(-50% - 30px));
  opacity: 0;
}
header .header-inner .top-header .right-box .host-btn:hover .btn-imgwrap img:last-child {
  transform: translate(-50%, -50%);
  opacity: 1;
}
header .header-inner .top-header .right-box .host-btn .host-btn-inner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  z-index: 1;
}
header .header-inner .top-header .right-box .host-btn .host-btn-inner .upper-text {
  font-size: 12px;
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
}
header .header-inner .top-header .right-box .host-btn .host-btn-inner .lower-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
header .header-inner .top-header .right-box .host-btn .btn-imgwrap {
  position: absolute;
  height: 100%;
  width: 50px;
  top: 0;
  right: 0;
  z-index: 3;
}
header .header-inner .top-header .right-box .host-btn .btn-imgwrap::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  background: white;
  z-index: -1;
}
header .header-inner .top-header .right-box .host-btn .btn-imgwrap img {
  position: absolute;
  height: 30px;
  width: 30px;
  left: 50%;
  top: 50%;
  filter: brightness(0) saturate(100%) invert(22%) sepia(55%) saturate(5698%) hue-rotate(343deg) brightness(86%) contrast(95%);
  transform: translate(-50%, -50%);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
header .header-inner .top-header .right-box .host-btn .btn-imgwrap img:first-child {
  opacity: 1;
}
header .header-inner .top-header .right-box .host-btn .btn-imgwrap img:last-child {
  transform: translate(-50%, calc(-50% + 30px));
  opacity: 0;
}
@media (min-width: 1200px) {
  header .header-inner nav {
    position: relative;
    width: 100%;
    padding: 0;
    background-color: #ffffff;
  }
  header .header-inner nav::before {
    position: absolute;
    content: "";
    z-index: -1;
    width: 20px;
    height: 100%;
    background-color: #ffffff;
    top: 0;
    transform: skewX(-20deg);
    left: -10px;
  }
  header .header-inner nav ul.main-nav {
    width: 100%;
    display: flex;
    flex-direction: row;
  }
  header .header-inner nav ul.main-nav > li {
    width: 100%;
    position: relative;
    z-index: 4;
  }
}
@media (min-width: 1200px) and (max-width: 1350px) {
  header .header-inner nav ul.main-nav > li:first-child {
    display: none;
  }
}
@media (min-width: 1200px) {
  header .header-inner nav ul.main-nav > li::before {
    position: absolute;
    content: "";
    right: 0;
    left: auto;
    margin: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 75%;
    z-index: -1;
    border-right: 1px dashed #d61f33;
  }
  header .header-inner nav ul.main-nav > li:last-child::before {
    display: none;
  }
  header .header-inner nav ul.main-nav > li .nav-link {
    display: block;
    text-align: center;
    color: #d61f33;
    font-weight: 500;
    line-height: 22px;
    padding: 0.5rem;
    position: relative;
  }
  header .header-inner nav ul.main-nav > li .nav-link:before {
    content: "";
    width: 85%;
    height: 22px;
    background: linear-gradient(#d61f33, #dc3545);
    z-index: -1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) skewX(-10deg) scale(0);
    transition: 0.3s ease-in-out;
  }
  header .header-inner nav ul.main-nav > li .nav-link:hover {
    color: #ffffff;
    transition: 0.3s ease-in-out;
  }
  header .header-inner nav ul.main-nav > li .nav-link:hover::before {
    transform: translate(-50%, -50%) skewX(-10deg) scale(1);
    transition: 0.3s ease-in-out;
  }
  header .header-inner nav ul.main-nav > li .nav-link.active {
    color: #ffffff;
    transition: 0.3s ease-in-out;
  }
  header .header-inner nav ul.main-nav > li .nav-link.active::before {
    transform: translate(-50%, -50%) skewX(-10deg) scale(1);
    transition: 0.3s ease-in-out;
  }
  header .header-inner nav ul.main-nav .has-dropdown {
    position: relative;
  }
  header .header-inner nav ul.main-nav .has-dropdown .nav-link::after {
    vertical-align: 0.255em;
    content: "";
    border-right: 0.3em solid rgba(255, 255, 255, 0);
    border-left: 0.3em solid rgba(255, 255, 255, 0);
    display: inline-block;
    margin-left: 5px;
    border-top: 0.3em solid;
    border-bottom: 0;
  }
  header .header-inner nav ul.main-nav .has-dropdown .dropdown {
    position: absolute;
    left: 0;
    min-width: 260px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    background: #fff;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    white-space: nowrap;
    max-height: 0px;
    transform: scaleY(0);
    transform-origin: top;
    overflow: hidden;
  }
  header .header-inner nav ul.main-nav .has-dropdown .dropdown li {
    width: 100%;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
    display: block;
    background: rgba(255, 255, 255, 0);
  }
  header .header-inner nav ul.main-nav .has-dropdown .dropdown li .drop-link {
    position: relative;
    display: block;
    padding: 0.6rem 1.5rem;
    color: #212529;
    z-index: 3;
    transition: 0.6s;
  }
  header .header-inner nav ul.main-nav .has-dropdown .dropdown li .drop-link:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fef5f5;
    bottom: 0;
    left: 0;
    max-width: 0px;
    display: block;
    z-index: -1;
    transition: 0.6s;
  }
  header .header-inner nav ul.main-nav .has-dropdown .dropdown li .drop-link:hover {
    background: white;
    color: #d61f33;
    padding-left: 20px;
    transition: 0.6s;
  }
  header .header-inner nav ul.main-nav .has-dropdown .dropdown li .drop-link:hover:after {
    max-width: 100%;
    transition: 0.6s;
  }
  header .header-inner nav ul.main-nav .has-dropdown .dropdown li:last-child {
    border-bottom: none;
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  header .header-inner nav ul.main-nav .has-dropdown:hover .dropdown {
    visibility: visible;
    opacity: 1;
    max-height: 500px;
    transform: scaleY(1);
  }
}
@media (max-width: 1200px) {
  header {
    padding-top: 46px;
    align-items: center;
    background: white;
  }
  header .header-inner {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
  }
  header .header-inner .top-header {
    background: #d61f33;
    padding: 5px 1rem;
  }
  header .header-inner .top-header .contact-detail {
    padding: 0;
  }
  header .header-inner .top-header .right-box .host-btn .host-btn-inner .upper-text {
    display: none;
  }
  header .header-inner .top-header .right-box .host-btn .host-btn-inner .lower-text {
    font-size: 13px;
    padding: 3px;
  }
  header .header-inner nav {
    position: absolute;
    left: 10px;
    width: calc(100% - 20px);
    top: 129px;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    max-height: 0px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
  }
  header .header-inner nav.show {
    max-height: 100vh;
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
  }
  header .header-inner nav:after {
    display: none;
  }
  header .header-inner nav:before {
    display: none;
  }
  header .header-inner nav .main-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
  }
  header .header-inner nav .main-nav li {
    width: 100%;
    position: relative;
  }
  header .header-inner nav .main-nav li > .nav-link {
    padding: 10px 15px;
    font-size: clamp(12px, 2.2vw, 14px);
    color: #212529;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    justify-content: space-between !important;
  }
  header .header-inner nav .main-nav li > .nav-link:before {
    content: "";
    top: 0;
    height: 100%;
    width: 100%;
    border-left: none;
    position: absolute;
    right: 0;
    transform: translateY(0%);
    border-bottom: 1px dashed #212529;
  }
  header .header-inner nav .main-nav li:last-child .nav-link:before {
    display: none;
  }
  header .header-inner nav .main-nav li.has-dropdown .nav-link::after {
    vertical-align: 0.255em;
    content: "";
    border-right: 0.4em solid rgba(255, 255, 255, 0);
    border-left: 0.4em solid rgba(255, 255, 255, 0);
    display: inline-block;
    margin-left: 0.455em;
    border-top: 0.4em solid;
    border-bottom: 0;
  }
  header .header-inner nav .main-nav li.has-dropdown .dropdown {
    width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 1px;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    padding: 0;
  }
  header .header-inner nav .main-nav li.has-dropdown .dropdown li {
    width: 100%;
    background: #ffffff;
  }
  header .header-inner nav .main-nav li.has-dropdown .dropdown li .drop-link {
    padding: 10px 15px;
    font-size: clamp(12px, 2.2vw, 14px);
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #fef5f5;
    justify-content: space-between !important;
  }
  header .header-inner nav .main-nav li.has-dropdown.show .dropdown {
    max-height: 500px;
    visibility: visible;
    opacity: 1;
    padding: 10px;
  }
  header .toggle-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 7px;
    background: #d61f33;
    position: relative;
  }
  header .toggle-wrap .toggle {
    padding: 20px;
  }
  header .toggle-wrap .toggle img {
    width: 30px;
    height: 30px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  header .toggle-wrap::before {
    position: absolute;
    content: "";
    z-index: -1;
    width: 50px;
    left: -35px;
    height: 100%;
    background-color: #d61f33;
    top: 0;
    transform: skewX(-20deg);
  }
}
@media (max-width: 991px) {
  header .header-inner .top-header {
    padding: 5px 1rem;
  }
  header .header-inner .top-header .right-box #google_translate_element .goog-te-gadget span {
    display: none;
  }
  header .header-inner .top-header .right-box .host-btn {
    margin-right: 5px;
  }
}
@media (max-width: 768px) {
  header .header-inner .top-header {
    padding: 8px 1rem;
  }
  header .header-inner .top-header .right-box .host-btn {
    display: none;
  }
}
@media (max-width: 610px) {
  header {
    padding-top: 42px;
  }
  header .header-inner .top-header {
    padding: 4px 1.5rem;
  }
  header .header-inner .top-header .contact-detail {
    padding: 7px 0;
  }
  header .header-inner .top-header .contact-detail a {
    font-size: 12px;
    white-space: nowrap;
  }
  header .header-inner .top-header .contact-detail a:first-child {
    display: none;
  }
  header .header-inner .top-header .right-box {
    width: 100%;
    justify-content: end;
  }
  header .header-inner nav {
    top: 126px;
  }
}
@media (max-width: 450px) {
  header {
    padding-top: 39px;
  }
  header .logo-wrap {
    padding: 4px;
  }
  header .logo-wrap img {
    height: 53px;
  }
  header .header-inner .top-header {
    padding: 4px 10px;
  }
  header .header-inner .top-header .contact-detail {
    justify-content: space-between;
    gap: 5px;
    flex-direction: column;
    padding: 3px 0;
  }
  header .header-inner .top-header .contact-detail a {
    font-size: 11.5px;
  }
  header .header-inner .top-header .right-box .host-btn {
    margin-right: 5px;
    padding: 3px 8px;
  }
  header .header-inner nav {
    top: 107px;
  }
  header .toggle-wrap .toggle {
    padding: 11px;
  }
  header .toggle-wrap:before {
    left: -20px;
  }
}

@keyframes shine-alt1 {
  0% {
    opacity: 0.5;
    transform: translateX(-100px) skewX(-15deg);
  }
  50%, 100% {
    opacity: 0.6;
    transform: translateX(400px) skewX(-15deg);
  }
}
@keyframes shine-alt2 {
  0% {
    opacity: 0.5;
    transform: translateX(-100px) skewX(-15deg);
  }
  50%, 100% {
    opacity: 0.6;
    transform: translateX(400px) skewX(-15deg);
  }
}
.theme-btn {
  font-size: clamp(12px, 2vw, 15px);
  padding: 8px 8px 8px 13px !important;
  background: #d61f33;
  color: #ffffff;
  font-weight: 500;
  white-space: nowrap;
  border: 1.5px solid #d61f33;
  outline: 0;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.theme-btn::before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  background: rgba(255, 255, 255, 0.7);
  width: 60px;
  left: 0;
  filter: blur(30px);
  animation: shine-alt1 3s ease-in-out infinite;
}
.theme-btn:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
  width: 30px;
  left: 30px;
  filter: blur(5px);
  animation: shine-alt2 3s ease-in-out infinite;
}
.theme-btn .icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(99%) sepia(23%) saturate(2%) hue-rotate(195deg) brightness(114%) contrast(100%);
}
.theme-btn .icon.enroll {
  background-image: url("../images/icons/enroll.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.theme-btn .icon.arrow-right {
  background-image: url("../images/icons/arrow-right-solid.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.theme-btn:hover {
  border: 1.5px solid #d61f33;
  background: #ffffff;
  transition: 0.3s ease-in-out;
  color: #d61f33;
}
.theme-btn:hover .icon {
  filter: brightness(0) saturate(100%) invert(22%) sepia(55%) saturate(5698%) hue-rotate(343deg) brightness(86%) contrast(95%);
  transition: 0.3s ease-in-out;
}
.theme-btn.alt {
  background: #ffffff;
  border: 1.5px solid #d61f33;
  color: #d61f33;
}
.theme-btn.alt .icon {
  filter: brightness(0) saturate(100%) invert(22%) sepia(55%) saturate(5698%) hue-rotate(343deg) brightness(86%) contrast(95%);
  transition: 0.3s ease-in-out;
}
.theme-btn.alt:hover {
  border: 1.5px solid #ffffff;
  background: #d61f33;
  transition: 0.3s ease-in-out;
  color: #ffffff;
}
.theme-btn.alt:hover .icon {
  filter: brightness(0) saturate(100%) invert(99%) sepia(23%) saturate(2%) hue-rotate(195deg) brightness(114%) contrast(100%);
  transition: 0.3s ease-in-out;
}
.theme-btn.yellow {
  background: #e26600;
  border: 1.5px solid #e26600;
  color: #ffffff;
}
.theme-btn.yellow .icon {
  filter: brightness(0) saturate(100%) invert(99%) sepia(23%) saturate(2%) hue-rotate(195deg) brightness(114%) contrast(100%);
  transition: 0.3s ease-in-out;
}
.theme-btn.yellow:hover {
  border: 1.5px solid #ffffff;
  background: #d61f33;
  transition: 0.3s ease-in-out;
  color: #ffffff;
}
.theme-btn.yellow:hover .icon {
  filter: brightness(0) saturate(100%) invert(99%) sepia(23%) saturate(2%) hue-rotate(195deg) brightness(114%) contrast(100%);
  transition: 0.3s ease-in-out;
}

.hero-section {
  width: 100%;
  overflow: hidden;
  background: #212529;
  position: relative;
  z-index: 1;
  /* ------------------------------------
               RESPONSIVE
  ------------------------------------ */
}
.hero-section .pattern-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.hero-section .pattern-wrap img {
  position: absolute;
  filter: brightness(0) saturate(100%) invert(99%) sepia(23%) saturate(2%) hue-rotate(195deg) brightness(114%) contrast(100%);
  opacity: 0.55;
  max-width: 220px;
  animation: float 7s ease-in-out infinite, rotateSlight 12s linear infinite;
  transform-origin: center;
}
.hero-section .pattern-wrap img:nth-child(1) {
  top: 0;
  right: 0;
  transform: translate(25%, -25%);
  animation-delay: 0.2s;
}
.hero-section .pattern-wrap img:nth-child(2) {
  bottom: 0;
  left: 0;
  transform: translate(-25%, 25%);
  animation-delay: 0.5s;
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes rotateSlight {
  0% {
    rotate: 0deg;
  }
  50% {
    rotate: 1.3deg;
  }
  100% {
    rotate: 0deg;
  }
}
.hero-section .hero-slider {
  width: 100%;
  position: relative;
  /* ------------ ACTIVE SLIDE ZOOM ------------ */
}
.hero-section .hero-slider .slide {
  position: relative;
  width: 100%;
  height: 85vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  padding: 60px 40px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
  /* ------------ TEXT PANEL ------------ */
}
.hero-section .hero-slider .slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(34, 34, 34, 0.5647058824), rgba(38, 27, 42, 0.6901960784));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  transition: transform 9s ease-in-out;
  z-index: -1;
}
.hero-section .hero-slider .slide .slide-content {
  position: relative;
  z-index: 1;
}
.hero-section .hero-slider .slide .slide-content .hero-heading {
  color: #fff;
  font-size: clamp(18px, 3.3vw, 48px);
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.681);
  opacity: 0;
}
.hero-section .hero-slider .slide.slick-active .slide-content .hero-heading {
  animation: fadeUp 0.9s ease-out forwards;
}
.hero-section .hero-slider .slick-active::before {
  transform: scale(1.22);
}
.hero-section .hero-slider .slick-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: clamp(1.2rem, 1.4vw, 1.4rem);
  display: flex !important;
  gap: 10px;
  padding: 0;
  margin: 0;
  /* ACTIVE DOT */
}
.hero-section .hero-slider .slick-dots li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  padding: 0;
  margin: 0;
  background: rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
  list-style: none;
  /* RESET SLICK DEFAULT BUTTON */
}
.hero-section .hero-slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  width: 100%;
  height: 100%;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.hero-section .hero-slider .slick-dots li button::before {
  content: none !important;
}
.hero-section .hero-slider .slick-dots li.slick-active {
  background: #ffffff;
  transform: scale(1.5);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 991px) {
  .hero-section .hero-slider .slide {
    height: 55vh;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-slider .slide {
    height: 45vh;
  }
  .hero-section .pattern-wrap img {
    max-width: 150px;
    opacity: 0.45;
  }
}
@media (max-width: 576px) {
  .hero-section .hero-slider .slide {
    height: 32vh;
    padding: 30px 15px;
  }
  .hero-section .slide-content {
    padding: 8px 14px !important;
  }
  .hero-section .pattern-wrap img {
    max-width: 110px;
  }
  .hero-section .slick-dots {
    bottom: 10px;
    gap: 6px;
  }
  .hero-section .slick-dots li {
    width: 12px;
    height: 12px;
  }
  .hero-section .slick-dots li button {
    width: 4px;
    height: 4px;
  }
}

.spacing {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .spacing {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .spacing {
    padding: 50px 0;
  }
}
@media (max-width: 576px) {
  .spacing {
    padding: 40px 0;
  }
}

.img-wrap {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  max-height: 600px;
  overflow: hidden;
}
.img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 991.98px) {
  .img-wrap {
    max-height: 400px;
  }
}
@media screen and (max-width: 576px) {
  .img-wrap {
    max-height: 230px;
  }
}

.title {
  font-size: clamp(12px, 2vw, 14px);
  line-height: 16px;
  font-weight: 500;
}

.sub-title {
  font-size: 12px;
  font-size: clamp(10px, 2vw, 12px);
  line-height: 16px;
  font-weight: 500;
}

.common-heading {
  font-size: clamp(20px, 3.4vw, 36px);
  font-weight: 700;
  font-family: "Philosopher", sans-serif;
  line-height: 1.2;
  color: #454343;
}

.sub-heading {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  font-family: "Philosopher", sans-serif;
  line-height: 1.2;
}

.small-heading {
  font-size: clamp(15px, 2.5vw, 20px);
  font-weight: 600;
  font-family: "Philosopher", sans-serif;
  line-height: 1.2;
}

.card-heading {
  font-size: clamp(15px, 2.5vw, 24px);
  font-weight: 700;
  font-family: "Philosopher", sans-serif;
  line-height: 1.2;
}

.common-content-wrap {
  height: 100%;
  width: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  padding: 25px;
}
@media (max-width: 991px) {
  .common-content-wrap {
    padding: 10px 0;
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .common-content-wrap {
    gap: 10px;
    padding: 0;
  }
}

.heading-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  margin-bottom: 3rem;
}
.heading-wrapper .title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #d61f33;
  background: #fef5f5;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: clamp(5px, 1.5vw, 15px);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s ease-in-out;
}
.heading-wrapper .title:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.15);
}
.heading-wrapper .title::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #d61f33;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}
.heading-wrapper .title::before:hover {
  transform: scale(1.3);
}
.heading-wrapper .title.white {
  background: #ffffff;
}
.heading-wrapper .common-heading {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #d61f33, #e26600);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  max-width: 991px;
}
.heading-wrapper .common-heading::after {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d61f33, #e26600);
  border-radius: 3px;
  transition: 0.3s ease-in-out;
}
.heading-wrapper .common-heading:hover::after {
  width: 80px;
}
.heading-wrapper .sub-heading {
  font-size: clamp(14px, 1.8vw, 18px);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: rgba(45, 52, 54, 0.7);
  max-width: 768px;
  margin-top: 1rem;
}
.heading-wrapper .sub-title {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #74613c;
  text-align: center;
}
@media (max-width: 576px) {
  .heading-wrapper {
    gap: 7px;
    margin-bottom: 1.2rem;
  }
  .heading-wrapper .title {
    font-size: 10px;
    padding: 6px 9px 6px 20px;
    letter-spacing: 0.5px;
  }
  .heading-wrapper .title::after {
    width: 25px;
    height: 18px;
  }
}

.big-text {
  float: left;
  display: block;
  font-size: clamp(16px, 2vw, 26px);
  padding: 0;
  margin: 5px 10px 0px 0;
  font-weight: 500;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background-color: #d61f33;
  color: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .big-text {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
@media (max-width: 576px) {
  .big-text {
    width: 30px;
    height: 30px;
    margin: 5px 8px 0px 0;
    line-height: 30px;
  }
}

.featured-item {
  display: flex;
  gap: 1rem;
  padding: 10px;
}
.featured-item .icon {
  height: 70px;
  width: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #fef5f5;
  border-radius: 50%;
  flex-shrink: 0;
  transition: 0.3s;
}
.featured-item .icon img {
  height: 40px;
  filter: brightness(0) saturate(100%) invert(22%) sepia(55%) saturate(5698%) hue-rotate(343deg) brightness(86%) contrast(95%);
}
.featured-item .icon:hover {
  background: #d61f33;
  transition: 0.3s;
}
.featured-item .icon:hover img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(23%) saturate(2%) hue-rotate(195deg) brightness(114%) contrast(100%);
}
.featured-item .featured-desc .small-heading {
  color: #d61f33;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.dual-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  gap: 15px;
}
@media (max-width: 475px) {
  .dual-btn-wrapper {
    width: 100%;
  }
  .dual-btn-wrapper .theme-btn {
    flex-grow: 1;
  }
}

.about-section {
  position: relative;
}
.about-section .common-content-wrap .para {
  text-align: justify;
}
@media (max-width: 1200px) {
  .about-section .img-wrap {
    height: 500px;
  }
}
@media (max-width: 991px) {
  .about-section .img-wrap {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .about-section .img-wrap {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .about-section .img-wrap {
    height: 250px;
  }
}

.benefit-section {
  position: relative;
  background: url("../images/about-women.webp");
  background-color: #fef5f5;
  background-attachment: fixed;
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}
.benefit-section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.4509803922) 0%, rgba(255, 255, 255, 0.1098039216) 60%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}
.benefit-section .benefit-card {
  display: flex;
  gap: 20px;
  border-bottom: 2px solid #dddcd2;
  padding-bottom: 20px;
  margin-bottom: 10px;
}
.benefit-section .benefit-card .icon {
  width: 71px;
  height: 71px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.benefit-section .benefit-card .icon img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.benefit-section .benefit-card .benefit-desc .card-heading {
  letter-spacing: 1px;
  margin-bottom: 10px;
}
@media (max-width: 1400px) {
  .benefit-section {
    background-size: cover;
  }
  .benefit-section:after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6784313725) 0%, rgba(255, 255, 255, 0.7803921569) 60%, rgba(0, 0, 0, 0.4901960784) 100%);
  }
}
@media (max-width: 1200px) {
  .benefit-section {
    background: #fef5f5;
    background-color: #fef5f5;
  }
  .benefit-section:after {
    display: none;
  }
}
@media (max-width: 991px) {
  .benefit-section .benefit-card {
    gap: 15px;
    padding-bottom: 15px;
  }
  .benefit-section .benefit-card .icon {
    width: 60px;
    height: 60px;
  }
  .benefit-section .benefit-card .benefit-desc .card-heading {
    letter-spacing: 0.7px;
    margin-bottom: 5px;
  }
  .benefit-section .benefit-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 576px) {
  .benefit-section .benefit-card {
    gap: 10px;
    padding-bottom: 10px;
    margin-bottom: 5px;
  }
  .benefit-section .benefit-card .icon {
    width: 50px;
    height: 50px;
  }
  .benefit-section .benefit-card .benefit-desc .card-heading {
    letter-spacing: 0.5px;
    margin-bottom: 0px;
  }
}

.container-fluid {
  max-width: 1800px;
}

.card-section {
  position: relative;
}
.card-section .course-card {
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  border-radius: 10px;
  max-width: 450px;
  margin: auto;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.card-section .course-card .card-head {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
}
.card-section .course-card .card-head .img-wrap {
  border-radius: 10px 10px 0 0;
  height: 220px;
  width: 100%;
}
.card-section .course-card .card-head .img-wrap img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 100%;
}
.card-section .course-card .card-head .heading-wrap {
  background: #d61f33;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  padding: 3px 5px;
  left: 0;
  position: relative;
  border-radius: 0 0 10px 10px;
}
.card-section .course-card .card-head .heading-wrap .title {
  color: #d61f33;
  padding: 2px 7px;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  position: relative;
  z-index: 1;
}
.card-section .course-card .card-head .heading-wrap .title::before {
  content: "";
  position: absolute;
  background: #ffffff;
  opacity: 0.7;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) skewX(40deg);
  z-index: -1;
}
.card-section .course-card .card-head .heading-wrap .title::after {
  content: "";
  position: absolute;
  background: #ffffff;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) skewX(-10deg);
  z-index: -1;
}
.card-section .course-card .card-head .heading-wrap .card-heading {
  color: #ffffff;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.card-section .course-card .card-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  gap: 10px;
  border-radius: 10px 10px 0 0;
  padding: 1rem;
  padding-top: 0;
}
.card-section .course-card .card-content .course-fee {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  margin-top: 35px;
}
.card-section .course-card .card-content .course-fee .fee-box {
  flex-grow: 1;
  position: relative;
  padding: 0px 5px;
  display: flex;
  justify-content: center;
}
.card-section .course-card .card-content .course-fee .fee-box span {
  line-height: 1;
}
.card-section .course-card .card-content .course-fee .fee-box span:first-child {
  padding: 2px 7px;
  text-align: center;
  background: white;
  color: #d61f33;
  border: 1px solid #d61f33;
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(10px, 2vw, 12px);
  font-weight: 600;
  white-space: nowrap;
}
.card-section .course-card .card-content .course-fee .fee-box span:last-child {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 700;
  text-align: center;
}
.card-section .course-card .card-content .card-detail {
  border-radius: 10px;
  width: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  gap: 5px;
}
.card-section .course-card .card-content .card-detail li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  border-bottom: 1px dashed #d61f33;
}
.card-section .course-card .card-content .card-detail li strong {
  color: #d61f33;
  position: relative;
  z-index: 3;
}
.card-section .course-card .card-content .dual-btn {
  width: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  gap: 10px;
}
.card-section .course-card .card-content .dual-btn .theme-btn {
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 1400px) {
  .card-section .course-card .card-head .heading-wrap .title {
    font-size: 12px;
  }
  .card-section .course-card .card-head .heading-wrap .card-heading {
    letter-spacing: 1px;
  }
  .card-section .course-card .card-content .course-fee {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .card-section .course-card .card-head .heading-wrap .card-heading {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .card-section .course-card .card-head .img-wrap {
    height: 200px;
  }
}
@media (max-width: 400px) {
  .card-section .course-card .card-head .img-wrap {
    height: 170px;
  }
  .card-section .course-card .card-head .heading-wrap .card-heading::after {
    height: 2px;
  }
}

.alliance-section {
  position: relative;
  z-index: 1;
  background-image: linear-gradient(rgba(245, 243, 239, 0.8), rgb(245, 243, 239)), url("../images/deepyoga/deep-yoga-17.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-attachment: fixed;
}
.alliance-section .alliance-heading-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
}
.alliance-section .alliance-heading-wrapper .common-heading {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  text-align: center;
}
.alliance-section .alliance-heading-wrapper .title {
  text-transform: uppercase;
  text-shadow: 0 0 0px rgba(255, 246, 246, 0.55), 0 2px 2px rgba(255, 230, 230, 0.69), 0 2px 2px rgba(184, 171, 171, 0.49);
  color: #212529;
  text-align: center;
}
.alliance-section .alliance-heading-wrapper .sub-title {
  background: #d61f33;
  font-family: "Nunito", sans-serif;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 10px;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px !important;
  line-height: 1.3rem !important;
  letter-spacing: 1.5px;
  border-radius: 5px;
}
.alliance-section .certificate-card {
  width: 100%;
  height: 100%;
  max-height: 300px;
  border: 4px solid #ae4800;
  background-color: #fff;
}
.alliance-section .certificate-card img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.alliance-section .alliance-slider-wrapper .alliance-slider {
  padding: 2rem 0;
}
.alliance-section .alliance-slider-wrapper .alliance-slider .slide {
  height: 250px;
  border-radius: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.alliance-section .alliance-slider-wrapper .alliance-slider .slick-slide {
  margin: 0 10px;
}
@media (max-width: 768px) {
  .alliance-section .alliance-slider-wrapper .alliance-slider .slide {
    height: 230px;
  }
}
@media (max-width: 576px) {
  .alliance-section .alliance-slider-wrapper .alliance-slider .slide {
    height: 200px;
  }
}
.alliance-section .alliance-cta {
  padding: 40px 20px;
}
.alliance-section .alliance-cta .alliance-card {
  background: white;
  max-width: 1400px;
  padding: 30px 40px;
  margin: auto;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.alliance-section .alliance-cta .alliance-card::after {
  content: "";
  width: 250px;
  height: 250px;
  position: absolute;
  bottom: -110px;
  left: -110px;
  display: inline-block;
  background: url("../images/icons/chakra.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(22%) sepia(55%) saturate(5698%) hue-rotate(343deg) brightness(86%) contrast(95%);
  opacity: 0.8;
  animation: 10s spinClockwise infinite linear;
}
.alliance-section .alliance-cta .alliance-card::before {
  content: "";
  width: 250px;
  height: 250px;
  position: absolute;
  top: -110px;
  right: -110px;
  display: inline-block;
  background: url("../images/icons/chakra.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(22%) sepia(55%) saturate(5698%) hue-rotate(343deg) brightness(86%) contrast(95%);
  opacity: 0.8;
  animation: 10s spinAntiClockwise infinite linear;
}
.alliance-section .alliance-cta .alliance-card .alliance-head-wrap {
  max-width: 70%;
  margin: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
.alliance-section .alliance-cta .alliance-card .alliance-head-wrap .alliance-heading {
  font-weight: 500;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(16px, 3vw, 36px);
  color: #74613c;
}
.alliance-section .alliance-cta .alliance-card .alliance-head-wrap .title {
  text-align: center;
  color: #d61f33;
}
.alliance-section .alliance-cta .alliance-card .alliance-head-wrap .img-wrap {
  box-shadow: none;
}
.alliance-section .alliance-cta .alliance-card .alliance-head-wrap .img-wrap img {
  height: 60px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  .alliance-section .alliance-heading-wrapper {
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
  }
  .alliance-section .alliance-heading-wrapper .sub-title {
    padding: 8px 12px;
    font-size: 16px !important;
    line-height: 1rem !important;
    letter-spacing: 0.5px;
  }
  .alliance-section .alliance-cta {
    padding: 30px 15px;
  }
  .alliance-section .alliance-cta .alliance-card {
    padding: 30px 40px;
  }
  .alliance-section .alliance-cta .alliance-card::after {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    opacity: 0.8;
  }
  .alliance-section .alliance-cta .alliance-card::before {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
    opacity: 0.8;
  }
  .alliance-section .alliance-cta .alliance-card .alliance-head-wrap {
    max-width: 90%;
    margin: auto;
    gap: 1rem;
  }
  .alliance-section .alliance-cta .alliance-card .alliance-head-wrap .title {
    text-align: center;
    color: #d61f33;
  }
  .alliance-section .alliance-cta .alliance-card .alliance-head-wrap .img-wrap {
    box-shadow: none;
    max-width: 100%;
  }
  .alliance-section .alliance-cta .alliance-card .alliance-head-wrap .img-wrap img {
    height: 60px;
    width: auto;
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 768px) {
  .alliance-section .alliance-heading-wrapper {
    max-width: 576px;
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
  }
  .alliance-section .alliance-heading-wrapper .sub-title {
    padding: 5px 10px;
    font-size: 14px !important;
    line-height: 1rem !important;
    letter-spacing: 0.5px;
  }
  .alliance-section .alliance-cta .alliance-card {
    padding: 20px 25px;
  }
  .alliance-section .alliance-cta .alliance-card::after {
    width: 150px;
    height: 150px;
    bottom: -80px;
    left: -80px;
    opacity: 0.5;
  }
  .alliance-section .alliance-cta .alliance-card::before {
    width: 150px;
    height: 150px;
    top: -80px;
    right: -80px;
    opacity: 0.5;
  }
  .alliance-section .alliance-cta .alliance-card .alliance-head-wrap {
    max-width: 100%;
    margin: auto;
    gap: 1rem;
  }
  .alliance-section .alliance-cta .alliance-card .alliance-head-wrap .title {
    text-align: center;
    color: #d61f33;
  }
  .alliance-section .alliance-cta .alliance-card .alliance-head-wrap .img-wrap {
    box-shadow: none;
    max-width: 100%;
  }
  .alliance-section .alliance-cta .alliance-card .alliance-head-wrap .img-wrap img {
    height: 50px;
    width: auto;
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .alliance-section .certificate-card {
    height: 230px;
  }
}
@media (max-width: 576px) {
  .alliance-section .alliance-heading-wrapper {
    gap: 8px;
  }
  .alliance-section .alliance-heading-wrapper .common-heading {
    font-size: 18px;
  }
  .alliance-section .alliance-heading-wrapper .sub-title {
    padding: 3px 6px;
    font-size: 12px !important;
    line-height: 1rem !important;
    letter-spacing: 0.5px;
  }
  .alliance-section .alliance-cta {
    padding: 20px 15px;
  }
  .alliance-section .alliance-cta .alliance-card {
    padding: 15px 12px;
  }
  .alliance-section .alliance-cta .alliance-card::after {
    width: 110px;
    height: 110px;
    bottom: -50px;
    left: -50px;
    opacity: 0.5;
  }
  .alliance-section .alliance-cta .alliance-card::before {
    width: 110px;
    height: 110px;
    top: -50px;
    right: -50px;
    opacity: 0.5;
  }
  .alliance-section .alliance-cta .alliance-card .alliance-head-wrap {
    max-width: 100%;
    margin: auto;
    gap: 10px;
  }
  .alliance-section .alliance-cta .alliance-card .alliance-head-wrap .title {
    font-size: 10px;
  }
  .alliance-section .alliance-cta .alliance-card .alliance-head-wrap .img-wrap {
    box-shadow: none;
    max-width: 100%;
  }
  .alliance-section .alliance-cta .alliance-card .alliance-head-wrap .img-wrap img {
    height: 40px;
    width: auto;
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .alliance-section .certificate-card {
    width: 100%;
    height: 100%;
    max-height: 200px;
    min-height: 200px;
    border: 4px solid #ae4800;
    background-color: #fff;
  }
  .alliance-section .certificate-card img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 456px) {
  .alliance-section .certificate-card {
    max-height: 150px;
    min-height: 150px;
  }
}
@media (max-width: 400px) {
  .alliance-section .certificate-card {
    min-height: 120px;
    max-height: 120px;
  }
}

/* ---------------------------------------------------
   WHY CHOOSE SECTION — CLEAN MODERN OPTIMIZED VERSION
--------------------------------------------------- */
.why-choose-section .why-card {
  position: relative;
  display: flex;
  gap: clamp(12px, 2vw, 24px);
  padding: clamp(16px, 2.8vw, 28px);
  border-radius: 26px;
  border: 1px solid rgba(214, 31, 51, 0.1);
  overflow: hidden;
  animation: cardSlideIn 0.7s ease forwards;
  opacity: 0;
  transition: 0.35s ease;
}
.why-choose-section .why-card .img-wrap {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #fef5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.35s ease;
}
.why-choose-section .why-card .img-wrap img {
  width: 75%;
  height: 75%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) saturate(100%) invert(22%) sepia(55%) saturate(5698%) hue-rotate(343deg) brightness(86%) contrast(95%);
  transition: 0.35s ease;
}
.why-choose-section .why-card .card-body {
  flex: 1;
  position: relative;
}
.why-choose-section .why-card .card-body::before {
  content: "✦";
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 3rem;
  color: rgba(214, 31, 51, 0.15);
}
.why-choose-section .why-card .card-body .card-heading {
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-right: 16px;
  position: relative;
  display: inline-block;
}
.why-choose-section .why-card .card-body .card-heading::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40%;
  height: 3.5px;
  border-radius: 4px;
  background: linear-gradient(#d61f33, #8d1e36);
  transition: 0.35s ease;
}
.why-choose-section .why-card .card-body .para {
  line-height: 1.6;
  color: #383f45;
  padding-left: 18px;
  position: relative;
}
.why-choose-section .why-card .card-body .para::before {
  content: '"';
  position: absolute;
  left: 2px;
  top: -2px;
  font-size: 2rem;
  color: rgba(214, 31, 51, 0.35);
}
.why-choose-section .why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(214, 31, 51, 0.15);
}
.why-choose-section .why-card:hover .img-wrap {
  transform: translateY(-4px) scale(1.06);
}
.why-choose-section .why-card:hover .img-wrap img {
  transform: scale(1.08);
  filter: brightness(0) saturate(100%) invert(22%) sepia(55%) saturate(5698%) hue-rotate(343deg) brightness(86%) contrast(95%) brightness(1.15);
}
.why-choose-section .why-card:hover .card-heading::before {
  width: 70%;
}
.why-choose-section .why-card:nth-child(1) {
  animation-delay: 0.12s;
}
.why-choose-section .why-card:nth-child(2) {
  animation-delay: 0.24s;
}
.why-choose-section .why-card:nth-child(3) {
  animation-delay: 0.36s;
}
.why-choose-section .why-card:nth-child(4) {
  animation-delay: 0.48s;
}
.why-choose-section .why-card:nth-child(5) {
  animation-delay: 0.6s;
}
.why-choose-section .why-card:nth-child(6) {
  animation-delay: 0.72s;
}
.why-choose-section .why-card:nth-child(7) {
  animation-delay: 0.84s;
}
.why-choose-section .why-card:nth-child(8) {
  animation-delay: 0.96s;
}
.why-choose-section .why-card:nth-child(9) {
  animation-delay: 1.08s;
}
.why-choose-section .why-card:nth-child(10) {
  animation-delay: 1.2s;
}
@media (max-width: 1200px) {
  .why-choose-section .why-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .why-choose-section .why-card .img-wrap {
    height: 100px;
    width: 100px;
  }
  .why-choose-section .why-card .card-body .card-heading::before {
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
  }
  .why-choose-section .why-card .card-body .para {
    padding-left: 0;
    border-left: none;
    max-width: 90%;
    margin: 0 auto;
  }
  .why-choose-section .why-card .card-body .para::before {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .why-choose-section .why-card .img-wrap {
    height: 80px;
    width: 80px;
  }
}

.testimonial-section {
  position: relative;
  background: url("../images/home/testimonial-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  /* Default: side items */
  /* Center (active) item */
}
.testimonial-section .heading-wrapper .common-heading {
  color: white;
  font-size: clamp(20px, 2.5vw, 35px);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.testimonial-section .heading-wrapper .sub-title {
  letter-spacing: 2px;
  color: white;
}
.testimonial-section .testimonial-wrapper .testi-details-for {
  position: relative;
}
.testimonial-section .testimonial-wrapper .testi-details-for::after {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: url("../images/icons/quote.png");
  width: 55px;
  height: 55px;
  filter: brightness(0) saturate(100%) invert(99%) sepia(23%) saturate(2%) hue-rotate(195deg) brightness(114%) contrast(100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.6;
}
.testimonial-section .testimonial-wrapper .testi-details-for .testi-desc {
  color: white;
  font-weight: 400;
  letter-spacing: 1px;
  font-size: clamp(12px, 2vw, 17px);
  padding: 60px 0 20px;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
}
.testimonial-section .testimonial-wrapper .testimonial-details-nav .testi-person {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 18px;
}
.testimonial-section .testimonial-wrapper .testimonial-details-nav .testi-person img {
  width: 120px;
  height: 120px;
  max-height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.testimonial-section .testimonial-wrapper .testimonial-details-nav .testi-person .test-author {
  width: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.testimonial-section .testimonial-wrapper .testimonial-details-nav .testi-person .test-author .small-heading {
  text-transform: capitalize;
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  line-height: 20px;
  color: white;
}
.testimonial-section .testimonial-wrapper .testimonial-details-nav .testi-person .test-author .sub-title {
  display: inline-block;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 300;
  line-height: 28px;
  color: white;
  text-align: center;
}
.testimonial-section .testimonial-details-nav .slick-slide {
  opacity: 0.4;
  transform: scale(0.85);
  transition: all 0.3s ease-in-out;
}
.testimonial-section .testimonial-details-nav .slick-center {
  opacity: 1;
  transform: scale(1);
}
.testimonial-section .testimonial-details-nav .slick-slide .testi-person {
  opacity: 0.4;
  transform: scale(0.85);
  transition: all 0.3s ease;
}
.testimonial-section .testimonial-details-nav .slick-center .testi-person {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 1200px) {
  .testimonial-section .testimonial-wrapper .testimonial-details-nav .testi-person {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-details-nav .testi-person img {
    width: 110px;
    height: 110px;
    max-height: 110px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 50%;
  }
}
@media (max-width: 991px) {
  .testimonial-section .testimonial-wrapper .testi-details-for {
    position: relative;
  }
  .testimonial-section .testimonial-wrapper .testi-details-for::after {
    width: 45px;
    height: 45px;
  }
  .testimonial-section .testimonial-wrapper .testi-details-for .testi-desc {
    padding: 49px 0 15px;
    margin-bottom: 8px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-details-nav .testi-person {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-details-nav .testi-person img {
    width: 100px;
    height: 100px;
    max-height: 100px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 50%;
  }
}
@media (max-width: 768px) {
  .testimonial-section .testimonial-wrapper .testimonial-details-nav .testi-person {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-details-nav .testi-person img {
    width: 80px;
    height: 80px;
    max-height: 80px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-details-nav .testi-person .test-author {
    width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .testimonial-section .testimonial-wrapper .testimonial-details-nav .testi-person .test-author .small-heading {
    font-size: 18px;
    line-height: 18px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-details-nav .testi-person .test-author .sub-title {
    font-size: 12px;
    line-height: 12px;
    white-space: nowrap;
  }
}

footer {
  position: relative;
  background: #212529;
  background-image: url("../images/icons/bg-pattern.png");
  background-size: auto;
}
footer:before {
  content: "";
  position: absolute;
  background-image: url(../images/icons/footer-decor.webp);
  filter: brightness(0) saturate(100%) invert(99%) sepia(23%) saturate(2%) hue-rotate(195deg) brightness(114%) contrast(100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 150px;
  height: 31px;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  z-index: 99;
  display: block;
}
@keyframes flip-chakra {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
  }
}
footer::after {
  content: "";
  position: absolute;
  background-image: url(../images/icons/footer-chakra.webp);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 48px;
  height: 48px;
  left: 0;
  right: 0;
  margin: auto;
  top: -25px;
  background-position: center center;
  z-index: 99;
  display: block;
  animation: flip-chakra 2s infinite ease-in-out;
  filter: brightness(0) saturate(100%) invert(22%) sepia(55%) saturate(5698%) hue-rotate(343deg) brightness(86%) contrast(95%);
}
footer .footer-wrapper .footer-about-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
footer .footer-wrapper .footer-about-wrap .logo-wrap img {
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) saturate(100%) invert(99%) sepia(23%) saturate(2%) hue-rotate(195deg) brightness(114%) contrast(100%);
}
footer .footer-wrapper .footer-about-wrap p {
  color: white;
  text-align: justify;
}
footer .footer-wrapper .footer-about-wrap .social-list {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  justify-content: start;
  gap: 8px;
  flex-grow: 1;
}
footer .footer-wrapper .footer-about-wrap .social-list a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.3);
  width: 28px;
  height: 28px;
}
footer .footer-wrapper .footer-about-wrap .social-list a img {
  height: 16px;
  width: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) saturate(100%) invert(99%) sepia(23%) saturate(2%) hue-rotate(195deg) brightness(114%) contrast(100%);
}
footer .footer-wrapper .footer-about-wrap .social-list a:hover {
  background: #d61f33;
  transition: 0.3s ease-in-out;
}
footer .footer-wrapper .footer-link-wrap {
  display: table;
  margin: auto;
}
footer .footer-wrapper .footer-link-wrap .footer-link-heading {
  margin-bottom: 25px;
  margin-top: 35px;
  position: relative;
  font-size: 20px;
  color: white;
  font-weight: 600;
  text-transform: capitalize;
  padding-bottom: 8px;
  z-index: 9;
}
footer .footer-wrapper .footer-link-wrap .footer-link-heading::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background-color: #d61f33;
  z-index: -1;
  transition: 0.3s;
}
footer .footer-wrapper .footer-link-wrap .theme-list {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 1rem;
}
footer .footer-wrapper .footer-link-wrap .theme-list li {
  position: relative;
  display: flex;
  gap: clamp(8px, 1vw, 10px);
}
footer .footer-wrapper .footer-link-wrap .theme-list li::before {
  content: "";
  width: clamp(14px, 1.5vw, 18px);
  height: clamp(14px, 1.5vw, 18px);
  position: relative;
  top: 3px;
  background-image: url(../images/icons/footer-chakra.webp);
  filter: brightness(0) saturate(100%) invert(99%) sepia(23%) saturate(2%) hue-rotate(195deg) brightness(114%) contrast(100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}
footer .footer-wrapper .footer-link-wrap .theme-list li a {
  color: white;
}
footer .footer-wrapper .footer-link-wrap .theme-btn {
  width: 100%;
}
footer .footer-wrapper .all-link-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
footer .footer-wrapper .all-link-wrap .all-link {
  font-size: 14px;
  font-weight: 500;
  color: #fff !important;
  padding: 3px 15px;
  margin: 4px 5px;
  position: relative;
  z-index: 9;
}
footer .footer-wrapper .all-link-wrap .all-link:before {
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#d61f33, #d61f33);
  transform: skewX(-10deg);
  z-index: -1;
  position: absolute;
}
footer .footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  gap: 1rem;
  border-top: 1px solid #ffffff;
}
@media (max-width: 768px) {
  footer .footer-bottom {
    flex-direction: column;
    gap: 0;
  }
}
footer .footer-bottom .link {
  padding: 5px 15px;
  color: white;
}
footer .footer-bottom .link strong {
  color: white;
}
@media (max-width: 1200px) {
  footer .footer-wrapper .footer-link-wrap {
    display: block;
  }
}
@media (max-width: 768px) {
  footer .footer-wrapper .footer-link-wrap .footer-link-heading {
    margin-bottom: 15px;
    margin-top: 20px;
  }
}
@media (max-width: 576px) {
  footer {
    padding-bottom: 51px;
  }
  footer .footer-wrapper .footer-link-wrap .footer-link-heading {
    margin-top: 13px;
  }
  footer .footer-wrapper .all-link-wrap .all-link {
    font-size: 12px;
    font-weight: 500;
    color: #fff !important;
    padding: 3px 5px;
    margin: 4px 4px;
    position: relative;
    z-index: 9;
  }
}

.breadcrumb-section {
  position: relative;
  padding: clamp(50px, 12vw, 100px) 0;
  background: url("../images/bread-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  z-index: 1;
}
.breadcrumb-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(68, 68, 68, 0.16), rgba(46, 46, 46, 0.3));
  -webkit-backdrop-filter: blur(clamp(0.4px, 0.7vw, 0.7px));
          backdrop-filter: blur(clamp(0.4px, 0.7vw, 0.7px));
  z-index: -1;
}
.breadcrumb-section .bread-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: clamp(12px, 2vw, 20px);
  padding: clamp(20px, 3vw, 30px) 0;
}
.breadcrumb-section .bread-wrapper .common-heading {
  font-size: clamp(22px, 4.5vw, 40px);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  max-width: 900px;
}
.breadcrumb-section .bread-wrapper .bread-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.2vw, 12px);
  list-style: none;
  padding: clamp(6px, 1.2vw, 10px) clamp(10px, 2vw, 20px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  line-height: 1;
  z-index: 1;
}
.breadcrumb-section .bread-wrapper .bread-list::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.527);
  background: rgba(255, 255, 255, 0.24);
  -webkit-backdrop-filter: blur(clamp(2px, 1vw, 4px));
          backdrop-filter: blur(clamp(2px, 1vw, 4px));
  transform: translate(-50%, -50%) skewX(-10deg);
  z-index: -1;
}
.breadcrumb-section .bread-wrapper .bread-list li {
  display: flex;
  align-items: center;
  color: #ffffff;
  text-shadow: 2px 2px 5px rgba(90, 90, 90, 0.6);
  font-size: clamp(13px, 2vw, 16px);
  font-weight: 500;
}
.breadcrumb-section .bread-wrapper .bread-list li a {
  display: flex;
  align-items: center;
  position: relative;
  color: #ffffff;
  text-shadow: 2px 2px 5px rgba(90, 90, 90, 0.6);
  font-weight: 600;
  transition: 0.25s ease;
}
.breadcrumb-section .bread-wrapper .bread-list li a::after {
  content: "";
  width: clamp(10px, 2.5vw, 15px);
  height: clamp(10px, 2.5vw, 15px);
  background: url("../images/icons/arrow-right.svg") no-repeat center;
  background-size: contain;
  display: inline-block;
  margin-left: clamp(5px, 1vw, 8px);
  filter: brightness(0) saturate(100%) invert(99%) sepia(23%) saturate(2%) hue-rotate(195deg) brightness(114%) contrast(100%);
  transition: 0.25s ease;
}
.breadcrumb-section .bread-wrapper .bread-list li a:hover {
  color: #d61f33;
  text-shadow: 2px 2px 5px rgba(176, 176, 176, 0.6);
  transition: 0.25s ease;
}
.breadcrumb-section .bread-wrapper .bread-list li a:hover::after {
  transition: 0.25s ease;
  filter: brightness(0) saturate(100%) invert(22%) sepia(55%) saturate(5698%) hue-rotate(343deg) brightness(86%) contrast(95%);
}
.breadcrumb-section .bread-wrapper .bread-list li:last-child a::after {
  content: none;
}

.bg-alt {
  background: #fef5f5;
  background-image: url("../images/icons/bg-pattern.png");
  background-size: auto;
}

.course-content-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  gap: 10px;
}

.course-about-section {
  position: relative;
}

.special-img-wrap {
  position: relative;
  z-index: 9;
  width: 95%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 4px 0 #ddd !important;
}
.special-img-wrap::before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 284px;
  height: 208px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 0 0;
  border-right: 0;
  background-color: #fef5f5;
  border-bottom: 0;
}
.special-img-wrap:after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 284px;
  height: 208px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 0 0;
  border-right: 0;
  background-color: #fef5f5;
  border-bottom: 0;
}
.special-img-wrap img:first-child {
  width: 100%;
  height: 440px;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.special-img-wrap img:last-child {
  position: absolute;
  right: -12px;
  bottom: -15px;
  width: 280px;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 0;
  z-index: 9;
}
@media (max-width: 1200px) {
  .special-img-wrap::before {
    width: 280px;
    height: 200px;
  }
  .special-img-wrap:after {
    width: 280px;
    height: 200px;
  }
  .special-img-wrap img:last-child {
    width: 280px;
    height: 200px;
  }
}
@media (max-width: 991px) {
  .special-img-wrap::before {
    width: 260px;
    height: 190px;
  }
  .special-img-wrap:after {
    width: 260px;
    height: 190px;
  }
  .special-img-wrap img:last-child {
    width: 260px;
    height: 190px;
    bottom: -12px;
  }
}
@media (max-width: 768px) {
  .special-img-wrap {
    width: 100%;
  }
  .special-img-wrap::before {
    width: 230px;
    height: 160px;
  }
  .special-img-wrap:after {
    width: 230px;
    height: 160px;
  }
  .special-img-wrap img:last-child {
    width: 230px;
    height: 160px;
    bottom: -10px;
  }
}
@media (max-width: 576px) {
  .special-img-wrap::before {
    width: 204px;
    height: 120px;
  }
  .special-img-wrap:after {
    width: 204px;
    height: 120px;
  }
  .special-img-wrap img:first-child {
    height: 280px;
  }
  .special-img-wrap img:last-child {
    width: 200px;
    height: 120px;
    right: -6px;
    bottom: -8px;
  }
}
@media (max-width: 450px) {
  .special-img-wrap::before {
    width: 174px;
    height: 100px;
  }
  .special-img-wrap:after {
    width: 174px;
    height: 100px;
    border-radius: 15px 0 0 0;
  }
  .special-img-wrap img:first-child {
    height: 250px;
  }
  .special-img-wrap img:last-child {
    width: 170px;
    height: 100px;
    right: -6px;
    bottom: -8px;
    border-radius: 15px 0 0 0;
  }
}

.schedule-section {
  position: relative;
}
.schedule-section .accord-wrap {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.schedule-section .accord-wrap .accord-heading {
  display: block;
  background: #d61f33;
  padding: 1rem;
  font-weight: bold;
  font-family: "Nunito", sans-serif;
  cursor: pointer;
  color: white;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.3s ease;
}
.schedule-section .accord-wrap .accord-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1rem;
  background: #fef5f5;
}
.schedule-section .accord-wrap .accord-body.open {
  padding: 1rem;
}
.schedule-section .accord-wrap.active .accord-body {
  max-height: 500vh;
}
.schedule-section .schedule-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.schedule-section .schedule-wrap .schedule-box {
  width: 32%;
  background-color: #fff;
  border-left: 4px solid #d61f33;
  padding: 15px 15px 15px 30px;
  margin-bottom: 15px;
}
.schedule-section .schedule-wrap .schedule-box .schedule-time {
  font-size: clamp(12.5px, 2vw, 18px);
  margin-bottom: 3px;
  color: #d61f33;
  font-weight: 500;
  display: block;
}
@media (max-width: 991px) {
  .schedule-section .schedule-wrap .schedule-box {
    width: 48%;
  }
}
@media (max-width: 576px) {
  .schedule-section .schedule-wrap .schedule-box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    width: 49%;
    padding: 13px 9px 13px 9px;
    margin-bottom: 10px;
  }
  .schedule-section .schedule-wrap .schedule-box .schedule-task {
    font-size: clamp(11px, 2.5vw, 14px);
  }
}

.list {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 1rem;
}
.list a {
  color: #d61f33;
}
.list .list {
  gap: 6px;
  margin-top: 10px;
  margin-bottom: 0;
  padding: 10px;
  background: #fef5f5;
  border-radius: 10px;
}
.list .list li::before {
  background-image: none;
  content: "";
  left: 0;
  top: 7px;
  height: 6px;
  width: 6px;
  background: #d61f33;
  border-radius: 50%;
}
.list li {
  position: relative;
  display: flex;
  gap: 10px;
  width: 100%;
}
.list li span {
  flex-grow: 1;
}
.list li::before {
  content: "";
  width: 17px;
  height: 17px;
  position: relative;
  top: 3px;
  background-image: url("../images/icons/om-solid.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(22%) sepia(55%) saturate(5698%) hue-rotate(343deg) brightness(86%) contrast(95%);
  flex-shrink: 0;
}
.list.check li:before {
  background-image: url(../images/icons/check-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(44%) sepia(91%) saturate(407%) hue-rotate(82deg) brightness(100%) contrast(86%);
}
.list.cross li:before {
  background-image: url(../images/icons/cross.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(26%) sepia(67%) saturate(3762%) hue-rotate(339deg) brightness(93%) contrast(85%);
}
@media (max-width: 576px) {
  .list {
    margin-bottom: 0;
  }
  .list li {
    gap: 6px;
  }
  .list li::before {
    content: "";
    width: 14px;
    height: 14px;
    top: 3px;
  }
}

.special-note {
  background: #fef5f5;
  padding: 1rem;
}

.course-syllabus-section {
  position: relative;
}
.course-syllabus-section .syllabus-wrapper {
  padding: 1rem;
}
.course-syllabus-section .syllabus-wrapper .accordion-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  gap: 1rem;
}
.course-syllabus-section .syllabus-wrapper .accordion-wrapper .accordion {
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  width: 100%;
}
.course-syllabus-section .syllabus-wrapper .accordion-wrapper .accordion .accordion-heading {
  background-color: #ffffff;
  color: #444;
  cursor: pointer;
  padding: 15px 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.4s;
}
.course-syllabus-section .syllabus-wrapper .accordion-wrapper .accordion .accordion-heading span {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
}
.course-syllabus-section .syllabus-wrapper .accordion-wrapper .accordion .accordion-heading:after {
  content: "+";
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
  border-radius: 10px;
}
.course-syllabus-section .syllabus-wrapper .accordion-wrapper .accordion .accordion-body {
  padding: 0 10px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s;
}
.course-syllabus-section .syllabus-wrapper .accordion-wrapper .accordion.active .accordion-heading {
  background: #d61f33;
  color: white;
}
.course-syllabus-section .syllabus-wrapper .accordion-wrapper .accordion.active .accordion-heading span {
  color: inherit;
  font-size: inherit;
}
.course-syllabus-section .syllabus-wrapper .accordion-wrapper .accordion.active .accordion-heading:after {
  content: "+";
  color: #ffffff;
}
.course-syllabus-section .syllabus-wrapper .accordion-wrapper .accordion.active .accordion-body {
  padding: 1rem;
  max-height: 100vh;
  transition: max-height 0.2s;
}
@media (max-width: 576px) {
  .course-syllabus-section .syllabus-wrapper {
    padding: 10px;
  }
  .course-syllabus-section .syllabus-wrapper .accordion-wrapper {
    gap: 8px;
  }
  .course-syllabus-section .syllabus-wrapper .accordion-wrapper .accordion .accordion-heading {
    padding: 10px 15px;
  }
}

.timeline-section .timeline-wrapper {
  padding: 30px;
  border-radius: 16px;
}
.timeline-section .timeline-wrapper .timeline-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.timeline-section .timeline-wrapper .timeline-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.timeline-section .timeline-wrapper .timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-color: #fef5f5;
}
.timeline-section .timeline-wrapper .timeline-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #d61f33, #e75a6a);
}
.timeline-section .timeline-wrapper .timeline-card .card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.timeline-section .timeline-wrapper .timeline-card .card-header .icon-wrapper .icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #d61f33, #e44456);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(214, 31, 51, 0.15);
}
.timeline-section .timeline-wrapper .timeline-card .card-header .icon-wrapper .icon img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
.timeline-section .timeline-wrapper .timeline-card .card-header .card-heading {
  color: #2d3748;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  text-transform: capitalize;
}
.timeline-section .timeline-wrapper .timeline-card .card-content .date-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}
.timeline-section .timeline-wrapper .timeline-card .card-content .date-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.timeline-section .timeline-wrapper .timeline-card .card-content .date-item .label {
  color: #64748b;
  font-weight: 600;
  font-size: 0.95rem;
  min-width: 50px;
  letter-spacing: 0.3px;
}
.timeline-section .timeline-wrapper .timeline-card .card-content .date-item .value {
  color: #334155;
  font-weight: 500;
  font-size: 1rem;
  margin-left: 12px;
  letter-spacing: 0.3px;
  line-height: 1.4;
}
@media (max-width: 992px) {
  .timeline-section .timeline-wrapper {
    padding: 24px;
  }
  .timeline-section .timeline-wrapper .timeline-container {
    gap: 20px;
  }
  .timeline-section .timeline-wrapper .timeline-card {
    padding: 20px;
  }
  .timeline-section .timeline-wrapper .timeline-card .card-header {
    gap: 14px;
    margin-bottom: 16px;
  }
  .timeline-section .timeline-wrapper .timeline-card .card-header .icon-wrapper .icon {
    width: 52px;
    height: 52px;
    padding: 12px;
  }
  .timeline-section .timeline-wrapper .timeline-card .card-header .icon-wrapper .icon img {
    width: 24px;
    height: 24px;
  }
  .timeline-section .timeline-wrapper .timeline-card .card-header .card-heading {
    font-size: 1.15rem;
  }
  .timeline-section .timeline-wrapper .timeline-card .card-content .date-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .timeline-section .timeline-wrapper .timeline-card .card-content .date-item .label {
    font-size: 0.9rem;
  }
  .timeline-section .timeline-wrapper .timeline-card .card-content .date-item .value {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .timeline-section .timeline-wrapper {
    padding: 16px;
  }
  .timeline-section .timeline-wrapper .timeline-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .timeline-section .timeline-wrapper .timeline-card {
    padding: 18px;
  }
  .timeline-section .timeline-wrapper .timeline-card::before {
    width: 3px;
  }
  .timeline-section .timeline-wrapper .timeline-card .card-header {
    gap: 12px;
  }
  .timeline-section .timeline-wrapper .timeline-card .card-header .icon-wrapper .icon {
    width: 48px;
    height: 48px;
    padding: 10px;
  }
  .timeline-section .timeline-wrapper .timeline-card .card-header .icon-wrapper .icon img {
    width: 22px;
    height: 22px;
  }
  .timeline-section .timeline-wrapper .timeline-card .card-header .card-heading {
    font-size: 1.1rem;
  }
  .timeline-section .timeline-wrapper .timeline-card .card-content .date-item .label {
    min-width: 45px;
    font-size: 0.85rem;
  }
  .timeline-section .timeline-wrapper .timeline-card .card-content .date-item .value {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .timeline-section .timeline-wrapper {
    padding: 0px;
    border-radius: 12px;
  }
  .timeline-section .timeline-wrapper .timeline-card {
    padding: 16px;
  }
  .timeline-section .timeline-wrapper .timeline-card .card-header {
    gap: 10px;
    margin-bottom: 14px;
  }
  .timeline-section .timeline-wrapper .timeline-card .card-header .icon-wrapper .icon {
    width: 44px;
    height: 44px;
    padding: 9px;
    border-radius: 10px;
  }
  .timeline-section .timeline-wrapper .timeline-card .card-header .icon-wrapper .icon img {
    width: 20px;
    height: 20px;
  }
  .timeline-section .timeline-wrapper .timeline-card .card-header .card-heading {
    font-size: 1rem;
  }
  .timeline-section .timeline-wrapper .timeline-card .card-content .date-item {
    margin-bottom: 8px;
    padding-bottom: 8px;
  }
  .timeline-section .timeline-wrapper .timeline-card .card-content .date-item .label {
    font-size: 0.8rem;
    min-width: 40px;
  }
  .timeline-section .timeline-wrapper .timeline-card .card-content .date-item .value {
    font-size: 0.85rem;
    margin-left: 8px;
  }
}

.inc-notInc-section .inc-btn-wrap {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 1.4vw, 14px);
  list-style: none;
  padding: 0;
  margin: 0 auto;
  margin-bottom: 1rem;
}
.inc-notInc-section .inc-btn-wrap .tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px clamp(18px, 2.6vw, 26px);
  border-radius: 10px;
  background: #fff;
  border: 1.5px solid #d1d5db;
  cursor: pointer;
  transition: 0.25s ease;
  font-family: "Poppins", sans-serif;
}
.inc-notInc-section .inc-btn-wrap .tab-btn .card-heading {
  font-size: clamp(12px, 2vw, 17px);
  font-weight: 600;
  color: #111827;
  pointer-events: none;
}
.inc-notInc-section .inc-btn-wrap .tab-btn:hover:not(.active) {
  background: rgba(214, 31, 51, 0.05);
  border-color: #d61f33;
}
.inc-notInc-section .inc-btn-wrap .tab-btn:hover:not(.active) .card-heading {
  color: #d61f33;
}
.inc-notInc-section .inc-btn-wrap .tab-btn.active {
  background: #d61f33;
  border-color: #d61f33;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.inc-notInc-section .inc-btn-wrap .tab-btn.active .card-heading {
  color: #fff;
}
@media (max-width: 576px) {
  .inc-notInc-section .inc-btn-wrap {
    flex-wrap: wrap;
  }
}
.inc-notInc-section .tab-container {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  position: relative;
}
.inc-notInc-section .tab-container .tab {
  background: #ffffff;
  position: absolute;
  left: 0;
  top: 0;
  padding: 2rem;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.inc-notInc-section .tab-container .tab.active {
  display: block;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .inc-notInc-section .tab-container .tab {
    padding: 1.5rem;
  }
}
@media (max-width: 456px) {
  .inc-notInc-section .tab-container .tab {
    padding: 1rem;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.note {
  width: 100%;
  padding: 24px 28px;
  margin: 25px 0;
  background: #ffffff;
  border-radius: 10px;
  font-style: italic;
  font-weight: 400;
  color: #212529;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.note::before, .note::after {
  display: none !important;
}
.note strong {
  color: #d61f33;
  font-weight: 600;
}
@media (max-width: 768px) {
  .note {
    padding: 20px 22px;
  }
}
@media (max-width: 576px) {
  .note {
    padding: 18px;
    margin: 15px 0;
  }
}

.fees-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.45)), url("../images/home/vya-certification.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.fees-section .table-wrapper table {
  width: 100%;
  margin-bottom: 22px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.fees-section .table-wrapper table th,
.fees-section .table-wrapper table td {
  padding: 8px 18px;
  text-align: center;
  white-space: nowrap;
  background-color: rgba(0, 0, 0, 0.6196078431);
  text-transform: capitalize;
  vertical-align: middle;
}
.fees-section .table-wrapper table th:last-child,
.fees-section .table-wrapper table td:last-child {
  width: 1%;
}
.fees-section .table-wrapper table th {
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  font-family: "Philosopher", sans-serif;
  text-transform: capitalize;
  padding: 15px 32px;
  background: #d61f33;
  border: 1px solid;
}
@media screen and (max-width: 767px) {
  .fees-section .table-wrapper table th {
    padding: 15px;
  }
}
.fees-section .table-wrapper table td {
  font-family: "Poppins", sans-serif;
  position: relative;
}
.fees-section .table-wrapper table td .btn-wrapper {
  margin: 0;
  padding: 10px 0px;
  display: flex;
  justify-content: center;
}
.fees-section .table-wrapper table td .btn-wrapper .global-btn {
  padding: 12px 25px;
  font-size: 15px;
  border-radius: 22px 0;
}
.fees-section .table-wrapper table td.loc-strip span {
  margin: 0;
  color: #fef5f5;
  font-size: 13px;
}
@media screen and (max-width: 575px) {
  .fees-section .table-wrapper table td.loc-strip span {
    font-size: 12px;
  }
}
.fees-section .table-wrapper table tbody .primary-btn {
  padding: 7px;
  font-size: 12px;
}
.fees-section .table-wrapper table tbody tr td {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  border: 1px solid #fff5f5;
}
@media screen and (max-width: 767px) {
  .fees-section .table-wrapper table tbody tr td {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .fees-section .table-wrapper table th {
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .fees-section .table-wrapper .table td:last-child {
    width: 100%;
    text-align: right;
  }
  .fees-section .table-wrapper .table td:last-child:before {
    display: none;
  }
  .fees-section .table-wrapper .table td:last-child .theme-btn {
    margin-left: auto;
  }
  .fees-section .custom-table thead {
    display: none;
    /* Hide header */
  }
  .fees-section .custom-table,
  .fees-section .custom-table tbody,
  .fees-section .custom-table tr,
  .fees-section .custom-table td {
    display: block;
    width: 100%;
  }
  .fees-section .custom-table tr {
    margin-bottom: 15px;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 10px;
    background: rgba(29, 30, 34, 0.8196078431);
  }
  .fees-section .custom-table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
    background: transparent !important;
    white-space: normal;
  }
  .fees-section .custom-table td::before {
    content: attr(data-label);
    position: absolute;
    font-family: "Poppins", sans-serif;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    color: #d61f33;
    text-align: left;
  }
}
@media (max-width: 576px) {
  .fees-section .table-wrapper table tbody td {
    text-align: right;
  }
}

.contact-section {
  position: relative;
}
.contact-section .contact-form-wrapper {
  padding: 2rem;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  background: #fff;
  border-radius: 10px;
}
.contact-section .contact-form-wrapper .form-heading-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  margin-bottom: 20px;
}
.contact-section .contact-form-wrapper .form-heading-wrap .sub-heading {
  color: #d61f33;
}
.contact-section .contact-form-wrapper form .form-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  gap: 5px;
}
.contact-section .contact-form-wrapper form .form-inner label {
  font-weight: 600;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  padding: 0 10px;
}
.contact-section .contact-form-wrapper form .form-inner label:after {
  position: absolute;
  content: "*";
  right: -2px;
  top: 0;
  font-size: 13px;
  color: #d61f33;
}
.contact-section .contact-form-wrapper form .form-inner input {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  padding: 10px 30px;
  box-sizing: border-box;
  outline: 0;
  color: #6e6e6e;
  transition: all ease-in-out 0.3s;
  border: 1px solid #dee0ea;
  border-radius: 8px;
}
.contact-section .contact-form-wrapper form .form-inner textarea {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  padding: 10px 30px;
  box-sizing: border-box;
  outline: 0;
  color: #6e6e6e;
  transition: all ease-in-out 0.3s;
  border: 1px solid #dee0ea;
  border-radius: 8px;
}
.contact-section .contact-detail-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 10px;
}
.contact-section .contact-detail-wrapper .contact-heading-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  margin-bottom: 10px;
}
.contact-section .contact-detail-wrapper .contact-heading-wrap .card-heading {
  color: #d61f33;
  font-size: clamp(18px, 2.5vw, 24px);
}
.contact-section .contact-detail-wrapper .detail-inner-wrap {
  width: 100%;
  padding: 15px 20px;
  background: #ffffff;
  border: 1px solid rgba(190, 190, 190, 0.366);
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
}
.contact-section .contact-detail-wrapper .detail-inner-wrap .title-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  gap: 5px;
}
.contact-section .contact-detail-wrapper .detail-inner-wrap .title-wrapper .title {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 600;
  color: #212529;
}
.contact-section .contact-detail-wrapper .detail-inner-wrap .title-wrapper p {
  font-size: clamp(12px, 2vw, 15px);
}
.contact-section .contact-detail-wrapper .detail-inner-wrap .icon {
  position: relative;
  width: 40px;
  border: 1px solid #d61f33;
  height: 40px;
  font-size: 20px;
  border-radius: 1px;
  line-height: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.contact-section .contact-detail-wrapper .detail-inner-wrap .icon img {
  filter: brightness(0) saturate(100%) invert(22%) sepia(55%) saturate(5698%) hue-rotate(343deg) brightness(86%) contrast(95%);
  height: 20px;
  width: 20px;
}
.contact-section .contact-detail-wrapper .detail-inner-wrap:hover {
  transition: 0.3s ease-in-out;
}
.contact-section .contact-detail-wrapper .detail-inner-wrap:hover .icon {
  background: #d61f33;
  transition: 0.3s ease-in-out;
}
.contact-section .contact-detail-wrapper .detail-inner-wrap:hover .icon img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(23%) saturate(2%) hue-rotate(195deg) brightness(114%) contrast(100%);
}
.contact-section .contact-detail-wrapper .detail-inner-wrap.dark {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  justify-content: start;
  gap: 20px;
  padding: 1rem;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  background: #d61f33;
  position: relative;
  z-index: 3;
}
.contact-section .contact-detail-wrapper .detail-inner-wrap .social-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.contact-section .contact-detail-wrapper .detail-inner-wrap .social-wrapper .social-title {
  color: white;
  font-weight: 700;
  font-size: clamp(15px, 3vw, 20px);
}
.contact-section .contact-detail-wrapper .detail-inner-wrap .social-wrapper .social-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  gap: 8px;
  flex-grow: 1;
}
.contact-section .contact-detail-wrapper .detail-inner-wrap .social-wrapper .social-list a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.3);
  width: 28px;
  height: 28px;
}
.contact-section .contact-detail-wrapper .detail-inner-wrap .social-wrapper .social-list a img {
  height: 16px;
  width: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) saturate(100%) invert(99%) sepia(23%) saturate(2%) hue-rotate(195deg) brightness(114%) contrast(100%);
}
@media (max-width: 576px) {
  .contact-section .contact-form-wrapper {
    padding: 15px;
  }
  .contact-section .contact-form-wrapper .form-heading-wrap {
    margin-bottom: 10px;
    align-items: center;
  }
  .contact-section .contact-form-wrapper form .form-inner {
    margin-bottom: 5px;
  }
  .contact-section .contact-form-wrapper form .form-inner label {
    font-size: 14px;
    padding: 0 5px;
    line-height: 1;
  }
  .contact-section .contact-form-wrapper form .form-inner input {
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    padding: 10px 10px;
    border-radius: 3px;
  }
  .contact-section .contact-form-wrapper form .btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .contact-section .contact-detail-wrapper {
    gap: 8px;
  }
  .contact-section .contact-detail-wrapper .contact-heading-wrap {
    align-items: center;
  }
  .contact-section .contact-detail-wrapper .contact-heading-wrap p {
    text-align: center;
  }
  .contact-section .contact-detail-wrapper .detail-inner-wrap {
    border-radius: 10px !important;
  }
}

.fixed-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
}

.whatsapp-sticky {
  position: fixed;
  bottom: 5rem;
  left: 2rem;
  z-index: 999;
}
.whatsapp-sticky .whatsapp-btn {
  width: 60px;
  height: 60px;
  background: #25d366;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 50%;
}
.whatsapp-sticky .whatsapp-btn:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 6px solid #d61f33;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}
.whatsapp-sticky .whatsapp-btn img {
  height: 38px;
  width: 38px;
  filter: brightness(0) saturate(100%) invert(99%) sepia(23%) saturate(2%) hue-rotate(195deg) brightness(114%) contrast(100%);
}

.teacher-section {
  position: relative;
}
.teacher-section .teacher-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  gap: 20px;
  box-shadow: 0 0 7px 0 #ddd;
  margin: 30px 0;
  border-left: 10px solid #d61f33;
  border-radius: 15px 0 0 15px;
}
.teacher-section .teacher-card .teacher-content-wrap {
  padding-left: 20px;
}
.teacher-section .teacher-card .teacher-content-wrap .heading-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
}
.teacher-section .teacher-card .teacher-content-wrap .heading-wrap .sub-heading {
  font-weight: 600;
  padding-bottom: 10px;
  margin-bottom: 22px;
  position: relative;
  z-index: 9;
}
.teacher-section .teacher-card .teacher-content-wrap .heading-wrap .sub-heading::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 60px;
  height: 2px;
  transition: 0.4s;
  background-color: #d61f33;
}
.teacher-section .teacher-card .teacher-content-wrap .heading-wrap .teacher-skills .skill {
  position: relative;
  z-index: 9;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  font-size: 13px;
  padding: 4px 22px;
  margin-bottom: 14px;
}
.teacher-section .teacher-card .teacher-content-wrap .heading-wrap .teacher-skills .skill:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  z-index: -1;
  top: 0;
  background-color: #d61f33;
  transform: skewX(-10deg);
}
.teacher-section .teacher-card .teacher-content-wrap p {
  margin-bottom: 15px;
  text-align: justify;
}
.teacher-section .teacher-card .teacher-content-wrap .social-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  gap: 8px;
  flex-grow: 1;
  background: #d61f33;
  padding: 10px 10px;
}
.teacher-section .teacher-card .teacher-content-wrap .social-list a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.3);
  width: 28px;
  height: 28px;
}
.teacher-section .teacher-card .teacher-content-wrap .social-list a img {
  height: 16px;
  width: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) saturate(100%) invert(99%) sepia(23%) saturate(2%) hue-rotate(195deg) brightness(114%) contrast(100%);
}
.teacher-section .teacher-card .img-wrap {
  height: 450px;
  width: 30%;
  position: relative;
  z-index: 9;
  overflow: hidden;
  border-radius: 0 0 0 166px;
  flex-shrink: 0;
  border-left: 15px solid #d61f33;
}
.teacher-section .teacher-card .img-wrap img {
  height: 100%;
  width: 100%;
}
.teacher-section .teacher-card.alt {
  gap: 20px;
  box-shadow: 0 0 7px 0 #ddd;
  margin: 30px 0;
  border-right: 10px solid #d61f33;
  border-left: 0;
  border-radius: 0 15px 15px 0;
}
.teacher-section .teacher-card.alt .teacher-content-wrap {
  padding: 0px;
  padding-right: 20px;
}
.teacher-section .teacher-card.alt .teacher-content-wrap .heading-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
}
.teacher-section .teacher-card.alt .teacher-content-wrap .heading-wrap .sub-heading {
  font-weight: 600;
  padding-bottom: 10px;
  margin-bottom: 22px;
  position: relative;
  z-index: 9;
}
.teacher-section .teacher-card.alt .teacher-content-wrap p {
  margin-bottom: 15px;
  text-align: justify;
}
.teacher-section .teacher-card.alt .img-wrap {
  height: 450px;
  width: 30%;
  position: relative;
  z-index: 9;
  overflow: hidden;
  border-radius: 0 0 166px 0;
  flex-shrink: 0;
  border: 0px;
  border-right: 15px solid #d61f33;
}
.teacher-section .teacher-card.alt .img-wrap img {
  height: 100%;
  width: 100%;
}
@media (max-width: 1200px) {
  .teacher-section .teacher-card .img-wrap {
    width: 35%;
  }
}
@media (max-width: 991px) {
  .teacher-section .teacher-card .img-wrap {
    width: 40%;
    border-radius: 0 0 0 130px;
  }
}
@media (max-width: 768px) {
  .teacher-section .teacher-card {
    flex-direction: column-reverse;
    border: 0;
    border-radius: 0;
    gap: 10px;
  }
  .teacher-section .teacher-card .img-wrap {
    width: 100%;
    max-height: 100%;
    border-left: 10px solid #d61f33;
    border-bottom: 5px solid #d61f33;
    border-radius: 0 0 0 100px;
  }
  .teacher-section .teacher-card.alt {
    flex-direction: column;
    border: 0;
    border-radius: 0;
    gap: 10px;
  }
  .teacher-section .teacher-card.alt .img-wrap {
    width: 100%;
    border-right: 10px solid #d61f33;
    border-bottom: 5px solid #d61f33;
    border-radius: 0 0 100px 0;
  }
  .teacher-section .teacher-card .teacher-content-wrap {
    padding: 1rem !important;
  }
}
@media (max-width: 576px) {
  .teacher-section .teacher-card {
    gap: 0;
  }
  .teacher-section .teacher-card .img-wrap {
    border-radius: 0 0 0 50px;
    max-height: 270px;
  }
  .teacher-section .teacher-card .img-wrap img {
    max-height: 100%;
    -o-object-position: top center;
       object-position: top center;
  }
  .teacher-section .teacher-card.alt .img-wrap {
    border-radius: 0 0 50px 0;
  }
  .teacher-section .teacher-card .teacher-content-wrap {
    padding: 1rem !important;
  }
}

.accomodation-section .container-fluid {
  max-width: 100%;
}
.accomodation-section .accomodation-slider {
  margin-top: 1rem;
}
.accomodation-section .accomodation-slider .slide {
  height: 280px;
  border: 5px solid #d61f33;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.accomodation-section .accomodation-slider .slide.slick-slide {
  margin: 0 10px;
}
@media (max-width: 1200px) {
  .accomodation-section .accomodation-slider .slide {
    height: 250px;
  }
}
@media (max-width: 991px) {
  .accomodation-section .accomodation-slider .slide {
    height: 230px;
  }
}
@media (max-width: 576px) {
  .accomodation-section .accomodation-slider .slide {
    height: 200px;
  }
}
@media (max-width: 450px) {
  .accomodation-section .accomodation-slider .slide {
    height: 190px;
  }
}

.gallery-section .gall-tabs {
  height: 100%;
}
.gallery-section .gall-tabs .nav-tabs {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #d61f33;
  padding: 20px;
  position: sticky;
  height: -moz-fit-content;
  height: fit-content;
  top: 120px;
  background: #ffffff;
}
.gallery-section .gall-tabs .nav-tabs .nav-item {
  width: 100%;
  display: block;
}
.gallery-section .gall-tabs .nav-tabs .nav-item .nav-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  font-size: clamp(14px, 1.8vw, 18px);
  background: transparent;
  border: 1px solid;
  border-radius: 0;
  text-align: center;
  padding: 10px 40px;
  color: #d61f33;
  text-transform: capitalize;
  border: 1px solid #d61f33;
  transition: 0.3s all ease-in-out;
}
.gallery-section .gall-tabs .nav-tabs .nav-item .nav-link.active {
  background: #d61f33;
  color: #ffffff;
}
.gallery-section .tab-content .tab-pane {
  display: none;
}
.gallery-section .tab-content .tab-pane.active {
  display: block;
}
.gallery-section .tab-content .tab-pane .gall-img {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 100%;
  width: 100%;
  background: #fff;
  padding: 20px;
  border: 4px double #d61f33;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.gallery-section .tab-content .tab-pane .gall-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-section .tab-content .tab-pane .gall-img:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: #d61f33;
  opacity: 0.7;
  z-index: 0;
  transition: 0.4s ease-in-out;
  transform: translateY(100%);
}
.gallery-section .tab-content .tab-pane .gall-img:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 50px;
  width: 50px;
  background: url(../images/icons/eye.svg) no-repeat;
  top: 0;
  bottom: 0;
  margin: auto;
  background-position: center;
  border-radius: 50%;
  background-size: 20px;
  z-index: 1;
  transition: 0.4s ease-in-out;
  border: 1px solid;
  opacity: 0;
  filter: invert(1) brightness(100);
  transform: translateY(50%) scale(0.5);
}
.gallery-section .tab-content .tab-pane .gall-img:hover:before {
  transform: translateY(0);
}
.gallery-section .tab-content .tab-pane .gall-img:hover:after {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media (min-width: 576px) and (max-width: 991px) {
  .gallery-section .gall-tabs .nav-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .gallery-section .gall-tabs .nav-tabs {
    padding: 12px;
    gap: 10px;
  }
  .gallery-section .gall-tabs .nav-tabs .nav-item .nav-link {
    padding: 12px 20px;
  }
  .gallery-section .tab-content .tab-pane .gall-img {
    padding: 12px;
  }
}
@media (max-width: 576px) {
  .gallery-section .gall-tabs .nav-tabs {
    padding: 8px;
    gap: 8px;
  }
  .gallery-section .gall-tabs .nav-tabs .nav-item .nav-link {
    padding: 8px 20px;
  }
  .gallery-section .tab-content .tab-pane .gall-img {
    padding: 8px;
  }
}

.faq-section .accordtab-btn-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  flex-wrap: wrap;
}
@media (min-width: 1300px) {
  .faq-section .accordtab-btn-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1300px) {
  .faq-section .accordtab-btn-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .faq-section .accordtab-btn-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.faq-section .accordtab-btn-wrap .tab-btn {
  padding: 8px 15px;
  font-weight: 400;
  background: #ffffff;
  color: #d61f33;
  border: 1px solid #d61f33;
  cursor: pointer;
  flex-grow: 1;
  text-align: center;
}
.faq-section .accordtab-btn-wrap .tab-btn.active {
  background: #d61f33;
  color: #ffffff;
}
.faq-section .faq-tab-container .faq-tab {
  display: none;
  padding: 1.5rem;
  transition: opacity 0.3s ease;
}
.faq-section .faq-tab-container .faq-tab.active {
  display: block;
}
@media (max-width: 576px) {
  .faq-section .faq-tab-container .faq-tab {
    padding: 10px;
  }
  .faq-section .faq-tab-container .faq-tab .accordion-button {
    padding: 10px;
  }
  .faq-section .faq-tab-container .faq-tab .accordion-body {
    padding: 10px 15px;
    font-size: 13px;
  }
}

.custom-accordion .accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.0470588235);
  margin-bottom: 1rem;
  border-radius: 5px;
  overflow: hidden;
  background: #ffffff;
}
.custom-accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.custom-accordion .accordion-item .accordion-header {
  display: block;
}
.custom-accordion .accordion-button {
  background-color: #ffffff;
  color: #212529;
  font-weight: 500;
  font-size: clamp(14px, 3vw, 16px);
  padding: 16px 20px;
  border: none;
  transition: background-color 0.3s ease;
}
.custom-accordion .accordion-button::after {
  filter: brightness(0) saturate(100%) invert(22%) sepia(55%) saturate(5698%) hue-rotate(343deg) brightness(86%) contrast(95%);
}
.custom-accordion .accordion-button:not(.collapsed) {
  background-color: #d61f33;
  color: #ffffff;
  box-shadow: none;
}
.custom-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(99%) sepia(23%) saturate(2%) hue-rotate(195deg) brightness(114%) contrast(100%);
}
.custom-accordion .accordion-button:focus {
  box-shadow: none;
}
.custom-accordion .accordion-body {
  padding: 16px 20px;
  background-color: #ffffff;
  color: #555;
  font-family: "Poppins", sans-serif;
  font-size: clamp(12px, 2vw, 16px);
}

.sticky {
  top: 100px;
  position: sticky;
}

aside {
  height: 100%;
}
aside .aside-heading {
  margin-bottom: 20px;
  line-height: 1;
  padding-bottom: 5px;
  position: relative;
  color: #d61f33;
}
aside .aside-heading:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background: #d61f33;
  top: 100%;
  left: 0;
}
aside .aside-heading::before {
  top: 100%;
  left: 30px;
  border: 8px solid rgba(51, 51, 51, 0);
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  border-top-color: #d61f33;
  margin-left: -8px;
  z-index: 1;
  background: 0 0;
}
aside .courses .course-card {
  width: 100%;
  height: 230px;
  position: relative;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  overflow: hidden;
}
aside .courses .course-card:after {
  content: "";
  background: linear-gradient(transparent, #000);
  opacity: 0.6;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  position: absolute;
}
aside .courses .course-card img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
aside .courses .course-card .content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 2;
  padding: 10px;
}
aside .courses .course-card .content .card-heading {
  color: #ffffff;
}
aside .courses .course-card .content .theme-btn {
  width: 100%;
  padding: 5px;
}
aside .aside-form {
  width: 100%;
  background: white;
  padding: 1rem;
  border-radius: 10px;
  border: 2px solid #d61f33;
}
aside .aside-form form {
  width: 100%;
  overflow: hidden;
}
aside .aside-form form .form-heading-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 1rem;
}
aside .aside-form form .form-heading-wrapper .small-heading {
  margin-bottom: 0;
  line-height: 1;
}
aside .aside-form form .form-heading-wrapper .sub-title {
  font-weight: 400;
}
aside .aside-form form .form-group {
  position: relative;
}
aside .aside-form form .form-group label {
  position: absolute;
  font-size: 14px;
  color: #7e7e7e;
  top: 50%;
  transform: translateY(-50%);
  left: 35px;
  pointer-events: none;
}
aside .aside-form form .form-group img {
  height: 16px;
  width: 16px;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  filter: brightness(0) saturate(100%) invert(22%) sepia(55%) saturate(5698%) hue-rotate(343deg) brightness(86%) contrast(95%);
}
aside .aside-form form .form-group input,
aside .aside-form form .form-group select,
aside .aside-form form .form-group option {
  width: 100%;
  margin: 7px 0px;
  border-radius: 3px;
  padding: 0px 30px;
  padding-left: 35px;
  height: 38px;
  background: white;
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, 0.0470588235);
}
aside .aside-form form .theme-btn {
  width: 100%;
}
aside .aside-form form input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  width: 100%;
}

@media (max-width: 575px) {
  .fixed-btn,
  .whatsapp-sticky {
    display: none;
  }
}
.mobile-contact {
  display: flex;
  position: fixed;
  background: rgba(255, 255, 255, 0.1803921569);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  left: 0;
  bottom: 0;
  z-index: 999;
  width: 100%;
  gap: 5px;
  padding: 5px;
  border-radius: 25px 25px 0 0;
  box-shadow: rgba(220, 53, 69, 0.2) 0px 4px 12px;
}
@media (min-width: 575px) {
  .mobile-contact {
    display: none;
  }
}
.mobile-contact li {
  flex-grow: 1;
}
.mobile-contact li a,
.mobile-contact li span {
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
  align-items: center;
  gap: 8px;
  font-size: clamp(13px, 1.5vw, 16px);
  color: #fff;
  padding: 8px;
  text-transform: capitalize;
  letter-spacing: 1px;
}
.mobile-contact li a img,
.mobile-contact li span img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(23%) saturate(2%) hue-rotate(195deg) brightness(114%) contrast(100%);
  height: 25px;
  width: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}
.mobile-contact li .call {
  background: #d61f33;
  border-radius: 50px 0 0 50px;
}
.mobile-contact li .whatsapp {
  background: #28a745;
  border-radius: 0 50px 50px 0;
}
.mobile-contact li .booking {
  background: #212529;
}
@media (max-width: 450px) {
  .mobile-contact li a img,
  .mobile-contact li span img {
    height: 20px;
    width: 20px;
  }
}
@media (max-width: 355px) {
  .mobile-contact li a img,
  .mobile-contact li span img {
    display: none;
  }
}

.our-mission {
  background: linear-gradient(45deg, #d61f33, #fcf7f6);
  padding: 40px 0;
}
.our-mission .mission-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.our-mission .mission-card .mission-content {
  background: #ffffff;
  padding: 30px;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}
.our-mission .mission-card .img-wrap {
  max-height: 100%;
  border-radius: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.our-mission .mission-card .img-wrap:after {
  content: "";
  position: absolute;
  width: 95%;
  height: 93%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border: 2px solid #ffffff;
  opacity: 0.8;
}
.our-mission .mission-card .img-wrap img {
  max-height: 100%;
  transform: scale(1);
  transition: 0.3s ease-in-out;
}
.our-mission .mission-card:hover .img-wrap img {
  transform: scale(1.1);
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .our-mission .mission-card {
    grid-template-columns: repeat(1, 1fr);
    flex-wrap: wrap-reverse;
  }
  .our-mission .mission-card .img-wrap {
    order: -1;
  }
  .our-mission .mission-card .img-wrap img {
    max-height: 400px;
  }
}
@media (max-width: 576px) {
  .our-mission .mission-card .mission-content {
    padding: 20px 15px;
  }
  .our-mission .mission-card .mission-content p {
    text-align: justify;
  }
}

.yttc-accom-section {
  position: relative;
}
.yttc-accom-section .accomodation-card-wrap {
  margin-bottom: 20px;
  padding: 30px;
  background: #fef5f5;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #d61f33;
  height: 100%;
}
.yttc-accom-section .accomodation-card-wrap img {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .yttc-accom-section .accomodation-card-wrap img {
    height: 250px;
  }
  .yttc-accom-section .accomodation-card-wrap .content p,
  .yttc-accom-section .accomodation-card-wrap .content .small-heading {
    text-align: center;
    display: block;
  }
}
@media (max-width: 576px) {
  .yttc-accom-section .accomodation-card-wrap img {
    height: 200px;
  }
}

form ::-moz-placeholder {
  font-family: "Poppins", sans-serif;
}

form label,
form input,
form ::placeholder,
form select,
form option,
form textarea {
  font-family: "Poppins", sans-serif;
}

form ::-moz-placeholder {
  font-size: clamp(12px, 2vw, 16px) !important;
}

form input,
form ::placeholder,
form select,
form select option,
form .form-control option,
form textarea {
  font-size: clamp(12px, 2vw, 16px) !important;
}

form label {
  font-size: clamp(13px, 2vw, 16px) !important;
  font-weight: 500;
}

#formModal .modal-dialog {
  max-width: 600px;
}
#formModal .modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
#formModal .modal-header {
  background: #d61f33;
  border-bottom: 2px solid #d61f33;
  padding: 1.5rem;
}
#formModal .modal-header .card-heading {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}
#formModal .modal-header .btn-close {
  font-size: 14px;
  opacity: 0.7;
  filter: invert(100) brightness(100);
  transition: all 0.3s ease;
}
#formModal .modal-header .btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}
#formModal .modal-body {
  padding: 2rem;
}
#formModal .modal-body .form-label {
  font-weight: 600;
  color: #931523;
  margin-bottom: 0.5rem;
}
#formModal .modal-body .form-control,
#formModal .modal-body .form-select {
  padding: 12px 15px;
  border: 1px solid #f19da6;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
}
#formModal .modal-body .form-control:focus,
#formModal .modal-body .form-select:focus {
  border-color: #d61f33;
  box-shadow: 0 0 0 0.25rem rgba(214, 31, 51, 0.15);
}
#formModal .modal-body textarea.form-control {
  min-height: 120px;
}
#formModal .modal-body optgroup {
  font-weight: 600;
  color: #a91928;
}
#formModal .modal-body option {
  padding: 8px 12px;
}
#formModal .modal-footer {
  border-top: 1px solid #f7cacf;
  padding: 1.5rem;
  justify-content: space-between;
}
#formModal .modal-footer .theme-btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}
#formModal .modal-footer .theme-btn.alt {
  color: #d61f33;
  border: 1px solid #d61f33;
}
#formModal .modal-footer .theme-btn.alt:hover {
  background: #f7cacf;
}
#formModal .modal-footer .theme-btn:not(.alt) {
  background: #d61f33;
  color: white;
}
#formModal .modal-footer .theme-btn:not(.alt):hover {
  background: #a91928;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(214, 31, 51, 0.3);
}
@media (max-width: 576px) {
  #formModal .modal-header {
    padding: 1rem;
  }
  #formModal .modal-header .card-heading {
    font-size: 20px;
  }
  #formModal .modal-body {
    padding: 1.5rem 1rem;
  }
  #formModal .modal-footer {
    padding: 1rem;
    flex-direction: column-reverse;
    gap: 10px;
  }
  #formModal .modal-footer .theme-btn {
    width: 100%;
  }
}

.image-container1 .winner-wrap {
  max-width: 280px;
  min-height: 280px;
  background: #ffffff;
  margin: 5% auto 0;
  position: relative;
  padding: 1rem 2rem 6.5rem 2rem;
  text-align: center;
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.image-container1 .winner-wrap .border1 {
  position: absolute;
  width: 90%;
  height: 90%;
  border: 1px solid rgba(255, 189, 105, 0.4);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.image-container1 .winner-wrap h4 {
  color: #d61f33;
  margin-top: 10px;
}
.image-container1 .winner-wrap .img-wrap {
  height: 200px;
  width: 200px;
  padding: 10px;
  box-shadow: none;
}
.image-container1 .winner-wrap .img-wrap img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-container1 .winner-wrap .winner-ribbon {
  width: 100%;
  height: 50px;
  background: #ffbd69;
  text-align: center;
  color: #fff;
  font-size: clamp(25px, 2vw, 30px);
  font-weight: 700;
  position: absolute;
  bottom: 45px;
  left: 0;
  z-index: 99;
  box-shadow: 0 10px 15px -7px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-container1 .winner-wrap .right-ribbon {
  width: 0;
  height: 0;
  position: absolute;
  right: -35px;
  bottom: 30px;
  border-top: 24px solid #e0b05c;
  border-bottom: 24px solid #e0b05c;
  border-left: 10px solid #e0b05c;
  border-right: 25px solid transparent;
  transition: all ease 0.3s;
}
.image-container1 .winner-wrap .left-ribbon {
  width: 0;
  height: 0;
  position: absolute;
  left: -35px;
  bottom: 30px;
  border-top: 24px solid #e0b05c;
  border-bottom: 24px solid #e0b05c;
  border-left: 25px solid transparent;
  border-right: 10px solid #e0b05c;
  transition: all ease 0.3s;
}
@media (max-width: 576px) {
  .image-container1 .winner-wrap .img-wrap {
    height: 150px;
    width: 150px;
    padding: 10px;
    box-shadow: none;
  }
  .image-container1 .winner-wrap .img-wrap img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.certification-section {
  position: relative;
}
.certification-section .container {
  max-width: 1200px;
}
.certification-section:after {
  content: "";
  position: absolute;
  width: 45%;
  height: 100%;
  right: 0;
  top: 0;
  background: url("../images/deepyoga/certification-1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.certification-section .celebration-image-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.certification-section .celebration-image-wrap img {
  width: 48.5%;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  box-shadow: 0 0 5px 0 #ddd;
  border: 5px solid #d61f33;
}
@media (max-width: 991px) {
  .certification-section:after {
    width: 100%;
    z-index: -1;
  }
}

.reach-section {
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}
.reach-section .container-fluid {
  max-width: 100%;
}
.reach-section .container-fluid iframe {
  height: 100%;
  width: 100%;
}
.reach-section .container-fluid .common-content-wrap .include-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  gap: 10px;
}
.reach-section .container-fluid .common-content-wrap .include-box li {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
}
.reach-section .container-fluid .common-content-wrap .include-box li .head-text {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  justify-content: start;
  color: #d61f33;
  border-bottom: 2px solid #d61f33;
  padding: 8px 10px;
  font-weight: 700;
  font-size: clamp(14px, 2.5vw, 20px);
  text-transform: capitalize;
  letter-spacing: 1.5px;
}
.reach-section .container-fluid .common-content-wrap .include-box li .head-text .icon {
  width: 45px;
  height: 45px;
  border: 1px dashed #d61f33;
  position: relative;
}
.reach-section .container-fluid .common-content-wrap .include-box li .head-text .icon::after {
  content: "";
  width: 25px;
  height: 25px;
  background: url("../images/icons/plane.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: brightness(0) saturate(100%) invert(22%) sepia(55%) saturate(5698%) hue-rotate(343deg) brightness(86%) contrast(95%);
}
.reach-section .container-fluid .common-content-wrap .include-box li .head-text .icon.car:after {
  background: url("../images/icons/car.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.reach-section .container-fluid .common-content-wrap .include-box li .head-text .icon.rail:after {
  background: url("../images/icons/train.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.reach-section .container-fluid .common-content-wrap .include-box li p {
  padding: 15px;
  background: #fff;
}
@media (max-width: 991px) {
  .reach-section {
    padding: 40px 20px;
  }
  .reach-section .container-fluid {
    max-width: 100%;
  }
  .reach-section .container-fluid iframe {
    height: 350px;
    width: 100%;
  }
}

.apply-section {
  position: relative;
}
.apply-section form {
  border: 3px solid #d61f33;
  padding: 40px 35px;
  background: radial-gradient(#ffffff, #fef5f5);
}
.apply-section form .form-head {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.apply-section form .form-head img {
  height: 100px;
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.apply-section form .form-head p {
  text-align: center;
  font-family: "Nunito", sans-serif;
  color: #d61f33;
  font-weight: 600;
}
.apply-section form .form-heading {
  font-size: 24px;
  font-weight: 600;
  border-bottom: 1px solid #d61f33;
  padding: 15px 15px 17px;
  color: #d61f33;
  margin-bottom: 45px;
  margin-top: 20px;
}
.apply-section form .form-field-wrap .form-label {
  display: block;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
}
.apply-section form .form-field-wrap .iti--allow-dropdown {
  width: 100%;
}
.apply-section form .form-field-wrap .form-control {
  margin-bottom: 25px;
  padding: 10px 18px;
  font-size: 16px;
  display: inline-block;
  color: #787878;
  width: 100%;
}
.apply-section form .form-field-wrap .form-control:focus {
  background-color: var(--bs-form-control-bg);
  border-color: #f97a69;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(236, 104, 87, 0.33);
}

.cta-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  background: url("../images/slide-one.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
  position: relative;
  z-index: 4;
}
.cta-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#212529, #d61f33);
  opacity: 0.5;
  z-index: -1;
}
.cta-section .heading-wrapper {
  gap: 10px;
}
.cta-section .heading-wrapper .main-heading {
  color: #ffffff;
  font-size: clamp(20px, 2.5vw, 34px);
  text-align: center;
}

.payment-section {
  position: relative;
}
.payment-section .img-wrap {
  box-shadow: none;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.payment-section .img-wrap img {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 400px;
  width: 100%;
}
.payment-section .d-sticky {
  position: sticky;
  top: 100px;
}
.payment-section .common-content-wrap {
  position: relative;
}
.payment-section .common-content-wrap .theme-btn {
  width: 100%;
  background: #0070ba;
  border: 1px solid #0070ba;
  padding: 15px !important;
}
.payment-section .common-content-wrap .theme-btn::after, .payment-section .common-content-wrap .theme-btn:before {
  display: none;
}
.payment-section .common-content-wrap .theme-btn img {
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}
.payment-section .common-content-wrap .theme-btn:hover {
  color: white;
}
.payment-section .common-content-wrap .paypal-form {
  width: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  gap: 1rem;
}
.payment-section .common-content-wrap .paypal-form .form-group {
  width: 100%;
}
.payment-section .common-content-wrap .bank-detail {
  border: 1px solid #d61f33;
  width: 100%;
}
.payment-section .common-content-wrap .bank-detail li {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.payment-section .common-content-wrap .bank-detail li:nth-child(odd) {
  background: #fef5f5;
}
.payment-section .common-content-wrap .bank-detail li span {
  flex-grow: 1;
  display: block;
  text-align: left;
  width: 45%;
}
.payment-section .common-content-wrap .bank-detail li span:nth-child(1) {
  font-weight: 500;
}

.sub-heading.line {
  position: relative;
  padding: 10px 0;
  color: #d61f33;
}
.sub-heading.line:after {
  content: "";
  height: 4px;
  width: 40%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #d61f33;
}

.wellness-section {
  position: relative;
}
.wellness-section .img-wrap {
  max-height: 500px;
}
.wellness-section .common-content-wrap .inner-content-wrapper {
  border: 2px solid #d61f33;
  background: #ffffff;
  width: 100%;
  padding: 30px 25px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  gap: 1rem;
}
.wellness-section .common-content-wrap .inner-content-wrapper .heading-wrap {
  width: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 500;
  border-bottom: 1px solid #cbcbcb;
  padding-bottom: 8px;
  margin-top: 40px;
}
.wellness-section .common-content-wrap .inner-content-wrapper .heading-wrap .package-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  gap: 6px;
}
.wellness-section .common-content-wrap .inner-content-wrapper .heading-wrap .package-info .icon {
  width: 16px;
  height: 16px;
  background: url("../images/icons/package.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.wellness-section .common-content-wrap .inner-content-wrapper .wellness-packages {
  width: 100%;
}
.wellness-section .common-content-wrap .inner-content-wrapper .wellness-packages .slide {
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px;
}
.wellness-section .common-content-wrap .inner-content-wrapper .wellness-packages .slide img {
  height: 250px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px 15px 0 0;
}
.wellness-section .common-content-wrap .inner-content-wrapper .wellness-packages .slide .slide-info {
  position: relative;
  background: white;
  padding: 15px 20px;
  padding-bottom: 0;
  border-radius: 15px 15px 0 0;
  top: -1rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.wellness-section .common-content-wrap .inner-content-wrapper .wellness-packages .slide .slide-info .small-heading {
  text-align: center;
}
.wellness-section .common-content-wrap .inner-content-wrapper .wellness-packages .slide .slide-info .theme-btn {
  margin-top: 10px;
  width: -moz-max-content;
  width: max-content;
}
.wellness-section .common-content-wrap .inner-content-wrapper .wellness-slider {
  width: 100%;
}
.wellness-section .common-content-wrap .inner-content-wrapper .wellness-slider .slide {
  margin: 10px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  border-radius: 15px;
  overflow: hidden;
}
.wellness-section .common-content-wrap .inner-content-wrapper .wellness-slider .slide img {
  height: 250px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px 15px 0 0;
}
.wellness-section .common-content-wrap .inner-content-wrapper .wellness-slider .slide .slide-info {
  position: relative;
  background: white;
  padding: 15px 20px 0;
  border-radius: 0 0 15px 15px;
  top: -1rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.wellness-section .common-content-wrap .inner-content-wrapper .wellness-slider .slide .slide-info .small-heading {
  text-align: center;
}
.wellness-section .common-content-wrap .inner-content-wrapper .wellness-slider .slide .slide-info .theme-btn {
  margin-top: 10px;
  width: -moz-max-content;
  width: max-content;
}
.wellness-section .common-content-wrap .inner-content-wrapper .wellness-slider .slick-track {
  display: flex !important;
  margin-left: -10px;
  margin-right: -10px;
}

.blog-section {
  position: relative;
}
.blog-section .blog-card {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  gap: 15px;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px;
}
.blog-section .blog-card .card-head {
  width: 100%;
  position: relative;
}
.blog-section .blog-card .card-head > img {
  height: clamp(200px, 27vw, 250px);
  width: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-section .blog-card .card-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  gap: 5px;
}
.blog-section .blog-card .card-content p {
  color: #6e6e6e;
}
.blog-section .blog-card .card-content .theme-btn {
  margin-top: 1rem;
}

.daily-schedule-container {
  position: relative;
}
.daily-schedule-container .btn-wrap {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  gap: 10px;
  flex-wrap: wrap;
}
.daily-schedule-container .btn-wrap li {
  background: white;
  border: 1px solid #d61f33;
  color: #d61f33;
  border-radius: 3px;
}
.daily-schedule-container .btn-wrap li.active {
  background: #d61f33;
  color: white;
}
.daily-schedule-container .schedule-tab-container {
  position: relative;
  margin-top: 1rem;
}
.daily-schedule-container .schedule-tab-container .tab {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
.daily-schedule-container .schedule-tab-container .tab.active {
  position: relative;
  z-index: 4;
  opacity: 1;
  visibility: visible;
}

.discount-container {
  position: fixed;
  z-index: 99999;
  top: 50%;
  right: 1.5rem;
  background: linear-gradient(135deg, #e44456 0%, #d61f33 100%);
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(214, 31, 51, 0.3);
  transform: translateY(-50%);
  animation: float 3s ease-in-out infinite;
}
.discount-container .info {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 1.5rem 1rem 1rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.discount-container .info:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #e44456 0%, #d61f33 50%, #e44456 100%);
}
.discount-container .info .discount-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffcc00;
  color: #931523;
  font-weight: 800;
  font-size: 12px;
  padding: 3px 15px;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.discount-container .info .close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  z-index: 4;
  cursor: pointer;
  transition: all 0.3s ease;
}
.discount-container .info .close-btn:hover {
  background: white;
}
.discount-container .info .close-btn:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: url("../images/icons/cross.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: invert(30%) sepia(50%) saturate(1000%) hue-rotate(0deg);
}
.discount-container .info .discount-wrap {
  text-align: center;
  margin-top: 5px;
}
.discount-container .info .discount-wrap .discount-heading {
  font-size: 22px;
  font-weight: 900;
  color: #d61f33;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: 1px;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.05);
}
.discount-container .info .discount-wrap .discount-sub-heading {
  font-size: 18px;
  color: #7d121e;
  font-weight: 700;
  line-height: 1.3;
  margin: 5px 0;
}
.discount-container .info .discount-wrap .discount-sub-heading .highlight {
  color: #d61f33;
  font-size: 20px;
}
.discount-container .info .discount-wrap .limited-offer {
  font-size: 12px;
  color: #ea717e;
  font-weight: 500;
  margin-top: 3px;
}
.discount-container .info .countdown-timer {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}
.discount-container .info .countdown-timer .group {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: white;
  border-radius: 6px;
  padding: 5px;
  min-width: 50px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}
.discount-container .info .countdown-timer .group .value {
  font-size: 22px;
  font-weight: 700;
  padding: 5px 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #e44456 0%, #d61f33 100%);
  border-radius: 4px;
  width: 42px;
  height: 42px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 3px;
}
.discount-container .info .countdown-timer .group .unit {
  font-size: 11px;
  font-weight: 600;
  color: #ea717e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.discount-container .info .theme-btn {
  display: inline-block;
  background: linear-gradient(135deg, #e44456 0%, #d61f33 100%);
  color: #ffffff;
  font-weight: 700;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(214, 31, 51, 0.3);
  margin-top: 5px;
}
.discount-container .info .theme-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214, 31, 51, 0.4);
}
.discount-container .info .theme-btn.pulse {
  animation: pulse 2s infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(214, 31, 51, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(214, 31, 51, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(214, 31, 51, 0);
  }
}
#google_translate_element {
  font-size: 0;
}
#google_translate_element .goog-te-gadget {
  font-size: 14px;
  color: #000;
}
#google_translate_element .goog-logo-link {
  display: none !important;
}
@media (max-width: 768px) {
  #google_translate_element .goog-te-gadget span {
    display: none !important;
  }
}

.library-section {
  position: relative;
}
.library-section .library-slider .library-card {
  width: 100%;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  border: 2px solid #d61f33;
  position: relative;
  overflow: hidden;
  z-index: 4;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  align-items: center;
  margin: auto 5px;
  padding-bottom: 40.5px;
}
.library-section .library-slider .library-card:after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: white;
  position: absolute;
  z-index: -1;
}
.library-section .library-slider .library-card .book-cover {
  width: 100%;
  padding: 6px;
  position: relative;
}
.library-section .library-slider .library-card .book-cover img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.library-section .library-slider .library-card .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  justify-content: end;
}
.library-section .library-slider .library-card .content .book-title {
  background: white;
  width: 100%;
  padding: 8px 10px;
  text-align: center;
  font-weight: 600;
  font-size: clamp(12px, 2vw, 14px);
  opacity: 0;
  transform: translateY(100%);
  transition: 0.3s ease-in-out;
}
.library-section .library-slider .library-card .content .theme-btn {
  margin: 5px auto;
  width: calc(100% - 10px);
}
.library-section .library-slider .library-card:hover .content .book-title {
  opacity: 1;
  transform: translateY(0);
  transition: 0.3s ease-in-out;
}

.room-food-section {
  position: relative;
}
.room-food-section .gallery-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 1rem 0;
  margin: 0;
  list-style: none;
}
.room-food-section .gallery-wrap li img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .room-food-section .gallery-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

.host-retreat-section {
  position: relative;
}
.host-retreat-section .common-content-wrap {
  padding: 0;
}

.retreat-facility-section {
  position: relative;
}
.retreat-facility-section .common-content-wrap {
  padding: 0;
  margin-bottom: 1rem;
}
.retreat-facility-section .retreat-box {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 15px;
  background: white;
  padding: 10px;
  margin-bottom: 1rem;
}
.retreat-facility-section .retreat-box .img-wrap {
  border-radius: 5px;
}
.retreat-facility-section .retreat-box .img-wrap img {
  min-height: 100px;
}
.retreat-facility-section .retreat-box .content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  gap: 5px;
}
@media (max-width: 576px) {
  .retreat-facility-section .retreat-box {
    grid-template-columns: 2fr 4fr;
  }
}

.why-choose-retreat {
  position: relative;
}
.why-choose-retreat .extra-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}
.why-choose-retreat .extra-box .extra-image-wrap {
  background-color: #fff;
  width: 30%;
  height: 235px;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid #d61f33;
  padding: 4px;
}
.why-choose-retreat .extra-box .extra-image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.why-choose-retreat .extra-box .extra-content-wrap {
  width: 70%;
  background: #fef5f5;
  padding: 1rem;
}
.why-choose-retreat .extra-box .extra-content-wrap .extra-heading-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 5px 0px 8px;
  display: inline-block;
  position: relative;
}
.why-choose-retreat .extra-box .extra-content-wrap .extra-heading-wrap .extra-heading {
  font-size: 20px;
  margin-bottom: 0;
  font-weight: 600;
  color: #212529;
}
.why-choose-retreat .extra-box .extra-content-wrap .extra-heading-wrap .extra-heading:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  transition: 0.3s ease-in-out;
  height: 2px;
  background: #d61f33;
}
.why-choose-retreat .extra-box .extra-content-wrap .extra-heading-wrap .extra-heading:hover:after {
  width: 50%;
  transition: 0.3s ease-in-out;
}
.why-choose-retreat .extra-box .extra-content-wrap .extra-content-text {
  padding: 5px 0px 8px;
}
@media (max-width: 1200px) {
  .why-choose-retreat .extra-box {
    margin-bottom: 10px;
  }
  .why-choose-retreat .extra-box .extra-image-wrap {
    width: 100%;
    height: 290px;
    border-radius: 15px 15px 0 0;
  }
  .why-choose-retreat .extra-box .extra-content-wrap {
    width: 100%;
    border: 2px solid #d61f33;
    border-top: none;
    border-radius: 0 0 15px 15px;
  }
  .why-choose-retreat .extra-box .extra-content-wrap .extra-heading-wrap {
    position: relative;
  }
}

.hotel-section {
  position: relative;
}
@media (min-width: 1200px) {
  .hotel-section .hotel-img-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    margin-bottom: 1rem;
  }
  .hotel-section .hotel-img-grid .img-wrap {
    overflow: hidden;
    border-radius: 10px;
  }
  .hotel-section .hotel-img-grid .img-wrap:first-child {
    grid-column: 1/span 1;
    grid-row: 1/span 2;
  }
  .hotel-section .hotel-img-grid .img-wrap:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .hotel-section .hotel-img-grid .img-wrap:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }
  .hotel-section .hotel-img-grid .img-wrap:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }
  .hotel-section .hotel-img-grid .img-wrap:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
  }
  .hotel-section .hotel-img-grid img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
}
.hotel-section .common-content-wrap {
  padding: 0;
}
.hotel-section .hotel-facility-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  justify-content: start;
  gap: 1rem;
  background: #ffffff;
  padding: 10px 1rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.hotel-section .hotel-facility-card .icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.hotel-section .hotel-facility-card .icon img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hotel-section .hotel-facility-card .card-heading {
  font-size: clamp(16px, 2vw, 18px);
}
@media (max-width: 1200px) {
  .hotel-section .hotel-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .hotel-section .hotel-img-grid .img-wrap {
    width: 100%;
    max-height: 250px;
  }
  .hotel-section .hotel-img-grid .img-wrap:last-child {
    display: none;
  }
}
@media (max-width: 576px) {
  .hotel-section .hotel-img-grid {
    gap: 12px;
  }
  .hotel-section .hotel-img-grid .img-wrap {
    border-radius: 10px;
  }
}

.best-places-section {
  position: relative;
}
.best-places-section .place-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}
.best-places-section .place-card .place-img {
  background-color: #fff;
  width: 30%;
  height: 235px;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid #d61f33;
  padding: 4px;
}
.best-places-section .place-card .place-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.best-places-section .place-card .place-content {
  width: 70%;
  background: #fef5f5;
  padding: 1rem;
}
.best-places-section .place-card .place-content .card-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #212529;
  position: relative;
  display: inline-block;
}
.best-places-section .place-card .place-content .card-heading:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background: #d61f33;
  transition: 0.3s ease-in-out;
}
.best-places-section .place-card .place-content .card-heading:hover:after {
  width: 50%;
  transition: 0.3s ease-in-out;
}
.best-places-section .place-card .place-content p {
  padding: 5px 0 8px;
}
@media (max-width: 1200px) {
  .best-places-section .place-card {
    margin-bottom: 10px;
  }
  .best-places-section .place-card .place-img {
    width: 100%;
    height: 290px;
    border-radius: 15px 15px 0 0;
  }
  .best-places-section .place-card .place-content {
    width: 100%;
    border: 2px solid #d61f33;
    border-top: none;
    border-radius: 0 0 15px 15px;
  }
}

#scrollToTopBtn {
  position: fixed;
  bottom: 6rem;
  right: 1.6rem;
  width: clamp(50px, 5vw, 60px);
  height: clamp(50px, 5vw, 60px);
  background: #d61f33;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 99999;
}
#scrollToTopBtn .progress-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#scrollToTopBtn .progress-ring svg {
  width: 100%;
  height: 100%;
  position: relative;
  transform: rotate(-90deg);
}
#scrollToTopBtn .progress-ring-circle {
  stroke: #fef5f5;
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  fill: transparent;
}
#scrollToTopBtn .percentage {
  position: absolute;
  font-size: 14px;
  color: white;
  font-weight: bold;
}
#scrollToTopBtn img {
  width: clamp(25px, 3vw, 30px);
  height: clamp(25px, 3vw, 30px);
  filter: brightness(0) saturate(100%) invert(99%) sepia(23%) saturate(2%) hue-rotate(195deg) brightness(114%) contrast(100%);
  transition: 0.3s ease-in-out;
  opacity: 0;
  transform: rotate(180deg);
}
#scrollToTopBtn.active {
  opacity: 1;
  pointer-events: auto;
  background: #d61f33;
}
#scrollToTopBtn.active .percentage {
  opacity: 0;
}
#scrollToTopBtn.active .progress-ring {
  display: none;
}
#scrollToTopBtn.active img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(23%) saturate(2%) hue-rotate(195deg) brightness(114%) contrast(100%);
  opacity: 1;
}

.yoga-offer-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.yoga-offer-modal.active {
  display: flex;
}
.yoga-offer-modal .yoga-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.yoga-offer-modal .yoga-modal-content {
  position: relative;
  width: 576px;
  max-width: 95%;
  background: white;
  border-radius: clamp(14px, 2vw, 20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  flex-shrink: 0;
  animation: yogaSlideIn 0.4s ease-out;
}
@keyframes yogaSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.yoga-offer-modal .yoga-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(12px, 2vw, 20px) clamp(16px, 2.4vw, 24px);
  background: linear-gradient(135deg, #d61f33 0%, #d61f33 100%);
}
.yoga-offer-modal .yoga-modal-header .yoga-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.yoga-offer-modal .yoga-modal-header .yoga-badge .yoga-icon {
  width: 20px;
  height: 20px;
  color: white;
}
.yoga-offer-modal .yoga-modal-header .yoga-badge span {
  color: white;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.yoga-offer-modal .yoga-modal-header .yoga-close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.yoga-offer-modal .yoga-modal-header .yoga-close-btn svg {
  width: 20px;
  height: 20px;
  color: white;
  stroke-width: 2.5px;
}
.yoga-offer-modal .yoga-modal-header .yoga-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}
.yoga-offer-modal .yoga-modal-body {
  padding: clamp(12px, 2.4vw, 24px);
}
.yoga-offer-modal .yoga-modal-body .yoga-hero-section {
  text-align: center;
  margin-bottom: 20px;
}
.yoga-offer-modal .yoga-modal-body .yoga-hero-section .yoga-main-title {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 700;
  color: #2d3748;
  line-height: 1.3;
  margin-bottom: 8px;
  background: linear-gradient(#d61f33, #8d1e36);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.yoga-offer-modal .yoga-modal-body .yoga-hero-section .yoga-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #718096;
  font-size: clamp(10px, 1.2vw, 12px);
}
.yoga-offer-modal .yoga-modal-body .yoga-hero-section .yoga-subtitle span {
  font-size: inherit;
  text-align: start;
}
.yoga-offer-modal .yoga-modal-body .yoga-hero-section .yoga-subtitle .yoga-star-icon {
  width: 16px;
  height: 16px;
  color: #f6ad55;
  flex-shrink: 0;
}
@media (max-width: 476px) {
  .yoga-offer-modal .yoga-modal-body .yoga-hero-section .yoga-subtitle {
    justify-content: start;
  }
}
.yoga-offer-modal .yoga-form .yoga-form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 475px) {
  .yoga-offer-modal .yoga-form .yoga-form-group {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.yoga-offer-modal .yoga-form .yoga-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.yoga-offer-modal .yoga-form .yoga-input-wrapper .yoga-input-icon {
  position: absolute;
  left: 16px;
  top: clamp(10px, 1.4vw, 14px);
  width: 20px;
  height: 20px;
  color: #a0aec0;
  pointer-events: none;
}
.yoga-offer-modal .yoga-form .yoga-input-wrapper .yoga-input,
.yoga-offer-modal .yoga-form .yoga-input-wrapper .yoga-select {
  width: 100%;
  padding: 10px 10px 10px 40px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  color: #2d3748;
  background: white;
  transition: all 0.3s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.yoga-offer-modal .yoga-form .yoga-input-wrapper .yoga-input:focus,
.yoga-offer-modal .yoga-form .yoga-input-wrapper .yoga-select:focus {
  outline: none;
  border-color: #d61f33;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.yoga-offer-modal .yoga-form .yoga-input-wrapper .yoga-input:focus + .yoga-input-icon,
.yoga-offer-modal .yoga-form .yoga-input-wrapper .yoga-select:focus + .yoga-input-icon {
  color: #d61f33;
}
.yoga-offer-modal .yoga-form .yoga-input-wrapper .yoga-input::-moz-placeholder, .yoga-offer-modal .yoga-form .yoga-input-wrapper .yoga-select::-moz-placeholder {
  color: #a0aec0;
  font-size: 14px;
}
.yoga-offer-modal .yoga-form .yoga-input-wrapper .yoga-input::placeholder,
.yoga-offer-modal .yoga-form .yoga-input-wrapper .yoga-select::placeholder {
  color: #a0aec0;
  font-size: 14px;
}
.yoga-offer-modal .yoga-form .yoga-input-wrapper .yoga-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23a0aec0'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px;
  padding-right: 48px;
  cursor: pointer;
  font-size: 14px;
}
.yoga-offer-modal .yoga-form .yoga-input-wrapper .yoga-select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23bd0005'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
}
.yoga-offer-modal .yoga-form .yoga-form-footer .yoga-submit-btn {
  width: 100%;
  padding: clamp(14px, 1.8vw, 18px) clamp(20px, 2.4vw, 24px);
  margin-top: 15px;
  background: linear-gradient(#d61f33, #8d1e36);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.yoga-offer-modal .yoga-form .yoga-form-footer .yoga-submit-btn span {
  color: inherit;
  font-weight: 700;
}
.yoga-offer-modal .yoga-form .yoga-form-footer .yoga-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(234, 102, 102, 0.4);
}
.yoga-offer-modal .yoga-form .yoga-form-footer .yoga-submit-btn:active {
  transform: translateY(0);
}
.yoga-offer-modal .yoga-form .yoga-form-footer .yoga-submit-btn .yoga-arrow-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.5px;
}
.yoga-offer-modal .yoga-form .yoga-form-footer .yoga-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: clamp(10px, 1.2vw, 16px) 0;
  padding: clamp(10px, 1.2vw, 12px);
  background: #f7fafc;
  border-radius: 8px;
  font-size: clamp(10px, 1.2vw, 12px);
  color: #718096;
  line-height: 1.5;
}
.yoga-offer-modal .yoga-form .yoga-form-footer .yoga-terms .yoga-info-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: #a0aec0;
}
.yoga-offer-modal .yoga-form .yoga-form-footer .yoga-terms p {
  font-size: inherit;
}
.yoga-offer-modal .yoga-form .yoga-form-footer .yoga-note {
  font-size: clamp(10px, 1.2vw, 12px);
  color: #e53e3e;
  padding: 8px 8px 8px 12px;
  background: #fff5f5;
  border-radius: 6px;
  border-left: 3px solid #e53e3e;
}
.yoga-offer-modal .yoga-form .yoga-form-footer .yoga-note strong {
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 600;
  color: #d61f33;
}

.thank-you {
  display: flex;
  align-items: center;
}
.thank-you .thank-you-wrap {
  display: flex;
  justify-content: center;
  flex-flow: column;
  align-items: center;
  text-align: center;
  border: 3px double #d61f33;
  background: #fef5f5;
  padding: 30px 25px;
  border-radius: 12px;
  /* SVG ICON */
}
.thank-you .thank-you-wrap h1 {
  font-family: "Philosopher", sans-serif;
  font-weight: 600;
  color: #d61f33;
  margin-bottom: 10px;
}
.thank-you .thank-you-wrap .confirmation-text {
  font-family: "Poppins", sans-serif;
  color: #7d121e;
  margin-bottom: 20px;
  font-size: 15px;
}
.thank-you .thank-you-wrap .success-icon-wrap {
  margin-bottom: 20px;
}
.thank-you .thank-you-wrap .success-icon-wrap .success-svg {
  width: clamp(60px, 12vw, 120px);
  height: clamp(60px, 12vw, 120px);
}
.thank-you .thank-you-wrap .success-icon-wrap .success-svg circle {
  stroke: #d61f33;
  stroke-width: 3;
}
.thank-you .thank-you-wrap .success-icon-wrap .success-svg path {
  stroke: #28a745;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.thank-you .thank-you-wrap .contact-text {
  text-align: center;
}
.thank-you .thank-you-wrap .contact-text .inner-text {
  display: flex;
  flex-flow: column;
  gap: 12px;
}
.thank-you .thank-you-wrap .contact-text .inner-text span a {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #003d90;
  text-decoration: none;
  font-weight: 500;
}
.thank-you .thank-you-wrap .contact-text .inner-text span a:hover {
  color: #d61f33;
}/*# sourceMappingURL=style.css.map */