.gallery-container {
	position: relative;
	max-width: 1320px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
	margin: 0 auto;
	font-family: "Manrope", sans-serif;
	padding-top: 80px;
    padding-bottom: 100px;
}
.gallery-title {
	text-align: center;
	color: white;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 3rem;
	text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}
.image-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
}
.image-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.image-wrapper {
	position: relative;
	overflow: hidden;
	height: 250px;
}
.gallery-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.image-card:hover .gallery-image {
	transform: scale(1.1);
}
.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, rgb(102 204 96 / 64%), rgb(1 150 58 / 69%));
	opacity: 0;
	transition: opacity 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}
.image-card:hover .image-overlay {
	opacity: 1;
}
.zoom-icon {
	color: white;
	font-size: 2rem;
	text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.image-caption {
	padding: 1.5rem;
	text-align: center;
}
.caption-text {
	font-size: 15px;
	font-weight: 600;
	color: #333;
	line-height: 1.4;
}
.load-more-container {
	text-align: center;
	margin-top: 2rem;
}
.load-more-btn {
	background: linear-gradient(45deg, #65cb60, #02963a);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    font-family: "Manrope", sans-serif;
}

.hidden {
    display: none !important;
}

.load-more-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}
.load-more-btn:active {
	transform: translateY(-1px);
}
/* custommodel Styles */
.custommodel-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	padding: 2rem;
}
.custommodel-overlay.active {
	opacity: 1;
	visibility: visible;
}
.custommodel-content {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 25px 50px rgba(0,0,0,0.5);
	transform: scale(0.8);
	transition: transform 0.3s ease;
}
.custommodel-overlay.active .custommodel-content {
	transform: scale(1);
}
.custommodel-image {
	width: 100%;
	height: auto;
	max-height: 70vh;
	object-fit: contain;
	display: block;
}
.custommodel-caption {
	padding: 1.5rem;
	text-align: center;
	background: white;
}
.custommodel-caption-text {
	font-size: 1.3rem;
	font-weight: 600;
	color: #333;
}
.close-btn {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(0,0,0,0.7);
	color: white;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.2rem;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}
.close-btn:hover {
	background: rgba(0,0,0,0.9);
	transform: scale(1.1);
}
.nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0,0,0,0.7);
	color: white;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.5rem;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1001;
}
.nav-btn:hover {
	background: rgba(0,0,0,0.9);
	transform: translateY(-50%) scale(1.1);
}
.prev-btn {
	left: 1rem;
}
.next-btn {
	right: 1rem;
}
.nav-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}
.nav-btn:disabled:hover {
	background: rgba(0,0,0,0.7);
	transform: translateY(-50%) scale(1);
}
/* Responsive Design */
@media (max-width: 768px) {
	.gallery-container {
		padding-top: 50px;
		padding-bottom: 60px;
	}
	.gallery-title {
		font-size: 2rem;
		margin-bottom: 2rem;
	}
	.gallery-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 1.5rem;
	}
	.image-wrapper {
		height: 200px;
	}
	.custommodel-content {
		max-width: 95vw;
		max-height: 95vh;
	}
	.custommodel-image {
		max-height: 60vh;
	}
}
@media (max-width: 480px) {
	.gallery-container {
		padding-top: 50px;
		padding-bottom: 60px;
	}
	.gallery-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	.gallery-title {
		font-size: 1.8rem;
	}
	.load-more-btn {
		padding: 0.8rem 2rem;
		font-size: 15px;
	}
}