/*===========================
     07.TESTIMONIAL css
===========================*/
.testimonial-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-header .section-tag {
    font-size: 16px;
    font-weight: 600;
    color: #0077B6;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
    display: block;
}

.testimonial-header h2 {
    font-size: 42px;
    color: #2d2d2d;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.testimonial-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #0077B6;
    border-radius: 2px;
}

.testimonial-header p {
    color: #666;
    max-width: 600px;
    margin: 20px auto 0;
    font-size: 16px;
    line-height: 1.8;
}

/* Testimonial wrapper and tracks */
.testimonial-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 20px 0;
}

.testimonial-track-1,
.testimonial-track-2 {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    position: relative;
    width: fit-content;
}

/* Animation for tracks */
.testimonial-track-1 {
    animation: scroll 5s linear infinite;
    margin-left: 0;
}

.testimonial-track-2 {
    animation: scroll 5s linear infinite reverse;
    margin-left: auto;
}

/* Testimonial cards */
.testimonial-card {
    flex: 0 0 auto;
    width: 400px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    margin-right: 30px;
    transform: translateZ(0);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Quote styling */
.quote-mark {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 120px;
    color: #0077B6;
    opacity: 0.08;
    font-family: Georgia, serif;
    z-index: 0;
    line-height: 1;
    pointer-events: none;
}

/* Testimonial content */
.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    padding-right: 40px;
}

/* Author section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #0077B6;
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-position {
    font-size: 14px;
    color: #0077B6;
    margin: 5px 0 0;
}

.flag-icon {
    width: 20px;
    height: auto;
}

/* Scroll animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% + 100vw));
    }
}

/* Pause animation on hover */
.testimonial-track-1:hover,
.testimonial-track-2:hover {
    animation-play-state: paused;
}

/* Decorative elements */
.decoration {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.decoration-1 {
    top: 50px;
    left: 50px;
    width: 80px;
    height: 80px;
    background: #0077B6;
    opacity: 0.1;
    border-radius: 20px;
}

.decoration-2 {
    bottom: 50px;
    right: 50px;
    width: 120px;
    height: 120px;
    border: 30px solid #0077B6;
    opacity: 0.1;
    border-radius: 50%;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .testimonial-card {
        width: 350px;
    }

    .testimonial-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .testimonial-card {
        width: 300px;
        padding: 25px;
    }

    .testimonial-header h2 {
        font-size: 30px;
    }

    .testimonial-text {
        font-size: 14px;
        padding-right: 30px;
    }

    .author-name {
        font-size: 16px;
    }

    .decoration {
        display: none;
    }

    .testimonial-wrapper {
        gap: 30px;
    }

    .quote-mark {
        font-size: 100px;
        top: 10px;
        right: 20px;
    }

    .testimonial-track-1 {
        animation: scroll 40s linear infinite;
    }

    .testimonial-track-2 {
        animation: scroll 40s linear infinite reverse;
    }
}

.single_testimonial {
  background: white;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
}

.quote-icon {
  color: #0077B6;
  font-size: 40px;
  margin-bottom: 20px;
  opacity: 0.2;
}

.testimonial_text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.author_info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author_image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.single_testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.single_testimonial .testimonial_author img {
  border-radius: 50px;
  border-bottom-right-radius: 0;
}
@media (max-width: 767px) {
  .single_testimonial .testimonial_author img {
    width: 120px;
    border-radius: 30px;
    border-bottom-right-radius: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single_testimonial .testimonial_author img {
    width: 120px;
    border-radius: 30px;
    border-bottom-right-radius: 0;
  }
}
.single_testimonial .testimonial_content {
  padding-left: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .single_testimonial .testimonial_content {
    padding-left: 0;
    margin-top: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single_testimonial .testimonial_content {
    padding-left: 25px;
    margin-top: 0;
  }
}
.single_testimonial .testimonial_content .author_name {
  font-size: 18px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}
.single_testimonial .testimonial_content .author_name .flag_icon {
  width: 32px;
}
.single_testimonial .testimonial_content .sub_title {
  font-size: 14px;
  color: #646F87;
  margin-top: 5px;
}
.single_testimonial .testimonial_content p {
  font-size: 16px;
  margin-top: 20px;
}
.single_testimonial .testimonial_content .review {
  position: absolute;
  top: 0;
  right: 0;
}
.single_testimonial .testimonial_content .review li {
  display: inline-block;
  font-size: 14px;
  color: #FFAE34;
  margin: 0 2px;
}

.testimonial_active .slick-dots {
  width: 100%;
  text-align: center;
  margin-top: 46px;
}
.testimonial_active .slick-dots li {
  display: inline-block;
  margin: 0 3px;
}
.testimonial_active .slick-dots li button {
  font-size: 0;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(0, 167, 142, 0.43);
  border-radius: 50%;
  background: none;
}
.testimonial_active .slick-dots li.slick-active button {
  background-color: #00A78E;
  border-color: #00A78E;
}

.slick-initialized .slick-slide {
  outline: 0;
}/*# sourceMappingURL=testimonial.css.map */
