.homepage-slider {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
}

.slider-content-wrapper {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* Zoom animation for images */
@keyframes slow-zoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.25);
    }
}

.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slow-zoom 20s ease-in-out forwards; /* Slow zoom in 20 seconds */
}

/* Adjust text positioning */
.slider-content {
    position: absolute;
    right: 45%;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    width: 40%;
    z-index: 10;
}

/* Arrows with round background */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(9, 16, 143, 0.8); /* greenish background with opacity */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1; /* fully visible */
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(9, 16, 143, 1); /* solid on hover */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 50% 50%;
    background-position: center;
    background-repeat: no-repeat;
}

/* Optional: position arrows slightly inside */
.carousel-control-prev {
    left: 15px;
}

.carousel-control-next {
    right: 15px;
}
