/* Team Carousel Styles */
.about-team-carousel .team-square-img {
	width: 100%;
	height: 350px;
	object-fit: cover;
	border-radius: 0;
	box-shadow: none;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-team-carousel .team-square-img:hover {
	transform: scale(1.02);
	box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.about-team-carousel .owl-carousel .item {
	display: flex;
	justify-content: center;
	padding: 0;
}

.about-team-carousel .d-flex {
	gap: 0px;
}

.carousel-prev, .carousel-next {
	background-color: black !important;
	color: white !important;
	border: 1px solid white !important;
	padding: 8px 16px !important;
	font-size: 24px !important;
	font-weight: bold !important;
	border-radius: 50% !important;
	width: 45px !important;
	height: 45px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.carousel-prev:hover, .carousel-next:hover {
	background-color: yellow !important;
	color: black !important;
}

/* Carousel navigation buttons */
.carousel-prev,
.carousel-next,
.carousel-prev-2,
.carousel-next-2 {
    background-color: #000 !important;
    border: 2px solid #fff !important;
    color: #fff !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1 !important;
}

.carousel-prev:hover,
.carousel-next:hover,
.carousel-prev-2:hover,
.carousel-next-2:hover {
    background-color: #FFD700 !important;
    color: #000 !important;
    border-color: #FFD700 !important;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev:focus,
.carousel-next:focus,
.carousel-prev-2:focus,
.carousel-next-2:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Team carousel images */
.team-square-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.team-square-img:hover {
    transform: scale(1.05);
}

/* Clickable image cursor */
.clickable-img {
    cursor: zoom-in;
}

/* Carousel container position relative */
.about-team-carousel .position-relative {
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-prev,
    .carousel-next,
    .carousel-prev-2,
    .carousel-next-2 {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

#imageModal .modal-content {
	background: rgba(0, 0, 0, 0.9) !important;
}

#imageModal .modal-body img {
	max-height: 90vh;
	object-fit: contain;
}
