/* ================= VIDEO SCROLL – SAILESH ENTERPRISES ================= */
.dr1050videoscroll {
	padding: 3rem 0;
	background: linear-gradient(135deg, #e8f0ff, #f7faff);
	position: relative;
}

/* Carousel container */
.dr1050videoscroll .carousel-container-dr1050videoscroll {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 100%;
	margin: auto;
}

/* Wrapper */
.dr1050videoscroll .carousel-wrapper-dr1050videoscroll {
	display: flex;
	transition: transform 0.5s ease;
	width: 100%;
}

/* Slide */
.dr1050videoscroll .carousel-slide-dr1050videoscroll {
	flex: 0 0 100%;
	display: flex;
	justify-content: center;
	box-sizing: border-box;
	padding: 0 1.2rem;
}

/* Video container */
.dr1050videoscroll .video-container {
	position: relative;
	width: 100%;
	max-width: 860px;
	aspect-ratio: 16/9;
	border-radius: 16px;
	padding: 6px;
	background: linear-gradient(145deg, #0a3cff, #0032a8);
	box-shadow: 0 14px 34px rgba(10, 60, 255, 0.35);
}

/* Video */
.dr1050videoscroll .video-container video {
	position: absolute;
	inset: 6px;
	width: calc(100% - 12px);
	height: calc(100% - 12px);
	border-radius: 12px;
	object-fit: contain;
	background: #000;
}

/* ================= NAVIGATION BUTTONS ================= */
.dr1050videoscroll .carousel-button-dr1050videoscroll {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: linear-gradient(145deg, #0a3cff, #0032a8);
	color: #ffeb3b;
	border: none;
	width: 48px;
	height: 48px;
	cursor: pointer;
	border-radius: 50%;
	z-index: 10;
	font-size: 20px;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
	transition: all 0.3s ease;
}

/* Left & Right */
.dr1050videoscroll .carousel-button-left-dr1050videoscroll {
	left: 16px;
}

.dr1050videoscroll .carousel-button-right-dr1050videoscroll {
	right: 16px;
}

/* Hover effect */
.dr1050videoscroll .carousel-button-dr1050videoscroll:hover {
	background: linear-gradient(145deg, #ffb300, #ff9800);
	color: #1a1a1a;
	transform: translateY(-50%) scale(1.12);
	box-shadow: 0 10px 28px rgba(255, 193, 7, 0.6);
}

/* ================= MOBILE ================= */
@media screen and (max-width: 768px) {
	.dr1050videoscroll {
		padding: 2.2rem 0;
	}
	.dr1050videoscroll .video-container {
		max-width: 100%;
		border-radius: 14px;
	}
	.dr1050videoscroll .carousel-button-dr1050videoscroll {
		width: 42px;
		height: 42px;
		font-size: 18px;
	}
}