/* ==============================
   SUBHAGRUHA IMAGE GALLERY
================================ */
.dr1051galleryimage {
	padding: 80px 20px;
	background: linear-gradient(180deg, #0f172a, #020617);
	color: #fff;
}

.gallery-container {
	max-width: 1200px;
	margin: auto;
}

.gallery-header {
	text-align: center;
	margin-bottom: 60px;
}

.gallery-header h2 {
	font-size: 36px;
	font-weight: 700;
	color: #facc15;
	margin-bottom: 10px;
}

.gallery-header p {
	font-size: 16px;
	color: #cbd5e1;
}

/* Grid */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

/* Card */
.gallery-card {
	background: #020617;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px rgba(250, 204, 21, 0.25);
}

/* Image */
.gallery-image {
	position: relative;
	overflow: hidden;
}

.gallery-image img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.gallery-card:hover img {
	transform: scale(1.08);
}

/* Content */
.gallery-content {
	padding: 25px;
	text-align: center;
}

.gallery-content h3 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #f8fafc;
}

/* Button */
.gallery-btn {
	display: inline-block;
	padding: 12px 26px;
	background: linear-gradient(135deg, #facc15, #eab308);
	color: #020617;
	font-weight: 600;
	border-radius: 30px;
	text-decoration: none;
	transition: all 0.4s ease;
}

.gallery-btn:hover {
	background: linear-gradient(135deg, #fde047, #facc15);
	transform: scale(1.05);
}

/* Responsive */
@media ( max-width : 768px) {
	.gallery-header h2 {
		font-size: 28px;
	}
	.gallery-image img {
		height: 220px;
	}
}