    body {
            background-color: #fdfbfb !important;
        }

        .tf-timeline-description {
            font-family: "Poppins", sans-serif;
            font-size: 18px;
            line-height: 1.85;
            color: #1f2937;
            letter-spacing: 0.4px;
        }

        .tf-timeline-description .name {
            font-size: 22px;
            font-weight: 600;
            color: #0f766e;
        }

        .tf-timeline-description .highlight {
            font-weight: 500;
            color: #374151;
        }
        .tf-timeline-image{
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.tf-timeline-image img{
    width: 100%;
    display: block;
    border-radius: 18px;
    transition: transform 0.5s ease;
        /* box-shadow: 0 12px 30px rgba(0,0,0,0.12); */
}

/* subtle hover effect */
.tf-timeline-image:hover img{
    transform: scale(1.06);
    filter: brightness(1.05) contrast(1.05);
}

/* soft highlight overlay */
.tf-timeline-image::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.25),
        rgba(0,0,0,0)
    );
    pointer-events: none;
}
.tf-page-title{
    position: relative;
    padding: 80px 0;
    background: 
        linear-gradient(
            rgba(0,0,0,0.25),
            rgba(0,0,0,0.25)
        ),
        url(../images/shop/file/istockphoto-174864876-170667a.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.tf-page-title .heading{
    font-size: 40px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.8px;
}
   /* SECTION */
    .team-section {
      position: relative;
      overflow: hidden;
      padding: 80px 0;
      background: #fff;
       /* font-family: 'PT Sans', sans-serif !important; */
    }

    /* CORNER DECOR */
    .corner-decor {
      position: absolute;
      top: -40px;
      left: -40px;
      width: 300px;
      opacity: 0.4;
      z-index: 1;
    }

    /* IMAGE */
    .main-img {
      border-radius: 12px;
      width: 100%;
    }

    /* RATING CARD */
    .rating-box {
      position: absolute;
      top: 25px;
      left: 25px;
      background: #ffffff;
      padding: 16px 20px;
      border-radius: 8px;
      text-align: center;
      width: 140px;
      z-index: 2;
    }

    .rating-box .badge {
      background: #6a8f2a;
    }

    .stars {
      color: #f6b400;
      font-size: 14px;
      margin: 6px 0;
    }

    .rating-box h2 {
      color: #6a8f2a;
      font-weight: 700;
      margin: 5px 0;
    }

    .rating-box p {
      font-size: 13px;
      margin: 0;
      color: #777;
    }

    /* CONTENT */
    .section-tag {
      color: #6a8f2a;
      font-weight: 600;
      letter-spacing: 1px;
      display: inline-block;
      margin-bottom: 12px;
    }

    .section-title {
      font-size: 38px;
      font-weight: 600;
      color: #2f3b1f;
      line-height: 1.3;
      margin-bottom: 20px;
    }

 .section-text {
  color: #6c757d;
  max-width: 620px;
  margin-bottom: 28px;

  /* font-family: 'PT Sans', sans-serif; */
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
}


    .discover-btn {
      background: #b7892c;
      color: #fff;
      padding: 12px 28px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 500;
      display: inline-block;
    }

    .discover-btn:hover {
      background: #9c7424;
      color: #fff;
    }

    /* RESPONSIVE */
    @media (max-width: 991px) {
      .section-title {
        font-size: 28px;
      }
      .rating-box {
        width: 120px;
      }
    }
/* =========================
   TEAM SECTION
========================= */

.team-section {
    /* background: #f9fdfb; */
    padding: 80px 0;
    font-family: "Poppins", sans-serif;
}

/* Title icon */
.team-icon i {
    font-size: 38px;
    color: #9bc9c3;
}

/* =========================
   TEAM CARD
========================= */

.team-card {
    background: #fcfafa;
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: box-shadow 0.4s ease;
     font-family: 'PT Sans', sans-serif !important;
}

.team-card:hover {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* =========================
   TEAM IMAGE
========================= */

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* =========================
   TEAM CONTENT (HOVER MOVE)
========================= */

.team-content {
    width: 300px;              /* fixed width */
    padding: 22px 20px;
    background: #ffffff;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.4s ease;
    opacity: 0.95;

    display: flex;             /* enable flexbox */
    flex-direction: column;    /* stack children vertically */
    justify-content: center;   /* center vertically */
    align-items: center;       /* center horizontally */
    text-align: center;        /* center text */
    box-sizing: border-box;    /* include padding in width */
    margin-left: 20px !important;
}


.team-card:hover .team-content {
    transform: translateY(-12px);
    opacity: 1;
}

/* Name */
.team-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222;
}

/* Role */
.team-content span {
    font-size: 14px;
    color: #7a7a7a;
}

/* =========================
   SOCIAL ICONS
========================= */

.team-social {
    margin-top: 16px;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #9bc9c3;
    border-radius: 6px;
    color: #9bc9c3;
    margin: 0 4px;
    transition: transform 0.4s ease,
                background 0.3s ease,
                color 0.3s ease;
    text-decoration: none;
}

/* social hover */
.team-social a:hover {
    background: #9bc9c3;
    color: #ffffff;
    transform: translateY(-4px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
    .team-card img {
        height: 240px;
    }
}

@media (max-width: 575px) {
    .team-section {
        padding: 50px 0;
    }

    .team-card img {
        height: 220px;
    }
}
 body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f8f8f8;
      color: #333;
    }

   /* SPA Section Layout */
    .spa-section {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 100px 5%;
      gap: 60px;
      min-height: 80vh;
      flex-wrap: wrap;
      background-color: #fff;
    }

    /* Left Image Container */
    .spa-image-wrapper {
      position: relative;
      flex: 1;
      max-width: 650px;
      display: flex;
      justify-content: flex-end;
    }

    /* Decorative Green Block */
    .spa-image-wrapper::before {
      content: '';
      position: absolute;
      top: -40px;
      bottom: -40px;
      left: -200px;
      right: 40%;
      background-color: #9bae92;
      z-index: 0;
      border-radius: 8px;
    }

    .spa-image-container {
      position: relative;
      z-index: 1;
      width: 100%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      border-radius: 8px;
      overflow: hidden;
    }

    .spa-image-container img {
      width: 100%;
      display: block;
      object-fit: cover;
    }

    /* Play Button Overlay */
    .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 65px;
      height: 65px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border: 2px solid #fff;
      transition: all 0.3s ease;
    }

    .play-button:hover {
      background: #fff;
      transform: translate(-50%, -50%) scale(1.05);
    }

    .play-button::after {
      content: '';
      width: 0;
      height: 0;
      border-left: 15px solid #9bae92;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      margin-left: 5px;
    }

    /* Right Text Content */
    .spa-content {
      flex: 1;
      max-width: 500px;
      text-align: left;
    }

    .spa-content .team-icon {
      /* width: 40px; */
      margin-bottom: 20px;
    }

    .spa-content h2 {
      font-size: 38px;
      margin-bottom: 20px;
      color: #333;
      line-height: 1.2;
      font-weight: 400;
    }

    .spa-content p {
      font-size: 16px;
      color: #888;
      margin-bottom: 30px;
      line-height: 1.7;
    }

    .spa-content button {
      background-color: #9bae92;
      color: #fff;
      border: none;
      padding: 14px 35px;
      font-size: 16px;
      font-weight: 700;
      border-radius: 50px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .spa-content button:hover {
      background-color: #899c7f;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .spa-section {
        flex-direction: column;
        padding-top: 60px;
      }
      .spa-image-wrapper::before {
        left: -5%;
        right: 10%;
      }
      .spa-content {
        text-align: center;
      }
    }

    @media (max-width: 767px) {
      .corner-decor{
        display: none !important;
      }
    }