
  .exp-text h3 {
    font-size: 18px !important;
  }

  .pageHero.-type-2 {
    position: relative;
    display: flex;
    align-items: center;
    height: 70vh;
    z-index: 0;
  }

  .experience-section {

    padding: 20px 0;
    position: relative;
  }

  .container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    position: relative;
  }

  .experience-slider {
    overflow: hidden;
    position: relative;
  }

  /* Card styling */


  .exp-card img {
    width: 100% !important;
    height: 357px !important;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.4s ease;
  }

  .exp-card img:hover {
    transform: scale(1.03);
  }

  .exp-text {
    margin-top: 12px;
  }



  .exp-text.expanded {
    -webkit-line-clamp: unset;
    display: block;
  }

  .read-more {
    font-weight: 300;
    cursor: pointer;
    font-size: clamp(12px, 1vw, 20px);
    margin-top: 3px;
  }


  .calmPrev,
  .calmNext {
    width: 45px;
    height: 45px;
    border: 1px solid #83a17e;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffff;
    background: #83a17e;
    position: absolute;
    top: 50%;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .calmPrev:hover,
  .calmNext:hover {
    background: #83a17e;
    color: #fff;
  }

  .calmPrev {
    left: -60px !important;
  }

  .calmNext {
    right: -60px !important;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    display: none !important;
  }

  /* Responsive */
  @media (max-width: 1200px) {
    .exp-card {
      width: 90%;
    }

    .exp-card img {
      height: 240px !important;
    }
  }

  @media (max-width: 992px) {
    .exp-card {
      width: 90%;
    }

    .exp-card img {
      height: 220px !important;
    }

    .custom-prev {
      left: -30px !important;
    }

    .custom-next {
      right: -30px !important;
    }
  }

  @media (max-width: 768px) {
    .exp-card {
      width: 100%;
    }

    .exp-card img {
      height: 220px !important;
      object-fit: cover;
    }


    .calmPrev,
    .calmNext {
      width: 32px !important;
      height: 32px !important;
      border: 1px solid #83a17e;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #ffff;
      background: #83a17e;
      position: absolute;
      top: 50%;
      z-index: 10;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .calmPrev:hover,
    .calmNext:hover {
      background: #83a17e;
      color: #fff;
    }

    .calmPrev {
      left: -13px !important;
    }

    .calmNext {
      right: -13px !important;
    }
  }

  @media (max-width: 576px) {
    .exp-card {
      width: 100%;
    }

    .exp-card img {
      height: 220px !important;
      object-fit: cover;
    }
  }

  .section-bg {
    background: #f8f8f1 !important;
  }

  .text-justify_ {
    text-align: justify;
  }

  /* ===== SECTION BASE ===== */
  section {
    padding: 60px 0;
  }

  .border-1 {
    border: 1px solid #eaeaea;
  }

  /* Image */
  section img {
    border-radius: 0px;
    object-fit: cover;
  }

  /* Text content */
  section h3 {
    font-size: 26px;
    letter-spacing: 1px;
  }

  section p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
  }

  /* Buttons */
  section .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    text-transform: uppercase;
    border-radius: 0;
    background: #83a17e;
    color: #fff;
    transition: all 0.3s ease;
  }

  section .btn:hover {
    background: #83a17e;
    color: #fff;
  }

  /* ===== TABLET (≤ 991px) ===== */
  @media (max-width: 991px) {
    section {
      padding: 40px 0;
    }

    section h3 {
      font-size: 22px;
      padding-top: 10px;
    }

    section p {
      font-size: 14px;
    }
  }

  /* ===== MOBILE (≤ 767px) ===== */
  @media (max-width: 767px) {

    /* Stack columns */
    section .col-xl-7,
    section .col-xl-5 {
      margin-bottom: 20px;
    }

    section h3 {
      text-align: center;
      font-size: 20px;
    }

    section p {
      text-align: center;
    }

    /* Buttons stacked */
    section .row .col-xl-7,
    section .row .col-xl-5 {
      width: 100%;
    }

    section .btn {
      font-size: 14px;
    }
  }

  /* ===== SMALL MOBILE (≤ 480px) ===== */
  @media (max-width: 480px) {
    section h3 {
      font-size: 18px;
    }

    section p {
      font-size: 13px;
    }

    section .btn {
      padding: 12px;
    }
  }

  section .wellness_img {
    width: 100%;
    height: 420px;
    object-fit: cover;
  }

  /* === Popup Styles === */
  /* Overlay */
  .custom-popup {
    display: none;
    /* hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    backdrop-filter: blur(4px);
  }

  /* Popup box */
  .popup-content {
    background: #fff;
    display: flex;
    flex-direction: row;
    max-width: 900px;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.4s ease;
  }

  /* Left side image */
  .popup-left {
    width: 45%;
  }

  .popup-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 0.6s ease;
  }

  .popup-left:hover img {
    transform: scale(1.1);
  }

  /* Right side content */
  .popup-right {
    width: 55%;
    padding: 50px 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fafaf8;
  }

  .popup-right h2 {
    font-size: 30px;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 16px;
  }

  .popup-right p {
    color: #555;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 28px;
  }

  /* Book Now button */
  .book-btn {
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #fff;
    background-color: #83a17e;
    padding: 14px 20px;
    text-align: center;
    width: 100%;
    max-width: 260px;
    border-radius: 6px;
    transition: all 0.3s ease;
  }

  .book-btn:hover {
    background-color: #83a17e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  }

  /* Close button */
  .close-btn {
    position: absolute;
    top: 15px;
    right: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    font-weight: bold;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
    /* ensures it stays above image */
  }

  .close-btn:hover {
    background: #fff;
    color: #83a17e;
    transform: rotate(90deg);
  }

  /* Fade-in animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(15px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 768px) {
    .popup-content {
      flex-direction: column;
      max-width: 95%;
    }

    .popup-left,
    .popup-right {
      width: 100%;
    }

    .popup-right {
      padding: 30px 20px;
    }

    .popup-left img {
      width: 100%;
      height: 220px !important;
      object-fit: cover;
      transform: scale(1.05);
      transition: transform 0.6s ease;
    }

    /* keep close button visible on mobile */
    .close-btn {
      top: 10px;
      right: 10px;
      background: rgba(255, 255, 255, 0.95);
      font-size: 26px;
      width: 34px;
      height: 34px;
    }

    /* .book-btn {
      width: 100%;
    } */
    .book-btn {
      text-decoration: none;
      font-size: 9px;
      letter-spacing: 1px;
      font-weight: 600;
      color: #fff;
      background-color: #83a17e;
      padding: 14px 20px;
      text-align: center;
      width: 100%;
      max-width: 260px;
      border-radius: 6px;
      transition: all 0.3s ease;
    }
  }

  .experience-section {

    padding: 80px 0;
    position: relative;
  }

  .container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    position: relative;
  }

  .experience-slider {
    overflow: hidden;
    position: relative;
  }

  /* Card styling */
  .exp-card {
    text-align: center;
    padding: 15px !important;
    margin: 0px !important;
  }

  .exp-card img {
    width: 90%;
    height: 400px;
    /* reduced height */
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.4s ease;
  }

  .exp-card img:hover {
    transform: scale(1.03);
  }

  .exp-text {
    margin-top: 12px;

  }

  .exp-text span {
    display: block;
    width: 50px;
    height: 1px;
    background: #000;
    margin: 0 auto 8px;
  }

  .exp-text p {
    text-align: center !important;
    letter-spacing: 1px;
  }


  /* Navigation arrows */
  .swiper-button-prev,
  .swiper-button-next {
    width: 45px;
    height: 45px;
    border: 1px solid #83a17e;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffff;
    background: #83a17e !important;
    position: absolute;
    top: 50%;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    background: #83a17e;
    color: #fff;
  }

  .custom-prev {
    left: -40px !important;
  }

  .custom-next {
    right: -40px !important;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    display: none !important;
  }

  /* Responsive */
  @media (max-width: 1200px) {
    .exp-card {
      width: 90%;
    }

    .exp-card img {
      height: 240px;
    }
  }

  @media (max-width: 992px) {
    .exp-card {
      width: 90%;
    }

    .exp-card img {
      height: 220px;
    }

    .custom-prev {
      left: -30px !important;
    }

    .custom-next {
      right: -30px !important;
    }
  }

  @media (max-width: 768px) {
    .exp-card {
      width: 100%;
    }

    .exp-card img {
      height: 220px !important;
    }

    .swiper-button-prev,
    .swiper-button-next {
      background: #83a17e;
      border: none;
      width: 35px;
      height: 35px;
      top: 50%;
      transform: translateY(-50%);
    }

    .custom-prev {
      left: 10px !important;
    }

    .custom-next {
      right: 10px !important;
    }

    .exp-text p {
      text-align: center !important;
    }
  }

  @media (max-width: 576px) {
    .exp-card {
      width: 100%;
    }

    .exp-card img {
      height: 220px !important;
    }

    .exp-text {
      margin-top: 0px;
      padding: 10px 30px;
    }

    .exp-text p {
      text-align: center !important;
    }

    .amenities-section {
      margin-top: 0px !important;
      text-align: center;
      background: #ffffef;
      padding: 20px;
    }
  }

  .exp-card {
    padding: 20px 15px !important;
  }

  .offers-section {
    padding: 60px 20px;
    background-color: #f8f8f1;
    overflow: hidden;
    position: relative;
  }

  /* ---------- Heading ---------- */
  .offer-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px !important;
  }

  .offers-title {
    color: #fefffd !important;
    font-weight: 400 !important;
    letter-spacing: 4px;
    font-size: 38px;
    margin: 0;
    text-transform: uppercase;
  }

  .view-all-btn {
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    /* font-weight: 500; */
    color: #fff;
    background-color: #83a17e;
    padding: 10px 22px;
    border-radius: 61px;
    transition: all 0.3s ease;
  }

  .view-all-btn:hover {
    color: #fff !important;
    background-color: #83a17e;
  }

  /* ---------- Carousel ---------- */
  .carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-width: 80%;
    margin: 0 auto;
  }

  .carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
  }

  .carousel-item {
    flex: 0 0 100%;
    margin-right: 40px;
    background-color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    min-height: 250px;
    border-radius: 4px;
  }

  .carousel-item:last-child {
    margin-right: 0;
  }

  .offer-text {
    flex: 1;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .offer-text .btn {
    color: #fff;
    background-color: #545A49;
    border-radius: 0;
    font-weight: 500;
    padding: 10px 24px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .offer-text .btn:hover {
    background-color: #444;
  }

  .offer-img {
    flex: 1.5;
    height: 100%;
  }

  .offer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* ---------- Nav ---------- */
  .carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 35px;
  }

  .nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #83a17e;
    color: #fff;
    border: none;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .nav-btn:hover {
    background-color: #c2ccc0;
  }

  .slide-indicator {
    font-size: 15px;
    font-weight: 500;
    color: #2f2951;
    letter-spacing: 1px;
  }

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



  /* Mobile (≤576px) */


  .event-section {
    padding: 40px 5%;

    /* background: linear-gradient(to bottom, #fbecee, #efe4e430); */

  }

  .event-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    border-bottom: 1px solid #d2c0c0;
    flex-wrap: wrap;
    padding-bottom: 15px;
  }

  .tab-btn {
    background: none;
    border: none;
    font-size: 18px;
    padding: 8px 15px;
    border-right: 1px solid black;
    cursor: pointer;
    letter-spacing: 1px;
    /*font-family: Playfair Display, serif;*/
    transition: 0.3s;
  }

  .tab-btn.active {
    border-bottom: 2px solid #b79c7a;
    color: #b79c7a;
    font-weight: 600;
  }

  .event-arrows {
    display: flex;
    justify-content: space-between;
    padding: 20px 10px;
  }

  .arrow-btn {
    font-size: 25px;
    color: #b79c7a;
    border: 1px solid #b79c7a;
    border-radius: 50%;
    background: #b79c7a;
    padding: 12px 24px;
    cursor: pointer;
    transition: 0.3s;
  }

  .arrow-btn:hover {
    background: #b79c7a;
    color: #fff;
  }

  .event-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
  }

  .event-image {
    flex: 1;
    min-width: 300px;
  }

  .event-image img {
    width: 100%;
    /* max-width: 550px; */
    border-radius: 4px;
    opacity: 1;
    height: 500px;
    transition: opacity 0.6s ease;
    object-fit: cover;
  }

  .fade {
    opacity: 0 !important;
  }

  .event-content {
    flex: 1;
    min-width: 280px;
  }

  .event-content h2 {
    /*font-family: Playfair Display, serif;*/
    font-size: 40px;
    margin-bottom: 10px;
  }

  .event-content p {
    font-size: 17px;
    line-height: 1.6;
  }

  .event-image {
    flex: 1;
    min-width: 300px;
    height: 500px !important;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.6s ease;
    opacity: 1;
  }

  .fade {
    opacity: 0 !important;
  }

  .colorred {
    color: #83a17e;

  }

  .ofersec {
    display: none;
  }

  /* Tablets (≤992px) */
  @media (max-width: 992px) {
    .offers-title {
      font-size: 30px;
      letter-spacing: 2px;
      text-align: center;
      width: 100%;
      margin-bottom: 10px;
    }

    .view-all-btn {
      margin: 10px auto 0;
    }

    .carousel-item {
      flex-direction: column;
      margin-right: 0;
      min-height: auto;
    }

    .offer-text {
      padding: 25px;
    }

    .offer-text h4 {
      font-size: 24px;
    }

    .offer-text p {
      font-size: 15px;
    }

    .carousel-nav {
      margin-top: 25px;
    }
  }

  /* MOBILE RESPONSIVE */
  @media (max-width: 768px) {

    .offer-heading {
      display: flex;
      align-items: center;
      justify-content: center !important;
      flex-wrap: wrap;
      margin-bottom: 30px !important;
    }

    .event-section {
      padding: 30px 20px;
    }

    .event-tabs {
      gap: 20px;
    }

    .tab-btn {
      font-size: 15px;
    }

    .event-content-wrapper {
      flex-direction: column;
      text-align: center;
    }

    .event-content h2 {
      font-size: 28px;
    }

    .carousel-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      max-width: 100%;
      margin: 0 auto;
    }

    .view-all-btn {
      padding: 10px 10px;
      font-size: 10px;
      float: inline-end;
      margin-top: -9px;
      /* border-radius: 0px; */

    }

    .ofersec {
      display: block !important;
    }
  }

  @media (max-width: 576px) {
    .offers-section {
      padding: 40px 15px;
    }

    .carousel-item {
      margin-right: 0 !important;
      /* ✅ Fix spacing issue */
    }

    .offer-text {
      padding: 20px;
    }

    .offer-text h4 {
      font-size: 20px;
    }

    .offer-text p {
      font-size: 14px;
      line-height: 1.6;
    }

    .view-all-btn {
      padding: 8px 18px;
      font-size: 13px;
      margin-top: 5px !important;
    }

    .nav-btn {
      width: 38px;
      height: 38px;
      font-size: 18px;
    }

    .slide-indicator {
      font-size: 13px;
    }
  }
