/* =========================
   ABOUT SECTION ROOT
========================= */
.dr1056aboutus {
	padding: 130px 6%;
	background: radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.08),
		transparent 40%),
		radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.05),
		transparent 40%), linear-gradient(180deg, #020617, #0b1220);
	color: #fff;
	overflow: hidden;
}

/* CONTAINER */
.dr1056aboutus .about-container {
	max-width: 1400px;
	margin: auto;
}

/* =========================
   HEADER
========================= */
.dr1056aboutus .about-header {
	text-align: center;
	margin-bottom: 90px;
}

.dr1056aboutus .about-header h2 {
	font-size: 46px;
	font-weight: 800;
	letter-spacing: 1px;
	background: linear-gradient(90deg, #ffffff, #ffd700, #ffcc70);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dr1056aboutus .about-tagline {
	margin-top: 12px;
	font-size: 18px;
	color: #ccc;
	letter-spacing: 1px;
}

/* =========================
   GRID
========================= */
.dr1056aboutus .about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center;
}

/* =========================
   TEXT BLOCK
========================= */
.dr1056aboutus .about-text h3 {
	font-size: 32px;
	margin-bottom: 20px;
	color: #ffd700;
}

.dr1056aboutus .about-text p {
	line-height: 1.8;
	color: #ccc;
	margin-bottom: 16px;
}

/* PROPERTY TAGS */
.dr1056aboutus .property-types {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
}

.dr1056aboutus .property-types li {
	list-style: none;
	padding: 10px 18px;
	border-radius: 30px;
	background: rgba(255, 215, 0, 0.08);
	border: 1px solid rgba(255, 215, 0, 0.25);
	color: #ffd700;
	font-size: 13px;
	transition: 0.3s;
}

.dr1056aboutus .property-types li:hover {
	background: rgba(255, 215, 0, 0.18);
	transform: translateY(-3px);
}

/* =========================
   IMAGE CARD (3D PREMIUM)
========================= */
.dr1056aboutus .image-card {
	border-radius: 26px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
	transform-style: preserve-3d;
	transition: all 0.6s ease;
}

.dr1056aboutus .image-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
}

.dr1056aboutus .image-card:hover {
	transform: rotateY(10deg) rotateX(5deg) scale(1.04);
}

.dr1056aboutus .image-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* =========================
   DIRECTOR SECTION
========================= */
.dr1056aboutus .director-section {
	margin-top: 120px;
}

.dr1056aboutus .director-card {
	display: flex;
	gap: 40px;
	align-items: center;
	padding: 45px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(14px);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
	transition: 0.4s;
}

.dr1056aboutus .director-card:hover {
	transform: translateY(-8px);
}

/* IMAGE */
.dr1056aboutus .director-image img {
	width: 170px;
	height: 170px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid rgba(255, 215, 0, 0.4);
	box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* TEXT */
.dr1056aboutus .director-info h3 {
	font-size: 26px;
	margin-bottom: 6px;
}

.dr1056aboutus .director-role {
	display: inline-block;
	margin-bottom: 14px;
	color: #ffd700;
	font-weight: 600;
}

.dr1056aboutus .director-info p {
	color: #ccc;
	line-height: 1.7;
}

/* =========================
   FOCUS GRID (VISION/MISSION)
========================= */
.dr1056aboutus .focus-grid {
	margin-top: 110px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.dr1056aboutus .focus-card {
	padding: 36px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(12px);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

/* glow border */
.dr1056aboutus .focus-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 22px;
	background: linear-gradient(120deg, transparent, rgba(255, 215, 0, 0.15),
		transparent);
	opacity: 0;
	transition: 0.5s;
}

.dr1056aboutus .focus-card:hover::before {
	opacity: 1;
}

.dr1056aboutus .focus-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.dr1056aboutus .focus-card h4 {
	font-size: 20px;
	margin-bottom: 12px;
	color: #ffd700;
}

.dr1056aboutus .focus-card p {
	color: #ccc;
	line-height: 1.7;
}

/* =========================
   CTA BUTTON
========================= */
.dr1056aboutus .about-cta {
	text-align: center;
	margin-top: 90px;
}

.dr1056aboutus .about-btn {
	padding: 16px 40px;
	border-radius: 50px;
	background: linear-gradient(90deg, #ffd700, #ffcc70);
	color: #000;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: 1px;
	box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
	transition: all 0.3s ease;
}

.dr1056aboutus .about-btn:hover {
	transform: translateY(-4px) scale(1.06);
	box-shadow: 0 25px 50px rgba(255, 215, 0, 0.6);
}

/* =========================
   RESPONSIVE
========================= */
@media ( max-width : 900px) {
	.dr1056aboutus {
		padding: 100px 5%;
	}
	.dr1056aboutus .about-header h2 {
		font-size: 34px;
	}
	.dr1056aboutus .about-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.dr1056aboutus .director-card {
		flex-direction: column;
		text-align: center;
	}
	.dr1056aboutus .focus-grid {
		grid-template-columns: 1fr;
	}
}