/* Facility Carousel Styles */
.facility-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.carousel-inner {
    border-radius: 8px;
}

.facility-image {
    margin-bottom: 20px;
}

.facility-nav {
    margin-top: 15px;
}

.btn-nav {
    background: transparent;
    border: none;
    color: #0d6efd;
    font-size: 1.2rem;
    transition: all 0.3s;
    cursor: pointer;
    padding: 5px 10px;
}

.btn-nav:hover {
    color: #0a58ca;
    transform: scale(1.1);
}

.btn-nav:focus {
    outline: none;
}

.facility-item {
    margin-bottom: 80px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.facility-item:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.facility-title {
    color: #3B4763;
    margin-bottom: 15px;
}

.facility-description {
    color: #6c757d;
    margin-bottom: 20px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: #3B4763;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.carousel-control-prev {
    left: 10px;
}

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: rgba(13, 110, 253, 0.8);
}

.carousel-indicators {
    bottom: -30px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #0d6efd;
    opacity: 0.5;
}

.carousel-indicators .active {
    opacity: 1;
} 