.dr1013gallery {
	font-family: 'Poppins', sans-serif;
	background: #f8f9fa;
	/* Soothing medical gradient */
	color: #2c3e50;
	padding: 60px 20px;
}

.dr1013gallery .gallery-container {
	max-width: 1100px;
	margin: auto;
	padding: 2rem;
	background: #2083a1;
	border-radius: 20px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.dr1013gallery .gallery-label {
	text-align: center;
	font-size: 2.6rem;
	font-weight: 600;
	color: #e3f2fd;
	margin-bottom: 40px;
	position: relative;
}

.dr1013gallery .gallery-label::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: #2083a1;
	margin: 10px auto 0;
	border-radius: 2px;
}

.dr1013gallery .gallery-track {
	display: flex;
	flex-direction: row;
	transition: transform 0.6s ease-in-out;
	will-change: transform;
	-webkit-transition: transform 0.6s ease-in-out;
	-moz-transition: transform 0.6s ease-in-out;
	-ms-transition: transform 0.6s ease-in-out;
	-o-transition: transform 0.6s ease-in-out;
}

.dr1013gallery .gallery-card {
	min-width: 500px;
	box-sizing: border-box;
	padding: 1rem;
  margin: 0 10px;
	transition: transform 0.4s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #f8f9fa;
	border-radius: 16px;
	max-width: 500px;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
	-webkit-transition: transform 0.4s ease;
	-moz-transition: transform 0.4s ease;
	-ms-transition: transform 0.4s ease;
	-o-transition: transform 0.4s ease;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
}

.dr1013gallery .gallery-card img {
	width: 100%;
	max-height: 400px;
	object-fit: contain;
	object-position: center;
	background-color: transparent;
	border-radius: 12px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
	transition: transform 0.4s ease;
}

.dr1013gallery .gallery-card img:hover {
	transform: scale(1.05);
}

.dr1013gallery .gallery-buttons {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	z-index: 10;
	pointer-events: none;
}

.dr1013gallery .gallery-button {
	background: #2083a1;
	border: none;
	color: white;
	font-size: 32px;
  text-align: center;
	padding: 15px 20px;
	border-radius: 50%;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	pointer-events: auto;
	transition: background 0.3s;
	margin: 0 10px;
}

.dr1013gallery .gallery-button:hover {
	background: #fcb83a;
}

@media ( max-width : 632px) {
	.dr1013gallery .gallery-card img {
		max-height: 250px;
	}
	.dr1013gallery .gallery-label {
		font-size: 2rem;
	}
	.dr1013gallery .gallery-button {
		font-size: 2.2rem;
	}
}
