#photos {
	padding: 80px 0;
}

#photos .section-header {
	margin-bottom: 50px;
}

.photos-carousel {
	margin: 0 auto;
	max-width: 1000px;
	position: relative;
}

.photos-carousel .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	height: auto;
}

.carousel-image {
	width: 100%;
	height: 600px;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease;
}

.carousel-image:hover {
	transform: scale(1.02);
}

.photos-carousel .swiper-button-next,
.photos-carousel .swiper-button-prev {
	color: #fff;
	background: rgba(0, 0, 0, 0.5);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-top: -25px;
}

.photos-carousel .swiper-button-next:after,
.photos-carousel .swiper-button-prev:after {
	font-size: 18px;
	font-weight: bold;
}

.photos-carousel .swiper-button-next:hover,
.photos-carousel .swiper-button-prev:hover {
	background: rgba(0, 0, 0, 0.7);
	transform: scale(1.1);
}

.photos-carousel .swiper-pagination {
	bottom: 20px;
}

.photos-carousel .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
}

.photos-carousel .swiper-pagination-bullet-active {
	background: #fff;
}

@media (max-width: 768px) {
	.carousel-image {
		height: 400px;
	}
	
	.photos-carousel .swiper-button-next,
	.photos-carousel .swiper-button-prev {
		width: 40px;
		height: 40px;
		margin-top: -20px;
	}
	
	.photos-carousel .swiper-button-next:after,
	.photos-carousel .swiper-button-prev:after {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.carousel-image {
		height: 300px;
	}
	
	#photos {
		padding: 60px 0;
	}
}