/**
 * Custom Animations - Rotating Images on Circle Path
 */

/* Rotating Orbit Container */
.rotating-orbit-container {
	position: relative;
	width: 100%;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 60px 0;
}

/* Circle Path Border - Perfect Circle 350x350 */
.orbit-path {
	position: absolute;
	width: 350px;
	height: 350px;
	border: 2px solid rgba(133, 133, 133, 0.3);
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Orbit Items (images and dots) */
.orbit-item {
	position: absolute;
	top: 50%;
	left: 50%;
	transition: transform 0.1s linear;
}

/* Image styling */
.orbit-item.image {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	background: #fff;
}

.orbit-item.image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Dot styling */
.orbit-item.dot {
	width: 12px;
	height: 12px;
	background: #858585;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Center Content (optional) */
.orbit-center {
	position: relative;
	z-index: 10;
	text-align: center;
	padding: 20px;
	display: none;
}

.orbit-center h3 {
	font-size: 24px;
	font-weight: 700;
	color: var(--color-3);
	margin-bottom: 10px;
}

.orbit-center p {
	font-size: 16px;
	color: var(--color-2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.rotating-orbit-container {
		height: 300px;
	}

	.orbit-path {
		width: 280px;
		height: 280px;
	}

	.orbit-item.image {
		width: 120px;
		height: 120px;
		border-width: 3px;
	}

	.orbit-item.dot {
		width: 8px;
		height: 8px;
	}
}

@media (max-width: 480px) {
	.rotating-orbit-container {
		height: 250px;
	}

	.orbit-path {
		width: 220px;
		height: 220px;
	}

	.orbit-item.image {
		width: 90px;
		height: 90px;
	}
}