/* Container & Typography */
.dr1027services {
	padding: 60px 20px;
	background: linear-gradient(135deg, #e0f7f4, #a3d5d3);
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	color: #004d40;
	text-align: center;
	box-sizing: border-box;
}

.services-container {
	max-width: 1200px;
	margin: auto;
}

.section-title {
	font-size: 2.8rem;
	font-weight: 700;
	color: #00796b;
	margin-bottom: 40px;
	letter-spacing: 1.2px;
}

.english-heading {
	font-size: 1.6rem;
	color: #004d40;
	display: block;
	margin-top: 6px;
	font-weight: 500;
}

/* Grid layout */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

/* Service cards */
.service-card {
	background: #ffffffcc;
	border-radius: 18px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	padding: 24px 20px 32px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: default;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
}

/* BIG Images */
.service-card img {
	width: 220px;
	height: 220px;
	border-radius: 50%;
	padding: 8px;
	background: linear-gradient(135deg, #00bfa5, #004d40);
	box-shadow: 0 0 12px 4px #00bfa5cc, 0 8px 20px rgba(0, 77, 64, 0.4);
	margin-bottom: 32px;
	object-fit: cover;
	transition: transform 0.3s ease;
	position: relative;
	z-index: 2;
}

.service-card:hover img {
	transform: scale(1.12);
}

.service-card h3 {
	font-size: 1.4rem;
	color: #00796b;
	margin-bottom: 10px;
	font-weight: 700;
}

.designation {
	font-size: 1rem;
	font-weight: 600;
	color: #00796bcc;
	margin-bottom: 8px;
}

/* Registration Number */
.regd-number {
	font-size: 1rem;
	color: #004d40cc;
	font-weight: 600;
	margin-bottom: 16px;
	font-style: italic;
	letter-spacing: 0.4px;
}

.description {
	font-size: 1rem;
	color: #333333dd;
	margin-bottom: 22px;
	white-space: pre-line;
}

/* WhatsApp Button */
.whatsapp-button {
	background-color: #25d366;
	color: white;
	font-weight: 600;
	font-size: 1rem;
	padding: 12px 20px;
	border-radius: 30px;
	text-decoration: none;
	box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button:hover {
	background-color: #1ebe57;
	box-shadow: 0 8px 20px rgba(30, 190, 87, 0.6);
}

/* Fade-in animation */
.fade-in-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.animate {
	opacity: 1;
	transform: translateY(0);
}

/* Animation delays */
.delay-1 {
	transition-delay: 0.1s;
}

.delay-2 {
	transition-delay: 0.2s;
}

.delay-3 {
	transition-delay: 0.3s;
}

.delay-4 {
	transition-delay: 0.4s;
}

.delay-5 {
	transition-delay: 0.5s;
}

.delay-6 {
	transition-delay: 0.6s;
}

/* Responsive */
@media ( max-width : 768px) {
	.dr1027services {
		padding: 40px 12px;
	}
	.section-title {
		font-size: 2.2rem;
		margin-bottom: 30px;
	}
	.service-card {
		padding: 18px 14px 28px;
	}
	.service-card img {
		width: 180px;
		height: 180px;
		margin-bottom: 28px;
	}
	.service-card h3 {
		font-size: 1.2rem;
		margin-bottom: 8px;
	}
	.designation {
		font-size: 0.9rem;
		margin-bottom: 6px;
	}
	.regd-number {
		font-size: 0.9rem;
		margin-bottom: 12px;
	}
	.description {
		font-size: 0.9rem;
		margin-bottom: 18px;
	}
	.whatsapp-button {
		font-size: 0.95rem;
		padding: 10px 16px;
	}
}