.testimonial-section .testimonial-card {
    padding: 1px;
    border-radius: 20px;
    /* background: #FAFAFA14; */
    min-height: 325px;
    display: flex;
    transition: all 0.2s ease-in-out;
    background: linear-gradient(90deg, #FAFAFA14 0%, #FAFAFA14 50%, #FAFAFA14 100%);
}

.testimonial-section .testimonial-card:hover {
    transition: all 0.2s ease-in-out;
    background: linear-gradient(90deg, #531A8B 0%, #223368 50%, #4050D0 100%);
}

.testimonial-section .testimonial-slider .owl-item:nth-child(odd) .testimonial-card {
    min-height: 380px;
}

.testimonial-section .testimonial-card::before {
    content: "";
    transition: all .2s ease-out;
    background-image: url("../images/blue-line.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 1px;
    width: 100%;
    height: 1px;
    opacity: 1;
    z-index: 0;
}

.testimonial-section .testimonial-card::after {
    content: "";
    transition: all .2s ease-out;
    background-image: url("../images/blue-line.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    opacity: 1;
    z-index: 0;
}

.testimonial-section .testimonial-card:hover::before {
    opacity: 0;
    transition: all .2s ease-out;
}

.testimonial-section .testimonial-card:hover::after {
    transition: all .2s ease-out;
    opacity: 0;
}

.testimonial-section .bg-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
    height: auto;
    width: 100%;
    background-color: #0B1222;
    background-image: url("../images/dots-background.svg");
    background-repeat: repeat;
    background-size: contain;
}

.testimonial-section .bg-container::before {
    content: "";
    background-image: url("../images/testimonial-bottom-circle.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    border-radius: 20px;
    bottom: 1px;
    left: 0;
    width: 100%;
    height: 220px;
    opacity: 1;
    z-index: 0;
}

.testimonial-section .quote-container {
    z-index: 2;
    position: relative;
}

.testimonial-section .quote-icon {
    width: 60px !important;
    height: 60px !important;
    border: 1px solid #FAFAFA14 !important;
    border-radius: 100% !important;
    padding: 10px;
    background-color: #111A35;
    margin-bottom: 20px;
}

.testimonial-section .text {
    color: #90A1B9;
    font-size: 16px;
    line-height: 23px;
    font-weight: 400;
    margin: 0;
    transition: all .2s ease-out;
}

.testimonial-section .testimonial-card:hover .text {
    color: #FAFAFA;
    transition: all .2s ease-out;
}

.testimonial-section .icon-container {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 10px;
}

.testimonial-section .profile-image {
    width: 50px !important;
    height: 50px !important;
    border-radius: 100% !important;
}

.testimonial-section .name {
    color: #FAFAFA;
    margin: 0;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
}

.testimonial-section .designation {
    color: #90A1B9;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 767px) {

}