.dr1030specialities {
	padding: 80px 20px;
	background: linear-gradient(135deg, #fffaf0, #f3e5f5); /* Soft pearl to lavender */
	background-image: url('https://www.transparenttextures.com/patterns/groovepaper.png');
	background-repeat: repeat;
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	color: #4e342e;
	text-align: center;
	box-sizing: border-box;
}

.specialities-container {
	max-width: 1200px;
	margin: auto;
}

.dr1030specialities h2 {
	font-size: 2.8rem;
	margin-bottom: 60px;
	font-weight: 800;
	color: #880e4f; /* Rich Ruby */
	text-shadow: 1px 1px 3px rgba(255, 215, 0, 0.4); /* Gold glow */
	letter-spacing: 1px;
}

.english-heading {
	font-size: 1.3rem;
	color: #a67c00; /* Antique gold */
	display: block;
	margin-top: 6px;
	font-weight: 500;
}

.specialities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 30px;
	justify-content: center;
}

.speciality-card {
	background: linear-gradient(145deg, #fff8e1, #ffecb3); /* Satin gold */
	padding: 30px 20px;
	border-radius: 20px;
	box-shadow:
		inset 0 0 4px rgba(255, 255, 255, 0.4),
		0 8px 20px rgba(160, 120, 0, 0.15);
	transition: transform 0.5s ease, box-shadow 0.5s ease;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	border: 2px solid rgba(160, 120, 0, 0.2);
	position: relative;
	overflow: hidden;
}

.speciality-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12), transparent 70%);
	animation: sparkleCard 6s infinite linear;
	z-index: 0;
}

@keyframes sparkleCard {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.speciality-card:hover {
	transform: translateY(-10px) scale(1.04);
	box-shadow: 0 16px 36px rgba(137, 94, 0, 0.25);
}

.speciality-card img {
	width: 72px;
	height: 72px;
	margin-bottom: 16px;
	filter: drop-shadow(0 2px 4px rgba(160, 120, 0, 0.3));
	z-index: 1;
}

.speciality-card h4 {
	font-size: 1.5rem;
	color: #8d6e63; /* Elegant brown */
	margin-bottom: 6px;
	font-weight: 700;
	text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
	z-index: 1;
}

.english-title {
	font-size: 1rem;
	color: #6d4c41;
	font-weight: 500;
	z-index: 1;
}

/* Jewel-Themed Buttons */
.dr1030-jewel-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	font-size: 1.1rem;
	font-weight: 700;
	border-radius: 32px;
	border: 2px solid #d4af37; /* Gold Border */
	color: #4e342e;
	background: linear-gradient(145deg, #fff8dc, #ffe8b5); /* Soft Gold */
	text-decoration: none;
	box-shadow:
		0 4px 10px rgba(212, 175, 55, 0.3),
		inset 0 0 4px rgba(255, 255, 255, 0.5);
	transition: all 0.3s ease;
	cursor: pointer;
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
}

.dr1030-jewel-button:hover {
	background: linear-gradient(145deg, #fff4c1, #ffec99);
	color: #3e2723;
	transform: scale(1.05);
	box-shadow:
		0 6px 16px rgba(160, 120, 0, 0.35),
		inset 0 0 4px rgba(255, 255, 255, 0.6);
}

/* Ruby Variant */
.dr1030-jewel-button.ruby {
	background: linear-gradient(145deg, #f8bbd0, #ec407a);
	border-color: #ad1457;
	color: #fff;
}

.dr1030-jewel-button.ruby:hover {
	background: linear-gradient(145deg, #f06292, #c2185b);
	box-shadow:
		0 6px 16px rgba(173, 20, 87, 0.4),
		inset 0 0 4px rgba(255, 255, 255, 0.5);
}

/* Emerald Variant */
.dr1030-jewel-button.emerald {
	background: linear-gradient(145deg, #a5d6a7, #2e7d32);
	border-color: #1b5e20;
	color: #fff;
}

.dr1030-jewel-button.emerald:hover {
	background: linear-gradient(145deg, #66bb6a, #1b5e20);
	box-shadow:
		0 6px 16px rgba(27, 94, 32, 0.4),
		inset 0 0 4px rgba(255, 255, 255, 0.5);
}

/* Fade-in animation */
.fade-in {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.animate {
	opacity: 1;
	transform: translateY(0);
}
.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }
.fade-delay-4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 768px) {
	.dr1030specialities h2 {
		font-size: 2.2rem;
	}
	.speciality-card {
		padding: 24px 16px;
	}
	.speciality-card img {
		width: 60px;
		height: 60px;
	}
	.speciality-card h4 {
		font-size: 1.2rem;
	}
}