/* Gallery Heading Styles */
#gallery .head {
    text-align: center;
}
#gallery .headstyle {
    padding: 5px 15px;
    background-image: linear-gradient(to left, #00bf63, #575656);
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    color: #f7f4f4;
}

/* Body and Card Styles */
body {
    font-family: Arial, sans-serif;
}
.card-img-top {
    height: 200px;
    object-fit: cover;
}
.card-title {
    font-size: 1rem;
    color: #555;
}

/* Custom Control Button Styles */
.custom-control {
    position: absolute;
    top: 50%;
    transform: translateY(150%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.7); /* Bright background */

    display: flex;
    align-items: center;
    justify-content: center;
}
/* .custom-control:hover {
   
   
} */
.custom-control-prev {
    left: -60px; /* Position to the left of carousel */
}
.custom-control-next {
    right: -60px; /* Position to the right of carousel */
}
.custom-icon {
    
    
    width: 5px;
    height: 5px;
}

/* Smooth Behavior for Controls */
.carousel {
    scroll-behavior: smooth;
}
