/* Carousel Container */
#iebtGallary {
    width: 100vw;
    margin: 0 auto;
    position: relative;
}

/* Carousel Inner */
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Carousel Item */
.carousel-item {
    display: none;
    position: relative;
    transition: transform 0.6s ease-in-out;
}
.carousel-item.active {
    display: block;
}

/* Carousel Image Styling */
#iebtGallary .carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Controls */
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 0.9;
}
.carousel-control-prev {
    left: 0;
}
.carousel-control-next {
    right: 0;
}

/* Indicators Container */
#iebtGallary .carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    width: auto;
    padding: 0;
    margin: 0;
    z-index: 2;
}

/* Indicator Dots */
#iebtGallary .carousel-indicators button {
    background-color: #333;
    border: none;
    width: 12px;
    height: 12px;
    margin: 0 4px;
    border-radius: 50%;
    opacity: 0.7;
    transition: opacity 0.3s, background-color 0.3s;
}

/* Active Indicator */
#iebtGallary .carousel-indicators button.active {
    opacity: 1;
    background-color: #007bff;
}
