.testimonial-section {
    padding: 120px 0 0;
    background-color: transparent;
    overflow: hidden;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial-title {
    font-size: 32px;
    font-weight: 700;
    color: #1A2B4A;
    line-height: 140%;
    margin: 0;
}

.testimonial-nav {
    display: flex;
    gap: 16px;
}

.testimonial-btn {
    width: 64px;
    height: 64px;
    border: 1px solid #5899AF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #001A35;
    background: #fff;
}

.testimonial-btn:hover {
    background-color: #1A2B4A;
    border-color: #1A2B4A;
    color: #fff;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 40px; 
    padding: 50px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0px 20px 60px 0px #241F2614;
    max-width: 1378px;
    width: 91.25%;
    margin: 0 auto;
}

.testimonial-icon-box {
    flex-shrink: 0;
    width: 74px;
    height: 74px;
    background-color: #D6D99B; 
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 5px;
    color: #001A35;
    line-height: 145%;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.75;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.75;
}

.testimonial-swiper .swiper-wrapper {
    padding-top: 50px;
    padding-bottom: 100px;
}
.testimonial-swiper .swiper-slide {
	padding-left: 67px;
    padding-right: 67px;
}

.swiper-button-disabled {
    opacity: 0.35;          
    cursor: auto;           
    pointer-events: none;  
}

@media (max-width: 1044px) {
    .testimonial-card {
		width: 100%;
    }
}

@media (max-width: 900px) {
    .testimonial-swiper .swiper-slide {
    	padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 900px) {
    .testimonial-section .container{
    	position: static;
    }
    .testimonial-section {
        position: relative;
        padding-top: 60px;
    }
    .testimonial-nav {
    	position: absolute;
        bottom: 64px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 5;
    }
    
    .testimonial-swiper .swiper-wrapper{
    	padding-bottom: 164px;
    }
}


@media (max-width: 768px) {
    .testimonial-card {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }

    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .testimonial-nav {
        margin-top: 10px;
    }
}

@media (max-width: 479px) {
    .testimonial-title {
    	font-size: 24px;
    }
    .testimonial-swiper .swiper-wrapper{
    	padding-top: 20px;
    }
    
    .testimonial-icon-box svg path {
    	fill: #001A35;
    }
    
    .testimonial-card {
    	padding-inline: 20px;
    }
}