/* =========================
   ABOUT - ULTRA LUXURY
========================= */
.dr1056aboutushome {
	position: relative;
	padding: 120px 20px;
	overflow: hidden;
	background: radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.08),
		transparent 35%),
		radial-gradient(circle at 85% 10%, rgba(0, 180, 255, 0.05),
		transparent 30%), linear-gradient(180deg, #f9fbfd, #eef5f9);
	color: #0f1f2a;
}

/* CONTAINER */
.dr1056aboutushome .section-container {
	max-width: 1300px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 50px;
	align-items: center;
}

/* ===== TEXT BLOCK ===== */
.dr1056aboutushome .about-content {
	position: relative;
	z-index: 2;
}

/* HEADER */
.dr1056aboutushome .about-header h2 {
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 24px;
	color: #0c1f2b;
	letter-spacing: -0.5px;
}

/* TEXT */
.dr1056aboutushome .about-content p {
	font-size: 16px;
	line-height: 1.9;
	color: #5b6b75;
	margin-bottom: 18px;
}

.dr1056aboutushome .about-content strong {
	color: #0b5d6b;
	font-weight: 700;
}

/* ===== IMAGE BLOCK ===== */
.dr1056aboutushome .about-image {
	position: relative;
	border-radius: 30px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(20px);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12), inset 0 1px 0
		rgba(255, 255, 255, 0.8);
	transition: transform 0.6s ease, box-shadow 0.6s ease;
}

/* GOLD TOP LINE */
.dr1056aboutushome .about-image::before {
	content: "";
	position: absolute;
	top: 0;
	left: 20px;
	right: 20px;
	height: 3px;
	border-radius: 10px;
	background: linear-gradient(90deg, #d4af37, #f6e27a, #d4af37);
	z-index: 2;
}

/* IMAGE */
.dr1056aboutushome .about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.8s ease;
}

/* HOVER EFFECT */
.dr1056aboutushome .about-image:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 40px 90px rgba(0, 0, 0, 0.18);
}

.dr1056aboutushome .about-image:hover img {
	transform: scale(1.08);
}

/* ===== SOFT GLOW ORB ===== */
.dr1056aboutushome::after {
	content: "";
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.15);
	filter: blur(100px);
	top: -60px;
	right: -80px;
}

/* ===== RESPONSIVE ===== */
@media ( max-width :1100px) {
	.dr1056aboutushome .section-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

@media ( max-width :768px) {
	.dr1056aboutushome {
		padding: 80px 16px;
	}
	.dr1056aboutushome .about-header h2 {
		font-size: 28px;
	}
	.dr1056aboutushome .about-content p {
		font-size: 14px;
		line-height: 1.8;
	}
}