.testimonial-section {
  padding: 90px 0;
  background: #ffffff;
}
.testimonial-section .section-title {
  margin: auto auto 55px;
  text-align: center;
  max-width: 720px;
}
.testimonial-section .section-title span {
  margin-bottom: 10px;
  display: inline-block;
  color: #2e8b57;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.testimonial-section .section-title h2 {
  margin-bottom: 18px;
  color: #222;
  font-weight: 700;
  font-size: 42px;
}
.testimonial-section .section-title p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

.testimonial-slider {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-prev,
.testimonial-next {
  position: absolute;
  z-index: 10;
  top: 50%;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: 0.3s;
  transform: translateY(-50%);
}
.testimonial-prev i,
.testimonial-next i {
  color: #2e8b57;
  font-size: 20px;
}
.testimonial-prev:hover,
.testimonial-next:hover {
  background: #2e8b57;
}
.testimonial-prev:hover i,
.testimonial-next:hover i {
  color: white;
}

.testimonial-prev {
  left: -25px;
}

.testimonial-next {
  right: -25px;
}

.testimonial-card {
  border-radius: 22px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 45px;
  max-width: 1000px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  gap: 50px;
  transition: 0.4s;
}
.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-images {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.image-box {
  text-align: center;
}
.image-box span {
  margin-bottom: 15px;
  border-radius: 30px;
  display: inline-block;
  padding: 7px 18px;
  color: white;
  font-weight: 600;
  font-size: 13px;
  background: #2e8b57;
}
.image-box img {
  border: 5px solid white;
  border-radius: 18px;
  width: 220px;
  height: 220px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: 0.4s;
}
.image-box:hover img {
  transform: scale(1.05);
}

.arrow {
  color: #2e8b57;
  font-size: 35px;
}

.testimonial-content {
  flex: 1;
}
.testimonial-content .rating {
  margin-bottom: 18px;
}
.testimonial-content .rating i {
  margin-right: 4px;
  color: #FFC107;
  font-size: 18px;
}
.testimonial-content .review {
  margin-bottom: 28px;
  color: #666;
  font-size: 17px;
  line-height: 1.9;
  font-style: italic;
}
.testimonial-content h3 {
  margin-bottom: 5px;
  color: #222;
  font-size: 24px;
}
.testimonial-content h5 {
  margin-bottom: 8px;
  color: #2e8b57;
  font-weight: 600;
  font-size: 15px;
}
.testimonial-content small {
  border-radius: 25px;
  display: inline-block;
  padding: 8px 18px;
  color: #2e8b57;
  font-weight: 600;
  font-size: 13px;
  background: #eef7f2;
}

#testimonialDots {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.testimonial-dot {
  border-radius: 50%;
  width: 13px;
  height: 13px;
  background: #cfcfcf;
  cursor: pointer;
  transition: 0.3s;
}

.testimonial-dot.active {
  border-radius: 20px;
  width: 35px;
  background: #2e8b57;
}

.testimonial-btn {
  margin-top: 45px;
  text-align: center;
}

@media (max-width: 991px) {
  .testimonial-card {
    flex-direction: column;
    padding: 35px;
    text-align: center;
    gap: 35px;
  }
  .testimonial-images {
    justify-content: center;
  }
  .testimonial-prev {
    left: 5px;
  }
  .testimonial-next {
    right: 5px;
  }
}
@media (max-width: 768px) {
  .testimonial-section {
    padding: 70px 0;
  }
  .testimonial-images {
    flex-direction: column;
  }
  .arrow {
    transform: rotate(90deg);
  }
  .image-box img {
    width: 170px;
    height: 170px;
  }
  .testimonial-card {
    padding: 28px;
  }
  .testimonial-content .review {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .testimonial-prev,
  .testimonial-next {
    display: none;
  }
  .section-title h2 {
    font-size: 30px !important;
  }
  .image-box img {
    width: 145px;
    height: 145px;
  }
  .testimonial-content h3 {
    font-size: 20px;
  }
}
.testimonial-page {
  padding: 80px 0;
  background: #f8faf9;
}
.testimonial-page .container {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1320px;
}
.testimonial-page .section-title {
  margin: 0 auto 45px;
  max-width: 700px;
  text-align: center;
}
.testimonial-page .section-title span {
  margin-bottom: 8px;
  display: inline-block;
  color: #2e8b57;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.testimonial-page .section-title h2 {
  margin-bottom: 12px;
  color: #222;
  font-weight: 700;
  font-size: 36px;
}
.testimonial-page .section-title p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

#testimonialList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.testimonial-card {
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 25px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-images {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 260px;
  gap: 15px;
}

.image-box {
  text-align: center;
}
.image-box span {
  margin-bottom: 8px;
  border-radius: 20px;
  display: inline-block;
  padding: 5px 14px;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  background: #2e8b57;
}
.image-box img {
  border: 3px solid #fff;
  border-radius: 12px;
  width: 115px;
  height: 115px;
  object-fit: cover;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
  transition: 0.3s;
}
.image-box:hover img {
  transform: scale(1.05);
}

.arrow {
  color: #2e8b57;
  font-size: 22px;
}

.testimonial-content {
  flex: 1;
  text-align: center;
}
.testimonial-content .rating {
  margin-bottom: 10px;
}
.testimonial-content .rating i {
  color: #ffc107;
  font-size: 15px;
}
.testimonial-content .review {
  margin-bottom: 15px;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
}
.testimonial-content h3 {
  margin-bottom: 5px;
  color: #222;
  font-weight: 700;
  font-size: 20px;
}
.testimonial-content h5 {
  margin-bottom: 8px;
  color: #2e8b57;
  font-weight: 600;
  font-size: 14px;
}
.testimonial-content small {
  border-radius: 20px;
  display: inline-block;
  padding: 5px 14px;
  color: #2e8b57;
  font-weight: 600;
  font-size: 12px;
  background: #eef7f2;
}

@media (max-width: 991px) {
  #testimonialList {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    flex-direction: column;
    text-align: center;
  }
  .testimonial-images {
    flex: auto;
  }
  .arrow {
    transform: rotate(90deg);
  }
}
@media (max-width: 576px) {
  .testimonial-page {
    padding: 60px 0;
  }
  .testimonial-page .section-title h2 {
    font-size: 28px;
  }
  .testimonial-card {
    padding: 18px;
  }
  .testimonial-images {
    gap: 12px;
  }
  .image-box img {
    width: 95px;
    height: 95px;
  }
  .testimonial-content h3 {
    font-size: 18px;
  }
  .testimonial-content .review {
    font-size: 13px;
  }
}
/*=========================================
TOP MEMBERS SECTION
=========================================*/
.top-members-section {
  padding: 90px 0;
  background: #f8fafc;
  overflow: hidden;
}
.top-members-section .container {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1320px;
}
.top-members-section .section-title {
  margin: 0 auto 55px;
  max-width: 720px;
  text-align: center;
}
.top-members-section .section-title span {
  margin-bottom: 10px;
  display: inline-block;
  color: #2e8b57;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.top-members-section .section-title h2 {
  margin-bottom: 15px;
  color: #071C2C;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
}
.top-members-section .section-title p {
  color: #666;
  font-size: 17px;
  line-height: 30px;
}

/*=========================================
MEMBERS SLIDER
=========================================*/
.members-slider {
  display: flex;
  padding: 10px 0 25px;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}
.members-slider::-webkit-scrollbar {
  height: 7px;
}
.members-slider::-webkit-scrollbar-track {
  border-radius: 30px;
  background: #e8ecef;
}
.members-slider::-webkit-scrollbar-thumb {
  border-radius: 30px;
  background: #2e8b57;
}

/*=========================================
MEMBER CARD
=========================================*/
.member-card {
  position: relative;
  border: 1px solid #edf1f5;
  border-radius: 20px;
  padding: 28px 22px 30px;
  flex: 0 0 275px;
  background: #fff;
  text-align: center;
  scroll-snap-align: start;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
}
.member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}
.member-card:hover .member-image img {
  transform: scale(1.08);
}
.member-card:hover .member-rank {
  background: #0b5ed7;
}

/*=========================================
RANK BADGE
=========================================*/
.member-rank {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  background: #2e8b57;
}

/*=========================================
MEMBER IMAGE
=========================================*/
.member-image {
  margin: 0 auto 22px;
  border: 5px solid rgba(24, 165, 88, 0.12);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #fff;
}
.member-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.35s ease;
}

/*=========================================
CONTENT
=========================================*/
.member-content h3 {
  margin-bottom: 12px;
  color: #071C2C;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
}
.member-content .member-id {
  margin-bottom: 18px;
  border-radius: 30px;
  display: inline-block;
  padding: 8px 18px;
  color: #2e8b57;
  font-weight: 700;
  font-size: 13px;
  background: rgba(24, 165, 88, 0.1);
}
.member-content p {
  margin: 0;
  color: #666;
  font-size: 15px;
}

/*=========================================
RESPONSIVE
=========================================*/
@media (max-width: 1200px) {
  .member-card {
    flex: 0 0 260px;
  }
}
@media (max-width: 991px) {
  .top-members-section {
    padding: 80px 0;
  }
  .top-members-section .container {
    padding: 0 18px;
  }
  .top-members-section .section-title h2 {
    font-size: 34px;
  }
  .member-card {
    flex: 0 0 240px;
  }
  .member-image {
    width: 110px;
    height: 110px;
  }
}
@media (max-width: 768px) {
  .top-members-section {
    padding: 70px 0;
  }
  .top-members-section .container {
    padding: 0 15px;
  }
  .top-members-section .section-title h2 {
    font-size: 30px;
  }
  .top-members-section .section-title p {
    font-size: 16px;
  }
  .members-slider {
    gap: 18px;
  }
  .member-card {
    padding: 24px 18px;
    flex: 0 0 220px;
  }
  .member-image {
    width: 100px;
    height: 100px;
  }
  .member-content h3 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .member-card {
    flex: 0 0 200px;
  }
  .member-image {
    width: 90px;
    height: 90px;
  }
  .member-content h3 {
    font-size: 18px;
  }
  .member-content .member-id {
    padding: 7px 14px;
    font-size: 12px;
  }
  .member-content p {
    font-size: 14px;
  }
}

/*# sourceMappingURL=testimonal.css.map */
