.slick-slider {
    position: relative; /* Ensure it's positioned for stacking context */
}

.slick-prev, .slick-next {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: white; /* Default background color */
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: rgb(79, 77, 77); /* Icon color */
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Ensure the button is on top */
    transition: background-color 0.3s ease; /* Smooth transition */
}

.slick-prev:hover, .slick-next:hover {
    background-color: white; /* Ensure no transparency on hover */
    color: rgb(79, 77, 77); /* Icon color */
}

.slick-prev {
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.slick-next {
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.slick-prev:before, .slick-next:before {
    content: ''; /* Clear any default content */
    font-family: "bootstrap-icons";
    line-height: 1; /* Prevent line height issues */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px; /* Adjust as needed */
}

.daftar-banner .slick-dots {
    position: absolute;
    bottom: 10px; /* Distance from the bottom of the image */
    right: 70px; /* Distance from the right side */
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align dots to the right */
    padding: 0;
    margin: 0;
}

.daftar-banner .slick-dots li {
    margin: 0 2px; /* Space between dots */
}

.daftar-banner .slick-dots li button:before {
    color: white; /* Color of the dots */
    font-size: 5px; /* Size of the dots */
    opacity: 1; /* Fully opaque dots */
}

.daftar-banner .slick-dots li.slick-active button:before {
    color: #959191; /* Active dot color */
    opacity: 0.4;
}

.daftar-banner img {
    /*border-radius: 0 0 0 60px;  Top-right corner rounded */
    width: 100%;
    height: 77vh; 
    object-fit: cover;
}

.daftar-banner .about {
    /*border-radius: 0 0 0 60px;  Top-right corner rounded */
    width: 100%;
    height: 100vh; 
    object-fit: cover;
}

.responsive-image-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 31.25%; /* (600/1920) * 100% - Aspect ratio of the image */
}