.dr1055aboutus {
	padding: 120px 6%;
	background: linear-gradient(180deg, #020617, #0f172a);
	color: #fff;
	overflow: hidden;
}

.dr1055aboutus .about-container {
	max-width: 1400px;
	margin: auto;
}

.dr1055aboutus .about-header {
	text-align: center;
	margin-bottom: 80px;
}

.dr1055aboutus .about-header h2 {
	font-size: 44px;
	font-weight: 700;
	background: linear-gradient(90deg, #ffffff, #d4af37);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dr1055aboutus .about-tagline {
	margin-top: 10px;
	opacity: .85;
	font-size: 18px;
}

.dr1055aboutus .about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.dr1055aboutus .about-text h3 {
	font-size: 30px;
	margin-bottom: 20px;
}

.dr1055aboutus .about-text p {
	opacity: .85;
	line-height: 1.8;
	margin-bottom: 15px;
}

.dr1055aboutus .property-types {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 15px;
}

.dr1055aboutus .property-types li {
	list-style: none;
	padding: 8px 16px;
	border-radius: 30px;
	background: rgba(255, 255, 255, .08);
	backdrop-filter: blur(10px);
}

.dr1055aboutus .image-card {
	border-radius: 22px;
	overflow: hidden;
	transform-style: preserve-3d;
	transition: all .5s;
}

.dr1055aboutus .image-card:hover {
	transform: rotateY(8deg) rotateX(4deg) scale(1.03);
}

.dr1055aboutus .image-card img {
	width: 100%;
	display: block;
}

/* director */
.dr1055aboutus .director-section {
	margin-top: 120px;
}

.dr1055aboutus .director-card {
	display: flex;
	gap: 40px;
	align-items: center;
	background: rgba(255, 255, 255, .05);
	padding: 40px;
	border-radius: 20px;
	backdrop-filter: blur(10px);
}

.dr1055aboutus .director-image img {
	width: 160px;
	height: 160px;
	object-fit: cover;
	border-radius: 50%;
}

.dr1055aboutus .director-role {
	display: block;
	margin: 8px 0 14px;
	color: #d4af37;
}

/* focus cards */
.dr1055aboutus .focus-grid {
	margin-top: 100px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.dr1055aboutus .focus-card {
	padding: 35px;
	border-radius: 20px;
	background: rgba(255, 255, 255, .05);
	backdrop-filter: blur(10px);
	transition: all .4s;
}

.dr1055aboutus .focus-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, .5);
}

.dr1055aboutus .focus-card h4 {
	margin-bottom: 12px;
	color: #facc15;
}

.dr1055aboutus .about-cta {
	text-align: center;
	margin-top: 80px;
}

.dr1055aboutus .about-btn {
	padding: 14px 36px;
	border-radius: 40px;
	background: linear-gradient(90deg, #d4af37, #facc15);
	color: #000;
	text-decoration: none;
	font-weight: 600;
}

.dr1055aboutus .about-btn:hover {
	transform: scale(1.05);
}

/* responsive */
@media ( max-width :900px) {
	.dr1055aboutus .about-grid {
		grid-template-columns: 1fr;
	}
	.dr1055aboutus .director-card {
		flex-direction: column;
		text-align: center;
	}
	.dr1055aboutus .focus-grid {
		grid-template-columns: 1fr;
	}
}