/* =============================
       GLOBAL
    ============================= */
.row {
  --bs-gutter-x: 1.25rem;
  --bs-gutter-y: 0;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Open Sans", sans-serif;
  background: #fff;
  overflow-x: hidden;
  margin: 0;
}

/* =============================
       SIDEBAR NAV
    ============================= */
.side-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 132px;
  height: 100vh;
  background: #fffdf7;
  box-shadow: 3px 0 24px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  z-index: 1050;
  padding: 22px 0 0;
}
.side-nav .brand-logo {
  width: 105px;
  height: 83px;
  object-fit: cover;
}
.side-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: center;
  width: 77px;
}
.side-nav ul li {
  position: relative;
}
.side-nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(195, 218, 229, 0.5);
  text-decoration: none;
  transition: background 0.2s;
  position: relative;
}
.side-nav ul li a:hover,
.side-nav ul li a.active {
  background: #008fd5;
}
.side-nav ul li a > img {
  object-fit: cover;
  width: 34px;
  transition:
    filter 0.2s,
    transform 0.2s;
}
.side-nav ul li a:hover > img,
.side-nav ul li a.active > img {
  filter: brightness(0) invert(1);
  transform: rotate(18.22deg);
  -webkit-transform: rotate(18.22deg);
  -moz-transform: rotate(18.22deg);
  -ms-transform: rotate(18.22deg);
  -o-transform: rotate(18.22deg);
}

/* Nav hover page-preview card */
.side-nav .nav-preview {
  position: fixed;
  left: 100px;
  top: 0;
  /* max-height: calc(100vh - 50px); */
  overflow: auto;
  width: 460px;
  background: #f7f2ec;
  border-radius: 0 40px 40px 40px;
  box-shadow: 0 9px 29px rgba(0, 0, 0, 0.5);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  padding: 29px;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s;
  z-index: 1100;
  -webkit-border-radius: 0 40px 40px 40px;
  -moz-border-radius: 0 40px 40px 40px;
  -ms-border-radius: 0 40px 40px 40px;
  -o-border-radius: 0 40px 40px 40px;
}
/* .side-nav .nav-preview::before {
      content: "";
      position: absolute;
      left: -6px;
      top: 50%;
      transform: translateY(-50%) rotate(45deg);
      width: 12px; height: 12px;
      background: #fff;
      box-shadow: -2px 2px 4px rgba(0,0,0,.04);
    } */
.side-nav .nav-preview-thumb {
  display: block;
  width: 100%;
  height: 529px;
  border-radius: 10px;
  background: #fff;
}
.side-nav .nav-preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: none !important;
  transform: none !important;
}
.side-nav .nav-preview-title {
  font-family: righteous, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1c2a39;
  text-align: center;
  padding: 2px 4px 4px;
  text-transform: capitalize;
  position: absolute;
  left: 0;
  top: -25px;
  width: 100%;
  h5 {
    background: #fff;
    display: inline-block;
    padding: 10px 40px;
    font-size: 20px;
    border-radius: 49px;
    -webkit-border-radius: 49px;
    -moz-border-radius: 49px;
    -ms-border-radius: 49px;
    -o-border-radius: 49px;
    span {
      color: #3ab447;
    }
  }
}
.side-nav ul li:hover .nav-preview,
.side-nav ul li a:focus-visible .nav-preview {
  opacity: 1;
  visibility: visible;
  /* transform: translate(0, -50%); */
  pointer-events: auto;
}

/* Bootstrap 5 popover variant of the nav preview */
.popover.nav-preview-popover {
  --bs-popover-max-width: 460px;
  --bs-popover-bg: #f7f2ec;
  --bs-popover-border-color: transparent;
  --bs-popover-border-radius: 0 40px 40px 40px;
  --bs-popover-inner-border-radius: 0 40px 40px 40px;
  --bs-popover-body-padding-x: 29px;
  --bs-popover-body-padding-y: 29px;
  width: 460px;
  box-shadow: 0 9px 29px rgba(0, 0, 0, 0.5);
  z-index: 1100;
  
}
.popover.nav-preview-popover .popover-arrow {
  display: none;
}
.popover.nav-preview-popover .popover-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.popover.nav-preview-popover .nav-preview-thumb {
  display: block;
  width: 100%;
  height: 529px;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
 
}
.popover.nav-preview-popover .nav-preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.popover.nav-preview-popover .nav-preview-title {
  font-family: righteous, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1c2a39;
  text-align: center;
  padding: 2px 4px 4px;
  text-transform: capitalize;
  position: absolute;
  left: 0;
  top: -25px;
  width: 100%;
}
.popover.nav-preview-popover .nav-preview-title h5 {
  background: #fff;
  display: inline-block;
  padding: 10px 40px;
  font-size: 20px;
  border-radius: 49px;
  margin: 0;
}
.popover.nav-preview-popover .nav-preview-title h5 span {
  color: #3ab447;
}

/* =============================
       PAGE WRAPPER
    ============================= */
.page-wrap {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
@media (min-width: 992px) {
  .page-wrap {
    padding-left: 132px;
  }
}
@media (max-width: 991.98px) {
  .side-nav {
    display: none;
  }
}

/* =============================
       TOP ADDRESS BAR
    ============================= */
.address-bar {
  background: #2787c1;
  height: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 1040;
}
.address-pill {
  background: #fff;
  border-radius: 29px;
  box-shadow: 0 1.5px 43px rgba(0, 0, 0, 0.12);
  max-width: 732px;
  width: 100%;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 51px;
  position: relative;
  top: 29px;
}
.address-pill img {
  width: 31px;
  height: 31px;
  flex-shrink: 0;
}
.address-pill p {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.84px;
  color: #77a0b8;
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 576px) {
  .address-pill p {
    font-size: 14px;
  }
}

/* =============================
       STELLARNAV MOBILE MENU (top)
    ============================= */
.mobile-nav-wrap {
  background: #0e2d39;
  display: none;
}
@media (max-width: 991.98px) {
  .mobile-nav-wrap {
    display: block;
  }
}
.stellarnav {
  background: #0e2d39;
}
.stellarnav ul {
  background: #0e2d39;
}
.stellarnav > ul > li > a {
  color: #d8f2fb !important;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.96px;
}
.stellarnav > ul > li > a:hover {
  color: #ffcb08 !important;
}
.stellarnav.light.desktop a {
  color: #d8f2fb;
}

/* =============================
       HERO SECTION
    ============================= */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 2;
}
/* @media (min-width: 576px)  { .hero-section { padding: 24px; } }
    @media (min-width: 992px)  { .hero-section { padding: 32px; } } */

.hero-inner {
  position: relative;
  overflow: hidden;
  min-height: 857px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-blob-1 {
  position: absolute;
  left: 4.7%;
  top: 37.72%;
  width: 131px;
  height: 124px;
  border-radius: 65.5px / 62px;
  background: #008fd5;
  filter: blur(97.6px);
  pointer-events: none;
  z-index: 1;
}
.hero-blob-2 {
  position: absolute;
  right: 3.53%;
  top: 66.11%;
  width: 131px;
  height: 129px;
  border-radius: 65.5px / 64.5px;
  background: #12b14d;
  filter: blur(97.6px);
  pointer-events: none;
  z-index: 1;
}
.hero-deco-top {
  position: absolute;
  left: 48.5%;
  top: 0;
  width: 10.35%;
  height: auto;
  z-index: 5;
  object-fit: contain;
}
.hero-logo {
  position: absolute;
  left: 2.36%;
  top: 5.75%;
  width: 223px;
  height: 176px;
  object-fit: cover;
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 20;
  padding: 20px 24px 24px;
  min-height: 835px;
  display: flex;
  flex-direction: column;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: start;
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 52px;
}
@media (min-width: 576px) {
  .hero-left {
    padding-left: 160px;
  }
}
@media (min-width: 992px) {
  .hero-left {
    padding-left: 255px;
  }
}

h1.hero-title {
  font-family: "Righteous", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 3.12px;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  h1.hero-title {
    font-size: 46px;
  }
}
@media (min-width: 992px) {
  h1.hero-title {
    font-size: 52px;
  }
}
.hero-title .c-green {
  color: #3ab447;
}
.hero-title .c-dark {
  color: #0e2d39;
}
.hero-title .c-yellow {
  color: #f5b038;
}

.book-btn {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  width: 163px;
  height: 156px;
  background: url("../images/2.png") center / 100% 100% no-repeat;
  border: none;
  background-color: transparent;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
}
.book-btn span {
  margin-top: 75px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  padding-top: 92px;
}
@media (min-width: 992px) {
  .hero-right {
    padding-right: 40px;
  }
}

h2.hero-subtitle {
  font-family: "Righteous", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 3.12px;
  margin: 0;
}
@media (min-width: 576px) {
  h2.hero-subtitle {
    font-size: 46px;
  }
}
@media (min-width: 992px) {
  h2.hero-subtitle {
    font-size: 52px;
  }
}
.hero-subtitle .c-dark {
  color: #0e2d39;
}
.hero-subtitle .c-blue {
  color: #2787c1;
}

.hero-tagline {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.96px;
  color: #5a7986;
  max-width: 628px;
  margin: 0;
}

.hero-image-wrap {
  position: relative;
  flex: 1;
  max-width: 1140px;
  margin: 25px auto 0;
}
.hero-image-wrap .hero-slider,
.hero-image-wrap .hero-slider .slick-list,
.hero-image-wrap .hero-slider .slick-track {
  width: 100%;
}
.hero-image-wrap .hero-slider .slick-slide img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
/* =============================
       GLOW BLOBS (page-level)
    ============================= */
.blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(97.6px);
}
.blob-g1 {
  right: -24px;
  top: 920px;
  width: 131px;
  height: 129px;
  background: #12b14d;
}
.blob-b1 {
  right: -16px;
  top: 1660px;
  width: 131px;
  height: 124px;
  background: #008fd5;
}
.blob-g2 {
  left: 20px;
  top: 1560px;
  width: 131px;
  height: 129px;
  background: #12b14d;
}
.blob-b2 {
  right: -24px;
  top: 3540px;
  width: 131px;
  height: 124px;
  background: #008fd5;
}
.blob-g3 {
  left: 20px;
  top: 5000px;
  width: 131px;
  height: 129px;
  background: #12b14d;
}

/* =============================
       OVERVIEW SECTION
    ============================= */
.overview-section {
  padding: 8px 16px 24px;
  margin-top: -206px;
}
@media (min-width: 576px) {
  .overview-section {
    padding: 8px 24px 24px;
  }
}
@media (min-width: 992px) {
  .overview-section {
    padding: 8px 40px 24px;
  }
}

.frame-deco {
  display: none;
}
@media (min-width: 992px) {
  .frame-deco {
    display: block;
    margin-bottom: -10px;
  }
}

.overview-card {
  background: #daeefa;
  border-radius: 12px;
  padding: 39px 61px;
  overflow: hidden;
  padding-right: 257px;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .overview-card {
    padding: 24px;
  }
}

h2.overview-title {
  font-family: "Righteous", sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: 1.44px;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  h2.overview-title {
    font-size: 48px;
  }
}
.overview-title .c-dark {
  color: #191919;
}
.overview-title .c-green {
  color: #3ab447;
}
.overview-title .c-blue {
  color: #2787c1;
}

.overview-text {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: 0.96px;
  color: #658490;
  margin-bottom: 8px;
}

.overview-img-col {
  position: relative;
}
.overview-img-main {
  position: relative;
  margin-left: 0px;
  width: 100%;
  max-width: 321px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.overview-section .col-lg-8 {
  flex: 0 0 auto;
  width: 63.3%;
  padding: 0;
}
.overview-section .col-lg-4 {
  flex: 0 0 auto;
  width: 36.666%;
  padding: 0;
}
.overview-section .gap-0 {
  margin: 0 !important;
}
.overview-img-behind {
  position: absolute;
  left: -42%;
  top: -4px;
  width: 80%;
  height: auto;
  display: none;
  z-index: 1;
}
.overview-section .color-bubbles {
  position: absolute;
  bottom: -125px;
  left: -20px;
}
@media (min-width: 992px) {
  .overview-img-behind {
    display: block;
  }
}
.overview-img-overlay {
  position: absolute;
  bottom: -85px;
  left: 0;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  z-index: -1;
  height: 302px;
}

/* =============================
       ACTIVITY HIGHLIGHTS SECTION
    ============================= */
.activity-section {
  padding: 16px;
}
@media (min-width: 576px) {
  .activity-section {
    padding: 16px 24px;
  }
}
@media (min-width: 992px) {
  .activity-section {
    padding: 100px 40px 40px;
  }
}

.color-bubbles {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.color-bubbles .bubbles-inner {
  position: relative;
  width: 71px;
  height: 59px;
}
.color-bubbles .b-y {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: #ffcb08;
}
.color-bubbles .b-g {
  position: absolute;
  left: 17px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: #3ab447;
}
.color-bubbles .b-b {
  position: absolute;
  left: 23px;
  top: 11px;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: #008fd5;
}

h2.activity-title {
  font-family: "Righteous", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.44px;
  text-align: center;
  margin-bottom: 12px;
}
@media (min-width: 576px) {
  h2.activity-title {
    font-size: 36px;
  }
}
@media (min-width: 992px) {
  h2.activity-title {
    font-size: 48px;
  }
}
.activity-title .c-dark {
  color: #191919;
  -webkit-text-stroke: 0;
}
.activity-title .c-green {
  color: #3ab447;
  -webkit-text-stroke: 0;
}
.activity-title .c-blue {
  color: #2787c1;
  -webkit-text-stroke: 0;
}

.activity-desc {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.96px;
  color: #658490;
  text-align: center;
  max-width: 832px;
  margin: 0 auto 32px;
}
@media (min-width: 576px) {
  .activity-desc {
    font-size: 16px;
    line-height: 34px;
  }
}

/* Green Activity Grid */
.activity-grid-wrap {
  position: relative;
  border-radius: 12px;
  background: #12b24c;
  padding: 32px 16px;
  /* overflow: hidden; */
  max-height: 750px;
  margin-top: 191px;
}
.activity-grid-wrap .row {
  margin-top: -247px;
}
@media (min-width: 576px) {
  .activity-grid-wrap {
    padding: 40px 32px;
  }
}

.activity-grid-oval {
  position: absolute;
  left: 50%;
  top: -26%;
  transform: translateX(-50%);
  width: 593px;
  height: 515px;
  border-radius: 296.5px / 257.5px;
  background: rgba(255, 255, 255, 0.2);
  pointer-events: none;
  display: none;
}
@media (min-width: 992px) {
  .activity-grid-oval {
    display: block;
  }
}

.activity-grid-img {
  position: absolute;
  left: 50%;
  top: -23%;
  transform: translateX(-50%);
  width: 456px;
  height: auto;
  object-fit: cover;
  pointer-events: none;
  display: none;
}
@media (min-width: 992px) {
  .activity-grid-img {
    display: block;
  }
}

.activity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
}
.activity-circle-wrap {
  position: relative;
  width: 200px;
  height: 225.61px;
}
.activity-ring-blue {
  position: absolute;
  left: 0;
  top: 30px;
  width: 200px;
  height: 195px;
  border-radius: 100px / 97.56px;
  border: 1.22px solid #008fd5;
}
.activity-ring-yellow {
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
  height: 205px;
  border-radius: 100px / 102.44px;
  border: 1.22px solid #ffcb08;
}
.activity-circle-img {
  position: absolute;
  left: 20px;
  top: 32px;
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
}
.activity-label {
  font-family: "Righteous", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 1.2px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  margin-bottom: 43px;
}

.activity-deco-left {
  position: absolute;
  bottom: 12px;
  left: 40px;
  width: 72px;
  height: 48px;
}
.activity-deco-right {
  position: absolute;
  bottom: 12px;
  right: 40px;
  width: 65px;
  height: 47px;
}
.activity-grid-wrap .col-sm-6:first-child .activity-card:nth-child(2) {
  left: 15%;
  .activity-label {
    margin-bottom: 0;
  }
}
.activity-grid-wrap .col-sm-6:first-child .activity-card:last-child {
  left: 89%;
  margin-top: -7%;
}

.activity-grid-wrap .col-sm-6:last-child .activity-card:nth-child(2) {
  right: 15%;
  .activity-label {
    margin-bottom: 0;
  }
}
.activity-grid-wrap .col-sm-6:last-child .activity-card:last-child {
  right: 89%;
  margin-top: -7%;
}
.activity-slider {
  position: relative;
}
.activity-slider .activity-slide {
  outline: none;
}
.activity-slider .activity-slide > .row {
  margin-top: -247px;
}
/* .activity-slider .slick-prev,
.activity-slider .slick-next {
  width: 44px;
  height: 44px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.activity-slider .slick-prev:hover,
.activity-slider .slick-next:hover {
  background: #fff;
}
.activity-slider .slick-prev { left: 0; }
.activity-slider .slick-next { right: 0; }
.activity-slider .slick-prev:before,
.activity-slider .slick-next:before { content: ''; }
.activity-slider .slick-prev i,
.activity-slider .slick-next i {
  color: #12b24c;
  font-size: 28px;
  line-height: 1;
} */

.activity-pipe {
  width: 56px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  height: 370px;
  object-fit: cover;
}

/* =============================
       PLAY PACKAGES SECTION
    ============================= */
.packages-section {
  padding: 32px 16px;
}
@media (min-width: 576px) {
  .packages-section {
    padding: 32px 24px;
  }
}
@media (min-width: 992px) {
  .packages-section {
    padding: 32px 40px;
  }
}

h2.packages-title {
  font-family: "Righteous", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1.44px;
  text-align: center;
  margin-bottom: 16px;
}
@media (min-width: 576px) {
  h2.packages-title {
    font-size: 36px;
  }
}
@media (min-width: 992px) {
  h2.packages-title {
    font-size: 48px;
  }
}
.packages-title .c-dark {
  color: #191919;
  -webkit-text-stroke: 0;
}
.packages-title .c-green {
  color: #3ab447;
  -webkit-text-stroke: 0;
}
.packages-title .c-blue {
  color: #2787c1;
  -webkit-text-stroke: 0;
}

.packages-desc {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: 0.96px;
  color: #658490;
  text-align: center;
  max-width: 832px;
  margin: 0 auto 32px;
}

.packages-bg {
  position: relative;
  border-radius: 16px;
  background: url("/figmaAssets/rectangle-319-1.svg") center / 100% 100%
    no-repeat;
  padding: 40px 24px;
  overflow: hidden;
}
@media (min-width: 576px) {
  .packages-bg {
    padding: 40px 40px;
  }
}
@media (min-width: 992px) {
  .packages-bg {
    padding: 143px 69px 0 69px;
    min-height: 450px;
    background: #dbeefa;
    clip-path: polygon(0 12%, 100% 0, 100% 100%, 0% 100%);
  }
}

.packages-bg .row .col-md-4:last-child .pkg-divider {
  top: 16%;
}
.pkg-deco-1 {
  position: absolute;
  bottom: 0;
  left: 31.5%;
  width: 6.31%;
  height: 13.62%;
  display: none;
}
@media (min-width: 992px) {
  .pkg-deco-1 {
    display: block;
  }
}
.pkg-deco-2 {
  position: absolute;
  left: 62.2%;
  top: 11px;
  width: 6.08%;
  height: 14.81%;
  display: none;
}
@media (min-width: 992px) {
  .pkg-deco-2 {
    display: block;
  }
}

.pkg-divider {
  display: none;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 212px;
  background: #9ab3be;
}
@media (min-width: 992px) {
  .pkg-divider {
    display: block;
  }
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

h3.pkg-title {
  font-family: "Righteous", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 1.92px;
  margin: 0;
}
@media (min-width: 576px) {
  h3.pkg-title {
    font-size: 32px;
  }
}
.pkg-title-red {
  color: #ed1c31;
}
.pkg-title-green {
  color: #3ab447;
}
.pkg-title-blue {
  color: #2787c1;
}

.pkg-subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 1.2px;
  color: #0e2e3a;
  margin: 4px 0;
}
.pkg-desc {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.84px;
  color: #658491;
  max-width: 290px;
  margin: 0 auto;
}

.price-badge {
  position: relative;
  width: 131px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.price-badge-bg {
  position: absolute;
  left: 1px;
  top: 1px;
  width: 131px;
  height: 99px;
  border-radius: 65.5px / 49.5px;
  transform: rotate(0.2deg);
}
.price-badge-bg-red {
  background: rgba(255, 123, 178, 0.1);
}
.price-badge-bg-green {
  background: rgba(114, 182, 63, 0.1);
}
.price-badge-bg-blue {
  background: rgba(49, 172, 206, 0.1);
}

.price-value {
  position: relative;
  font-family: "Open Sans", sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 1.26px;
}
.price-red {
  color: #ed1c30;
}
.price-green {
  color: #72b63f;
}
.price-blue {
  color: #31acce;
}

/* =============================
       GALLERY SECTION
    ============================= */
.gallery-section {
  padding: 48px 16px;
}
@media (min-width: 576px) {
  .gallery-section {
    padding: 64px 24px;
  }
}
@media (min-width: 992px) {
  .gallery-section {
    padding: 120px 40px;
  }
}

h2.gallery-title {
  font-family: "Righteous", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1.44px;
  text-align: center;
  margin-bottom: 16px;
}
@media (min-width: 576px) {
  h2.gallery-title {
    font-size: 36px;
  }
}
@media (min-width: 992px) {
  h2.gallery-title {
    font-size: 48px;
  }
}
.gallery-title .c-dark {
  color: #191919;
  -webkit-text-stroke: 0;
}
.gallery-title .c-green {
  color: #3ab447;
  -webkit-text-stroke: 0;
}
.gallery-title .c-blue {
  color: #2787c1;
  -webkit-text-stroke: 0;
}

.gallery-desc {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.96px;
  color: #658490;
  text-align: center;
  max-width: 611px;
  margin: 0 auto 40px;
}
@media (min-width: 992px) {
  .gallery-desc {
    font-size: 16px;
    line-height: 34px;
  }
}

/* Zigzag Gallery */
.gallery-zigzag-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1448px;
  margin: 0 auto;
  padding: 40px 0;
}

.gallery-column {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.gallery-column.offset-down {
  margin-top: 80px;
}

.gallery-column.offset-up {
  margin-top: -40px;
  position: relative;
  left: -40px;
}

.gallery-item {
  width: 100%;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: block;
}

.pipe-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 0;
  z-index: -1;
  left: 15%;
  position: relative;
}

.pipe-img {
  width: 32px;
  height: 97px;
  object-fit: contain;
}

@media (max-width: 991.98px) {
  .gallery-zigzag-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .gallery-column.offset-down,
  .gallery-column.offset-up {
    margin-top: 0;
  }
}

@media (max-width: 575.98px) {
  .gallery-zigzag-grid {
    grid-template-columns: 1fr;
  }
  .pipe-wrap {
    margin: 10px 0;
  }
  .pipe-img {
    height: 60px;
  }
}

.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
  content: "";
}

/* =============================
       TESTIMONIAL SECTION
    ============================= */
.testimonial-section {
  padding: 8px 16px;
}
@media (min-width: 576px) {
  .testimonial-section {
    padding: 8px 24px;
  }
}
@media (min-width: 992px) {
  .testimonial-section {
    padding: 0 40px;
  }
}

h2.testimonial-title {
  font-family: "Righteous", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.69px;
  text-align: center;
  margin-bottom: 12px;
}
@media (min-width: 576px) {
  h2.testimonial-title {
    font-size: 32px;
  }
}
@media (min-width: 768px) {
  h2.testimonial-title {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  h2.testimonial-title {
    font-size: 48px;
  }
}
.testimonial-title .c-dark {
  color: #191919;
  -webkit-text-stroke: 0;
}
.testimonial-title .c-green {
  color: #3ab447;
  -webkit-text-stroke: 0;
}
.testimonial-title .c-blue {
  color: #2787c1;
  -webkit-text-stroke: 0;
}

.testimonial-subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.96px;
  color: #658490;
  text-align: center;
  max-width: 841px;
  margin: 0 auto 24px;
}
@media (min-width: 576px) {
  .testimonial-subtitle {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (min-width: 992px) {
  .testimonial-subtitle {
    font-size: 16px;
    line-height: 34px;
  }
}

/* Testimonial Cards (Slick Slider) */
.testimonial-slider-wrap {
  position: relative;
  padding: 8px 40px 16px;
}
@media (min-width: 992px) {
  .testimonial-slider-wrap {
    padding: 8px 0px 16px 60px;
  }
}

.testimonial-card {
  position: relative;
  overflow: visible;
}
.testimonial-card-inner {
  position: relative;
  border-radius: 12px;
  background: #daeefa;
  padding: 36px 24px 36px 80px;
  min-height: 360px;
  margin: 50px 8px 100px;
  width: calc(100% - 19px);
  float: right;
}
@media (min-width: 992px) {
  .testimonial-card-inner {
    padding: 69px 125px 36px 36px;
  }
}

.testimonial-accent-bar {
  position: absolute;
  left: -11px;
  top: -38px;
  width: 59px;
  height: 467px;
  object-fit: cover;
}
.testimonial-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: #fff 5px solid;
  position: relative;
  z-index: 1;
  left: -16px;
}
@media (min-width: 992px) {
  .testimonial-avatar {
    width: 174px;
    height: 174px;
  }
}

.testimonial-quote-open {
  position: absolute;
  left: 26px;
  top: -39px;
  font-family: "Open Sans", sans-serif;
  font-size: 100px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.15);
  pointer-events: none;
}
.testimonial-quote-close {
  position: absolute;
  right: 13px;
  bottom: 31px;
  font-family: "Open Sans", sans-serif;
  font-size: 68px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.15);
  pointer-events: none;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
blockquote.testimonial-text {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 1.08px;
  color: #658490;
  padding-left: 32px;
  margin: 0 0 0;
  border: none;
}
@media (min-width: 992px) {
  blockquote.testimonial-text {
    font-size: 18px;
    line-height: 34px;
    text-transform: capitalize;
    letter-spacing: 2px;
  }
}

.testimonial-divider {
  width: 100%;
  height: 1px;
  background: #b0c9d8;
  margin-bottom: 12px;
}
.testimonial-author {
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: 1.44px;
  color: #191919;
  margin: 0;
}

/* =============================
       FOOTER SECTION
    ============================= */
.footer-nav-section {
  background: #2c3236;
  padding: 40px 16px 32px;
}
@media (min-width: 576px) {
  .footer-nav-section {
    padding: 40px 24px 32px;
  }
}
@media (min-width: 992px) {
  .footer-nav-section {
    padding: 40px 40px 32px;
  }
}

.footer-bubbles {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}
.footer-bubbles .fb-wrap {
  position: relative;
  width: 53px;
  height: 44px;
}
.footer-bubbles .fb-y {
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: #ffcb08;
}
.footer-bubbles .fb-g {
  position: absolute;
  left: 12px;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: #12b24c;
}
.footer-bubbles .fb-b {
  position: absolute;
  left: 17px;
  top: 8px;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: #008fd5;
}

.footer-logo {
  width: 143px;
  height: 113px;
  object-fit: cover;
  display: none;
}
@media (min-width: 768px) {
  .footer-logo {
    display: block;
  }
}

.footer-bg-img {
  width: 100%;
  display: none;
  border-radius: 14px;
}
@media (min-width: 768px) {
  .footer-bg-img {
    display: block;
  }
}
.footer-info-link {
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.footer-info-link .footer-info-value {
  transition: color 0.25s ease;
}
.footer-info-link .footer-contact-icon {
  transition: transform 0.25s ease;
}
.footer-info-link:hover .footer-info-value,
.footer-info-link:focus-visible .footer-info-value {
  color: #ffd84d;
  text-decoration: underline;
}
.footer-info-link:hover .footer-contact-icon,
.footer-info-link:focus-visible .footer-contact-icon {
  transform: scale(1.15) rotate(-6deg);
}
.footer-info-link:focus-visible {
  outline: 2px solid #ffd84d;
  outline-offset: 4px;
  border-radius: 6px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px 32px;
  margin-bottom: 70px;
  transform: rotate(355deg);
  -webkit-transform: rotate(355deg);
  -moz-transform: rotate(355deg);
  -ms-transform: rotate(355deg);
  -o-transform: rotate(355deg);
  margin-top: -34px;
}
.footer-links a {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 33px;
  letter-spacing: 0.96px;
  color: #d8f2fb;
  text-decoration: none;
  white-space: nowrap;
}
.footer-links a:hover {
  font-weight: 800;
}
.footer-links a.active {
  font-weight: 800;
}

.footer-info-card {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 24px;
}
@media (min-width: 992px) {
  .footer-info-card {
    padding: 26px 63px;
  }
}

.footer-info-label {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
  margin-bottom: 8px;
}
.footer-info-value {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin: 0;
}
.footer-contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.footer-deco-social {
  display: none;
}
@media (min-width: 768px) {
  .footer-deco-social {
    display: block;
    position: absolute;
    bottom: 0;
    right: 50px;
    width: 136px;
  }
}

/* Footer social icons */
.footer-social {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  top: -50px;
  right: 16%;
}
.footer-social li {
  display: block;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #008fd5;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  /* box-shadow: 0 4px 12px rgba(39, 135, 193, 0.35); */
  border: rgba(255, 255, 255, 0.8) 1px solid;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  img {
    width: 30px;
    height: 30px;
  }
}
.footer-social a:hover,
.footer-social a:focus-visible {
  transform: translateY(0px) scale(1.06);
  background: linear-gradient(180deg, #2787c1 0%, #0e6aa3 100%);
  box-shadow: 0 8px 18px rgba(39, 135, 193, 0.5);
  color: #ffd84d;
  outline: none;
  -webkit-transform: translateY(0px) scale(1.06);
  -moz-transform: translateY(0px) scale(1.06);
  -ms-transform: translateY(0px) scale(1.06);
  -o-transform: translateY(0px) scale(1.06);
}
.footer-social a:focus-visible {
  outline: 2px solid #ffd84d;
}
.footer-social i {
  line-height: 1;
}
@media (min-width: 768px) {
  .footer-social {
    justify-content: flex-end;
  }
}

.footer-copyright {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  color: rgba(216, 242, 251, 0.6);
  margin-top: 24px;
}
.hero-slider .slick-prev,
.hero-slider .slick-next {
  font-size: 28px;
  line-height: 1;
  position: absolute;
  top: calc(100% - 235px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 40px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: #ed1c24;
  border: #ed1c24 1px solid;
  outline: none;
  background: #fff;
  border-radius: 53px;
  -webkit-border-radius: 53px;
  -moz-border-radius: 53px;
  -ms-border-radius: 53px;
  -o-border-radius: 53px;
  z-index: 5;
}
.activity-slider .slick-prev,
.activity-slider .slick-next {
  font-size: 28px;
  line-height: 1;
  position: absolute;
  top: calc(100% - -17px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 40px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: #ed1c24;
  border: #ed1c24 1px solid;
  outline: none;
  background: #fff;
  border-radius: 53px;
  -webkit-border-radius: 53px;
  -moz-border-radius: 53px;
  -ms-border-radius: 53px;
  -o-border-radius: 53px;
  z-index: 5;
}

.hero-slider .slick-prev i,
.hero-slider .slick-next i,
.activity-slider .slick-next i,
.activity-slider .slick-prev i {
  font-size: 28px;
  line-height: 1;
  color: #ed1c24;
}
.hero-slider .slick-prev,
.activity-slider .slick-prev {
  left: 10%;
  transform: rotate(7deg);
  -webkit-transform: rotate(7deg);
  -moz-transform: rotate(7deg);
  -ms-transform: rotate(7deg);
  -o-transform: rotate(7deg);
}
.hero-slider .slick-next,
.activity-slider .slick-next {
  right: 10%;
  transform: rotate(-7deg);
  -webkit-transform: rotate(-7deg);
  -moz-transform: rotate(-7deg);
  -ms-transform: rotate(-7deg);
  -o-transform: rotate(-7deg);
}
.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover,
.activity-slider .slick-prev:hover,
.activity-slider .slick-next:hover {
  background: #ed1c24;
}

.hero-slider .slick-prev:hover i,
.hero-slider .slick-next:hover i,
.activity-slider .slick-prev:hover i,
.activity-slider .slick-next:hover i {
  color: #fff;
}
.activity-slider .slick-prev:before,
.activity-slider .slick-next:before {
  display: none;
}
.style-1.gallery-item {
  height: 214px;
  width: 205px;
  object-fit: cover;
  position: relative;
}
.style-2.gallery-item {
  height: 322px;
  width: 275px;
  object-fit: cover;
  position: relative;
  right: 23%;
}
.style-3.gallery-item {
  height: 225px;
  width: 207px;
  right: 16%;
}
.style-4.gallery-item {
  height: 310px;
  width: 237px;
  right: 16%;
}
.style-5.gallery-item {
  height: 267px;
  width: 231px;
  right: 44%;
}
.style-6.gallery-item {
  height: 250px;
  width: 221px;
  right: -25%;
  margin-top: 20px;
}
.style-7.gallery-item {
  height: 322px;
  width: 283px;
  right: -8%;
}
.style-8.gallery-item {
  height: 225px;
  width: 328px;
  right: 0%;
}
.offset-up .style-5.gallery-item {
  right: 0;
}
.widepipe .pipe-img {
  width: 51px;
  height: 362px;
  object-fit: contain;
}
.widepipe2 .pipe-img {
  width: 39px;
  height: 175px;
  object-fit: contain;
}
.pipe-wrap.widepipe {
  left: -11%;
}
.widepipe2.pipe-wrap {
  left: -19%;
}
.offset-up .widepipe {
  left: 27%;
}
.offset-up .widepipe .pipe-img {
  width: 40px;
  height: 209px;
  object-fit: contain;
}
.gallery-column:last-child .widepipe .pipe-img {
  width: 39px;
  height: 144px;
  object-fit: contain;
}
.gallery-column:last-child {
  align-items: flex-start;
}
.gallery-column:last-child .widepipe2 .pipe-img {
  width: 46px;
  height: 237px;
  object-fit: contain;
}
.gallery-column:last-child .style-7.gallery-item {
  left: -30%;
}
.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
  font-size: 28px;
  line-height: 1;
  position: absolute;
  top: calc(100% - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 40px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: #ed1c24;
  border: #ed1c24 1px solid;
  outline: none;
  background: #fff;
  border-radius: 53px;
  -webkit-border-radius: 53px;
  -moz-border-radius: 53px;
  -ms-border-radius: 53px;
  -o-border-radius: 53px;
  z-index: 5;
}
.testimonial-slider .slick-prev:before,
.testimonial-slider .slick-next:before {
  content: "";
}
.testimonial-slider .slick-next {
  right: 132px;
}
.testimonial-slider .slick-prev {
  left: auto;
  right: 290px;
}
.footer-nav-section .brand-logo {
  height: 113px;
  object-fit: contain;
}
.footer-bg {
  padding: 110px 44px 15px 86px;
  background: #2787c1;
  border-radius: 12px;
  clip-path: polygon(0 33%, 100% 0, 100% 100%, 0% 100%);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  margin-top: -80px;
}

/* about */
/* ─── Hero / Swiper ────────────────────────────────── */
.pf-hero {
  position: relative;
  width: 100%;
  /* overflow: hidden; */
}
.hero-swiper {
  width: 100%;
}
.hero-swiper .swiper-slide {
  position: relative;
  min-height: 497px;
  display: flex;
  align-items: center;
}
.pf-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pf-hero__blur {
  position: absolute;
  left: 6%;
  bottom: 20%;
  width: 102px;
  height: 97px;
  border-radius: 50%;
  background: #008fd5;
  filter: blur(76px);
  pointer-events: none;
}
.pf-hero__deco {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translateX(-50%);
  width: 9%;
  min-width: 90px;
  max-width: 132px;
  object-fit: contain;
}
.pf-hero__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 40px 41px 50px;
}
.pf-hero__side-img {
  width: 299px;
  flex-shrink: 0;
}
.pf-hero__side-img img {
  width: 100%;
  height: auto;
  border-radius: 0 12px 12px 12px;
  object-fit: cover;
}
.pf-hero__side-img--left img {
  transform: rotate(-6deg);
}
.pf-hero__side-img--right img {
  transform: rotate(6deg);
}
.pf-hero__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  max-width: 628px;
  margin: 0 auto;
}
.pf-hero__logo {
  width: 100%;
  max-width: 287px;
  object-fit: cover;
}
.pf-hero__title {
  font-family: "Righteous", Helvetica, sans-serif;
  font-size: 52px;
  font-weight: 400;
  letter-spacing: 1.62px;
  line-height: 1.05;
  -webkit-text-stroke: 0;
}
.pf-hero__title .c-green {
  color: #3ab447;
}
.pf-hero__title .c-yellow {
  color: #f5b139;
}
.pf-hero__title .c-blue {
  color: #2787c1;
}
.pf-hero__sub {
  max-width: 623px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.96px;
  color: #5a7986;
}
/* Swiper bullets for hero */
.hero-swiper .swiper-pagination-bullet {
  background: #2787c1;
  opacity: 0.4;
}
.hero-swiper .swiper-pagination-bullet-active {
  background: #2787c1;
  opacity: 1;
}

/* ─── Play Under One Roof ──────────────────────────── */
.pf-section-roof {
  position: relative;
  padding: 105px 40px 0;
}
.pf-roof__heading {
  font-family: "Righteous", Helvetica, sans-serif;
  font-size: 56px;
  font-weight: 400;
  letter-spacing: 1.68px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 32px;
  position: relative;
}
.pf-roof__heading .c-dark {
  color: #191919;
}
.pf-roof__heading .c-green {
  color: #3ab447;
}
.pf-roof__heading .c-blue {
  color: #2787c1;
}
.pf-roof__deco {
  position: absolute;
  right: -263px;
  top: -148px;
  width: 265px;
  height: 203px;
  pointer-events: none;
}
/* ─── Play Overview (blue card) ────────────────────── */
.pf-overview {
  position: relative;
  margin-top: 8px;
  border-radius: 12px;
  background: #daeefa;
  padding: 54px 0 54px 62px;
  overflow: visible;
}
.pf-overview__shadow {
  position: absolute;
  bottom: -12px;
  right: 0;
  width: 52%;
  height: 70px;
  border-radius: 388.5px / 35px;
  background: #d9d9d9;
  filter: blur(39.9px);
  pointer-events: none;
}
.pf-overview__text {
  position: relative;
  z-index: 10;
}
.pf-overview__text p {
  font-size: 16px;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: 0.96px;
  color: #658490;
  text-transform: capitalize;
}
.pf-book-btn {
  display: inline-flex;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  margin-top: 24px;
}
.pf-book-btn__wrap {
  width: 163px;
  height: 156px;
  background: url("../images/2.png") 100% 100% / 100% 100% no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 66px;
}
.pf-book-btn__wrap span {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.78px;
  white-space: nowrap;
}
.pf-overview__img img {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 462px;
  object-fit: contain;
}
.pf-overview__img {
  position: relative;
  top: 113px;
}

/* ─── Why Choose Us ────────────────────────────────── */
.pf-why {
  position: relative;
  padding: 56px 38px;
}
.pf-why__blur {
  position: absolute;
  right: -25px;
  top: 120px;
  width: 131px;
  height: 129px;
  border-radius: 50%;
  background: #12b14d;
  filter: blur(97.6px);
  pointer-events: none;
}
.pf-why__heading {
  font-family: "Righteous", Helvetica, sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.68px;
  text-align: center;
  margin-bottom: 60px;
}
.pf-why__heading .c-dark {
  color: #191919;
}
.pf-why__heading .c-green {
  color: #3ab447;
}
.pf-why__heading .c-blue {
  color: #2787c1;
}

/* Feature cards grid */
/* .pf-why__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 35.1px;
  width: 100%;
}
.pf-why__grid > .pf-feature-card {
  flex: 1 1 calc(50% - 17.55px);
  min-width: 0;
}
@media (max-width: 991.98px) {
  .pf-why__grid > .pf-feature-card {
    flex: 1 1 100%;
  }
} */
.pf-feature-card {
  position: relative;
  width: 100%;
}
.pf-feature-card__deco {
  position: absolute;
  left: 83%;
  top: 51px;
  transform: translate(-50%, -50%);
  width: 92px;
  height: auto;
  z-index: 10;
  pointer-events: none;
}
.pf-feature-card__inner.float-end .pf-feature-card__body {
  justify-content: flex-end;
}
.pf-feature-card__inner {
  /* display: flex; */
  min-height: 222px;
  max-width: 507px;
  width: 100%;
}
.pf-feature-card__img {
  width: 336px;
  flex-shrink: 0;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 26px;
}
.pf-feature-card__body {
  display: flex;
  align-items: center;
  padding: 32px 40px;
  border: 1px solid #313a29;
  border-radius: 13.16px;
  margin-top: 80px;
  margin-bottom: 15px;
  min-height: 225px;
  -webkit-border-radius: 13.16px;
  -moz-border-radius: 13.16px;
  -ms-border-radius: 13.16px;
  -o-border-radius: 13.16px;
}
.pf-feature-card__body h3 {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #191919;
  margin-bottom: 10px;
}
.pf-feature-card__body p {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 15.4px;
  font-weight: 400;
  line-height: 26.3px;
  color: #658491;
}
.pf-feature-card__inner.float-start .pf-feature-card__img {
  left: auto;
  right: 0;
}

/* ─── Join The Fun (3-col center) ──────────────────── */
.pf-join {
  position: relative;
  padding: 64px 38px;
}
.pf-join__blur-left {
  position: absolute;
  left: 0;
  top: 10px;
  width: 131px;
  height: 129px;
  border-radius: 50%;
  background: #12b14d;
  filter: blur(97.6px);
  pointer-events: none;
}
.pf-join__col-img {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.pf-join__col-img img.pf-join__photo {
  width: 433px;
  height: 347px;
  border-radius: 12px;
  object-fit: cover;
  transform: rotate(-11.81deg);
}
.pf-join__col-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.84px;
  color: #658490;
}
.pf-join__col-text--right {
  text-align: right;
}
.pf-join__center {
  position: relative;
  height: 646px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pf-join__oval-green {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 580px;
  height: 508px;
  border-radius: 290px / 254px;
  background: #12b24c;
  z-index: 1;
}
.pf-join__oval-white {
  position: absolute;
  left: 50%;
  bottom: -7%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 580px;
  height: 646px;
  border-radius: 290px / 323px;
  border: 1px solid #2787c1;
  background: #fff;
}
.pf-join__content {
  position: relative;
  z-index: 10;
  width: 379px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  margin-top: -15%;
}
.pf-join__content h2 {
  font-family: "Righteous", Helvetica, sans-serif;
  font-size: 56px;
  font-weight: 400;
  letter-spacing: 1.68px;
  color: #fff;
}
.pf-join__content p {
  font-size: 16px;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: 0.96px;
  color: #fff;
}
.pf-join__book-btn {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: transparent;
  border: none;
  cursor: pointer;
}
.pf-join__book-wrap {
  width: 182px;
  height: 174px;
  background: url("../images/2.png") 100% 100% / 100% 100% no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 74px;
  top: 74px;
  position: relative;
}
.pf-join__book-wrap span {
  font-family: "Fredoka One", Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.78px;
}
#about .blob-g1 {
}

.pf-why__grid .row:last-child .col-lg-6:last-child .pf-feature-card__img {
  right: auto;
  left: 0;
  /* top: -80px; */
}
.pf-why .row {
  --bs-gutter-x: 2.5rem;
  --bs-gutter-y: 0;
}
.pf-join .col-lg-3:first-child .pf-join__col-img img.pf-join__photo {
  width: 433px;
  height: 347px;
  border-radius: 12px;
  object-fit: cover;
  transform: rotate(-11.81deg);
  position: relative;
  top: -30px;
}
.pf-join .col-lg-3:last-child .pf-join__col-img img.pf-join__photo {
  width: 433px;
  height: 347px;
  border-radius: 12px;
  object-fit: cover;
  transform: rotate(-11.81deg);
  position: relative;
  top: 90px;
  z-index: -1;
}

/* contact */
/* ── Contact Intro ───────────────────────────────────────── */
.intro-section {
  padding: 56px 1rem;
  text-align: center;
}

.intro-heading {
  font-family: "Righteous", Helvetica, sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.08px;
  -webkit-text-stroke: 2px #fff;
  margin-bottom: 8px;
}

.intro-heading .c-dark {
  color: var(--ink);
}
.intro-heading .c-green {
  color: var(--green);
}
.intro-heading .c-blue {
  color: var(--blue);
}

.intro-desc {
  font-size: 1rem;
  font-weight: 600;
  color: #658491;
  letter-spacing: 0.6px;
  line-height: 2;
  max-width: 1039px;
  margin: 0 auto;
}

/* ── Form + Image Row ────────────────────────────────────── */
.form-row-section {
  position: relative;
  padding: 8px 2.5rem 119px;
}

.blob-left,
.blob-right {
  position: absolute;
  width: 131px;
  height: 129px;
  border-radius: 65.5px / 64.5px;
  background: var(--green-dark);
  filter: blur(97.6px);
  pointer-events: none;
}

.blob-left {
  left: -10px;
  top: 75%;
  transform: translateY(-50%);
}
.blob-right {
  right: 0;
  top: 28%;
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  .blob-left,
  .blob-right {
    display: none;
  }
  .form-row-section {
    padding: 8px 1rem 40px;
  }
}

.form-image {
  width: 100%;
  max-width: 375px;
  height: 375px;
  border-radius: 12px 0 0 12px;
  object-fit: cover;
  display: block;
}
.g-0,
.gy-0 {
  --bs-gutter-x: 0 !important;
}

@media (max-width: 991px) {
  .form-image {
    border-radius: 12px;
    max-width: 100%;
  }
}

.form-card {
  background: #fff;
  border: 1px solid #2787c1;
  border-radius: 44px;
  overflow: visible;
  position: relative;
}

.form-card-body {
  padding: 2rem;
}
@media (min-width: 768px) {
  .form-card-body {
    padding: 2rem 2.5rem;
  }
}

.form-label {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 2.25;
  color: #0c1421;
  display: block;
  margin-bottom: 2px;
}

.form-control-pf {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 12px;
  background: #ceeefe;
  padding: 0 16px;
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 0.875rem;
  color: var(--ink);
  outline: none;
  transition: box-shadow 0.2s;
}

.form-control-pf::placeholder {
  color: #818181;
}
.form-control-pf:focus {
  box-shadow: 0 0 0 1px var(--blue-ring);
}

textarea.form-control-pf {
  height: 135px;
  resize: none;
  padding: 12px 16px;
}

.btn-submit {
  display: inline-block;
  min-width: 251px;
  border-radius: 100px;
  background: #ed1c24;
  color: #fff;
  font-family: "Work Sans", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  padding: 21px 40px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: #d91820;
}

.form-deco {
    position: absolute;
    bottom: -2px;
    left: 8%;
    width: 149px;
    pointer-events: none;
}
/* ── Contact Details Strip ───────────────────────────────── */
.details-strip {
  border: 1px solid var(--blue);
}

@media (max-width: 767px) {
  .details-strip {
    grid-template-columns: 1fr;
  }
}

.detail-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 112px;
    padding: 49px 24px;
    text-align: center;
    border: 1px solid #2787c1;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    height: 100%;
}
.details-strip {padding-bottom: 119px; padding-left:40px; padding-right: 40px;}
.detail-cell span {
  display: flex;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #2787C1;
  justify-content: center; align-items: center;
}

.detail-cell + .detail-cell {
  border-left: 1px solid var(--blue);
}

@media (max-width: 767px) {
  .detail-cell + .detail-cell {
    border-left: none;
    border-top: 1px solid var(--blue);
  }
}

.detail-icon {
  width: 39px;
  height: 38px;
  object-fit: contain;
}

.detail-icon-fallback {
  width: 39px;
  height: 38px;
  font-size: 1.6rem;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color:#0C1421;
  margin: 0;
}

.detail-value {
  font-size:22px;
  font-weight: 400;
  line-height: 1.5;
  color:#0C1421;
  margin: 0;
}

.hero-heading .c-green {
  color: #3ab447;
}
.hero-heading .c-yellow {
  color: #f5b139;
}
.hero-heading .c-blue {
  color: #2787c1;
}
#contact .pf-hero__center {
  max-width: 778px;
}
#contact .pf-hero__sub {
  max-width: 93%;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.96px;
  color: #5a7986;
  margin: 0 auto;
}
