  .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: #83a17e;
  }

  .slide-indicator {
    font-size: 15px;
    font-weight: 500;
    color: #2f2951;
    letter-spacing: 1px;
  }

  /* ---------- Responsive ---------- */

  .event-section {
    padding: 40px 5%;
  }

  .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;
    }
  }