.dr1019schemes {
	padding: 60px 20px;
	background: linear-gradient(to bottom, #e0f7fa, #ffffff);
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	color: #004d40;
}

.ehs-container {
	max-width: 1200px;
	margin: auto;
	text-align: center;
}

.ehs-container h2 {
	font-size: 1.8rem;
	margin-bottom: 30px;
	color: #00695c;
}

.ehs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 25px;
	justify-items: center;
}

.ehs-card {
	background: #ffffff;
	padding: 20px;
	border-left: 6px solid #00acc1;
	border-radius: 16px;
	box-shadow: 0 4px 18px rgba(0, 150, 136, 0.1);
	font-size: 1.1rem;
	font-weight: 600;
	color: #00796b;
	text-align: left;
	width: 100%;
	/* Fade-in Animation */
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.ehs-card.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media ( max-width : 480px) {
	.ehs-container h2 {
		font-size: 1.4rem;
	}
	.ehs-card {
		font-size: 1rem;
		padding: 16px;
	}
}