/* TESTIMONIAL SECTION */
.testimonial-slider {
    height: 400px;
    width: 75%;
}

/* Reset struktur slick slider */
.testimonial-slider .slick-list,
.testimonial-slider .slick-track {
    height: 100% !important;
}

/* Style untuk slide container */
.testimonial-slider .slick-slide>div {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Style untuk konten testimonial */
.testimonial-item {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 20px;
}

/* Custom Dots Styling */
.custom-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 24px;
}

.custom-dots .dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #0a1f44;
    background-color: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.custom-dots .dot.bg-primary {
    background-color: #0a1f44;
    border-color: transparent;
    transform: scale(1.1);
}

/* Slider Styles */
.testimonial-slider .slick-slide {
    transition: transform 0.3s ease;
    padding: 0 15px;
}

.testimonial-slider .slick-slide:not(.slick-center) {
    opacity: 0.5;
    transform: scale(0.9);
}

.testimonial-slider .slick-center {
    opacity: 1;
    transform: scale(1);
}


/* FORM CONTACT SECTION */
.link-underline-animation {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.link-underline-animation::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: currentColor;
    transition: width 0.4s ease;
}

.link-underline-animation:hover::after {
    width: 100%;
}
