/* ============================= */
/* PRAKRUTI PROJECTS SECTION */
/* ============================= */
.dr1055projects {
	padding: 100px 20px;
	background: linear-gradient(135deg, #081a24, #0f2f3c);
	color: #fff;
	font-family: system-ui, sans-serif;
}

.dr1055projects-container {
	max-width: 1250px;
	margin: auto;
}

.dr1055projects h2 {
	text-align: center;
	font-size: 40px;
	margin-bottom: 50px;
	font-weight: 600;
}

/* ============================= */
/* FILTER BUTTON GROUPS */
/* ============================= */
.dr1055projects-cities, .dr1055projects-areas, .dr1055projects-types {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 25px;
}

/* ============================= */
/* FILTER LABELS */
/* ============================= */
.dr1055projects-filter {
	text-align: left;
	margin-bottom: 20px;
}

.dr1055projects-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	opacity: .9;
	margin-bottom: 10px;
}

.dr1055projects-label i {
	font-size: 14px;
}

/* ============================= */
/* FILTER GROUP COLORS */
/* ============================= */

/* Cities */
.dr1055projects-filter.location .dr1055projects-label {
	color: #4fc3f7;
}

.dr1055projects-cities {
	border-left: 4px solid #4fc3f7;
	padding-left: 12px;
}

/* Areas */
.dr1055projects-filter.area .dr1055projects-label {
	color: #ffb74d;
}

.dr1055projects-areas {
	border-left: 4px solid #ffb74d;
	padding-left: 12px;
}

/* Property Types */
.dr1055projects-filter.type .dr1055projects-label {
	color: #81c784;
}

.dr1055projects-types {
	border-left: 4px solid #81c784;
	padding-left: 12px;
}

/* ============================= */
/* BUTTON STYLE */
/* ============================= */
.dr1055projects button {
	padding: 10px 20px;
	border-radius: 30px;
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .2);
	color: #fff;
	cursor: pointer;
	transition: .3s;
	font-size: 14px;
}

/* Cities highlight */
.dr1055projects-cities button:hover, .dr1055projects-cities button.active
	{
	background: #4fc3f7;
	color: #00141a;
}

/* Areas highlight */
.dr1055projects-areas button:hover, .dr1055projects-areas button.active
	{
	background: #ffb74d;
	color: #00141a;
}

/* Types highlight */
.dr1055projects-types button:hover, .dr1055projects-types button.active
	{
	background: #81c784;
	color: #00141a;
}

/* ============================= */
/* PROJECT GRID */
/* ============================= */
.dr1055projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
	gap: 30px;
	margin-top: 40px;
	justify-content: center;
}

/* ============================= */
/* CARD */
/* ============================= */
.dr1055projects-card {
	background: rgba(255, 255, 255, .05);
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .1);
	backdrop-filter: blur(10px);
	transition: .35s;
	display: none;
	max-width: 340px;
	margin: auto;
}

.dr1055projects-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, .4);
}

/* ============================= */
/* IMAGE */
/* ============================= */
.dr1055projects-card img {
	width: 100%;
	height: 220px;
	object-fit: contain;
	background: #000;
	display: block;
	transition: transform .5s;
}

.dr1055projects-card:hover img {
	transform: scale(1.05);
}

/* ============================= */
/* CARD BODY */
/* ============================= */
.dr1055projects-card-body {
	padding: 18px;
}

.dr1055projects-card-body h3 {
	font-size: 18px;
	margin-bottom: 6px;
	font-weight: 600;
}

.dr1055projects-card-body p {
	font-size: 14px;
	opacity: .9;
	margin-bottom: 6px;
}

.dr1055projects-near {
	font-size: 13px;
	opacity: .7;
	margin-bottom: 14px;
}

/* ============================= */
/* CARD BUTTON */
/* ============================= */
.dr1055projects-card-body a {
	display: inline-block;
	padding: 8px 14px;
	background: #00ffd5;
	color: #00141a;
	border-radius: 6px;
	text-decoration: none;
	font-size: 13px;
	transition: .3s;
}

.dr1055projects-card-body a:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, .3);
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media ( max-width :768px) {
	.dr1055projects {
		padding: 70px 15px;
	}
	.dr1055projects h2 {
		font-size: 30px;
	}
	.dr1055projects-grid {
		grid-template-columns: 1fr;
	}
	.dr1055projects-card {
		max-width: 100%;
	}
	.dr1055projects-card img {
		height: 200px;
	}
}

/* ============================= */
/* SECTION ACTION BUTTONS */
/* ============================= */
.dr1055projects-section-actions {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 50px;
	flex-wrap: wrap;
}

.dr1055projects-section-actions a {
	padding: 12px 26px;
	border-radius: 8px;
	font-size: 14px;
	text-decoration: none;
	font-weight: 600;
	transition: .3s;
}

/* WhatsApp */
.dr1055projects-whatsapp {
	background: #25D366;
	color: #fff;
}

.dr1055projects-whatsapp:hover {
	background: #1ebe5d;
	transform: translateY(-3px);
}

/* Website */
.dr1055projects-website {
	background: #00ffd5;
	color: #00141a;
}

.dr1055projects-website:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, .3);
}