:root {
  --color-forest: #1D3A31;
  --color-mint: #A8D5BA;
  --color-cream: #F6F2EB;
  --color-beige: #E8D9C5;
}

* {
  padding: 0;
  margin: 0;
  outline: 0;
  scrollbar-width: auto;
  scrollbar-color: #4a9d7c #dedede;
}

/* ============ Header Styling ============ */
.main-head {
  background: linear-gradient(135deg, var(--color-cream) 0%, #fff 100%);
  padding: 30px 0;
  border-bottom: 2px solid var(--color-mint);
}

.main-head .row {
  align-items: center;
}

/* Left Side - Logo and Slogan */
.logo-wrap-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-container {
  flex-shrink: 0;
}

.header-logo {
  max-width: 120px;
  height: auto;
  transition: transform 0.3s ease;
  display: block;
}

.header-logo:hover {
  transform: scale(1.08);
}

.slogan-left h1 {
  font-size: 36px;
  color: var(--color-forest);
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.slogan-left small {
  font-size: 15px;
  color: #a98b57;
  display: flex;
  align-items: center;
  gap: 6px;
  font-style: italic;
  margin-top: 8px;
  font-weight: 500;
}

.slogan-left .material-symbols-outlined {
  font-size: 18px;
}

/* Right Side - Contact and Booking */
.header-right-section {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.contact-info-right {
  display: flex;
  gap: 25px;
  flex: 1;
}

.contact-item-right {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(168, 213, 186, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-item-right:hover {
  background: rgba(168, 213, 186, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29, 58, 49, 0.1);
}

.contact-icon-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--color-mint);
  border-radius: 50%;
  color: var(--color-forest);
  font-size: 22px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item-right:hover .contact-icon-right {
  background: var(--color-forest);
  color: var(--color-mint);
}

.contact-text-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-text-right small {
  font-size: 11px;
  color: var(--color-forest);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-text-right a,
.contact-text-right span {
  font-size: 14px;
  color: var(--color-forest);
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-text-right a:hover {
  color: var(--color-beige);
}

.booking-section-right {
  flex-shrink: 0;
  justify-content: flex-end;
}

.btn-book-retreat-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-mint) 100%);
  color: white;
  padding: 18px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(29, 58, 49, 0.3);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-book-retreat-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(29, 58, 49, 0.4);
  color: white;
  text-decoration: none;
}

.btn-book-retreat-main .material-symbols-outlined {
  font-size: 24px;
}

.book-text-main {
  font-size: 15px;
  font-weight: 600;
}

/* ============ Responsive Design ============ */
@media (max-width: 991px) {
  .main-head {
    padding: 25px 0;
  }

  .logo-wrap-left {
    gap: 15px;
  }

  .header-logo {
    max-width: 100px;
  }

  .slogan-left h1 {
    font-size: 30px;
  }

  .header-right-section {
    gap: 20px;
  }

  .contact-info-right {
    gap: 15px;
  }

  .btn-book-retreat-main {
    padding: 16px 28px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .main-head {
    padding: 20px 0;
  }

  .main-head .row {
    flex-direction: column;
    gap: 20px;
  }

  .main-head .col-lg-5,
  .main-head .col-md-6 {
    width: 100%;
  }

  .logo-wrap-left {
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
  }

  .header-logo {
    max-width: 90px;
  }

  .slogan-left h1 {
    font-size: 26px;
  }

  .header-right-section {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .contact-info-right {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .contact-item-right {
    padding: 12px;
    justify-content: center;
  }

  .booking-section-right {
    width: 100%;
  }

  .btn-book-retreat-main {
    width: 100%;
    padding: 15px 20px;
    font-size: 13px;
  }
}

/* Scrollbar Styling */

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #ebebeb;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #4a9d7c;
}

body {
  min-width: 320px;
  color: #000;
  font-family: "Lato", sans-serif;
  overflow-x: hidden;
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Merriweather", serif;
}

a {
  text-decoration: none;
  color: #111;
  transition: 0.4s ease-in-out;
}

a:hover {
  text-decoration: none;
  color: #978484;
}

p {
  font-size: 16px;
  line-height: 30px;
  color: #555;
  margin: 0;
}

img {
  max-width: 100%;
  vertical-align: middle;
  height: auto;
}

article {
  margin: 0 0 30px 0;
  overflow: hidden;
}

figure {
  margin: 0;
}

.img-wrap {
  position: relative;
}

.img-wrap figure {
  position: relative;
  width: 100%;
  padding-top: 75%;
  margin: 0;
}

.img-wrap figure img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.imgp-wrap {
  background: #fff;
  transition: all 0.5s ease;
  display: block;
  width: 100%;
  position: relative;
  height: 0;
  padding-top: 100%;
  overflow: hidden;
}

.imgp-wrap img {
  position: absolute;
  display: block;
  max-width: 100%;
  max-height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

@keyframes float-bob-y {
  0% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-20px);
  }
}
@keyframes float-bob-x {
  0% {
    transform: translateX(-20px);
  }
  50% {
    transform: translateX(-1px);
  }
  100% {
    transform: translateX(-20px);
  }
}
@keyframes zumpShape {
  0% {
    transform: translateZ(0);
  }
  50% {
    transform: translate3d(0, 10px, 0);
  }
  100% {
    transform: translateZ(0);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
/*header*/
header {
  background-color: #fff;
  position: relative;
}
header .top-bar {
  padding: 8px 0;
  background: linear-gradient(135deg, #1a5c3f 0%, #2d8659 50%, #1a5c3f 100%);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
header .top-bar:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  opacity: 0.3;
  pointer-events: none;
}
header .top-bar .container {
  position: relative;
  z-index: 1;
}
header .top-bar .top-bar-info {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
header .top-bar .top-bar-info .info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  font-weight: 500;
}
header .top-bar .top-bar-info .info-item span.material-symbols-outlined {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}
header .top-bar .top-bar-info .info-item a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: color 0.3s ease;
}
header .top-bar .top-bar-info .info-item a:hover {
  color: #fff;
  text-decoration: underline;
}
header .top-bar .social-bar {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: right;
  display: flex;
  gap: 8px;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
header .top-bar .social-bar li a {
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  display: block;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
header .top-bar .social-bar li a:hover {
  background-color: #fff;
  color: #2d8659;
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}
header .top-bar .slogan {
  text-align: center;
  background-color: #2d8659;
  padding: 5px 0;
  border-radius: 20px;
}
header .top-bar .slogan h1 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
  letter-spacing: 2px;
}
header .main-head {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 255, 240, 0.95) 100%);
  padding: 20px 0;
  border-bottom: 3px solid #2d8659;
  box-shadow: 0 2px 10px rgba(45, 134, 89, 0.1);
}
header .main-head .logo-wrap {
  padding: 10px 0 10px 10px;
  display: flex;
  gap: 15px;
  align-items: center;
}
header .main-head .logo-wrap a img {
  width: 130px;
  transition: transform 0.3s ease;
}
header .main-head .logo-wrap a:hover img {
  transform: scale(1.05);
}
header .main-head .logo-wrap .slogan h1 {
  color: #2d8659;
  font-weight: 700;
  margin: 0 0 5px 0;
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 1px;
}
header .main-head .logo-wrap .slogan small {
  color: #1a5c3f;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}
header .main-head .logo-wrap .slogan small span {
  color: #2d8659;
  font-size: 18px;
}
header .main-head .healing-contact-info {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}
header .main-head .healing-contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 255, 240, 0.8) 100%);
  border-radius: 12px;
  border: 2px solid rgba(45, 134, 89, 0.2);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 150px;
}
header .main-head .healing-contact-info .contact-item:hover {
  border-color: #2d8659;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(45, 134, 89, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 255, 240, 0.95) 100%);
}
header .main-head .healing-contact-info .contact-item .contact-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #2d8659 0%, #4a9d7c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(45, 134, 89, 0.3);
}
header .main-head .healing-contact-info .contact-item .contact-icon span {
  color: #fff;
  font-size: 24px;
}
header .main-head .healing-contact-info .contact-item .contact-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
header .main-head .healing-contact-info .contact-item .contact-details strong {
  font-size: 11px;
  text-transform: uppercase;
  color: #666;
  font-weight: 600;
  letter-spacing: 0.5px;
}
header .main-head .healing-contact-info .contact-item .contact-details a,
header .main-head .healing-contact-info .contact-item .contact-details span {
  font-size: 14px;
  font-weight: 600;
  color: #1a5c3f;
  text-decoration: none;
  transition: color 0.3s ease;
}
header .main-head .healing-contact-info .contact-item .contact-details a:hover {
  color: #2d8659;
}
header .main-head .quick-contacts {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 10px 0 0;
}
header .main-head .quick-contacts .q-inq {
  width: 100%;
}
header .main-head .quick-contacts .q-inq a {
  border: 2px solid #2d8659;
  padding: 15px 20px;
  position: relative;
  border-radius: 15px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  min-height: 110px;
  background: linear-gradient(135deg, #2d8659 0%, #4a9d7c 100%);
  overflow: hidden;
  transition: all 0.4s ease;
  text-align: center;
  box-shadow: 0 5px 20px rgba(45, 134, 89, 0.3);
}
header .main-head .quick-contacts .q-inq a:hover {
  background: linear-gradient(135deg, #1a5c3f 0%, #2d8659 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 134, 89, 0.4);
}
header .main-head .quick-contacts .q-inq a span.material-symbols-outlined {
  font-size: 40px;
  color: #fff;
  position: relative;
  z-index: 2;
  opacity: 1;
  transform: none;
  top: auto;
  left: auto;
  line-height: 1;
}
header .main-head .quick-contacts .q-inq a .btn-text {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
header .main-head .quick-contacts .q-inq a:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
header .main-head .quick-contacts .q-inq a:hover:before {
  opacity: 1;
}

.nav-sec {
  position: relative;
  z-index: 9;
  background-color: #2d8659;
}
.nav-sec .navbar {
  padding: 0;
}
.nav-sec .navbar-collapse {
  justify-content: flex-start;
}
.nav-sec .main-navigation {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  position: relative;
  z-index: 5;
  justify-content: center;
  border-radius: 4px;
}
.nav-sec .main-navigation .menu-item {
  position: static;
}
.nav-sec .main-navigation .menu-item:hover {
  background-color: #333333;
  transition: 0.4s ease-in-out;
  border-color: #2d8659;
  color: #fff;
}
.nav-sec .main-navigation .menu-item:hover a {
  color: #fff;
}
.nav-sec .main-navigation .menu-item a {
  font-size: 16px;
  text-transform: capitalize;
  line-height: 17px;
  padding: 25px 20px;
  display: inline-block;
  position: relative;
  top: 0;
  color: #fff;
  border-radius: 0;
  border-left: none;
  border-right: none;
  font-weight: 600;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.nav-sec .main-navigation .menu-item a:hover {
  transition: 0.4s ease-in-out;
  color: #fff;
  background-color: #111;
}
.nav-sec .main-navigation .menu-item:last-of-type a {
  border: none;
}
.nav-sec .main-navigation .menu-item.active a {
  transition: 0.4s ease-in-out;
  color: #111;
}
.nav-sec .main-navigation .menu-item.active a:hover {
  color: #fff;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .sub-menu {
  top: 100%;
  z-index: 999999;
  min-width: 10rem;
  font-size: 1rem;
  color: #111;
  text-align: left;
  list-style: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: none;
  position: absolute;
  margin: 0;
  background: #111;
  border-radius: 0;
  padding: 0;
  width: 310px;
  animation-duration: 0.3s;
  opacity: 0;
  transition: 0.8s ease-in-out;
  border-radius: 0 0 10px 10px;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .sub-menu .menu-item::before {
  display: none;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .sub-menu .menu-item a {
  padding: 10px;
  color: #fff;
  font-size: 14px;
  transition: 0.4s ease-in-out;
  text-align: left;
  line-height: 30px;
  border-radius: 10px;
  display: block;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .sub-menu .menu-item a:hover {
  background-color: #2d8659;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children:hover .sub-menu {
  display: block !important;
  opacity: 1;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children > a::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .mega-menu {
  width: 100% !important;
  z-index: 9;
  left: 0 !important;
  right: 0 !important;
  background-image: url(../images/act-bg.jpeg) !important;
  background-color: transparent !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 20px !important;
  max-height: 400px;
  overflow-y: auto;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .mega-menu ul {
  padding: 0;
  list-style: none;
  margin: 0 0 20px 0;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .mega-menu ul h3 {
  font-size: 20px;
  padding: 10px;
  border-radius: 10px;
  background-color: #2d8659;
  color: #fff;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .mega-menu ul .menu-item {
  border-bottom: 1px dashed #999;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .mega-menu ul .menu-item:hover {
  background-color: transparent !important;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .mega-menu ul .menu-item a {
  color: #111 !important;
  font-size: 14px !important;
  font-weight: 500;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .mega-menu ul .menu-item a:hover {
  background-color: none !important;
  color: #fff !important;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .mega-menu ul .menu-item:last-of-type {
  border: none;
}

/*slider section*/
.slider-wrap {
  position: relative;
}
.slider-wrap .slider-bg {
  position: relative;
}
.slider-wrap .slider-bg:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 80px;
  background-position: bottom center;
  background-size: contain;
  background-repeat: repeat-x;
  z-index: 1;
}
.slider-wrap .slider-bg .slide-sec {
  position: relative;
  overflow: hidden;
}
.slider-wrap .slider-bg .slide-sec:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.slider-wrap .slider-bg .slide-sec .slide-img {
  position: relative;
  width: 100%;
  padding-top: 100vh;
  margin: 0;
}
.slider-wrap .slider-bg .slide-sec .slide-img img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-wrap .slider-bg .slide-sec .slide-img iframe {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-wrap .slider-bg .slide-sec .slider-cap {
  text-align: left;
  margin: 0 0 50px 0;
  position: absolute;
  left: 5%;
  top: 100%;
  transform: translateY(-50%);
  z-index: 5;
  transition: 0.4s ease-in-out;
  max-width: 800px;
}
.slider-wrap .slider-bg .slide-sec .slider-cap h2 {
  font-size: 64px;
  margin: 0 0 30px 0;
  color: #2d8659;
}
.slider-wrap .slider-bg .slide-sec .slider-cap h2 span {
  display: block;
  font-family: "Allison", cursive;
  font-size: 76px;
  font-weight: 500;
  padding-left: 100px;
  position: relative;
}
.slider-wrap .slider-bg .slide-sec .slider-cap h2 span::before {
  content: "";
  position: absolute;
  height: 4px;
  width: 80px;
  background-color: #2d8659;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.slider-wrap .slider-bg .slide-sec .slider-cap p {
  font-size: 18px;
  color: #fff;
  margin: 0 0 20px 0;
}
.slider-wrap .slider-bg .slide-sec .slider-cap .sl-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.slider-wrap .slider-bg .slide-sec .slider-cap .sl-btns a {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: #333333;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 20px 30px;
  border-radius: 10px;
  display: inline-block;
  border: 1px solid #2d8659;
}
.slider-wrap .slider-bg .slide-sec .slider-cap .sl-btns a span {
  vertical-align: middle;
}
.slider-wrap .slider-bg .slide-sec .slider-cap .sl-btns a:before {
  background-color: #000;
  content: "";
  height: 100%;
  left: -120%;
  opacity: 0.1;
  position: absolute;
  top: 0;
  transform: skewX(25deg);
  -o-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  -webkit-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  width: 100%;
  z-index: -1;
}
.slider-wrap .slider-bg .slide-sec .slider-cap .sl-btns a:after {
  background-color: #000;
  content: "";
  height: 100%;
  left: -120%;
  opacity: 0.1;
  position: absolute;
  top: 0;
  transform: skewX(25deg);
  -o-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  -webkit-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  width: 100%;
  z-index: -1;
}
.slider-wrap .slider-bg .slide-sec .slider-cap .sl-btns a:hover:before {
  left: -10%;
  transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
}
.slider-wrap .slider-bg .slide-sec .slider-cap .sl-btns a:hover:after {
  left: -20%;
}
.slider-wrap .slider-bg .slide-sec .slider-cap .sl-btns a:last-of-type {
  background-color: #2d8659;
}
.slider-wrap .slider-bg .owl-item.active .slider-cap {
  top: 55%;
  transition: 2s ease-in-out;
}
.slider-wrap .slider-bg .book-form {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  right: 5%;
  max-width: 400px;
  z-index: 2;
  background: rgba(20, 146, 194, 0.4);
  padding: 10px 10px 0 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.slider-wrap .slider-bg .book-form h3 {
  display: block;
  padding: 10px;
  margin: 0 0 5px 0;
  color: #eee;
  text-align: left;
  font-size: 20px;
}
.slider-wrap .slider-bg .book-form .bform-wrap form .form-control {
  font-size: 14px;
  height: 50px;
  line-height: 50px;
  color: #ffffff;
  padding: 0 30px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  border-radius: 0;
  margin: 0 0 10px 0;
}
.slider-wrap .slider-bg .book-form .bform-wrap form .form-control:focus {
  box-shadow: none;
  border-bottom: 1px solid #fff;
}
.slider-wrap .slider-bg .book-form .bform-wrap form input::-moz-placeholder, .slider-wrap .slider-bg .book-form .bform-wrap form textarea::-moz-placeholder {
  color: #eee;
}
.slider-wrap .slider-bg .book-form .bform-wrap form input::placeholder,
.slider-wrap .slider-bg .book-form .bform-wrap form textarea::placeholder {
  color: #eee;
}
.slider-wrap .slider-bg .book-form .bform-wrap form .form-select {
  font-size: 14px;
  height: 50px;
  line-height: 50px;
  color: #ffffff;
  padding: 0 30px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  border-radius: 0;
  margin: 0 0 10px 0;
}
.slider-wrap .slider-bg .book-form .bform-wrap form .form-select:focus {
  box-shadow: none;
  border-bottom: 1px solid #fff;
}
.slider-wrap .slider-bg .book-form .bform-wrap form .form-select option {
  color: #333;
}
.slider-wrap .slider-bg .book-form .bform-wrap form textarea {
  font-size: 14px;
  width: 100%;
  color: #ffffff;
  padding: 0 30px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  border-radius: 0;
  margin: 0 0 10px 0;
}
.slider-wrap .slider-bg .book-form .bform-wrap form textarea:focus {
  box-shadow: none;
  border-bottom: 1px solid #fff;
}
.slider-wrap .slider-bg .book-form .bform-wrap form .btn {
  padding: 0;
  margin-bottom: -30px;
  display: block;
  width: 100%;
  border: none;
  text-align: right;
  background: none;
}
.slider-wrap .slider-bg .book-form .bform-wrap form .btn span {
  border-radius: 50%;
  background-color: #333333;
  height: 60px;
  width: 60px;
  line-height: 60px;
  margin: 0 auto;
  transition: 0.4s ease-in-out;
  text-align: center;
}
.slider-wrap .slider-bg .book-form .bform-wrap form .btn:hover span {
  background-color: #2d8659;
}
.slider-wrap .slider-bg .short-info {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 100px;
  right: 10%;
  z-index: 2;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.7) 49%, rgba(45, 134, 89, 0.8071603641) 90%);
  padding: 30px;
  animation: float-bob-y 5s infinite;
}
.slider-wrap .slider-bg .short-info h3 {
  text-align: center;
  font-size: 20px;
  color: #fff;
  text-transform: capitalize;
  line-height: 30px;
}
.slider-wrap .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translatex(-50%);
}
.slider-wrap .owl-dots .owl-dot span {
  width: 10px;
  height: 2px;
  background: #333333;
  border-radius: 20px;
}
.slider-wrap .owl-dots .owl-dot.active span {
  background: #2d8659;
}

/*about us*/
.about {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.about .about-image {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.about .about-image .main-image .img-wrap {
  padding-top: 50px;
  margin: 0 100px 0 0;
}
.about .about-image .main-image .img-wrap figure {
  padding-top: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.about .about-image .main-image .about-dots {
  width: 300px;
  background-image: url(../images/about-2.png);
  position: absolute;
  bottom: 0;
  right: 0;
  height: 300px;
  background-repeat: no-repeat;
  background-size: contain;
  animation: zumpShape 3s infinite;
  opacity: 1;
}
.about .about-image .main-image:before {
  content: "";
  height: 300px;
  width: 300px;
  position: absolute;
  right: 0;
  top: 0;
  animation: float-bob-x 5s infinite;
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.about .about-image .small-image {
  border: 1px solid #333333;
  position: absolute;
  right: 0;
  top: 0;
}
.about .about-image .small-image .img-wrap figure {
  width: 300px;
  padding-top: 400px;
}
.about .about-image .about-info {
  position: absolute;
  left: 20px;
  top: 75px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 170px;
  height: 170px;
  background-image: url(../images/stone-green.png);
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  text-align: center;
  padding: 0px;
  animation-name: float-bob-y;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
.about .about-image .about-info .num {
  font-size: 48px;
  font-weight: 700;
  color: #eee;
  display: block;
  font-family: "Allison", cursive;
  line-height: 1;
}
.about .about-image .about-info .info-wrap strong {
  display: block;
  font-size: 20px;
  color: #eee;
  max-width: 100px;
  font-family: "Allison", cursive;
  line-height: 1;
}
.about .about-image .about-info .info-wrap small {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #eee;
}
.about .about-wrap small {
  font-size: 14px;
  color: #2d8659;
  font-weight: 500;
  display: inline-block;
  margin: 0 0 10px 0;
  padding: 0;
  text-transform: uppercase;
}
.about .about-wrap small span {
  vertical-align: middle;
  margin: 0 5px 0 0;
  font-size: 22px;
}
.about .about-wrap h2 {
  font-size: 3.6rem;
  font-weight: 700;
}
.about .about-wrap p {
  margin: 0 0 20px 0;
}
.about .about-wrap ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.about .about-wrap ul li {
  display: flex;
  font-size: 20px;
  font-weight: 500;
  width: 45%;
  gap: 10px;
  align-items: flex-start;
}
.about .about-wrap ul li span {
  vertical-align: middle;
  color: #2d8659;
}
.about .about-wrap a {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: #333333;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 20px 30px;
  border-radius: 10px;
  display: inline-block;
  border: 1px solid #2d8659;
}
.about .about-wrap a span {
  vertical-align: middle;
}
.about .about-wrap a:before {
  background-color: #000;
  content: "";
  height: 100%;
  left: -120%;
  opacity: 0.1;
  position: absolute;
  top: 0;
  transform: skewX(25deg);
  -o-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  -webkit-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  width: 100%;
  z-index: -1;
}
.about .about-wrap a:after {
  background-color: #000;
  content: "";
  height: 100%;
  left: -120%;
  opacity: 0.1;
  position: absolute;
  top: 0;
  transform: skewX(25deg);
  -o-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  -webkit-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  width: 100%;
  z-index: -1;
}
.about .about-wrap a:hover:before {
  left: -10%;
  transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
}
.about .about-wrap a:hover:after {
  left: -20%;
}

/*headings*/
.headings {
  text-align: center;
  margin: 0 0 50px 0;
  position: relative;
}
.headings h3 {
  color: #111;
  font-size: 2.8rem;
  text-transform: capitalize;
  font-weight: 500;
  margin: 0;
}
.headings .head-dots {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #2d8659;
  display: inline-block;
  position: relative;
}
.headings .head-dots:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: inherit;
  right: 130%;
}
.headings .head-dots:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: inherit;
  left: 130%;
}

/*services*/
.services {
  padding: 60px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.services:before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(45, 134, 89, 0.7);
}
.services .container {
  position: relative;
}
.services .headings h3 {
  color: #fff;
}
.services .headings .head-dots {
  background-color: #fff;
}
.services .service-massage .serv-card {
  margin: 0 0 30px 20px;
}
.services .service-massage .serv-card .img-wrap {
  background-color: transparent;
  position: relative;
  border: 6px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
}
.services .service-massage .serv-card .img-wrap figure {
  padding-top: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.services .service-massage .serv-card .img-wrap .icon-wrap {
  position: absolute;
  bottom: 10px;
  left: -20px;
}
.services .service-massage .serv-card .img-wrap .icon-wrap:before {
  content: "";
  position: absolute;
  border-left: 20px solid #777;
  border-top: 20px solid #777;
  border-bottom: 20px solid transparent;
  border-left: 20px solid transparent;
  top: 100%;
  left: 0;
}
.services .service-massage .serv-card .img-wrap .icon-wrap span {
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 80px;
  font-size: 40px;
  border-radius: 0;
  background-color: #2d8659;
  color: #fff;
}
.services .service-massage .serv-card .serv-dtl {
  border-top: 0;
  border-radius: 10px;
  margin: 0 20px;
  margin-top: -80px;
  background-color: #fff;
  position: relative;
}
.services .service-massage .serv-card .serv-dtl h4 {
  font-size: 22px;
  margin: 0;
  min-height: 100px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.services .service-massage .serv-card .serv-dtl h4 a {
  font-weight: 600;
}
.services .service-massage .serv-card .serv-dtl h4 a:hover {
  color: #2d8659;
}
.services .service-massage .serv-card .serv-dtl .r-more a {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: #333333;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 20px 30px;
  border-radius: 0 0 10px 10px;
  display: block;
}
.services .service-massage .serv-card .serv-dtl .r-more a span {
  vertical-align: middle;
}
.services .service-massage .serv-card .serv-dtl .r-more a:before {
  background-color: #000;
  content: "";
  height: 100%;
  left: -120%;
  opacity: 0.1;
  position: absolute;
  top: 0;
  transform: skewX(25deg);
  -o-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  -webkit-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  width: 100%;
  z-index: -1;
}
.services .service-massage .serv-card .serv-dtl .r-more a:after {
  background-color: #000;
  content: "";
  height: 100%;
  left: -120%;
  opacity: 0.1;
  position: absolute;
  top: 0;
  transform: skewX(25deg);
  -o-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  -webkit-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  width: 100%;
  z-index: -1;
}
.services .service-massage .serv-card .serv-dtl .r-more a:hover:before {
  left: -10%;
  transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
}
.services .service-massage .serv-card .serv-dtl .r-more a:hover:after {
  left: -20%;
}
.services .service-massage .serv-card .serv-dtl .serv-description {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
  padding: 0 10px;
}
.services .service-massage .serv-card:hover .serv-dtl .serv-description {
  max-height: 200px;
  padding: 10px;
}
.services .service-massage .serv-card .serv-dtl .serv-description p {
  font-size: 14px;
  line-height: 24px;
  color: #666;
  margin: 0;
}
.services .service-massage .services-carousel {
  margin: 0 -15px;
}
.services .service-massage .services-carousel .serv-card {
  margin: 0 15px;
  padding: 0;
}
.services .service-massage .services-carousel .owl-nav {
  text-align: center;
  margin-top: 30px;
}
.services .service-massage .services-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 10px;
  font-size: 24px;
  transition: all 0.4s ease;
}
.services .service-massage .services-carousel .owl-nav button:hover {
  background-color: #2d8659;
  border-color: #2d8659;
  color: #fff;
}
.services .service-massage .services-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}
.services .service-massage .services-carousel .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  transition: all 0.4s ease;
}
.services .service-massage .services-carousel .owl-dots .owl-dot.active {
  background-color: #2d8659;
  width: 30px;
  border-radius: 15px;
}

/*signature features*/
.signature-features {
  padding: 100px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}
.signature-features:before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(45, 134, 89, 0.85);
  z-index: 1;
}
.signature-features .container {
  position: relative;
  z-index: 2;
}
.signature-features .headings {
  margin: 0 0 60px 0;
}
.signature-features .headings h3 {
  color: #fff;
}
.signature-features .headings .head-dots {
  background-color: #fff;
}
.signature-features .headings small {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  display: inline-block;
  margin: 0 0 10px 0;
  padding: 0;
  text-transform: uppercase;
}
.signature-features .headings small span {
  vertical-align: middle;
  margin: 0 5px 0 0;
  font-size: 22px;
}
.signature-features .sig-feature-card {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 30px 20px;
  margin: 0 0 30px 0;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.signature-features .sig-feature-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(45, 134, 89, 0.1), transparent);
  transition: left 0.5s ease;
}
.signature-features .sig-feature-card:hover:before {
  left: 100%;
}
.signature-features .sig-feature-card:hover {
  transform: translateY(-10px);
  border-color: #2d8659;
  box-shadow: 0 10px 30px rgba(45, 134, 89, 0.3);
}
.signature-features .sig-feature-card .feature-icon {
  margin: 0 0 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.signature-features .sig-feature-card .feature-icon span,
.signature-features .sig-feature-card .feature-icon i {
  font-size: 60px;
  color: #2d8659;
  transition: all 0.4s ease;
}
.signature-features .sig-feature-card:hover .feature-icon span,
.signature-features .sig-feature-card:hover .feature-icon i {
  transform: scale(1.1) rotate(5deg);
  color: #1a5c3f;
}
.signature-features .sig-feature-card .feature-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin: 0 0 15px 0;
  transition: color 0.4s ease;
}
.signature-features .sig-feature-card:hover .feature-content h4 {
  color: #2d8659;
}
.signature-features .sig-feature-card .feature-content p {
  font-size: 15px;
  line-height: 26px;
  color: #666;
  margin: 0;
}
.signature-features .feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(45, 134, 89, 0.3) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 768px) {
  .signature-features .sig-feature-card {
    padding: 25px 15px;
  }
  .signature-features .sig-feature-card .feature-icon span,
  .signature-features .sig-feature-card .feature-icon i {
    font-size: 50px;
  }
  .services .service-massage .services-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  header .main-head .logo-wrap {
    flex-direction: column;
    text-align: center;
    padding: 10px 0;
  }
  header .main-head .logo-wrap .slogan {
    text-align: center;
  }
  header .main-head .healing-contact-info {
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
  }
  header .main-head .healing-contact-info .contact-item {
    width: 100%;
    justify-content: flex-start;
  }
  header .main-head .quick-contacts {
    justify-content: center;
    margin-top: 15px;
  }
  header .main-head .quick-contacts .q-inq {
    width: 100%;
  }
  header .main-head .quick-contacts .q-inq a {
    min-height: 90px;
    padding: 12px 15px;
  }
  header .top-bar .top-bar-info {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  header .top-bar .social-bar {
    justify-content: flex-start;
    margin-top: 10px;
  }
}

/*about new*/
.abt .about-image {
  overflow: visible;
  margin: 0 0 30px 80px;
}
.abt .about-image .main-image .img-wrap {
  margin: 0;
}
.abt .about-image .main-image .img-wrap figure {
  border-radius: 10px;
}
.abt .about-image .main-image:before {
  right: 0;
  bottom: -80px;
  top: initial;
  background-size: 90%;
}
.abt .about-image .small-img {
  position: absolute;
  top: -30px;
  left: -80px;
  background-color: #fff;
  border: 30px;
  padding: 20px;
  border-radius: 50%;
}

/*locations*/
.locations {
  padding: 100px 0 70px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.locations:before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
}
.locations .container {
  position: relative;
}
.locations .loc-card {
  margin: 0 0 30px 0;
}
.locations .loc-card .img-wrap figure {
  padding-top: 100%;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.locations .loc-card .img-wrap h4 {
  padding: 20px 10px;
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, #2d8659 30%);
}
.locations .loc-card .img-wrap h4 a {
  color: #fff;
}
.locations .loc-card .img-wrap h4 a:hover {
  color: #111;
}
.locations .loc-card .loc-dtl .add-wrap {
  list-style: none;
  padding: 20px;
  border: 2px solid #2d8659;
  border-radius: 0 0 10px 10px;
}
.locations .loc-card .loc-dtl .add-wrap li {
  border-bottom: 1px dashed #999;
  margin: 0 0 10px 0;
  padding: 0 0 10px 0;
}
.locations .loc-card .loc-dtl .add-wrap li:last-of-type {
  border: none;
  margin: 0;
  padding: 0;
}
.locations .loc-card .loc-dtl .add-wrap li span {
  vertical-align: middle;
  color: #2d8659;
  margin: 0 5px 5px 0;
}
.locations .loc-card .loc-dtl .add-wrap li a {
  font-size: 20px;
  font-weight: 600;
}
.locations .loc-card .loc-dtl .add-wrap li a:hover {
  color: #2d8659;
}

/*highlights*/
.highlights {
  padding: 100px 0 120px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.highlights .headings {
  margin: 0 0 100px 0;
}
.highlights .high-card {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  text-align: center;
  border-left: 5px solid #2d8659;
  padding: 0;
  margin: 0 0 30px 0;
  box-shadow: 5px 0px 5px 2px rgba(0, 0, 0, 0.1);
}
.highlights .high-card .icon-wrap {
  text-align: center;
  margin: 0 0 20px 0;
}
.highlights .high-card .icon-wrap span {
  margin-top: -60px;
  font-size: 52px;
  width: 120px;
  height: 120px;
  line-height: 120px;
  background-color: #2d8659;
  color: #fff;
  border-radius: 50%;
  background: radial-gradient(circle, #2d8659 40%, rgb(255, 255, 255) 90%);
  border: 1px solid #2d8659;
}
.highlights .high-card strong {
  display: block;
  font-size: 20px;
  background-color: #333333;
  color: #fff;
  padding: 10px;
  border-radius: 0 0 10px 10px;
}

/*associations*/
.associations {
  padding: 100px 0;
}
.associations .asso-card {
  text-align: center;
  padding: 5px;
  border-radius: 10px;
  border: 2px solid #2d8659;
  margin: 0 15px;
}
.associations .asso-card .asso-dtl strong {
  font-size: 18px;
  text-transform: capitalize;
  background-color: #2d8659;
  display: block;
  padding: 20px 10px;
  border-radius: 0 0 5px 5px;
  color: #fff;
}

/*why us*/
.why-us {
  padding: 50px 0;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.why-us:before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.why-us:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 0;
}
.why-us .headings {
  text-align: left;
}
.why-us .headings h3 {
  color: #111;
  padding: 0;
}
.why-us .headings span {
  margin: 0 0 0 10px;
}
.why-us .container {
  position: relative;
  z-index: 2;
}
.why-us .img-wrap img {
  border-radius: 20px;
}
.why-us .whyus-wrap h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #111;
}
.why-us .whyus-wrap p {
  margin: 0 0 20px 0;
  color: #333333;
}
.why-us .whyus-wrap ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.why-us .whyus-wrap ul li {
  margin: 0 0 20px 0;
  width: 48%;
  padding: 5px;
}
.why-us .whyus-wrap ul li .why-list {
  display: flex;
  gap: 15px;
  align-items: center;
}
.why-us .whyus-wrap ul li .why-list .icon-wrap span {
  width: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 28px;
  color: #fff;
  display: inline-block;
}
.why-us .whyus-wrap ul li .why-list .icon-wrap span img {
  width: 100%;
}
.why-us .whyus-wrap ul li .why-list .list-dtl strong {
  font-size: 20px;
  color: #333;
}
.why-us .whyus-wrap a {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: #333333;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 20px 30px;
  border-radius: 10px;
  display: inline-block;
  border: 1px solid #2d8659;
}
.why-us .whyus-wrap a span {
  vertical-align: middle;
}
.why-us .whyus-wrap a:before {
  background-color: #000;
  content: "";
  height: 100%;
  left: -120%;
  opacity: 0.1;
  position: absolute;
  top: 0;
  transform: skewX(25deg);
  -o-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  -webkit-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  width: 100%;
  z-index: -1;
}
.why-us .whyus-wrap a:after {
  background-color: #000;
  content: "";
  height: 100%;
  left: -120%;
  opacity: 0.1;
  position: absolute;
  top: 0;
  transform: skewX(25deg);
  -o-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  -webkit-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  width: 100%;
  z-index: -1;
}
.why-us .whyus-wrap a:hover:before {
  left: -10%;
  transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
}
.why-us .whyus-wrap a:hover:after {
  left: -20%;
}
.why-us .counter-sec {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  height: 100%;
}
.why-us .counter-sec .banner-card {
  grid-area: 1/1/2/2;
  text-align: center;
  position: relative;
  border: none;
  padding: 10px;
  overflow: hidden;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: none;
  border-top: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-us .counter-sec .banner-card:nth-child(2) {
  grid-area: 1/2/2/3;
  border-right: none;
}
.why-us .counter-sec .banner-card:nth-child(3) {
  grid-area: 2/1/3/2;
  border-bottom: none;
}
.why-us .counter-sec .banner-card:nth-child(4) {
  grid-area: 2/2/3/3;
  border-bottom: none;
  border-right: none;
}
.why-us .counter-sec .banner-card .icon-wrap {
  margin: 0 0 10px 0;
}
.why-us .counter-sec .banner-card .icon-wrap span {
  font-size: 72px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  color: rgba(45, 134, 89, 0.7);
  border-radius: 10px;
}
.why-us .counter-sec .banner-card .counter {
  font-size: 18px;
  color: #eee;
  font-weight: 500;
}
.why-us .counter-sec .banner-card .counter span {
  display: block;
  font-size: 28px;
}

/*gallery*/
.pictures-wrap {
  padding: 100px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.pictures-wrap .container {
  position: relative;
}
.pictures-wrap .picture-card {
  position: relative;
  overflow: hidden;
  margin: 0 0 30px 0;
  border-radius: 10px;
}
.pictures-wrap .picture-card .img-wrap {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.pictures-wrap .picture-card .img-wrap figure {
  border-bottom: 0;
  padding-top: 100%;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.pictures-wrap .picture-card .img-wrap figure:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
  opacity: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.7);
}
.pictures-wrap .picture-card .img-wrap figure img {
  transform: scale(1);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}
.pictures-wrap .picture-card .img-wrap .pic-title {
  background-color: rgba(45, 134, 89, 0.7);
  transition: 0.4s ease-in-out;
  padding: 20px 10px;
  color: #eee;
  text-align: left;
  text-transform: capitalize;
  border-radius: 0;
  text-align: center;
  display: flex;
  min-height: 98px;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.pictures-wrap .picture-card .img-wrap .pic-title strong {
  font-size: 1.2rem;
}
.pictures-wrap .picture-card:hover figure:before {
  opacity: 1;
}
.pictures-wrap .picture-card:hover figure img {
  transform: scale(1.2) rotate(5deg);
}
.pictures-wrap .picture-card:hover .pic-title {
  min-height: 50px;
}
.pictures-wrap .picture-card .pic-dtls {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  transition: 0.6s ease-in-out;
  opacity: 0;
}
.pictures-wrap .picture-card .pic-dtls a {
  width: 70px;
  height: 70px;
  line-height: 70px;
  padding: 0;
  text-align: center;
  margin: 0;
  display: inline-block;
  letter-spacing: initial;
  background: #2d8659;
  opacity: 0.5;
  font-size: 14px;
  border-radius: 10px;
  color: #fff;
  box-shadow: -5px -5px 15px 5px rgba(0, 0, 0, 0.5);
}
.pictures-wrap .picture-card .pic-dtls a:hover {
  opacity: 1;
  color: #333333;
}
.pictures-wrap .picture-card:hover .pic-dtls {
  opacity: 1;
}
.pictures-wrap .v-more {
  text-align: center;
  border-top: 1px solid #999;
  margin: 50px 0 0 0;
}
.pictures-wrap .v-more a {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: #333333;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 20px 30px;
  border-radius: 10px;
  display: inline-block;
  border: 1px solid #2d8659;
  margin-top: -30px;
}
.pictures-wrap .v-more a span {
  vertical-align: middle;
}
.pictures-wrap .v-more a:before {
  background-color: #000;
  content: "";
  height: 100%;
  left: -120%;
  opacity: 0.1;
  position: absolute;
  top: 0;
  transform: skewX(25deg);
  -o-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  -webkit-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  width: 100%;
  z-index: -1;
}
.pictures-wrap .v-more a:after {
  background-color: #000;
  content: "";
  height: 100%;
  left: -120%;
  opacity: 0.1;
  position: absolute;
  top: 0;
  transform: skewX(25deg);
  -o-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  -webkit-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  width: 100%;
  z-index: -1;
}
.pictures-wrap .v-more a:hover:before {
  left: -10%;
  transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
}
.pictures-wrap .v-more a:hover:after {
  left: -20%;
}

/*features*/
.features {
  padding: 100px 0 50px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.features .headings {
  margin: 0 0 80px 0;
}
.features .feat-card {
  position: relative;
  margin: 0 30px 50px 0;
}
.features .feat-card .img-wrap {
  position: relative;
}
.features .feat-card .img-wrap figure {
  border-radius: 20px;
  overflow: hidden;
}
.features .feat-card .img-wrap .icon-wrap {
  position: absolute;
  top: -25px;
  right: -25px;
}
.features .feat-card .img-wrap .icon-wrap span {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 34px;
  background-color: #2d8659;
  text-align: center;
  border-radius: 50%;
  color: #fff;
}
.features .feat-card .feat-dtl {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(20, 146, 194, 0.4);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}
.features .feat-card .feat-dtl h4 a {
  color: #fff;
  display: block;
  background-color: rgba(51, 51, 51, 0.7);
  padding: 10px 20px;
  border-radius: 50px;
  text-align: center;
}
.features .feat-card .feat-dtl h4 a:hover {
  background-color: #333333;
  color: #2d8659;
}

/*testimonials*/
.testimonials {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  position: relative;
}
.testimonials:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(196, 148, 46, 0.5);
  z-index: 0;
  right: 0;
  left: 0;
  bottom: 0;
  top: 0;
}
.testimonials .headings h3 {
  color: #fff;
}
.testimonials .headings span {
  background-color: #fff;
}
.testimonials .container {
  position: relative;
  z-index: 2;
}
.testimonials .testi-main .testi-card {
  background-color: rgba(225, 225, 225, 0.5);
  padding: 10px 10px 20px 10px;
  margin: 0 0 40px 0;
  position: relative;
  transition: 0.4s ease-in-out;
  text-align: left;
  border: 1px solid #eee;
  margin: 0 15px;
  border-radius: 10px;
}
.testimonials .testi-main .testi-card q {
  color: #111;
  display: block;
  text-align: left;
  font-style: italic;
  border-radius: 4px;
  padding: 10px 20px;
  margin: 0 0 20px 0;
}
.testimonials .testi-main .testi-card .i-wrap {
  margin: 0 0 20px 0;
  position: absolute;
  left: 30px;
  bottom: 5px;
}
.testimonials .testi-main .testi-card .i-wrap i {
  font-size: 82px;
  text-align: center;
  opacity: 0.4;
  color: #2d8659;
  transform: scale(-1);
}
.testimonials .testi-main .testi-card .testi-profile {
  margin: 0 0 30px 0;
  padding: 10px 10px 10px 30px;
  position: relative;
}
.testimonials .testi-main .testi-card .testi-profile .testi-dtl {
  position: relative;
  text-align: right;
}
.testimonials .testi-main .testi-card .testi-profile .testi-dtl strong {
  color: #555;
  font-size: 22px;
  display: block;
  border-radius: 4px;
  font-weight: 600;
  text-transform: capitalize;
}
.testimonials .testi-main .testi-card .testi-profile .testi-dtl small {
  color: #333333;
  display: block;
  text-transform: uppercase;
  font-size: 12px;
}
.testimonials .testi-main .testi-card .img-wrap {
  background: #ffffff;
  padding: 2px;
  border-radius: 10px;
  margin: 0 auto;
  display: inline-block;
  box-shadow: inset 0px 0px 5px 0px #2d8659;
}
.testimonials .testi-main .testi-card .img-wrap figure {
  padding-top: 80px;
  width: 80px;
}
.testimonials .testi-main .owl-dots {
  text-align: center;
}
.testimonials .testi-main .owl-dots .owl-dot span {
  border-radius: 0;
  margin: 0 10px 0 0;
  opacity: 0.3;
  width: 15px;
  height: 10px;
  border-radius: 10px;
  background: #999;
}
.testimonials .testi-main .owl-dots .owl-dot.active span {
  background: #2d8659;
  opacity: 1;
}

/*blogs*/
.blogs {
  padding: 100px 0 70px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.blogs .container {
  position: relative;
}
.blogs .blog-card {
  margin: 0 0 30px 0;
}
.blogs .blog-card .img-wrap figure {
  padding-top: 100%;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.blogs .blog-card .blog-dtl {
  position: relative;
  padding: 20px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.08);
  text-align: center;
}
.blogs .blog-card .blog-dtl .b-date {
  text-align: left;
  padding: 0 0 0 50px;
  position: relative;
  font-size: 18px;
  margin: 0 0 20px 0;
}
.blogs .blog-card .blog-dtl .b-date:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translatey(-50%);
  height: 2px;
  width: 40px;
  background-color: #2d8659;
}
.blogs .blog-card .blog-dtl h4 {
  display: block;
  font-size: 1.6rem;
  line-height: 34px;
  padding: 0 0 10px 0;
  text-align: center;
}
.blogs .blog-card .blog-dtl h4 a {
  color: #111;
  display: block;
}
.blogs .blog-card .blog-dtl h4 a:hover {
  color: #2d8659;
}
.blogs .blog-card .blog-dtl p {
  margin: 0 0 30px 0;
}
.blogs .blog-card .blog-dtl .r-more {
  text-align: right;
}
.blogs .blog-card .blog-dtl .r-more a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0 50px 0 0;
  color: #2d8659;
  position: relative;
}
.blogs .blog-card .blog-dtl .r-more a:hover {
  color: #333333;
}
.blogs .blog-card .blog-dtl .r-more a:before {
  content: "";
  transition: 0.4s ease-in-out;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translatey(-50%);
  height: 2px;
  width: 40px;
  background-color: #2d8659;
}
.blogs .blog-card .blog-dtl .r-more a:hover:before {
  right: -5px;
}

.blogs.sngl .blog-card {
  text-align: left;
}
.blogs.sngl .blog-card .blog-dtl {
  text-align: left;
}
.blogs.sngl .blog-card .blog-dtl h4 {
  text-align: left;
}

/*float shapes*/
.stone-flow {
  height: 200px;
  width: 200px;
  position: absolute;
  left: 50px;
  top: -50px;
  background-image: url(../images/stone-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  animation: float-bob-x 5s infinite;
}

.leaf-float {
  height: 400px;
  width: 300px;
  position: absolute;
  right: 0;
  top: 0;
  background-image: url(../images/leaf-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  z-index: 0;
  animation: float-bob-y 5s infinite;
}

/*modal form*/
#quoteModal .modal-dialog .modal-header {
  background-color: #2d8659;
}
#quoteModal .modal-dialog .modal-header h5 {
  color: #fff;
}
#quoteModal .modal-dialog .modal-content {
  background-color: #333;
}
#quoteModal .form-wrap form .form-control,
#quoteModal .form-wrap form .form-select {
  line-height: 40px;
  border: none;
  border-bottom: 1px solid #999;
  border-radius: 10px;
  color: #fff;
}
#quoteModal .form-wrap form .form-control::-moz-placeholder, #quoteModal .form-wrap form .form-select::-moz-placeholder {
  color: #fff;
}
#quoteModal .form-wrap form .form-control::placeholder,
#quoteModal .form-wrap form .form-select::placeholder {
  color: #fff;
}
#quoteModal .form-wrap form .form-select option {
  color: #111;
}
#quoteModal .form-wrap form .btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: #333333;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 20px 30px;
  border-radius: 10px;
  display: inline-block;
  border: 1px solid #2d8659;
}
#quoteModal .form-wrap form .btn span {
  vertical-align: middle;
}
#quoteModal .form-wrap form .btn:before {
  background-color: #000;
  content: "";
  height: 100%;
  left: -120%;
  opacity: 0.1;
  position: absolute;
  top: 0;
  transform: skewX(25deg);
  -o-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  -webkit-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  width: 100%;
  z-index: -1;
}
#quoteModal .form-wrap form .btn:after {
  background-color: #000;
  content: "";
  height: 100%;
  left: -120%;
  opacity: 0.1;
  position: absolute;
  top: 0;
  transform: skewX(25deg);
  -o-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  -webkit-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  width: 100%;
  z-index: -1;
}
#quoteModal .form-wrap form .btn:hover:before {
  left: -10%;
  transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
}
#quoteModal .form-wrap form .btn:hover:after {
  left: -20%;
}

/*footer*/
footer {
  padding: 40px 0 0 0;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  position: relative;
}
footer:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.85);
}
footer .container {
  position: relative;
}
footer .social-bar {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: center;
}
footer .social-bar li {
  display: flex;
  gap: 10px;
  justify-content: center;
}
footer .social-bar li a i {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  transition: 0.4s ease-in-out;
  background-color: #2d8659;
}
footer .social-bar li a:hover i {
  background-color: #333333;
  color: #fff;
}
footer .f-logo {
  margin: 0;
  text-align: center;
  border-radius: 0;
  margin: 0 0 20px 0;
}
footer .f-logo img {
  max-width: 130px;
}
footer .foot-wrap h4 {
  position: relative;
  margin: 0 0 30px 0;
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
}
footer .foot-wrap h4 span {
  color: #fff;
  position: relative;
}
footer .foot-wrap .foot-list {
  list-style: none;
  padding: 0;
  position: relative;
}
footer .foot-wrap .foot-list li {
  margin: 0 0 20px 0;
  padding: 0 0 0 25px;
  position: relative;
}
footer .foot-wrap .foot-list li:before {
  content: "\f192";
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.4s ease-in-out;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #2d8659;
}
footer .foot-wrap .foot-list li:last-of-type {
  border: none;
}
footer .foot-wrap .foot-list li:nth-last-child(2) {
  border: none;
}
footer .foot-wrap .foot-list li:hover:before {
  left: 5px;
}
footer .foot-wrap .foot-list li a {
  color: #eee;
  text-transform: capitalize;
  font-weight: 500;
}
footer .foot-wrap .foot-list li a:hover {
  color: #2d8659;
}
footer .foot-wrap .list-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
footer .foot-wrap .list-flex li {
  width: 48%;
  border-bottom: 1px dotted #999;
  padding-bottom: 10px;
}
footer .foot-wrap .foot-contact {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 0;
  flex-direction: column;
  flex-shrink: 0;
}
footer .foot-wrap .foot-contact li {
  margin: 0 0 5px 0;
  width: 100%;
}
footer .foot-wrap .foot-contact li:last-child {
  border: none;
}
footer .foot-wrap .foot-contact li a {
  color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  line-break: loose;
  font-weight: 500;
  font-size: 20px;
}
footer .foot-wrap .foot-contact li a span {
  font-size: 24px;
  line-height: 1;
  margin-top: 5px;
}
footer .foot-wrap .foot-contact li a strong {
  margin: 0 5px 0 0;
  color: #2d8659;
}
footer .foot-wrap .foot-contact li a:hover {
  color: #2d8659;
}
footer .copy-r {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(2px);
  margin: 50px 0 0 0;
}
footer .copy-r .copy-contn {
  justify-content: space-between;
  display: flex;
  color: #fff;
}
footer .copy-r .copy-contn strong {
  font-weight: 500;
}
footer .copy-r .copy-contn a {
  color: #2d8659;
  font-weight: 500;
}
footer .copy-r .copy-contn a:hover {
  color: #fff;
}

.scrollTop {
  position: fixed;
  right: 4%;
  bottom: 60px;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
  z-index: 9;
  color: #fff;
}
.scrollTop:hover {
  bottom: 85px;
}
.scrollTop span {
  color: #fff;
  background-color: #333333;
  height: 40px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  border-radius: 10px;
  transition: 0.4s ease-in-out;
  font-size: 20px;
}

/*service single page*/
.serv-single {
  padding: 50px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}
.serv-single .book-btn {
  text-align: center;
  margin: 30px 0;
}
.serv-single .book-btn a {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: inline-block;
  border: none;
  text-transform: capitalize;
  text-align: center;
  background-color: #333333;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 20px 30px;
  border-radius: 60px;
  display: inline-block;
}
.serv-single .book-btn a span {
  vertical-align: middle;
}
.serv-single .book-btn a:hover {
  box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.5);
}
.serv-single .single-contn h2 {
  padding: 0 0 10px 0;
  border-bottom: 3px solid #2d8659;
}

.sngle:before {
  background-color: #2d8659;
}
.sngle .contact-form {
  padding: 50px;
}
.sngle .contact-form h3 {
  padding: 10px;
  color: #fff;
  margin: 0 0 20px 0;
  border-radius: 20px;
  font-size: 24px;
}
.sngle .contact-form .form-wrap form .form-control,
.sngle .contact-form .form-wrap form .form-select {
  line-height: 40px;
  border: none;
  border-bottom: 1px solid #333;
  border-radius: 0;
  color: #fff;
}
.sngle .contact-form .form-wrap form .form-control::-moz-placeholder, .sngle .contact-form .form-wrap form .form-select::-moz-placeholder {
  color: #fff;
}
.sngle .contact-form .form-wrap form .form-control::placeholder,
.sngle .contact-form .form-wrap form .form-select::placeholder {
  color: #fff;
}
.sngle .contact-form .form-wrap form .form-select option {
  color: #111;
}
.sngle .contact-form .form-wrap form .btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: #333333;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 20px 30px;
  border-radius: 10px;
  display: inline-block;
  border: 1px solid #2d8659;
}
.sngle .contact-form .form-wrap form .btn span {
  vertical-align: middle;
}
.sngle .contact-form .form-wrap form .btn:before {
  background-color: #000;
  content: "";
  height: 100%;
  left: -120%;
  opacity: 0.1;
  position: absolute;
  top: 0;
  transform: skewX(25deg);
  -o-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  -webkit-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  width: 100%;
  z-index: -1;
}
.sngle .contact-form .form-wrap form .btn:after {
  background-color: #000;
  content: "";
  height: 100%;
  left: -120%;
  opacity: 0.1;
  position: absolute;
  top: 0;
  transform: skewX(25deg);
  -o-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  -webkit-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  width: 100%;
  z-index: -1;
}
.sngle .contact-form .form-wrap form .btn:hover:before {
  left: -10%;
  transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
}
.sngle .contact-form .form-wrap form .btn:hover:after {
  left: -20%;
}

/*our team page*/
.team-wrap {
  padding: 50px 0 0 0;
}
.team-wrap .team-card {
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
  margin: 0 0 50px 0;
  background-color: #2d8659;
  align-items: center;
  border-radius: 10px;
  display: flex;
}
.team-wrap .team-card .img-wrap figure {
  width: 150px;
  padding-top: 150px;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
  margin: 0 10px 0 0;
}
.team-wrap .team-card .team-dtl {
  flex: 1;
  text-align: left;
  border-radius: 0 10px 10px 0;
}
.team-wrap .team-card .team-dtl strong {
  color: #000;
  text-transform: uppercase;
  font-size: 18px;
  display: block;
}
.team-wrap .team-card .team-dtl small {
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 5px 0;
  font-size: 12px;
  letter-spacing: 2px;
  color: #fff;
}
.team-wrap .team-card .team-dtl .team-contact {
  position: relative;
  list-style: none;
  padding: 15px 0 0 0;
  margin: 0;
  text-align: left;
}
.team-wrap .team-card .team-dtl .team-contact li {
  display: inline-block;
  text-align: center;
}
.team-wrap .team-card .team-dtl .team-contact li a {
  display: inline-block;
  text-align: center;
}
.team-wrap .team-card .team-dtl .team-contact li a i {
  font-size: 14px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0 5px 0 0;
  color: #eee;
  transition: 0.4s ease-in-out;
  background-color: #333333;
  border-radius: 10px;
}
.team-wrap .team-card .team-dtl .team-contact li a:hover i {
  background-color: #2d8659;
  color: #fff;
}

/*working areas*/
.sngl .container {
  position: relative;
  z-index: 2;
}
.sngl .wa-card {
  margin: 0 0 30px 0;
}
.sngl .wa-card .wa-dtl {
  padding: 20px 0 0 20px;
}
.sngl .wa-card .wa-dtl ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sngl .wa-card .wa-dtl ul li {
  display: block;
}
.sngl .wa-card .wa-dtl ul li a {
  color: #333333;
  font-weight: 600;
}
.sngl .wa-card .wa-dtl ul li a:hover {
  color: #2d8659;
}
.sngl .wa-card .wa-dtl ul li a span {
  vertical-align: middle;
}

/*review page*/
.sngl .testi-main .testi-card {
  margin: 0 0 30px 0;
}
.sngl .testi-main .page-link {
  border-color: #eee !important;
  color: #eee !important;
}

/*pricing and packages*/
.pricing {
  padding: 50px 0 20px 0;
}
.pricing .price-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  display: flex;
  gap: 15px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
  padding: 5px;
  align-items: center;
  margin: 0 0 30px 0;
}
.pricing .price-card .img-wrap figure {
  width: 130px;
  padding-top: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.pricing .price-card .pckg-dtl {
  flex: 1;
}
.pricing .price-card .pckg-price {
  text-align: center;
}
.pricing .price-card .pckg-price strong {
  font-size: 32px;
  color: #2d8659;
  display: block;
}
.pricing .price-card .pckg-price a {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: #333333;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
  border: 1px solid #2d8659;
}
.pricing .price-card .pckg-price a span {
  vertical-align: middle;
}
.pricing .price-card .pckg-price a:before {
  background-color: #2d8659;
  content: "";
  height: 100%;
  left: -120%;
  opacity: 0.5;
  position: absolute;
  top: 0;
  transform: skewX(25deg);
  -o-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  -webkit-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  width: 100%;
  z-index: -1;
}
.pricing .price-card .pckg-price a:after {
  background-color: #000;
  content: "";
  height: 100%;
  left: -120%;
  opacity: 0.1;
  position: absolute;
  top: 0;
  transform: skewX(25deg);
  -o-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  -webkit-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  width: 100%;
  z-index: -1;
}
.pricing .price-card .pckg-price a:hover:before {
  left: -10%;
  transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
}
.pricing .price-card .pckg-price a:hover:after {
  left: -20%;
}

/*faqs page*/
.faq-body {
  padding: 50px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.faq-body .container {
  position: relative;
}
.faq-body .container .card {
  border: none;
  margin: 0 0 20px 0;
  background: none;
}
.faq-body .container .card .card-header {
  background: #2d8659;
  border: none;
  border-bottom: 1px solid #fff;
  padding: 15px;
  color: #fff;
}
.faq-body .container .card .card-header .mb-0 > a {
  display: block;
  position: relative;
  font-size: 18px;
  color: #fff;
}
.faq-body .container .card .card-header .mb-0 > a:after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  right: 0;
  font-weight: 600;
  color: #fff;
}
.faq-body .container .card .card-header .mb-0 > a[aria-expanded=true]:after {
  content: "\f068";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
}
.faq-body .container .card .card-body {
  background: #eee;
  color: #111;
  font-size: 18px;
  line-height: 26px;
  padding: 20px;
  border-radius: 10px;
}
.faq-body .container .card .card-body ul {
  margin: 0 0 20px 0;
}

/*contact us page*/
.contact-body {
  padding: 50px 0 20px 0;
}
.contact-body .contact-dtl {
  padding: 0;
  margin: 0 0 30px 0;
}
.contact-body .contact-dtl h3 {
  background-color: #333333;
  padding: 10px;
  color: #2d8659;
  margin: 0 0 15px 0;
}
.contact-body .contact-dtl .contact-list {
  list-style: none;
  padding: 0;
}
.contact-body .contact-dtl .contact-list li {
  margin: 0 0 20px 0;
}
.contact-body .contact-dtl .contact-list li a {
  font-size: 18px;
  font-weight: 600;
}
.contact-body .contact-dtl .contact-list li a:hover {
  color: #2d8659;
}
.contact-body .contact-dtl .contact-list li a span {
  margin: 0 10px 0 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background-color: #2d8659;
}
.contact-body .map-wrap {
  margin: 0 0 30px 0;
}

.contact-section {
  background-color: #222;
  position: relative;
}
.contact-section:before {
  content: "";
  position: absolute;
  left: 50%;
  right: 0;
  bottom: 0;
  top: 0;
  background-image: url(../images/leaf-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  opacity: 0.5;
}
.contact-section .container {
  position: relative;
}
.contact-section .contact-form {
  padding: 40px;
}
.contact-section .contact-form h3 {
  color: #fff;
  margin: 0 0 20px 0;
}
.contact-section .contact-form .form-wrap form .form-control,
.contact-section .contact-form .form-wrap form .form-select {
  line-height: 40px;
  border: none;
  border: 1px solid #777;
  border-radius: 10px;
  color: #fff;
}
.contact-section .contact-form .form-wrap form .form-control::-moz-placeholder, .contact-section .contact-form .form-wrap form .form-select::-moz-placeholder {
  color: #fff;
}
.contact-section .contact-form .form-wrap form .form-control::placeholder,
.contact-section .contact-form .form-wrap form .form-select::placeholder {
  color: #fff;
}
.contact-section .contact-form .form-wrap form .form-select option {
  color: #111;
}
.contact-section .contact-form .form-wrap form .btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: #333333;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
  border: 1px solid #2d8659;
}
.contact-section .contact-form .form-wrap form .btn span {
  vertical-align: middle;
}
.contact-section .contact-form .form-wrap form .btn:before {
  background-color: #2d8659;
  content: "";
  height: 100%;
  left: -120%;
  opacity: 0.5;
  position: absolute;
  top: 0;
  transform: skewX(25deg);
  -o-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  -webkit-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  width: 100%;
  z-index: -1;
}
.contact-section .contact-form .form-wrap form .btn:after {
  background-color: #000;
  content: "";
  height: 100%;
  left: -120%;
  opacity: 0.1;
  position: absolute;
  top: 0;
  transform: skewX(25deg);
  -o-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  -webkit-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  width: 100%;
  z-index: -1;
}
.contact-section .contact-form .form-wrap form .btn:hover:before {
  left: -10%;
  transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
}
.contact-section .contact-form .form-wrap form .btn:hover:after {
  left: -20%;
}

/*about page*/
.welcome-sec {
  padding: 50px 0;
}
.welcome-sec .welcome-wrap {
  padding: 0 0 30px 0;
}
.welcome-sec .welcome-wrap h2 {
  color: #2d8659;
  font-weight: 700;
}
.welcome-sec .welcome-wrap h2 small {
  display: block;
  font-size: 16px;
  text-transform: uppercase;
  color: #333333;
  margin: 0 0 10px 0;
}
.welcome-sec .welcome-wrap p {
  margin: 0 0 20px 0;
}
.welcome-sec .welcome-wrap a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 15px;
  border: 1px solid #2d8659;
  color: #2d8659;
  position: relative;
  z-index: 0;
  background-color: #2d8659;
  color: #fff;
  text-align: center;
}
.welcome-sec .welcome-wrap a span {
  vertical-align: middle;
  margin: 0 5px 0 0;
}
.welcome-sec .welcome-wrap a:before {
  transition: all 0.5s ease;
  position: absolute;
  border-radius: 5px;
  top: -1px;
  left: 50%;
  right: 50%;
  bottom: -1px;
  opacity: 0;
  content: "";
  background-color: #333333;
  z-index: -1;
}
.welcome-sec .welcome-wrap a:hover:before {
  transition: all 0.5s ease;
  left: -1px;
  right: -1px;
  opacity: 1;
}
.welcome-sec .welcome-wrap a:hover {
  color: #fff;
}

.form-wrap h3 {
  color: #2d8659;
  position: relative;
  display: inline-block;
  padding: 0 100px 0 0;
  text-transform: capitalize;
  margin: 0 0 20px 0;
  font-size: 2.6rem;
}
.form-wrap form h4 {
  color: #999;
  font-size: 14px;
  text-transform: capitalize;
}
.form-wrap form .form-control,
.form-wrap form .form-select {
  margin: 0 0 20px 0;
  border-radius: 4px;
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.3);
  color: #777;
}
.form-wrap form .form-control::-moz-placeholder, .form-wrap form .form-select::-moz-placeholder {
  color: #777;
}
.form-wrap form .form-control::placeholder,
.form-wrap form .form-select::placeholder {
  color: #777;
}
.form-wrap form .form-control:focus,
.form-wrap form .form-select:focus {
  border-color: #2d8659;
  box-shadow: none;
}
.form-wrap form textarea {
  width: 100%;
  margin: 0 0 20px 0;
  border-radius: 4px;
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.3);
  color: #777;
  padding: 5px;
}
.form-wrap form textarea::-moz-placeholder {
  color: #777;
}
.form-wrap form textarea::placeholder {
  color: #777;
}
.form-wrap form .btn {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 15px;
  border: 1px solid #2d8659;
  color: #2d8659;
  position: relative;
  z-index: 0;
  background-color: #2d8659;
  color: #fff;
  text-align: center;
}
.form-wrap form .btn span {
  vertical-align: middle;
  margin: 0 5px 0 0;
}
.form-wrap form .btn:before {
  transition: all 0.5s ease;
  position: absolute;
  border-radius: 5px;
  top: -1px;
  left: 50%;
  right: 50%;
  bottom: -1px;
  opacity: 0;
  content: "";
  background-color: #333333;
  z-index: -1;
}
.form-wrap form .btn:hover:before {
  transition: all 0.5s ease;
  left: -1px;
  right: -1px;
  opacity: 1;
}
.form-wrap form .btn:hover {
  color: #fff;
}

/*about page*/
.page-banner {
  padding: 100px 0;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.page-banner:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  /*background-color: rgba(0, 0, 0, 0.8);*/
}
.page-banner .container {
  position: relative;
}
.page-banner .container .banr-wrap {
  text-align: center;
}
.page-banner .container .banr-wrap h2 {
  display: block;
  position: relative;
  padding: 10px 20px;
  margin: 0;
  color: #fff;
}
.page-banner .container .banr-wrap span {
  display: inline-block;
  text-align: center;
  position: relative;
  /*transform: scaleX(-1);*/
  color: #eee;
}
.page-banner .container .banr-wrap span:before {
  content: "";
  width: 40px;
  height: 1px;
  background: #2d8659;
  position: absolute;
  bottom: 0;
  transform: translatex(-50%);
  left: 50%;
}

.pgnation .pagination {
  justify-content: center;
}
.pgnation .pagination .page-item .page-link {
  margin: 5px;
  border-color: #2d8659;
  color: #fff;
  background-color: transparent;
  width: 40px;
  height: 40px;
  line-height: 38px;
  padding: 0;
  text-align: center;
  color: #2d8659;
  border-radius: 5px;
}
.pgnation .pagination .page-item .page-link:hover {
  background: #333333;
  border-color: #333333;
  color: #fff;
}
.pgnation .pagination .page-item.active .page-link {
  background: #333333;
  border-color: #333333;
  color: #fff;
}

/*contact us*/
.contact-body {
  padding: 50px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-position: center;
  position: relative;
}
.contact-body:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.8);
}
.contact-body .container {
  position: relative;
}
.contact-body .ft-card {
  align-items: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
  display: flex;
  padding: 0 10px 10px 10px;
  flex-direction: column;
  min-height: 142px;
  background-color: #eee;
  border-radius: 5px;
  justify-content: flex-start;
  border-top: 5px solid #333333;
}
.contact-body .ft-card .icon-wrap {
  display: block;
  margin-top: -30px;
  margin-bottom: 20px;
}
.contact-body .ft-card .icon-wrap span {
  color: #fff;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 34px;
  background-color: #333333;
  border-radius: 5px;
}
.contact-body .ft-card .ft-dtl {
  text-align: left;
}
.contact-body .ft-card .ft-dtl strong {
  text-transform: capitalize;
  color: #111;
  font-size: 16px;
  display: block;
}
.contact-body .ft-card .ft-dtl small {
  font-weight: 500;
  color: #b22b2c;
  font-size: 18px;
}
.contact-body .ft-card .ft-dtl small a {
  font-weight: 500;
  color: #b22b2c;
}
.contact-body .ft-card .ft-dtl small a:hover {
  color: #2d8659;
}

.sub-contact {
  padding: 50px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: rgba(20, 69, 47, 0.1);
}
.sub-contact .headings {
  text-align: left;
  margin: 0 0 10px 0;
}
.sub-contact .form-wrap {
  padding: 50px 20px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 6px 1px rgba(42, 124, 66, 0.5);
}
.sub-contact .form-wrap .f-headings h3 {
  font-size: 20px;
  display: block;
  border-bottom: 1px solid #fff;
  padding: 0 0 10px 0;
  font-weight: 700;
}
.sub-contact .form-wrap h4 {
  color: #2d8659;
}
.sub-contact .form-wrap .btn {
  border-radius: 5px;
}
.sub-contact .map-wrap {
  overflow: hidden;
}

.fixed-top {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 1040;
  animation: slideInDown 1s linear;
  background-color: rgba(45, 134, 89, 0.7);
}

header .main-head.fixed-top .logo-wrap img {
  width: 80px;
}

.main-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 999999;
  top: 0;
  background-color: #ffffff;
}
.main-loader .logo-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.main-loader .logo-wrap img {
  width: 150px;
}/*# sourceMappingURL=custom.css.map */


.signature-features {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* nice parallax feel */
    padding: 100px 0;
    color: #fff;
}

/* Dark transparent overlay */
.signature-features .feature-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* adjust darkness */
    z-index: 1;
}

/* Content above overlay */
.signature-features .container {
    position: relative;
    z-index: 2;
}

/* Cards */
.sig-feature-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.sig-feature-card h4 {
    color: #1a5c3f;
}

.sig-feature-card p {
    color: #444;
}


.serv-card.new-style {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.serv-card.new-style img {
	width: 100%;
	height: 280px;
	object-fit: cover;
}

.serv-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 120px; /* ðŸ”‘ important */
    padding: 25px;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.6) 60%,
        rgba(0,0,0,0.2) 100%
    );

    color: #fff;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* ðŸ”‘ keeps content at bottom */
    gap: 10px;
}


.serv-title {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
    max-height: 2.6em; /* 2 lines fallback */

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.serv-title a {
    color: #fff;
    text-decoration: none;
}

.serv-title a:hover {
    text-decoration: underline;
}

.serv-text {
	font-size: 14px;
	line-height: 1.6;
	opacity: 0.9;
	margin-bottom: 15px;
}

.serv-btn {
	display: inline-block;
	padding: 8px 18px;
	background: #fff;
	color: #000;
	border-radius: 30px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: 0.3s ease;
}

.serv-btn:hover {
	background: #f4c430;
	color: #000;
}

.highlights .high-card strong {
    display: block;
    font-size: 20px;
    padding: 12px;
    border-radius: 0 0 10px 10px;
    text-align: center;
    background: linear-gradient(to top, #1a5c3f 0%, #1a5c3f 60%, rgba(0, 0, 0, 0.2) 100%);
    color: #ffffff;
}


.highlights .high-card strong {
    backdrop-filter: blur(3px);
    letter-spacing: 0.3px;
    font-weight: 600;
}

/* Base */
.signature-section {
    max-width: 1280px;
    margin: auto;
    padding: 120px 24px;
    font-family: "Inter", sans-serif;
    color: #2d342e;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #8ba88e;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 56px;
    line-height: 1.1;
}

.section-title span {
    font-style: italic;
    color: #8ba88e;
}

/* Grid */
.content-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 80px;
    align-items: center;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Cards */
.feature-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: all .3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

.feature-card.accent {
    background:#f7f3f0;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.feature-card.accent:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.feature-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    margin: 12px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: .8;
}

.material-symbols-outlined {
    font-size: 40px;
    color: #8ba88e;
}

/* Image Column */
.image-column {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.image-glow {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 260px;
    height: 260px;
    background: rgba(139,168,142,.2);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}

.organic-frame {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4 / 5;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 40%;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,.25);
}

.organic-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Badge */
.cert-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
    display: flex;
    gap: 12px;
    align-items: center;
}

.cert-icon {
    background: #c5d8c1;
    padding: 10px;
    border-radius: 10px;
}

/* CTA */
.cta-wrap {
    text-align: center;
    margin-top: 80px;
}

.cta-btn {
    background: #c5d8c1;
    color: #2d342e;
    padding: 16px 48px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
}

.cta-btn:hover {
    background: #8ba88e;
    transform: scale(1.05);
}

@media (max-width: 1024px) {

    .content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .image-column {
        justify-content: center;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 44px;
    }
}


/* ============================= */
/* MOBILE (â‰¤ 768px) */
/* ============================= */
@media (max-width: 768px) {

    .signature-section {
        padding: 80px 20px;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-title br {
        display: none;
    }

    .card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 26px;
    }

    .feature-card h3 {
        font-size: 16px;
    }

    .feature-card p {
        font-size: 14px;
    }

    .image-column {
        order: -1;
        justify-content: center;
    }

    .organic-frame {
        max-width: 320px;
    }

    .cert-badge {
        display: none;
    }

    .cta-wrap {
        margin-top: 60px;
    }

    .cta-btn {
        width: 100%;
        max-width: 320px;
    }
}


/* ============================= */
/* SMALL MOBILE (â‰¤ 480px) */
/* ============================= */
@media (max-width: 480px) {

    .section-title {
        font-size: 30px;
    }

    .section-badge {
        flex-direction: column;
        gap: 4px;
    }

    .material-symbols-outlined {
        font-size: 34px;
    }

    .feature-card {
        padding: 22px;
    }
}

/* SECTION */
.about.abt {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    color: #1f3d35;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
            rgba(244, 247, 243, 0.85),
            rgba(238, 243, 238, 0.85)
        ),
        url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* CONTAINER */
.about-container {
    /* max-width: 1400px; */
    margin: auto;
    padding: 0 24px;
}

/* GRID : col-8 / col-12 */
.about-hero-grid {
    display: grid;
    grid-template-columns: 12fr 8fr;
    gap: 80px;
    align-items: start;
}

/* LEFT */
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(61,78,54,0.08);
    border-radius: 30px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #7a8c70;
    margin-bottom: 20px;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* LEFT IMAGE */
.about-left-image {
    margin-top: 30px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.about-left-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

/* FOOTER */
.about-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.about-avatars {
    display: flex;
    align-items: center;
}

.about-avatars img,
.avatar-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -10px;
}

.avatar-icon {
    background: #7a8c70;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* RIGHT CARD */
.about-card {
    background: #fff;
    border-radius: 42px;
    overflow: hidden;
    box-shadow: 0 35px 70px rgba(0,0,0,0.08);
}

.about-card-image {
    position: relative;
    height: 420px;
}

.about-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-card-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
}

.tag {
    background: #A6894B;
    padding: 6px 14px;
    font-size: 10px;
    border-radius: 20px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
}

/* CARD BODY */
.about-card-body {
    padding: 45px;
}

.about-card-body blockquote {
    font-family: 'Playfair Display', serif;
    color: #A6894B;
    margin-bottom: 15px;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-weight: 700;
    color: #3D4E36;
    text-decoration: none;
}

/* CONTACT */
.about-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}

.about-contact div {
    display: flex;
    gap: 10px;
}

.about-contact small {
    font-size: 10px;
    letter-spacing: 2px;
    color: #999;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-title {
        font-size: 34px;
    }

    .about-left-image img {
        height: 260px;
    }
}

.contact-section-home {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* two columns */
    gap: 32px;
    /* border-top: 1px solid #e5e7eb; */
    padding-top: 40px;
}

/* CONTACT ITEM */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

/* ICON CIRCLE */
.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px; /* rounded-xl */
    background: rgba(61, 78, 54, 0.1); /* bg-primary/5 equivalent */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ICON COLOR */
.contact-icon span {
    font-size: 24px;
    color: #3D4E36; /* primary color */
}

/* TEXT INFO */
.contact-info {
    display: flex;
    flex-direction: column;
}

/* LABEL */
.contact-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #9ca3af; /* text-slate-400 */
    margin-bottom: 4px;
}

/* TEXT */
.contact-text {
    font-size: 14px; /* text-sm */
    font-weight: 600;
    color: #1f2937; /* text-slate-800 */
    margin: 0;
}

/* RESPONSIVE: single column on small screens */
@media (max-width: 640px) {
    .contact-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


.modern-highlights {
    background-size: cover;       /* makes the image cover the section */
    background-position: center;  /* centers the image */
    background-repeat: no-repeat; /* prevents tiling */
    width: 100%;                  /* full width */
    padding: 5rem 1.5rem;         /* adjust vertical spacing */
    position: relative;           /* for overlay if needed */
    color: #fff;                  /* text visible on background */
}

/* Optional: overlay to darken the background for better text readability */
.modern-highlights::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    
    z-index: 1;
}

.modern-highlights .container {
    position: relative; /* ensure content is above overlay */
    z-index: 2;
}

/* Heading dots */
.modern-highlights .dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.modern-highlights .dots span {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.modern-highlights .dots .dot-primary {
    background-color: #1e4d3b;
}

.modern-highlights .dots .dot-light {
    background-color: rgba(30,77,59,0.3);
}

/* Card */
.card-custom {
    background-color: #f8f9f8;
    border-radius: 1rem;
    border: 1px solid rgba(203,213,225,0.6);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* Card image */
.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Gradient bar */
.card-gradient-bar {
    background: linear-gradient(to bottom, #4a7c66 0%, #1e4d3b 100%);
    padding: 0.75rem 1rem;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

/* Card content */
.card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    padding: 1.25rem;
}

.card-text {
    font-size: 0.8rem;
    color: #4b5563;
    line-height: 1.4rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read More link */
.card-link {
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #1e4d3b;
    text-decoration: none;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.card-link:hover {
    text-decoration: underline;
}

/* Explore Button */
.btn-primary-custom {
    background-color: #1e4d3b;
    color: #fff;
    border-radius: 9999px;
    padding: 0.75rem 2.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.2s;
}

.btn-primary-custom:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.btn-primary-custom:active {
    transform: scale(0.95);
}

/* Responsive */
@media (max-width: 768px) {
    .card-image img {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .card-image img {
        height: 150px;
    }
}


/* ===============================
   TESTIMONIAL SECTION
================================ */
.testimonials {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 90px 0;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.testimonials .container {
  position: relative;
  z-index: 2;
}

/* headings */
.testimonials .headings h3 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 12px;
}

.testimonials .head-dots {
  width: 60px;
  height: 4px;
  background: #d4a373;
  display: inline-block;
  margin-bottom: 50px;
}

/* ===============================
   TESTI CARD
================================ */
.testimonials .testi-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 45px 30px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 25px 45px rgba(0,0,0,0.2);
}

/* avatar */
.testimonials .testi-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

/* name */
.testimonials .testi-card h5 {
  font-size: 18px;
  margin-bottom: 4px;
  color: #2d4635;
}

.testimonials .testi-card small {
  display: block;
  font-size: 13px;
  color: #777;
  margin-bottom: 20px;
}

/* text */
.testimonials .testi-text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.testimonials .testi-text i {
  color: #d4a373;
  margin-right: 6px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }

  .testimonials .testi-card {
    padding: 30px 20px;
  }

  .testimonials .testi-avatar {
    width: 90px;
    height: 90px;
  }
}


/* ===================================
   WHY US SECTION - Modern Healing Theme
   Scoped to .why-us only
   =================================== */

.why-us {
    --primary-color: #6da87c;       /* Soft green */
    --secondary-color: #f5f4f1;     /* Soft beige */
    --accent-color: #a0c4a6;        /* Light green accent */
    --text-color: #333;
    --light-shadow: rgba(0,0,0,0.05);

    padding: 100px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
}

/* GRID LAYOUT */
.why-us .whyus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ======================
   LEFT CONTENT
   ====================== */
.why-us .headings h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.why-us .head-dots {
    display: inline-block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin-bottom: 30px;
    border-radius: 2px;
}

.why-us .whyus-desc {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* LIST ITEMS */
.why-us .whyus-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.why-us .whyus-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px var(--light-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us .whyus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.why-us .check-icon img {
    width: 28px;
    height: 28px;
}

.why-us .item-text h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.why-us .item-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* BUTTON */
.why-us .primary-btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
}

.why-us .primary-btn:hover {
    background: var(--accent-color);
    color: #fff;
}

/* ======================
   RIGHT COUNTERS
   ====================== */
/* ===========================
   WHY US â€” Modern Retreat Counters
   =========================== */

.why-us .counter-sec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

/* Each Counter Card */
.why-us .banner-card {
    background: linear-gradient(145deg, #e8f4ee, #f6faf8); /* soft gradient */
    border-radius: 24px;
    padding: 28px 18px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Hover Lift Effect */
.why-us .banner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Icon Styling */
.why-us .banner-card span {
    font-size: 44px;
    color: #558768;
    display: inline-block;
    margin-bottom: 10px;
}

/* Counter Number */
.why-us .banner-card h4 {
    font-size: 30px;
    font-weight: 700;
    color: #3c5c4a;
    margin: 8px 0;
}

/* Description Text */
.why-us .banner-card p {
    font-size: 15px;
    font-weight: 500;
    color: #476155;
    line-height: 1.4;
}

/* Responsive Changes */
@media (max-width: 992px) {
    .why-us .counter-sec {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
}

@media (max-width: 576px) {
    .why-us .counter-sec {
        grid-template-columns: 1fr;
    }
}


/* ======================
   RESPONSIVE
   ====================== */
@media (max-width: 992px) {
    .why-us .whyus-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-us .counter-sec {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .why-us .counter-sec {
        grid-template-columns: 1fr;
    }

    .why-us .whyus-content h3 {
        font-size: 28px;
    }

    .why-us .whyus-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .why-us .check-icon {
        margin-bottom: 10px;
    }
}

/* ==========================
   PICTURES WRAP - MODERN ANIMATED
========================== */
.pictures-wrap {
    padding: 80px 0;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

/* Floating Leaves */
.leaf-float {
    position: absolute;
    width: 60px;
    height: 60px;
    background: url('path-to-leaf.png') no-repeat center/contain;
    opacity: 0.2;
    animation: floatLeaf 12s linear infinite;
    z-index: 0;
}

.leaf-1 { top: 10%; left: 5%; animation-delay: 0s; }
.leaf-2 { top: 50%; right: 10%; animation-delay: 4s; }
.leaf-3 { bottom: 10%; left: 20%; animation-delay: 8s; }

@keyframes floatLeaf {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(15deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Headings */
.pictures-wrap .headings h3 {
    font-size: 36px;
    font-weight: 700;
    color: #6da87c; 
    margin-bottom: 10px;
    z-index: 1;
    position: relative;
}

.pictures-wrap .head-dots {
    display: inline-block;
    width: 60px;
    height: 4px;
    background: #6da87c;
    border-radius: 2px;
    margin-bottom: 50px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* Gallery Card */
.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    height: 220px; /* fixed height for all cards */
}

.gallery-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Image Wrapper */
.gallery-card .img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Images - Object Fit */
.gallery-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures full coverage */
    display: block;
    transition: transform 0.5s ease;
    border-radius: 20px;
}

.gallery-card:hover img {
    transform: scale(1.1); /* subtle zoom on hover */
}

/* Overlay */
.gallery-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(109,168,124,0.5);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s ease;
    border-radius: 20px;
}

.gallery-card:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}


/* Overlay Title */
.overlay-title {
    padding: 15px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

/* View More Button */
.pictures-wrap .v-more {
    margin-top: 40px;
}

.pictures-wrap .v-more .primary-btn {
    display: inline-block;
    padding: 12px 35px;
    background: #6da87c;
    color: #fff;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.pictures-wrap .v-more .primary-btn:hover {
    background: #558768;
}

/* Responsive */
@media (max-width: 768px) {
    .pictures-wrap .headings h3 { font-size: 28px; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
}

.vdo-wrap {
    background-color: #e0f7fa; /* Calm light blue color, can adjust */
    padding: 50px 0; /* optional: add padding for spacing */
}

.vdo-wrap .container {
   
    margin: 0 auto;
    padding: 2rem;
}
/*.headings h3 {*/
/*    font-family: 'Playfair Display', serif;*/
/*    font-size: 2rem;*/
/*    color: #fff;*/
/*    margin-bottom: 0.5rem;*/
/*}*/
/*.head-dots {*/
/*    display: inline-block;*/
/*    width: 50px;*/
/*    height: 2px;*/
/*    background: #b4c3ae;*/
/*}*/

/* VDO Gallery Grid */
.vdo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* VDO Card */
.vdo-card {
    background: #16251b;
    border-radius: 1rem;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s;
}
.vdo-card:hover {
    transform: translateY(-5px);
}

/* VDO Thumbnail */
.vdo-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
}
.vdo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.vdo-thumb:hover .vdo-overlay {
    opacity: 1;
}
.play-btn {
    font-size: 2rem;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    border-radius: 50%;
    padding: 0.5rem 1rem;
    cursor: pointer;
}
.vdo-duration {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background: rgba(0,0,0,0.7);
    padding: 0.2rem 0.5rem;
    border-radius: 0.3rem;
    font-size: 0.75rem;
}

/* VDO Info */
.vdo-info {
    padding: 1rem;
}
.vdo-info h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}
.vdo-info p {
    font-size: 0.9rem;
    color: #c0c0c0;
    line-height: 1.4;
}
.vdo-actions {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}
.add-btn {
    background: #b4c3ae;
    color: #0d1811;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
}
.share-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    color: #fff;
}

/* View More Button */
.v-more .primary-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #b4c3ae;
    color: #0d1811;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 2rem;
    transition: background 0.3s;
}
.v-more .primary-btn:hover {
    background: #a0b290;
}



.about-image .img-wrap {
    position: relative;
}

.about-image .image-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    background: #2d8659;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.about-image .image-play-icon:hover {
    background: #c9a36a;
    transform: translate(-50%, -50%) scale(1.1);
}

/* ===== Video Popup Modal ===== */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.video-modal.active {
    display: flex;
}

.video-content {
    position: relative;
    width: 90%;
    max-width: 1100px; /* bigger */
}

.video-content iframe {
    width: 100%;
    height: 600px; /* bigger height */
    border-radius: 14px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 768px) {
    .video-content iframe {
        height: 260px;
    }
}

.about-actions {
    display: flex;
    gap: 14px;
    align-items: center;
}


.btn-video {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 30px;
    border: 2px solid #c9a36a;
    background: transparent;
    color: #c9a36a;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-video:hover {
    background: #c9a36a;
    color: #fff;
}

/*.modern-highlights .row > div:nth-child(4) {*/
/*    transform: translateY(-20px);*/
/*    z-index: 2;*/
/*}*/

/*.modern-highlights .row > div:nth-child(4) .card-custom {*/
/*    background: linear-gradient(180deg, #fffdf7, #f8f2e6);*/
/*    border: 1px solid rgba(170,138,82,0.45);*/
/*    border-radius: 18px;*/
/*    padding: 25px 20px;*/
/*    box-shadow:*/
/*        0 15px 45px rgba(170,138,82,0.25),*/
/*        0 0 35px rgba(170,138,82,0.18);*/
/*    position: relative;*/
/*}*/

/*.modern-highlights .row > div:nth-child(4)::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    inset: -18px;*/
/*    border-radius: 22px;*/
/*    background: radial-gradient(circle at center, rgba(170,138,82,0.35), transparent 70%);*/
/*    filter: blur(30px);*/
/*    z-index: -1;*/
/*}*/



/*.modern-highlights .row > div:nth-child(4) .card-gradient-bar {*/
/*    background: none;*/
/*    color: #aa8a52;*/
/*    font-weight: 700;*/
/*    font-size: 19px;*/
/*    text-align: center;*/
/*    margin-bottom: 10px;*/
/*}*/

/*.modern-highlights .row > div:nth-child(4) .card-image img {*/
/*    border-radius: 14px;*/
/*    transform: scale(1.05);*/
/*    filter: brightness(1.05) saturate(1.05);*/
/*}*/

/*.modern-highlights .row > div:nth-child(4) .card-link {*/
/*    display: inline-block;*/
/*    margin-top: 12px;*/
/*    padding: 8px 20px;*/
/*    border-radius: 30px;*/
/*    background: linear-gradient(90deg, #aa8a52, #c5a870);*/
/*    color: #fff;*/
/*    font-weight: 600;*/
/*    box-shadow: 0 8px 20px rgba(170,138,82,0.35);*/
/*}*/

/*.modern-highlights .row > div:nth-child(4):hover {*/
/*    transform: translateY(-28px);*/
/*}*/

/*@media (max-width: 768px) {*/
/*    .modern-highlights .row > div:nth-child(4) {*/
/*        transform: none;*/
/*    }*/
/*}*/


/* =======================
   PAGE BANNER
======================= */
.page-banner {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

.banr-wrap h2 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* =======================
   PRICING SECTION
======================= */
.pricing {
    padding: 90px 0;
    background: linear-gradient(180deg, #fdfaf5, #f6f3ea);
}

/* =======================
   PACKAGE CARD
======================= */
.price-card {
    background: linear-gradient(180deg, #ffffff, #f6f3ea);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(170,138,82,0.25);
    box-shadow: 0 15px 40px rgba(47,107,79,0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 55px rgba(47,107,79,0.18);
}

/* Soft top accent line */
.price-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #2f6b4f, #aa8a52);
}

/* =======================
   IMAGE
======================= */
.img-wrap figure {
    margin: 0;
    overflow: hidden;
}

.img-wrap img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.price-card:hover .img-wrap img {
    transform: scale(1.07);
}

/* =======================
   PACKAGE DETAILS
======================= */
.pckg-dtl {
    padding: 24px 22px 10px;
    text-align: center;
}

.pckg-dtl h3 {
    font-size: 22px;
    color: #2f6b4f;
    margin-bottom: 8px;
    font-weight: 700;
}

.pckg-dtl p {
    color: #6a6a6a;
    font-size: 14px;
    line-height: 1.6;
}

/* =======================
   FEATURE LIST (MODERN WELLNESS)
======================= */
.pkg-features {
    list-style: none;
    padding: 0;
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pkg-features li {
    background: linear-gradient(90deg, #f4f8f5, #ffffff);
    border: 1px solid rgba(47,107,79,0.15);
    padding: 10px 14px 10px 38px;
    border-radius: 12px;
    font-size: 14px;
    color: #555;
    position: relative;
    transition: all 0.3s ease;
}

.pkg-features li::before {
    content: "✓";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2f6b4f, #aa8a52);
    color: #fff;
    font-size: 12px;
    text-align: center;
    line-height: 18px;
    box-shadow: 0 4px 10px rgba(47,107,79,0.25);
}

.pkg-features li:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 18px rgba(47,107,79,0.15);
}

/* Stronger style inside featured card */
.price-card.featured .pkg-features li {
    background: linear-gradient(90deg, #f1e7d6, #fff9ee);
    border-color: rgba(170,138,82,0.25);
}

/* =======================
   PRICE AREA (NEW GREEN + GOLD LAYOUT)
======================= */
.pckg-price {
    margin-top: auto;
    padding: 22px 24px;
    background: linear-gradient(135deg, #f6f3ea, #ffffff);
    border-top: 1px solid #e6dccb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

/* Price text */
.pckg-price strong {
    font-size: 32px;
    font-weight: 700;
    color: #2f6b4f;
    line-height: 1;
    display: flex;
    flex-direction: column;
}

.pckg-price strong::after {
    content: "per person";
    font-size: 12px;
    color: #aa8a52;
    font-weight: 500;
    margin-top: 4px;
}

/* Button */
.pckg-price a {
    padding: 12px 26px;
    border-radius: 40px;
    background: linear-gradient(90deg, #2f6b4f, #aa8a52);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(47,107,79,0.25);
    transition: all 0.3s ease;
}

.pckg-price a:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(170,138,82,0.35);
}

/* =======================
   FEATURED PACKAGE
======================= */
.price-card.featured {
    border: 2px solid #aa8a52;
    transform: translateY(-18px);
    box-shadow: 0 25px 60px rgba(170,138,82,0.35);
}

.price-card.featured::before {
    background: linear-gradient(90deg, #aa8a52, #2f6b4f);
}

/* Featured badge text */
.price-card.featured::after {
    content: "MOST POPULAR";
    position: absolute;
    top: 16px;
    right: -38px;
    background: #aa8a52;
    color: #fff;
    padding: 6px 40px;
    font-size: 12px;
    transform: rotate(45deg);
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 768px) {
    .price-card.featured {
        transform: none;
    }

    .pckg-price {
        flex-direction: column;
        text-align: center;
    }
}


.accommodation-hero {
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    text-align: center;
    color: #fff;
}

.hero-content {
    width: 100%;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 12px;
    color: #2f6b4f;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #aa8a52;
}

.hero-btn {
    padding: 14px 32px;
    border-radius: 40px;
    background: linear-gradient(90deg, #2f6b4f, #aa8a52);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(47,107,79,0.3);
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(47,107,79,0.4);
}

/* =======================
   ABOUT SUITE
======================= */
.accommodation-about {
    padding: 80px 0;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    color: #2f6b4f;
    margin-bottom: 16px;
}

.about-text p {
    font-size: 16px;
    margin-bottom: 16px;
}

.amenities-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.amenities-list li {
    background: linear-gradient(90deg, #f4f8f5, #ffffff);
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 500;
    color: #2f6b4f;
}

/* About image */
.about-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

/* =======================
   GALLERY
======================= */
.accommodation-gallery {
    padding: 60px 0;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* =======================
   FEATURES & BENEFITS
======================= */
.accommodation-features {
    padding: 80px 0;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-card {
    background: linear-gradient(180deg, #ffffff, #f6f3ea);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(47,107,79,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s;
}

.feature-card span {
    font-size: 32px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    font-weight: 500;
}

/* =======================
   PRICING & BOOKING
======================= */
.accommodation-pricing {
    padding: 80px 0;
    text-align: center;
}

.pricing-card {
    background: linear-gradient(180deg, #ffffff, #f6f3ea);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(47,107,79,0.1);
    max-width: 400px;
    margin: auto;
    position: relative;
}

.pricing-info strong {
    font-size: 36px;
    color: #2f6b4f;
}

.pricing-info strong span {
    font-size: 14px;
    color: #aa8a52;
    display: block;
    margin-top: 4px;
}

.book-now-btn {
    margin-top: 20px;
    display: inline-block;
    padding: 14px 36px;
    border-radius: 40px;
    background: linear-gradient(90deg, #2f6b4f, #aa8a52);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(47,107,79,0.3);
    transition: all 0.3s ease;
}

.book-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(47,107,79,0.4);
}

/* =======================
   CUSTOMER REVIEWS
======================= */
.accommodation-reviews {
    padding: 80px 0;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.review-card {
    background: linear-gradient(180deg, #ffffff, #f6f3ea);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(47,107,79,0.08);
}

.review-card p {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 12px;
}

.review-card span {
    font-weight: 600;
    color: #2f6b4f;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
}


/* LIGHTBOX STYLES */
/* LIGHTBOX STYLES */
#lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
}

#lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

#lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.3s ease;
}

#lightbox-close:hover {
    color: #aa8a52;
}

/* NEXT / PREV BUTTONS */
#lightbox-prev,
#lightbox-next {
    position: absolute;
    top: 50%;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    padding: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    transform: translateY(-50%);
    transition: background 0.3s;
}

#lightbox-prev:hover,
#lightbox-next:hover {
    background: rgba(170,138,82,0.7);
}

#lightbox-prev { left: 30px; }
#lightbox-next { right: 30px; }

.gallery-grid a {
    display: inline-block;
}

/* =======================
   GALLERY FIXED SIZE
======================= */
.accommodation-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.accommodation-gallery .gallery-grid a {
    display: block;
    width: 100%;
    height: 200px; /* Fixed height for all images */
    overflow: hidden;
    border-radius: 16px;
}

.accommodation-gallery .gallery-grid a img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crop images to fill container */
    transition: transform 0.4s ease;
    display: block;
}

.accommodation-gallery .gallery-grid a img:hover {
    transform: scale(1.05);
}


.content-wrapper {
    display: flex;
    justify-content: center; /* centers horizontally */
    padding: 40px 20px; /* space on sides for small screens */
}

.content-box {
    max-width: 750px; /* controls width of content */
    width: 100%;
    text-align: left; /* keep text natural */
    line-height: 1.8;
    font-size: 16px;
    color: #444;
}

/* Better typography */
.content-box p {
    margin-bottom: 16px;
}

.content-box strong {
    font-size: 18px;
    color: #222;
}

.content-box em {
    color: #777;
    font-style: italic;
}

.float-img {
    float: left;
    margin: 0 50px 20px 0; /* space between image & text */
    border-radius: 10px;
    max-width: 50%; /* safety */
    height: auto;
}

.single-contnpack {
    line-height: 1.8;
    color: #444;
}

/* clear float */
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

/* Mobile fix */
@media (max-width: 768px) {
    .float-img {
        float: none;
        display: block;
        margin: 0 auto 20px;
    }
}
.serv-single .single-contnpack h2 {
    padding-bottom: 10px;
    border-bottom: 3px solid #2d8659;
    display: inline-block;   /* 👈 KEY FIX */
}


/* ========================
   Healing Booking CSS
   Scoped to .healing-booking
========================= */

/* Container */
.healing-booking.custom-booking-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero */
.healing-booking .booking-hero {
    position: relative;
    min-height: 320px;
    border-radius: 1.5rem;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.healing-booking .booking-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(74, 93, 94, 0.1);
    mix-blend-mode: overlay;
}
.healing-booking .booking-hero-content {
    position: relative;
    padding: 2rem;
    max-width: 600px;
}
.healing-booking .booking-hero-content .badge {
    display: inline-block;
    background: rgba(25, 212, 230, 0.2);
    color: #aa8a52;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1rem;
    backdrop-filter: blur(4px);
}
.healing-booking .booking-hero-content h1 {
    font-family: 'Noto Serif', serif;
    font-size: 2.5rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 0.5rem;
}
.healing-booking .booking-hero-content p {
    color: #e0d5c1;
    font-size: 1rem;
    line-height: 1.5;
}

/* Form */
.healing-booking .booking-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top:15px;
}
@media (min-width: 1024px) {
    .healing-booking .booking-form {
        grid-template-columns: 2fr 2fr;
    }
}

/* Sidebar cards */
.healing-booking .booking-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(74,93,94,0.2);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.healing-booking .card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    /*margin-bottom: 1rem;*/
}
.healing-booking .card-header h3 {
    font-family: 'Noto Serif', serif;
    font-style: italic;
    font-size: 1.25rem;
}
.healing-booking .card-body .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.healing-booking .card-body label {
    font-size: 0.625rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #4a5d5e;
}
.healing-booking .card-body input {
    border: none;
    border-bottom: 2px solid rgba(74,93,94,0.3);
    padding: 0.5rem;
    background: transparent;
    outline: none;
    color: #1a1a1a;
    transition: border-color 0.3s;
}
.healing-booking .card-body input:focus {
    border-color: #aa8a52;
}

/* Duration */
.healing-booking .duration-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.healing-booking .duration-options label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border: 1px solid rgba(74,93,94,0.3);
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}
.healing-booking .duration-options input:checked + .title {
    color: #aa8a52;
}

/* Main Booking Section */
.healing-booking .booking-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Date Picker */
.healing-booking .date-picker {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.healing-booking .date-picker input[type="date"] {
    width: 100%;
    height: 3.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(74,93,94,0.5);
    padding: 0 1.25rem;
    background-color: #1a3032;
    color: #fff;
}
.healing-booking .calendar-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    color: #aa8a52;
    pointer-events: none;
}

/* Modalities */
.healing-booking .modalities h2 {
    border-left: 4px solid #aa8a52;
    padding-left: 1rem;
    font-family: 'Noto Serif', serif;
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.healing-booking .modality-category {
    margin-bottom: 1rem;
}
.healing-booking .modality-category h4 {
    font-size: 0.75rem;
    font-weight: bold;
    color: #aa8a52;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.healing-booking .modality-category-cur h4 {
    font-size: 0.75rem;
    font-weight: bold;
    color: #aa8a52;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

/* Checkbox item */
.healing-booking .checkbox-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-radius: 1rem;
    border: 2px solid #334a27;
    background-color: rgba(51, 74, 39, 0.1);
    cursor: pointer;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}
.healing-booking .checkbox-item:hover {
    background-color: rgba(172, 140, 85, 0.1);
}
.healing-booking .checkbox-item input[type="checkbox"] {
    display: none;
}
.healing-booking .checkbox-content {
    display: flex;
    flex-direction: column;
}
.healing-booking .checkbox-item .checkmark {
    font-size: 1rem;
    color: #334a27;
    font-weight: bold;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background-color: transparent;
    opacity: 0;
    transition: all 0.2s;
}
.healing-booking .checkbox-item input[type="checkbox"]:checked + .checkbox-content + .checkmark {
    opacity: 1;
    background-color: #ac8c55;
    color: #334a27;
}
.healing-booking .checkbox-item .desc {
    font-size: 0.75rem;
    font-style: italic;
    color: #334a27;
}

/* Action Button */
.healing-booking .booking-action {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.healing-booking .booking-action button {
    background: #aa8a52;
    color: #fff;
    padding: 1rem 3rem;
    font-weight: bold;
    font-size: 1.125rem;
    border-radius: 9999px;
    /*display: inline-flex;*/

    justify-content: center;   /* ⭐ centers Submit + icon horizontally */
    align-items: center;       /* vertical center */

    gap: 0.5rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.healing-booking .material-symbols-outlined
 {
    color: #fff;
}

.healing-booking .booking-action button:hover {
    padding-right: 4rem;
}

/* Responsive adjustments */
@media (max-width: 1023px) {
    .healing-booking .booking-form {
        grid-template-columns: 1fr;
    }
    .healing-booking .booking-sidebar,
    .healing-booking .booking-main {
        width: 100%;
    }
    .healing-booking .booking-hero-content h1 {
        font-size: 2rem;
    }
}
@media (max-width: 767px) {
    .healing-booking .booking-hero-content {
        padding: 1rem;
    }
    .healing-booking .booking-hero-content h1 {
        font-size: 1.5rem;
    }
    .healing-booking .booking-card {
        padding: 1.5rem;
    }
    .healing-booking .date-picker input[type="date"] {
        height: 3rem;
        padding: 0 1rem;
    }
    .healing-booking .checkbox-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Personal Info Card */
.healing-booking .booking-card.personal-info .card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    /*margin-bottom: 18px;*/
}
.healing-booking .booking-card.personal-info h3 {
    font-size: 22px;
    font-family: 'Noto Serif', serif;
    font-style: italic;
    color: #334a27;
}
.healing-booking .booking-card.personal-info .icon {
    font-size: 28px;
    color: #ac8c55;
}
.healing-booking .booking-card.personal-info .card-body {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}
.healing-booking .personal-info.form-group {
    display: flex;
    flex-direction: column;
}
.healing-booking .personal-info .form-group label {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #334a27;
    margin-bottom: 6px;
}
.healing-booking .personal-info .form-group input,
.healing-booking .personal-info .form-group textarea {
    height: 44px;
    border-radius: 10px;
    border: 2px solid rgba(74,93,94,0.3);
    padding: 0 12px;
    background: rgba(255,255,255,0.06);
    font-size: 14px;
    outline: none;
    transition: 0.3s;
    width: 100%;
}
.healing-booking .personal-info .form-group input:focus,
.healing-booking .personal-info .form-group textarea:focus {
    border-color: #ac8c55;
    box-shadow: 0 0 0 3px rgba(172,140,85,0.2);
}

/* Date Selection */
.healing-booking .date-selection .date-picker-group {
    display: flex;
    gap: 1rem;
}
@media (max-width: 768px) {
    .healing-booking .date-picker-group {
        flex-direction: column;
    }
}
.healing-booking .date-selection .date-picker label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #334a27;
}

/* Transfer Options */
.healing-booking .transfer-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.healing-booking .transfer-desc {
    font-size: 13px;
    color: #334a27;
    margin-bottom: 8px;
}

/* Radio Item */
.healing-booking .radio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 2px solid rgba(51,74,39,0.25);
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 14px;
}
.healing-booking .radio-item:hover {
    border-color: #ac8c55;
    background: rgba(172,140,85,0.08);
}
.healing-booking .radio-item input[type="radio"] {
    accent-color: #ac8c55;
    width: 16px;
    height: 16px;
}


/* Hide all sections first */
.healing-booking .modality-category {
    display: none;
     position: relative;
}

/* Active visible section */
.healing-booking .modality-category.active {
    display: block;
}

/* Add More Button (theme friendly) */
.healing-booking .modality-control-btn {
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    border: 2px solid #aa8a52;
    background: rgba(172, 140, 85, 0.1);
    color: #334a27;
    font-weight: bold;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.healing-booking .modality-control-btn:hover {
    background: #aa8a52;
    color: #fff;
}

/* Remove Button styled subtle */
/* Title + remove button alignment */
.healing-booking .modality-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Keep your original h4 style intact */
.healing-booking .modality-title-row h4 {
     display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;   /* 👈 KEY FIX */
}

/* Remove icon styling */
.healing-booking .remove-section {
    border: none;
    background: rgba(172, 140, 85, 0.1);
    color: #aa8a52;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.healing-booking .remove-section:hover {
    background: #aa8a52;
    color: #fff;
}

.pack-title-wrap {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.book-now-btn {
    background: linear-gradient(135deg, #2a6f6b, #4db6ac);
    border: none;
    padding: 10px 22px;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}



.healing-inquiry-form .form-intro {color:#6c757d;margin-bottom:20px;font-size:14px;}

.healing-inquiry-form .hf-card {
    background:#fff;border-radius:12px;padding:22px;margin-bottom:18px;
    box-shadow:0 4px 14px rgba(0,0,0,0.05);border:1px solid #f1f1f1;
}

.healing-inquiry-form .hf-card h5 {font-weight:600;margin-bottom:15px;color:#2a6f6b;font-size:16px;}

.healing-inquiry-form .hf-grid {display:grid;grid-template-columns:repeat(2,1fr);gap:16px;}

.healing-inquiry-form .hf-field label {font-weight:500;margin-bottom:4px;font-size:13px;color:#444;display:block;}

.healing-inquiry-form .hf-field input,
.healing-inquiry-form textarea {
    width:100%;padding:9px 12px;border-radius:6px;border:1px solid #ddd;font-size:14px;
}

.healing-inquiry-form .hf-check-grid {display:grid;grid-template-columns:repeat(2,1fr);gap:8px 15px;font-size:14px;}

.healing-inquiry-form .hf-consent label {display:block;margin-bottom:8px;font-size:13px;}

@media(max-width:768px){
    .healing-inquiry-form .hf-grid,
    .healing-inquiry-form .hf-check-grid {grid-template-columns:1fr;}
}

.healing-inquiry-form .submit-button-text {
    background:linear-gradient(135deg,#2a6f6b,#4db6ac);
    border:none;padding:10px 25px;font-weight:600;border-radius:30px;color:#fff;
}




.healing-inquiry-form .hf-step {display:none;}
.healing-inquiry-form .active-step {display:block;}

.hf-progress-wrap {height:6px;background:#eee;border-radius:10px;margin-bottom:8px;}
.hf-progress-bar {height:6px;background:#2a6f6b;width:20%;border-radius:10px;transition:0.3s;}

.hf-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:15px;}
.hf-field label{font-size:13px;font-weight:500;}
.hf-field input,.hf-field textarea{width:100%;padding:8px;border:1px solid #ddd;border-radius:6px;}

.hf-check-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;}
.step-title{font-weight:600;color:#2a6f6b;margin-bottom:12px;border-bottom:1px solid #eee;padding-bottom:6px;}

@media(max-width:768px){.hf-grid,.hf-check-grid{grid-template-columns:1fr;}}

.healing-inquiry-form .hf-note {font-size:13px;color:#6c757d;margin-bottom:8px;}
.healing-inquiry-form .hf-sub {font-weight:600;margin-top:10px;display:block;}
.healing-inquiry-form .hf-radio-row {display:flex;gap:20px;margin:5px 0 10px;}

/* =================== HEALING INQUIRY FORM =================== */
.healing-inquiry-form .form-intro {
    color: #6c757d;
    margin-bottom: 25px;
    font-size: 14px;
}

/* Section Card */
.healing-inquiry-form .hf-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px;
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    border: 1px solid #f1f1f1;
}

/* Section Title */
.healing-inquiry-form .hf-card h5 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #2a6f6b;
    font-size: 16px;
}

/* Grid Layout */
.healing-inquiry-form .hf-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px 20px;
}

/* Field Labels & Inputs */
.healing-inquiry-form .hf-field label {
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 13px;
    color: #444;
    display: block;
}

.healing-inquiry-form .hf-field input,
.healing-inquiry-form .hf-field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.2s;
}

.healing-inquiry-form .hf-field input:focus,
.healing-inquiry-form .hf-field textarea:focus {
    border-color: #2a6f6b;
    box-shadow: 0 0 0 3px rgba(42,111,107,0.1);
    outline: none;
}

/* Checkbox / Radio Grid */
.healing-inquiry-form .hf-check-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Consent Section */
.healing-inquiry-form .hf-consent label {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
}

/* Notes and Subtitles */
.healing-inquiry-form .hf-note {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 10px;
}
.healing-inquiry-form .hf-sub {
    font-weight: 600;
    margin-top: 12px;
    display: block;
}

/* Radio Row */
.healing-inquiry-form .hf-radio-row {
    display: flex;
    gap: 25px;
    margin: 6px 0 12px;
}

/* Submit Button */
.healing-inquiry-form .submit-button-text {
    background: linear-gradient(135deg,#2a6f6b,#4db6ac);
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 30px;
    color: #fff;
    transition: 0.3s;
}

.healing-inquiry-form .submit-button-text:hover {
    opacity: 0.9;
}

/* Modal Step / Progress (if any) */
.healing-inquiry-form .hf-step { display: none; }
.healing-inquiry-form .active-step { display: block; }

.hf-progress-wrap {
    height: 6px;
    background: #eee;
    border-radius: 10px;
    margin-bottom: 10px;
}
.hf-progress-bar {
    height: 6px;
    background: #2a6f6b;
    width: 20%;
    border-radius: 10px;
    transition: 0.3s;
}

/* Step Titles */
.step-title {
    font-weight: 600;
    color: #2a6f6b;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

/* Responsive */
@media(max-width:768px) {
    .healing-inquiry-form .hf-grid,
    .healing-inquiry-form .hf-check-grid { grid-template-columns: 1fr; }
}

.healing-inquiry-form .btn-loader {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.healing-inquiry-form .fa-spinner {
    animation: spin 1s linear infinite;
}

/* optional smoother spin animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.package-top-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    margin-bottom: 2rem;
}

/* Reset inherited booking-card styles */
.package-top-wrapper .package-select {
    width: 100%;
    display: block;
    padding: 2rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #f8f5ef, #ffffff);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}

/* Header styling */
.package-top-wrapper .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.package-top-wrapper .card-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e2f;
}

.package-top-wrapper .icon {
    font-size: 30px;
    color: #aa8a52;
}

/* Body */
.package-top-wrapper .card-body {
    width: 100%;
}

/* Label */
.package-top-wrapper label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #444;
}

/* Select dropdown */
.package-top-wrapper select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 15px;
    background: #fff;
    transition: all 0.25s ease;
}

/* Focus effect */
.package-top-wrapper select:focus {
    border-color: #aa8a52;
    box-shadow: 0 0 0 3px rgba(170,138,82,0.2);
    outline: none;
}

/* Mobile */
@media (max-width: 768px) {
    .package-top-wrapper .package-select {
        padding: 1.2rem;
    }
}

.healing-booking .booking-form .package-top-wrapper {
    grid-column: 1 / -1; /* spans all columns */
    width: 100%;
}

/* Only affects healing form sections */
.healing-categories-wrapper .modality-category-cur {
    margin-bottom: 50px;      /* space between categories */
    position: relative;
}

/* Category separator line */
.healing-categories-wrapper .modality-category-cur:not(:last-child)::after {
    content: "";
    display: block;
    height: 1px;
    background: linear-gradient(to right, transparent, #d9e3ec, transparent);
    margin-top: 35px;
}

/* Slight title emphasis (does NOT override your fonts) */
.healing-categories-wrapper .modality-title-row h4 {
    padding-left: 14px;
    border-left: 4px solid #19d4e6; /* accent line */
}

/* Softer paragraph spacing */
.healing-categories-wrapper .modality-title-row p {
    margin-top: 6px;
}

/* Better spacing for groups */
.healing-categories-wrapper .form-group {
    margin-top: 18px;
}

/* Medical section visual style */
.healing-categories-wrapper .medical-section {
    background: #f4f8fb;              /* soft medical tone */
    border-left: 5px solid #4fa3d1;   /* calm blue indicator */
    padding: 25px;
    border-radius: 10px;
}

/* Title styling */
.healing-categories-wrapper .medical-section h4 {
    color: #2c5f7a;
}

/* Smaller supportive text tone */
.healing-categories-wrapper .medical-section p {
    color: #5f7d8f;
}

/* Yes/No rows spacing */
.medical-section .form-group label {
    margin-right: 18px;
}

/* Text inputs for "Yes" answers */
.medical-section input[type="text"] {
    max-width: 420px;
}

/* Checkbox grid look (optional polish) */

.consent-readiness-box {
    margin-top: 40px;
    padding: 25px;
    background: #f9fbfc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.consent-readiness-box h4 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.consent-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.consent-item input[type="checkbox"] {
    margin-top: 4px;
    transform: scale(1.1);
    cursor: pointer;
}

.consent-item span {
    flex: 1;
}

/* Section spacing */
.contactus-wrap {
    padding: 80px 0;
    background: #f9fafc;
}

/* Card base style */
.contct-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

/* Hover effect */
.contct-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Dark background variations */
.black1-bg {
    background: #111827;
    color: #ffffff;
}

.black2-bg {
    background: #1f2937;
    color: #ffffff;
}

/* Icon wrapper */
.icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

/* Default icon color */
.contct-card .material-symbols-outlined {
    font-size: 30px;
}

/* White icons for dark cards */
.black1-bg .material-symbols-outlined,
.black2-bg .material-symbols-outlined {
    color: #ffffff;
}

/* Contact details */
.contct-dtls small {
    display: block;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

/* White text for dark cards */
.black1-bg .contct-dtls small,
.black2-bg .contct-dtls small {
    color: rgba(255, 255, 255, 0.7);
}

.contct-dtls strong {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    display: block;
}

/* Links */
.contct-dtls a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

.contct-dtls a:hover {
    opacity: 0.8;
}

/* Responsive spacing */
@media (max-width: 767px) {
    .contactus-wrap {
        padding: 50px 0;
    }

    .contct-card {
        padding: 20px;
    }
}

/* Prevent scroll only for roadblock */
body.roadblock-active {
    overflow: hidden;
}

/* Roadblock Overlay */
.roadblock-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 25, 0.75);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999; /* Higher than normal modals */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

/* Show State */
.roadblock-overlay.roadblock-show {
    opacity: 1;
    visibility: visible;
}

/* Roadblock Content */
.roadblock-wrapper {
    position: relative;
    max-width: 650px;
    width: 92%;
    background: #ffffff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    animation: roadblockEntrance 0.45s ease;
}

/* Image */
.roadblock-wrapper img {
    width: 100%;
    border-radius: 14px;
    display: block;
}

/* Close Button */
.roadblock-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: 0.3s ease;
}

.roadblock-close:hover {
    background: #ff4d4d;
    color: #ffffff;
}

/* Entrance Animation */
@keyframes roadblockEntrance {
    from {
        transform: translateY(40px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.blog-more {
    text-align: center;
    margin: 2.5rem 0 1.5rem;
}

.blog-more a {
    display: inline-block;
    padding: 0.75rem 2.5rem;
    background-color: #000;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #333;
    border-radius: 50px;
    transition: all 0.35s ease;
}

.blog-more a:hover {
    background-color: #111;
    border-color: #555;
    transform: translateY(-3px);
}



































































