/* =========================
   WHY CHOOSE US SECTION
========================= */
.dr1055whyus2 {
	width: 100%;
	padding: 80px 20px;
	background: #ffffff;
	color: #222222;
	position: relative;
	overflow: hidden;
}

/* Background orbs */
.dr1055whyus2 .whyus2-bg-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.25;
	z-index: 0;
	pointer-events: none;
}

.dr1055whyus2 .whyus2-orb-1 {
	width: 400px;
	height: 400px;
	background: #62d8ff;
	top: -80px;
	left: -80px;
	animation: floatOrb1 12s ease-in-out infinite alternate;
}

.dr1055whyus2 .whyus2-orb-2 {
	width: 300px;
	height: 300px;
	background: #00ffd5;
	bottom: -60px;
	right: -60px;
	animation: floatOrb2 14s ease-in-out infinite alternate;
}

@keyframes floatOrb1 {
	0% { transform: translate(0,0) scale(1); }
	50% { transform: translate(20px, 30px) scale(1.05); }
	100% { transform: translate(0,0) scale(1); }
}

@keyframes floatOrb2 {
	0% { transform: translate(0,0) scale(1); }
	50% { transform: translate(-18px, -25px) scale(1.08); }
	100% { transform: translate(0,0) scale(1); }
}

/* Container */
.dr1055whyus2 .section-container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* Section header */
.dr1055whyus2 .whyus2-header {
	text-align: center;
	margin-bottom: 60px;
}

.dr1055whyus2 .whyus2-badge {
	display: inline-block;
	padding: 6px 18px;
	font-size: 14px;
	font-weight: 600;
	color: #00d5ff;
	background: rgba(0,213,255,0.1);
	border-radius: 50px;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.dr1055whyus2 .whyus2-header h2 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #0f2027;
	line-height: 1.3;
}

.dr1055whyus2 .whyus2-header p {
	font-size: 16px;
	color: #555555;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.7;
}

/* Grid of items */
.dr1055whyus2 .whyus2-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px;
	text-align: center;
}

/* Grid items */
.dr1055whyus2 .whyus2-item {
	padding: 30px 25px;
	border-radius: 16px;
	background: #f7f9fc;
	transition: all 0.35s ease;
	box-shadow: 0 8px 18px rgba(0,0,0,0.05);
	position: relative;
	overflow: hidden;
}

.dr1055whyus2 .whyus2-item::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(120deg, rgba(0,213,255,0.1), rgba(98,216,255,0.05));
	opacity: 0;
	transform: rotate(45deg);
	transition: all 0.5s ease;
}

.dr1055whyus2 .whyus2-item:hover::before {
	opacity: 1;
	transform: rotate(0deg);
}

.dr1055whyus2 .whyus2-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.dr1055whyus2 .whyus2-icon {
	font-size: 36px;
	color: #00d5ff;
	margin-bottom: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	background: rgba(0,213,255,0.1);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.dr1055whyus2 .whyus2-item:hover .whyus2-icon {
	transform: scale(1.15);
	background: rgba(0,213,255,0.15);
}

.dr1055whyus2 h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 12px;
	color: #0f2027;
}

.dr1055whyus2 p {
	font-size: 15px;
	line-height: 1.6;
	color: #555555;
}

/* Responsive */
@media (max-width: 992px) {
	.dr1055whyus2 .whyus2-header h2 {
		font-size: 32px;
	}
	.dr1055whyus2 .whyus2-header p {
		font-size: 15px;
	}
}

@media (max-width: 768px) {
	.dr1055whyus2 {
		padding: 60px 16px;
	}
	.dr1055whyus2 .whyus2-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.dr1055whyus2 h3 {
		font-size: 18px;
	}
	.dr1055whyus2 p {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.dr1055whyus2 .whyus2-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.dr1055whyus2 .whyus2-header h2 {
		font-size: 26px;
	}
	.dr1055whyus2 .whyus2-header p {
		font-size: 13px;
	}
	.dr1055whyus2 h3 {
		font-size: 17px;
	}
	.dr1055whyus2 p {
		font-size: 13px;
	}
}