/* Health Scheme Section - Light Theme */
.dr1013healthscheme {
	/* container wrapper if needed */
	
}

/* Main section background */
.dr1013healthscheme .employee-health-schemes {
	padding: 60px 20px;
	background: #f9f9f9; /* soft white-grey background */
	color: #444; /* base grey font */
	text-align: center;
	box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.02);
	position: relative;
}

/* Logo */
.dr1013healthscheme .employee-health-schemes .ehs-logo {
	max-width: 100px;
	width: 100%;
	height: auto;
	margin: 20px auto 40px;
	display: block;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

@media ( max-width : 480px) {
	.dr1013healthscheme .employee-health-schemes .ehs-logo {
		max-width: 70px;
	}
}

.dr1013healthscheme .employee-health-schemes h2 {
	font-size: 2.6rem;
	margin-bottom: 20px;
	color: #222; /* dark grey heading */
	text-shadow: none;
}

.dr1013healthscheme .employee-health-schemes p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	color: #666; /* medium grey */
}

/* Card grid */
.dr1013healthscheme .schemes-cards {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}

/* Individual card */
.dr1013healthscheme .scheme-card {
	background: #ffffff; /* full white */
	border-radius: 12px;
	padding: 30px;
	width: 250px;
	text-align: center;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dr1013healthscheme .scheme-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.dr1013healthscheme .scheme-card i {
	font-size: 3rem;
	color: #0288d1; /* calm blue accent */
	margin-bottom: 15px;
	transition: color 0.3s ease;
}

.dr1013healthscheme .scheme-card:hover i {
	color: #fbc02d; /* warm yellow on hover */
}

.dr1013healthscheme .scheme-card h4 {
	font-size: 1.4rem;
	color: #333;
	margin-bottom: 12px;
}

.dr1013healthscheme .scheme-card p {
	font-size: 1rem;
	color: #666;
}

/* Call to action button */
.dr1013healthscheme .cta-button {
	padding: 15px 25px;
	background-color: #fbc02d; /* vibrant yellow */
	color: #222;
	font-size: 1.1rem;
	text-decoration: none;
	border-radius: 6px;
	margin-top: 40px;
	transition: background-color 0.3s ease, color 0.3s ease;
	display: inline-block;
	font-weight: 600;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.dr1013healthscheme .cta-button:hover {
	background-color: #e2ac00;
	color: white;
}

/* Mobile responsiveness */
@media ( max-width : 768px) {
	.dr1013healthscheme .schemes-cards {
		flex-direction: column;
		gap: 30px;
	}
	.dr1013healthscheme .scheme-card {
		width: 100%;
	}
	.dr1013healthscheme .cta-button {
		font-size: 1rem;
		padding: 12px 20px;
	}
}