/* ===============================
VIDEO GALLERY SECTION
=============================== */
.dr1055galleryivideo {
	padding: 120px 6%;
	background: linear-gradient(180deg, #020617, #0f172a);
	color: white;
	overflow: hidden;
	font-family: system-ui, -apple-system, sans-serif;
}

/* container */
.dr1055galleryivideo .container {
	max-width: 1400px;
	margin: auto;
}

/* ===============================
HEADER
=============================== */
.dr1055galleryivideo .section-header {
	text-align: center;
	margin-bottom: 70px;
}

.dr1055galleryivideo .section-header h2 {
	font-size: 44px;
	font-weight: 700;
	letter-spacing: 1px;
	background: linear-gradient(90deg, #ffffff, #d4af37);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* ===============================
VIDEO GRID
=============================== */
.dr1055galleryivideo .video-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	justify-items: center;
	gap: 35px;
}

/* ===============================
VIDEO CARD
=============================== */
.dr1055galleryivideo .video-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	overflow: hidden;
	backdrop-filter: blur(10px);
	transition: all .4s ease;
	max-width: 520px;
	width: 100%;
	/* scroll animation */
	opacity: 0;
	transform: translateY(40px);
}

.dr1055galleryivideo .video-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 30px 60px rgba(0, 0, 0, .6);
}

/* ===============================
VIDEO FRAME
=============================== */
.dr1055galleryivideo .video-frame {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

.dr1055galleryivideo .video-frame video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	user-select: none;
}

/* ===============================
PLAY BUTTON
=============================== */
.dr1055galleryivideo .video-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 72px;
	height: 72px;
	border-radius: 50%;
	border: none;
	font-size: 30px;
	color: white;
	background: rgba(0, 0, 0, .55);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	backdrop-filter: blur(6px);
	transition: all .35s ease;
	z-index: 5;
}

.dr1055galleryivideo .video-play-btn:hover {
	transform: translate(-50%, -50%) scale(1.1);
	background: linear-gradient(135deg, #d4af37, #facc15);
	color: black;
	box-shadow: 0 10px 25px rgba(212, 175, 55, .6);
}

/* ===============================
CTA BUTTON
=============================== */
.dr1055galleryivideo .cta {
	text-align: center;
	margin-top: 60px;
}

.dr1055galleryivideo .cta a {
	display: inline-block;
	padding: 14px 36px;
	border-radius: 50px;
	background: linear-gradient(90deg, #d4af37, #facc15);
	color: #000;
	font-weight: 600;
	text-decoration: none;
	transition: .35s;
}

.dr1055galleryivideo .cta a:hover {
	transform: scale(1.08);
	box-shadow: 0 12px 30px rgba(212, 175, 55, .6);
}

/* ===============================
TABLET
=============================== */
@media ( max-width :900px) {
	.dr1055galleryivideo .section-header h2 {
		font-size: 34px;
	}
}

/* ===============================
MOBILE
=============================== */
@media ( max-width :768px) {
	.dr1055galleryivideo {
		padding: 80px 20px;
	}
	.dr1055galleryivideo .video-grid {
		grid-template-columns: 1fr;
	}
	.dr1055galleryivideo .video-card {
		max-width: 100%;
	}
	.dr1055galleryivideo .section-header h2 {
		font-size: 28px;
	}
}