.testimonials-section {
    padding: 60px 0px;
    max-width: 1380px;
    margin:0 auto
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #2d4a47;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #5a7975;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* CAROUSEL STYLES */
.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 5px 35px 5px 30px;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    background: linear-gradient(135deg, #4a9b8e, #68b5a6);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #3d8275, #5ba394);
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-indicators {
    display: flex;
    gap: 8px;
    align-items: center;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: linear-gradient(135deg, #4a9b8e, #68b5a6);
    transform: scale(1.2);
}

/* GRID STYLES (for see more functionality) */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* .testimonials-grid.collapsed .testimonial-card:nth-child(n+4) {
    display: none;
} */

.see-more-container {
    text-align: center;
    margin-top: 30px;
}

.see-more-btn {
    background: linear-gradient(135deg, #4a9b8e, #68b5a6);
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 155, 142, 0.3);
}

.see-more-btn:hover {
    background: linear-gradient(135deg, #3d8275, #5ba394);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 155, 142, 0.4);
}

/* SHARED TESTIMONIAL CARD STYLES */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 20px 20px 40px 20px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #e1f2f0;
    height: auto !important;
}

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

.quote-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4a9b8e, #68b5a6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    box-shadow: 0 4px 15px rgba(74, 155, 142, 0.3);
}



.testimonial-text {
    font-size: 14px;
    line-height: 130%;
    color: #2d4a47;
    font-style: italic;
    margin-bottom: 10px;
}
.rating {
    font-size: 14px;
    color: #e7a50a;
    letter-spacing: 3px;
    line-height: 100%;
    position: absolute;
    bottom: 20px;
}

.star {
    color: #ffd700;
    font-size: 18px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a9b8e, #68b5a6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.author-avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: #2d4a47;
    font-size: 16px;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 100%;
}

.country-flag {
    font-size: 1.2rem;
}

.author-title {
    color: #5a7975;
    font-size: 0.9rem;
}

.stats-section {
    background: linear-gradient(135deg, #4a9b8e, #68b5a6);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    margin-top: 60px;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    opacity: 0.9;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
    font-weight: 500;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(74, 155, 142, 0.1), rgba(104, 181, 166, 0.1));
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.circle-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.slick-prev,
.slick-next {
  background: none !important; /* remove circle */
  border: none !important;
  width: auto;
  height: auto;
}

.slick-prev:before,
.slick-next:before {
  font-size: 30px; /* bigger arrows */
  color: #036661;  /* your color */
  opacity: 1;      /* make sure it's visible */
}


/* RESPONSIVE STYLES */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .carousel-slide {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 60px 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* HIDE/SHOW STYLES - Toggle between carousel and grid */
.carousel-mode .testimonials-grid,
.carousel-mode .see-more-container {
    display: none;
}

.grid-mode .carousel-container,
.grid-mode .carousel-nav {
    display: none;
}
/* .plans-container {
    display: flex;
    flex-direction: column;
} */

.carousel-container .slick-track {
    display: flex !important;
    gap: 15px;
}
.carousel-container .slick-dots li button:before {
    font-size: 7px;
    width: 10px;
    height: 10px;
    color: #a1a1a1;
}
.carousel-container .slick-dots li button {
    width: auto;
    height: auto;
    padding: 0;
}
.carousel-container .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0px 2px;
}
.testimonial-slider .slick-prev:before, .testimonial-slider .slick-next:before {
    opacity: 0.5;
    color: transparent;
    background: url(../images/arrow.png) 0 0 no-repeat;
    background-size: 100%;
    width: 12px;
    height: 23px;
    display: inline-block;
}
.testimonial-slider .slick-prev:before {
    background: url(../images/arrow-left.png) 0 0 no-repeat;
    background-size: 100%;
}

.testimonial-slider .slick-prev:before, .testimonial-slider .slick-next:before {
    font-size: 25px;
}
.testimonial-slider .slick-prev {
    left: -20px;
}
.testimonial-slider .slick-next {
    right: -20px;
}