/* ===== WHY CHOOSE US SECTION ===== */
.dr1042whyus {
	padding: 70px 20px;
	background: linear-gradient(135deg, #e0f7fa, #f1f8e9, #fffde7);
	font-family: 'Poppins', sans-serif;
	overflow: hidden;
}

.whyus-container {
	max-width: 1200px;
	margin: auto;
	text-align: center;
}

.whyus-header h2 {
	font-size: 2.6rem;
	font-weight: 800;
	color: #1a73e8;
	margin-bottom: 10px;
}

.whyus-header p {
	font-size: 1.1rem;
	color: #333;
	margin-bottom: 50px;
}

/* Cards Grid */
.whyus-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 25px;
	align-items: stretch;
}

/* Individual Card */
.whyus-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 25px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whyus-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
	font-size: 2.2rem;
	margin-bottom: 15px;
}

.whyus-card h3 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: #0b4f6c;
}

.whyus-card p {
	font-size: 1rem;
	color: #333;
	line-height: 1.5;
}

/* Fade-in Animation */
.fade-in-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up.animate {
	opacity: 1;
	transform: translateY(0);
}

/* Mobile Responsive */
@media ( max-width : 768px) {
	.whyus-header h2 {
		font-size: 2.2rem;
	}
	.whyus-header p {
		font-size: 1rem;
	}
	.whyus-card h3 {
		font-size: 1.2rem;
	}
	.whyus-card p {
		font-size: 0.95rem;
	}
}