.section-title {
  font-size: 40px;
  margin: 20px 0;
  text-align: center;
}


.tac {
  text-align: center;
  margin-left: 30px;
}

.testimonials {
  margin: 0% 10%;
  text-align: center;
  position: relative;
}

.testimonial-wrapper {
  position: relative;
  overflow: hidden;
}

.block-widget-wrap {
  padding: 20px 7.5px 0px 7.5px !important;
}

.testimonial-container {
  display: flex;
  gap: 20px;
  padding: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.testimonial-container::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
  flex: 0 0 auto;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.profile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 10px;
}

h3 {
  font-size: 18px;
  margin: 5px 0;
}

.date {
  font-size: 14px;
  color: gray;
}

.stars {
  font-size: 18px;
  color: #FFD700;
  margin: 5px 0;
}

.review {
  font-size: 14px;
  color: #333;
  margin: 10px 0;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(133, 131, 131, 0.5);
  color: white;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
}

.arrow-left {
  left: 0;
}

.arrow-right {
  right: 0;
}

.arrow {
  display: none;
}


.mobile-only {
  display: none;
}

.web-only {
  display: block;
}


.home-banner-design {
  object-fit: fill;
  width: 100%;
  height: 500px;
  background: #000;
}



.post-image {
  object-fit: fill;
  height: 90% !important;
}

.post-image-hover {
  object-fit: fill;
  height: 90% !important;
}

@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }

  .web-only {
    display: none;
  }


  .home-banner-design {
    object-fit: fill !important;
    width: 97% !important;
    height: 300px !important;
    background: #000;
    border-radius: 8px !important;
    transition: background-color 0.3s ease;
    margin: 0% 1% 1% 1%;
  }


  .scroll-container-home-category {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 16px 16px 4px 16px;
    scroll-behavior: smooth;
  }

  .scroll-container-home-category::-webkit-scrollbar {
    display: none;
  }

  .scroll-container-home-category {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  .category-item-home-category {
    flex-shrink: 0;
    width: 80px;
    text-align: center;
    font-size: 13px;
    color: #333;
  }

  .category-item-home-category img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 4px;
  }

  .flat-off-home-category {
    width: 80px;
    height: 80px;
    background-color: #ccf5ec;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #0f766e;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 4px;
  }


  .search-box-home {
    width: 97%;
    margin: 1% 1% 3% 1%;
    border-radius: 8px !important;
    transition: background-color 0.3s ease;
    border: 1px solid #4b782a !important;
  }


  .search-box-home::placeholder {
    color: #999;
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    opacity: 1;
  }





}