/* ==============================
   SUBHAGRUHA IMAGES GALLERY
================================ */
.dr1051galleryimagemore {
	padding: 80px 20px;
	background: linear-gradient(180deg, #020617, #0f172a);
	color: #fff;
}

.gallerymore-container {
	max-width: 1200px;
	margin: auto;
}

/* Header */
.gallerymore-header {
	text-align: center;
	margin-bottom: 50px;
}

.gallerymore-header h2 {
	font-size: 36px;
	font-weight: 700;
	color: #facc15;
	margin-bottom: 8px;
}

.gallerymore-header p {
	color: #cbd5e1;
	font-size: 16px;
}

/* Card */
.gallerymore-card {
	background: #020617;
	border-radius: 20px;
	padding: 35px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

/* Project title */
.project-title {
	font-size: 26px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 35px;
	position: relative;
}

.project-title::after {
	content: "";
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, #facc15, #fde047);
	display: block;
	margin: 12px auto 0;
	border-radius: 10px;
}

/* Grid */
.gallerymore-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 25px;
}

/* Image item */
.gallerymore-item {
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
	cursor: pointer;
}

.gallerymore-item img {
	width: 100%;
	height: 230px;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.gallerymore-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(2, 6, 23, 0.85));
	opacity: 0;
	transition: opacity 0.4s ease;
}

.gallerymore-item:hover img {
	transform: scale(1.1);
}

.gallerymore-item:hover::after {
	opacity: 1;
}

/* Responsive */
@media ( max-width : 768px) {
	.gallerymore-header h2 {
		font-size: 28px;
	}
	.project-title {
		font-size: 22px;
	}
	.gallerymore-item img {
		height: 200px;
	}
}