/* ================================
   Ongoing Projects – Main Wrapper
================================ */
.dr1051ongoingprojects {
	padding: 70px 16px;
	background: linear-gradient(180deg, #f8fafc, #ffffff);
}

/* ================================
   Layout
================================ */
.dr1051ongoingprojects .op-container {
	max-width: 1200px;
	margin: auto;
}

.dr1051ongoingprojects .op-header {
	text-align: center;
	margin-bottom: 40px;
}

.dr1051ongoingprojects .op-header h2 {
	font-size: 34px;
	color: #0f172a;
	margin-bottom: 8px;
	font-weight: 700;
}

.dr1051ongoingprojects .op-header p {
	color: #64748b;
	font-size: 16px;
}

/* ================================
   Grid
================================ */
.dr1051ongoingprojects .op-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 26px;
}

/* ================================
   Card
================================ */
.dr1051ongoingprojects .op-card {
	background: #ffffff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dr1051ongoingprojects .op-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

/* ================================
   Image (NO CROPPING)
================================ */
.dr1051ongoingprojects .op-image {
	position: relative;
	aspect-ratio: 16/9;
	background: #f1f5f9;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dr1051ongoingprojects .op-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

/* Status Badge */
.dr1051ongoingprojects .op-status {
	position: absolute;
	top: 14px;
	left: 14px;
	background: linear-gradient(135deg, #22c55e, #16a34a);
	color: #ffffff;
	font-size: 13px;
	padding: 6px 14px;
	border-radius: 20px;
	z-index: 2;
}

/* ================================
   Content
================================ */
.dr1051ongoingprojects .op-content {
	padding: 20px;
}

.dr1051ongoingprojects .op-content h3 {
	font-size: 20px;
	color: #0f172a;
	margin-bottom: 6px;
	font-weight: 600;
}

.dr1051ongoingprojects .op-location {
	font-size: 14px;
	color: #64748b;
	margin-bottom: 14px;
}

/* ================================
   Features
================================ */
.dr1051ongoingprojects .op-features {
	list-style: none;
	padding: 0;
	margin: 0 0 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.dr1051ongoingprojects .op-features li {
	background: #f1f5f9;
	color: #334155;
	font-size: 13px;
	padding: 6px 12px;
	border-radius: 20px;
	white-space: nowrap;
}

/* ================================
   Actions
================================ */
.dr1051ongoingprojects .op-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.dr1051ongoingprojects .btn {
	flex: 1;
	text-align: center;
	padding: 11px 12px;
	border-radius: 12px;
	font-size: 14px;
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.dr1051ongoingprojects .btn.whatsapp {
	background: #25d366;
}

.dr1051ongoingprojects .btn.call {
	background: #0ea5e9;
}

.dr1051ongoingprojects .btn.details {
	background: #0f172a;
}

.dr1051ongoingprojects .btn:hover {
	opacity: 0.92;
	transform: translateY(-2px);
}

/* ================================
   Mobile Optimizations
================================ */
@media ( max-width : 480px) {
	.dr1051ongoingprojects {
		padding: 50px 14px;
	}
	.dr1051ongoingprojects .op-header h2 {
		font-size: 26px;
	}
	.dr1051ongoingprojects .op-header p {
		font-size: 14px;
	}
	.dr1051ongoingprojects .op-content h3 {
		font-size: 18px;
	}
	.dr1051ongoingprojects .btn {
		font-size: 13px;
		padding: 10px;
	}
}