.dr1059services {
	padding: 80px 20px;
	background: linear-gradient(135deg, #0f172a, #1e293b);
	color: #fff;
	font-family: 'Poppins', sans-serif;
}

.services-container {
	max-width: 1300px;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

/* IMAGE */
.services-image .img-wrap {
	border-radius: 20px;
	overflow: hidden;
	transform: perspective(1000px) rotateY(-5deg);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.services-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* CONTENT */
.services-tag {
	display: inline-block;
	padding: 6px 14px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	font-size: 13px;
	margin-bottom: 15px;
}

.services-content h1 {
	font-size: 36px;
	margin-bottom: 15px;
}

.services-content h1 span {
	display: block;
	font-size: 18px;
	color: #38bdf8;
	margin-top: 8px;
}

.services-desc {
	margin-bottom: 30px;
	color: #cbd5f5;
	line-height: 1.6;
}

/* GRID */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}

/* CARD */
.service-card {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.08),
		rgba(255, 255, 255, 0.02));
	padding: 20px;
	border-radius: 16px;
	backdrop-filter: blur(10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2),
		transparent);
	opacity: 0;
	transition: 0.4s;
}

.service-card:hover::before {
	opacity: 1;
}

.service-card:hover {
	transform: translateY(-8px) scale(1.02);
}

.service-card h2 {
	font-size: 18px;
	margin-bottom: 10px;
	color: #facc15;
}

.service-card p {
	font-size: 14px;
	color: #e2e8f0;
}

/* RESPONSIVE */
@media ( max-width : 900px) {
	.services-container {
		grid-template-columns: 1fr;
	}
	.services-image .img-wrap {
		transform: none;
	}
}