@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@700&display=swap");
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  background-color: #262626;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:root {
  --theme-primary: #26a942;
  --theme-secondary: #35a933;
  --bg-primary: #262626;
  --bg-secondary: #181818;
  --text-primary: #ffffff;
  --text-secondary: #dddddd;
  --font-cormorant: "Cormorant Garamond", serif;
}

img {
  max-width: 100%;
}
iframe {
  border: 0;
}
a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}
a,
a:focus,
a:hover {
  text-decoration: none;
  color: inherit;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.375rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

ul,
ol {
  margin: 0rem;
  padding: 0rem;
  list-style-type: none;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: var(--text-secondary);
  margin: 0rem;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/*===== All Button Style =====*/
.main-btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0;
  padding: 0 2.5rem;
  font-size: 1rem;
  height: 3.4375rem;
  line-height: 3.4375rem;
  border-radius: 0.3125rem;
  color: var(--text-primary);
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background-color: var(--theme-primary);
}

@media (max-width: 767px) {
  .main-btn {
    padding: 0 1.5625rem;
    height: 2.5rem;
    line-height: 2.5rem;
    font-size: 0.875rem;
  }
}

.main-btn:hover {
  background-color: var(--theme-secondary);
  color: var(--text-primary);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

/*===== All Section Title Style =====*/
.section_title .line {
  width: 4.6875rem;
  height: 0.25rem;
  background-color: var(--theme-primary);
  margin: 0 auto;
}

.section_title .title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-top: 0.625rem;
}
.section_title .title strong {
  color: var(--theme-primary);
}

@media (max-width: 767px) {
  .section_title .title {
    font-size: 1.875rem;
  }
}

.section_title p {
  margin-top: 0.9375rem;
}

.section_title.section_title_2 .title,
.section_title.section_title_2 p {
  color: var(--text-primary);
}

/*===== All Slick Slide Outline Style =====*/
.slick-slide {
  outline: 0;
}

/*===========================
      02.HEADER css 
===========================*/
/*===== NAVBAR =====*/
.navbar-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background-color: transparent;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: var(--bg-secondary);
  -webkit-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sticky .navbar {
    padding: 20px 0;
  }
}

@media (max-width: 767px) {
  .sticky .navbar {
    padding: 20px 0;
  }
}

.navbar {
  padding: 0;
  border-radius: 0.3125rem;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.nav-cta-button {
  display: block;
  font-weight: 400;
  text-align: center;
  padding: 10px 1.25rem;
  font-size: 1rem;
  border-radius: 62.4375rem;
  color: var(--text-primary);
  background-color: var(--theme-primary);
  cursor: pointer;
  transition: all 0.4s ease-out;
}
@media screen and (max-width: 768px) {
  .nav-cta-button {
    border-radius: 62.4375rem;
    font-size: 1.1rem;
  }
  .nav-cta-button span {
    display: none;
  }
}

.nav-cta-button:hover {
  background-color: var(--theme-secondary);
  color: var(--text-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar {
    padding: 20px 0;
  }
}

@media (max-width: 767px) {
  .navbar {
    padding: 20px 0;
  }
}

.navbar-brand {
  padding: 0;
}

.navbar-toggler {
  padding: 0;
}

.navbar-toggler .toggler-icon {
  width: 1.875rem;
  height: 0.125rem;
  background-color: var(--text-secondary);
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0.4375rem;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -0.4375rem;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--text-primary);
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 0.75rem;
  }
}

@media (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-secondary);
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(41, 45, 54, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(41, 45, 54, 0.1);
    padding: 1.25rem;
  }
}

.navbar-nav .nav-item {
  margin-right: 2.8125rem;
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item {
    margin-right: 1.875rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item {
    margin: 0;
  }
}

.navbar-nav .nav-item a {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 30px 0;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item a {
    display: block;
    padding: 4px 0;
    color: #585f6e;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item a {
    display: block;
    padding: 4px 0;
  }
}

.navbar-nav .nav-item a::before {
  position: absolute;
  content: "";
  background-color: var(--theme-primary);
  width: 0;
  height: 0.25rem;
  top: -0.0625rem;
  left: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item a::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item a::before {
    display: none;
  }
}

.navbar-nav .nav-item.active > a::before,
.navbar-nav .nav-item:hover > a::before {
  width: 100%;
}

.navbar-nav .nav-item:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}

.navbar-nav .nav-item .sub-menu {
  width: 12.5rem;
  background-color: var(--text-primary);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 110%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}

.navbar-nav .nav-item .sub-menu li {
  display: block;
}

.navbar-nav .nav-item .sub-menu li a {
  display: block;
  padding: 8px 1.25rem;
  color: #222;
}

.navbar-nav .nav-item .sub-menu li a.active,
.navbar-nav .nav-item .sub-menu li a:hover {
  padding-left: 1.5625rem;
  color: var(--theme-primary);
}

.navbar-nav .sub-nav-toggler {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #222;
    font-size: 1.125rem;
    border: 0;
    width: 1.875rem;
    height: 1.875rem;
  }
}

@media (max-width: 767px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #222;
    font-size: 1.125rem;
    border: 0;
    width: 1.875rem;
    height: 1.875rem;
  }
}

.navbar-nav .sub-nav-toggler span {
  width: 0.5rem;
  height: 0.5rem;
  border-left: 1px solid #222;
  border-bottom: 1px solid #222;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: relative;
  top: -0.3125rem;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-btn {
    position: absolute;
    top: 50%;
    right: 3.125rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media (max-width: 767px) {
  .navbar-btn {
    position: absolute;
    top: 50%;
    right: 3.125rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.navbar-btn .main-btn {
  height: 2.8125rem;
  line-height: 2.8125rem;
  padding: 0 1.875rem;
  border: 0;
}

.sticky .navbar-nav .nav-item a {
  padding: 25px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sticky .navbar-nav .nav-item a {
    padding: 4px 0;
  }
}

@media (max-width: 767px) {
  .sticky .navbar-nav .nav-item a {
    padding: 4px 0;
  }
}

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

#home {
  position: relative;
  /* overflow: hidden; */
  min-height: 100vh;
  height: 100%;
  padding-top: 3rem;
  background: #171717;
  display: grid;
  place-items: center;
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  #home {
    padding-top: 5rem;
  }
}
#home .decorative-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
}
#home .decorative-element.one {
  background-color: var(--theme-primary);
  width: 7.5rem;
  height: 7.5rem;
  top: 5rem;
  left: 2.5rem;
  opacity: 0.4;
}
#home .decorative-element.two {
  background-color: var(--theme-primary);
  width: 10rem;
  height: 10rem;
  bottom: 5rem;
  right: 2.5rem;
  opacity: 0.4;
}
#home .decorative-element.three {
  background-color: var(--theme-primary);
  width: 15rem;
  height: 15rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
}
#home .hero-main-text {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: bold;
  line-height: 1.3;
  color: var(--text-primary);
}
#home .hero-main-text span {
  color: var(--theme-primary);
}
#home p {
  color: var(--text-secondary);
  font-size: 1rem;
}
#home .btn-primary {
  background-color: var(--theme-primary);
  border: none;
  padding: 10px 1.25rem;
  border-radius: 62.4375rem;
  font-weight: 600;
}
#home .btn-primary:hover {
  background-color: #218838;
}
#home .btn-outline-primary {
  color: var(--theme-primary);
  border-radius: 62.4375rem;
  border-color: var(--theme-primary);
}
#home .btn-outline-primary:hover {
  background-color: var(--theme-primary);
  color: var(--text-primary);
}
#home .stats {
  margin-top: 2rem;
}
#home .stats .count {
  font-size: 2rem;
  font-weight: bold;
  color: var(--theme-primary);
}
#home .stats p {
  color: #adb5bd;
}
#home .home-image {
  background-color: #343a40;
  height: 28.125rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-secondary);
  position: relative;
}
#home .home-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 1.5rem;
}
#home .offer-badge {
  position: absolute;
  top: -1.25rem;
  right: -0.625rem;
  background-color: var(--theme-primary);
  color: white;
  padding: 0.625rem;
  font-weight: bold;
  border-radius: 0.5rem;
  z-index: 3;
  transform: rotate(6deg);
}
#home .open-hours {
  position: absolute;
  bottom: -1.25rem;
  left: -0.3125rem;
  background-color: var(--theme-primary);
  color: var(--text-primary);
  padding: 0.625rem;
  font-weight: bold;
  border-radius: 0.5rem;
  transform: rotate(-6deg);
}

#home .wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

/*===========================
      03.programs css 
===========================*/
.single_classes {
  border-radius: 1rem;
  background: linear-gradient(
    to left,
    rgba(34, 197, 94, 0.04),
    rgba(0, 0, 0, 0.1)
  );
}
.single_classes .class-cover-img img {
  border-radius: 1rem 1rem 0 0;
  width: 100%;
}
.single_classes .class-cover-img .class-routine {
  background-color: #35a933;
  width: fit-content;
  padding: 2px 0.5rem;
  color: var(--text-primary);
  border-radius: 0.625rem;
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
}
.single_classes .class-cover-img .class-cover-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  border-radius: 0.75rem 0.75rem 0 0;
}

.single_classes .class-info {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  text-align: justify;
}

.programs_slider .slick-dots {
  width: 100%;
  text-align: center;
  margin-top: 1.1875rem;
}

.programs_slider .slick-dots li {
  display: inline-block;
  margin: 0 0.3125rem;
}

.programs_slider .slick-dots li button {
  width: 0.6rem;
  height: 0.6rem;
  background-color: transparent;
  border-radius: 3.125rem;
  font-size: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border: 2px solid var(--text-primary);
}

.programs_slider .slick-dots li.slick-active button {
  background-color: var(--text-primary);
  width: 1rem;
}

/*===========================
      04.ABOUT css 
===========================*/
.about_area {
  background-color: var(--bg-secondary);
}
.about_area .about-card {
  position: relative;
  background-color: var(--bg-secondary);
  border-radius: 0.5rem;
  overflow: hidden;
  height: 100%;
}
.about_area .about-image-wrapper {
  position: relative;
  height: 100%;
}

.about_area .about-image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(0.5px);
  border-radius: 0 60px 60px 0;
}
.about_area .about-image {
  display: block;
  object-fit: cover;
  object-position: left;
  width: 100%;
  border-radius: 0 60px 60px 0;
  height: 100%;
}
@media screen and (max-width: 992px) {
  .about_area .about-image {
    border-radius: 0rem;
  }
  .about_area .about-image-wrapper::after {
    border-radius: 0;
  }
}
.pulse-video-button {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -3.125rem;
  margin-top: -3.125rem;
  display: block;
  width: 6.25rem;
  height: 6.25rem;
  font-size: 1.3em;
  font-weight: light;
  font-family: "Trebuchet MS", sans-serif;
  text-transform: uppercase;
  text-align: center;
  line-height: 6.25rem;
  letter-spacing: -0.0625rem;
  color: white;
  z-index: 1;
  border: none;
  border-radius: 50%;
  background: var(--theme-primary);
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(90, 212, 127, 0.5);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  90% {
    box-shadow: 0 0 0 50px rgba(90, 212, 127, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(90, 212, 127, 0);
  }
}
.pulse-video-button:hover {
  color: var(--text-primary);
}
.about-content {
  max-width: 41.25rem;
  padding: 0px 20px;
  padding-left: 10px;
}
.about-content .owner-info {
  display: flex;
  align-items: center;
}
.about-content .owner-info .owner-name {
  font-size: 1.2rem;
  font-weight: 600;
}
.about-content .owner-info img {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 62.4375rem;
  margin-right: 1rem;
  border: 2px solid var(--theme-primary);
  padding: 0.125rem;
  object-fit: cover;
  object-position: center;
}
.about_area .section-title {
  color: var(--theme-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about_area .main-title {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
  color: var(--text-primary);
}

.about_area .main-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3.75rem;
  height: 0.25rem;
  background-color: var(--theme-primary);
}

.about_area .content-text {
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 1rem;
  text-align: justify;
}

@media (max-width: 768px) {
  .about_area .about-image-wrapper {
    margin-bottom: 2rem;
  }

  .about_area .main-title {
    font-size: 2rem;
  }
}
a.learn-more {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  width: 12rem;
  height: auto;
}

a.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: var(--theme-primary);
  border-radius: 1.625rem;
}

a.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

a.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

a.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.29rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}

a.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: var(--text-primary);
  font-weight: 400;
  text-align: center;
}

a.learn-more:hover .circle {
  width: 100%;
}

a.learn-more:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}

a.learn-more:hover .button-text {
  color: #fff;
}
/* ====================== */

/* why choose us  */

/* ======================= */

.why-choose-us {
  padding: clamp(1.5rem, 5vw, 3rem);
  max-width: 87.5rem;
  margin: 0 auto;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 3rem;
}

.feature-card {
  background-color: #1e1e1e;
  border-radius: 0.625rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: start;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(0, 255, 95, 0.1),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.feature-card:hover {
  border-color: rgba(0, 255, 95, 0.3);
}

.feature-card:hover::before {
  transform: translateX(100%);
}

.feature-card .icon {
  margin-bottom: 1.1rem;
}

.feature-card-icon {
  width: clamp(60px, 10vw, 50px);
  height: clamp(60px, 10vw, 50px);
  object-fit: cover;
  border-radius: 0.5rem;
  background-color: #28a74617;
  padding: 0.5rem;
}

.feature-card .feature-card-title {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  margin-bottom: 0.8em;
  color: var(--text-primary);
}

.feature-card p {
  font-size: clamp(0.85rem, 2vw, 0.9rem);
  color: #b3b3b3;
  line-height: 1.5;
  text-align: left;
}

@media (max-width: 768px) {
  .features-container {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  }

  .feature-card {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .why-choose-us {
    padding: 1rem;
  }

  .features-container {
    gap: 1rem;
  }
}

/*===========================
      06.TEAM css 
===========================*/
.team_slider {
  padding-bottom: 1.25rem;
}
.team_slider .slick-prev,
.team_slider .slick-next {
  position: absolute;
  bottom: 0rem;
  font-size: 0.9rem;
  right: 3.125rem;
  width: 2.5rem;
  height: 2.1875rem;
  background-color: #25d366;
  color: var(--text-primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 1;
  border: 0;
  transition: opacity 0.3s ease;
}

.team_slider .slick-prev {
  right: 6.25rem;
}

.team_slider .slick-prev:hover,
.team_slider .slick-next:hover {
  opacity: 0.9;
}

.team_slider .slick-prev.slick-disabled,
.team_slider .slick-next.slick-disabled {
  opacity: 0.2;
  cursor: not-allowed;
}
.team-card {
  background-color: #171717;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: transform 0.3s;
  margin: 1.2rem 0;
}

.team-image-wrapper {
  height: 20rem;
  background-color: #404040;
  position: relative;
  overflow: hidden;
}
.team-image-wrapper img {
  width: 100%;
  height: 100%;
  object-position: top;
  object-fit: cover;
}
.team-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 55%, var(--bg-secondary));
}

.team-info {
  position: absolute;
  bottom: 0rem;
  left: 1rem;
}

.team-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.25rem;
}

.team-position {
  color: #22c55e;
}

.team-content {
  padding: 1rem 1rem;
}

.team-description {
  color: #9ca3af;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.team-tags {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.team-tag {
  background-color: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  padding: 0.25rem 0.75rem;
  border-radius: 624.9375rem;
  font-size: 0.8rem;
}
.team-tag i {
  margin-right: 0.2rem;
}
/*===========================
      07.SPA css 
===========================*/
.spa-section {
  color: var(--text-primary);
  background-color: #232323;
  position: relative;
  isolation: isolate;
}
.spa-section .spa-images-wrapper .floating {
  width: 7.5rem;
  aspect-ratio: 1/1;
  border: 2px solid var(--theme-primary);
  padding: 0.125rem;
  position: absolute;
  top: 7.5rem;
  border-radius: 62.4375rem;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.spa-section .spa-images-wrapper .floating.floating-right {
  right: 1.25rem;
  top: 0rem;
}

.spa-section .spa-content .spa-heading {
  font-size: 1rem;
  font-weight: 300;
  color: var(--theme-primary);
  font-style: italic;
  margin-bottom: 0.2rem;
}
.spa-content .spa-title {
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--font-cormorant);
  font-style: normal;
  text-transform: uppercase;
}
.spa-content p {
  font-weight: 300;
  font-size: 0.9rem;
  text-align: justify;
  margin-top: 1rem;
  color: var(--text-secondary);
}
.spa-content .spa-btn {
  margin-top: 1.5rem;
  padding: 10px 1.25rem;
  background-color: var(--theme-primary);
  color: var(--text-primary);
  border-radius: 0.3125rem;
}
@media screen and (max-width: 992px) {
  .spa-row {
    flex-direction: column-reverse;
    gap: 1.875rem;
  }
  .spa-content .spa-title {
    font-size: 3rem;
  }
}
/*===========================
      08.PRICING css 
===========================*/
#pricing {
  background-color: #181818;
}
.single_pricing {
  background-color: #262626;
  border-radius: 1.25rem;
}
.single_pricing.recommended {
  border: 3px solid var(--theme-primary);
}

.ribbon {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}
.ribbon {
  --f: 0.5em; /* control the folded part */

  position: absolute;
  top: 0;
  right: 0;
  line-height: 1.8;
  padding-inline: 1lh;
  padding-bottom: var(--f);
  border-image: conic-gradient(#0008 0 0) 51% / var(--f);
  clip-path: polygon(
    100% calc(100% - var(--f)),
    100% 100%,
    calc(100% - var(--f)) calc(100% - var(--f)),
    var(--f) calc(100% - var(--f)),
    0 100%,
    0 calc(100% - var(--f)),
    999px calc(100% - var(--f) - 999px),
    calc(100% - 999px) calc(100% - var(--f) - 999px)
  );
  transform: translate(calc((1 - cos(45deg)) * 100%), -100%) rotate(45deg);
  transform-origin: 0% 100%;
  background-color: var(--theme-primary); /* the main color  */
}
.single_pricing .pricing_wrapper {
  padding: 1rem 0;
}

.single_pricing .pricing_wrapper .pricing_header .title {
  font-size: 1.375rem;
  font-weight: 500;
  text-align: center;
  padding: 0.5rem 0;
}

.single_pricing .pricing_wrapper .pricing_content {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border-top: 1px solid #444;
}

.single_pricing .pricing_wrapper .pricing_content ul li {
  margin-top: 0.9375rem;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ddd;
}

.single_pricing .pricing_btn {
  padding-bottom: 1.5625rem;
}

.single_pricing .pricing_btn a {
  background-color: #585f6e;
  color: var(--text-primary);
  font-size: 1.125rem;
  height: 3.4375rem;
  line-height: 3.4375rem;
  text-align: center;
  padding: 0 2.5rem;
  border-top-right-radius: 3.125rem;
  border-bottom-right-radius: 3.125rem;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.single_pricing .pricing_btn a:hover {
  background-color: var(--theme-primary);
}

.single_pricing .pricing_btn.pricing_btn_2 a {
  background-color: #35a933;
}
.all-pricing {
  background-color: transparent;
  border: 2px solid var(--theme-primary);
  border-radius: 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
  outline: none;
  overflow: visible;
  padding: 1.25em 2em;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  transition: all 0.3s ease-in-out;
  user-select: none;
  font-size: 0.8125rem;
}

.all-pricing::before {
  content: " ";
  width: 1.5625rem;
  height: 0.125rem;
  background: var(--theme-primary);
  top: 50%;
  left: 1.5em;
  position: absolute;
  transform: translateY(-50%);
  transform-origin: center;
  transition: background 0.3s linear, width 0.3s linear;
}

.all-pricing .text {
  font-size: 1.125em;
  line-height: 1.33333em;
  padding-left: 2em;
  display: block;
  text-align: left;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--theme-primary);
}

.all-pricing .top-key {
  height: 0.125rem;
  width: 1.5625rem;
  top: -0.125rem;
  left: 0.625rem;
  position: absolute;
  background: var(--bg-secondary);
  transition: width 0.5s ease-out, left 0.3s ease-out;
}

.all-pricing .bottom-key-1 {
  height: 0.125rem;
  width: 1.5625rem;
  right: 1.875rem;
  bottom: -0.125rem;
  position: absolute;
  background: var(--bg-secondary);
  transition: width 0.5s ease-out, right 0.3s ease-out;
}

.all-pricing .bottom-key-2 {
  height: 0.125rem;
  width: 0.625rem;
  right: 0.625rem;
  bottom: -0.125rem;
  position: absolute;
  background: var(--bg-secondary);
  transition: width 0.5s ease-out, right 0.3s ease-out;
}

.all-pricing:hover {
  color: white;
  background: var(--theme-primary);
}

.all-pricing:hover::before {
  width: 0.9375rem;
  background: white;
}

.all-pricing:hover .text {
  color: white;
  padding-left: 1.5em;
}

.all-pricing:hover .top-key {
  left: -0.125rem;
  width: 0rem;
}

.all-pricing:hover .bottom-key-1,
.all-pricing:hover .bottom-key-2 {
  right: 0;
  width: 0;
}

/* ======== Gallery Starts ========= */
.image-popup {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 1000px) {
  .image-popup {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .image-popup {
    grid-template-columns: 1fr;
  }
}
.gallery-image {
  margin: 0.25rem;
  background: linear-gradient(
    to right,
    rgb(34 197 94 / 0.2),
    rgb(34 197 94 / 0)
  );
  border-radius: 0.5rem;

  min-height: 10rem;
}
.gallery-image a {
  display: inline;
}
.gallery-image img {
  height: 100%;
  width: 100%;
  cursor: zoom-in;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0.5rem;
}

/* ======== Gallery Ends ========= */

/*===========================
      09.TESTIMONIAL css 
===========================*/
#testimonial {
  background-image: url("/assets/images/testimonial-bg.webp");
}
.testimonial_area {
  position: relative;
}

.testimonial_area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(23, 25, 30, 0.8);
  top: 0;
  left: 0;
}

.testimonial_active .slick-dots {
  width: 100%;
  text-align: center;
  margin-top: 1.1875rem;
}

.testimonial_active .slick-dots li {
  display: inline-block;
  margin: 0 0.3125rem;
}

.testimonial_active .slick-dots li button {
  width: 0.5rem;
  height: 0.5rem;
  background-color: transparent;
  border-radius: 3.125rem;
  font-size: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border: 2px solid var(--text-primary);
}

.testimonial_active .slick-dots li.slick-active button {
  background-color: var(--text-primary);
}
.single_testimonial .quote-icon {
  font-size: 2.6rem;
  color: var(--theme-primary);
  font-weight: 500;
}
.single_testimonial .author_name {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
}

.single_testimonial p {
  color: var(--text-primary);
  margin-top: 0.9375rem;
  font-size: 1.1rem;
  font-weight: 400;
  word-spacing: 0.1rem;
  line-height: 1.6;
}

/*===========================
      10.CONTACT css 
===========================*/
.contact_header {
  text-align: center;
  margin: 20px 0;
}

.contact_header h3 {
  font-size: 2.8rem;
  font-weight: 700;
}

.contact_highlight {
  color: var(--theme-primary);
}

.contact_subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: #bbbbbb;
  margin-top: 0.5rem;
}

.contact_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.625rem;
}

.contact_form_section {
  flex: 1;
  min-width: 20rem;
  max-width: 50%;
  background-color: #1e1e1e;
  padding: 1.25rem;
  border-radius: 1.25rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.contact_info_section {
  flex: 1;
  min-width: 20rem;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

@media only screen and (max-width: 768px) {
  .contact_form_section,
  .contact_info_section {
    max-width: 100%;
    width: 100%;
  }
}

.contact_form label {
  display: block;
  font-size: 1rem;
  margin-top: 0.9375rem;
  color: #999;
}

.contact_form input,
.contact_form select,
.contact_form textarea {
  width: 100%;
  padding: 0.625rem;
  margin-top: 0.3125rem;
  border-radius: 0.3125rem;
  border: 1px solid #333;
  background-color: #2c2c2c;
  color: var(--text-primary);
  font-size: 1rem;
}

.contact_form textarea {
  resize: none;
  height: 6.25rem;
}

.contact_submit_button {
  margin-top: 1.25rem;
  width: 100%;
  background-color: var(--theme-primary);
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem;
  border-radius: 0.3125rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact_submit_button:hover {
  background-color: #218838;
}

.map-container-xyz {
  background-color: #1e1e1e;
  padding: 1.25rem;
  border-radius: 1.25rem;
  height: 55%;
}

.map-container-xyz iframe {
  width: 100%;
  min-height: 15.625rem;
  border: none;
  border-radius: 0.3125rem;
}

.contact_contact_details {
  background-color: #1e1e1e;
  padding: 1.25rem;
  border-radius: 1.25rem;
  height: 45%;
}

.contact_contact_details h2 {
  margin-bottom: 1.125rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.contact_contact_details p {
  margin-bottom: 0.625rem;
  color: #bbbbbb;
}

.contact_contact_details i {
  color: var(--theme-primary);
  margin-right: 0.625rem;
  font-size: 1.125rem;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .contact_form_section,
  .contact_info_section {
    max-width: 100%;
    width: 100%;
  }
}

/*================ whatsapp button ============ */
.whatsapp-float {
  position: fixed;
  width: 2.625rem;
  height: 2.625rem;
  bottom: 5rem;
  right: 1.25rem;
  background-color: #25d366;
  color: var(--text-primary);
  border-radius: 3.125rem;
  text-align: center;
  font-size: 1.375rem;
  display: grid;
  place-items: center;
  z-index: 100;
}
.messenger-float {
  position: fixed;
  width: 2.625rem;
  height: 2.625rem;
  bottom: 8.75rem;
  right: 1.25rem;
  background: linear-gradient(45deg, #00b2ff, #006aff);
  color: var(--text-primary);
  border-radius: 3.125rem;
  text-align: center;
  font-size: 1.375rem;
  display: grid;
  place-items: center;
  z-index: 100;
}

.my-float {
  margin-top: 1rem;
}

/*===========================
      11.FOOTER css 
===========================*/
footer {
  background-color: #181818;
}
footer .footer-heading {
  font-size: 1.5rem;
  color: var(--theme-primary);
}
.footer-widget p.info {
  font-size: 0.9rem;
  color: #ccc;
  text-align: justify;
}
.footer-widget ul li {
  margin-bottom: 0.75rem;
}
.footer-widget ul li {
  color: #ccc;
}
.footer-bottom {
  border: 1px solid transparent;
  border-top-color: #444;
}
/*===== BACK TO TOP =====*/
.back-to-top {
  font-size: 1.125rem;
  color: var(--text-primary);
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  border-radius: 0.3125rem;
  background-color: #35a933;
  text-align: center;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: none;
}

.back-to-top:hover {
  color: var(--text-primary);
  background-color: #35a933;
}
