/* ============================
   ABOUT US - PREMIUM FASHION THEME
==============================*/
.dr1049aboutushome {
	padding: 80px 20px;
	background: linear-gradient(to right, #faf4ef, #f7ece7);
	color: #4b2c2c;
	font-family: 'Poppins', 'Noto Serif Telugu', sans-serif;
}

/* Layout */
.dr1049aboutushome .about-container {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 50px;
	align-items: center;
}

/* Headings */
.dr1049aboutushome h2 {
	font-size: 2.6rem;
	color: #8c3041; /* deep maroon */
	font-weight: 800;
	margin-bottom: 8px;
}

.dr1049aboutushome .english-heading {
	display: block;
	font-size: 1rem;
	font-weight: 500;
	color: #b86b70; /* rose accent */
	margin-top: 5px;
}

/* Intro Paragraph */
.dr1049aboutushome .intro {
	font-size: 1.2rem;
	line-height: 1.8;
	color: #5e3c3c;
	margin-bottom: 24px;
}

.dr1049aboutushome .english-desc {
	font-size: 1rem;
	color: #a86868;
	display: block;
	margin-top: 8px;
}

/* Category box */
.dr1049aboutushome .category-box {
	background: #ffffff;
	padding: 18px;
	border-radius: 12px;
	margin-bottom: 25px;
	border-left: 6px solid #b86b70; /* rose-gold accent */
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.dr1049aboutushome .category-box h3 {
	font-size: 1.4rem;
	color: #8c3041;
	margin-bottom: 10px;
}

.dr1049aboutushome .category-box ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.dr1049aboutushome .category-box ul li {
	font-size: 1.1rem;
	margin: 6px 0;
	color: #5c3d3d;
}

/* CTA Box */
.dr1049aboutushome .cta-box {
	background: #f6e7e5;
	padding: 18px;
	border-radius: 10px;
	font-size: 1.1rem;
	border-left: 6px solid #8c3041;
	margin-bottom: 20px;
	font-weight: 600;
	color: #5e3b3b;
}

/* Buttons */
.dr1049aboutushome .buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.dr1049aboutushome .btn {
	padding: 14px 28px;
	border-radius: 28px;
	font-size: 1.1rem;
	text-decoration: none;
	font-weight: 600;
	display: inline-block;
	transition: 0.3s ease;
}

/* WhatsApp */
.dr1049aboutushome .btn.whatsapp {
	background: #25d366;
	color: white;
}

/* Call Button */
.dr1049aboutushome .btn.call {
	background: #8c3041;
	color: #fff;
}

.dr1049aboutushome .btn:hover {
	transform: scale(1.05);
}

/* Right Image */
.dr1049aboutushome img {
	width: 100%;
	border-radius: 14px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	object-fit: cover;
	border: 4px solid #fff;
}

/* Responsive */
@media ( max-width : 992px) {
	.dr1049aboutushome .about-container {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.dr1049aboutushome .buttons {
		justify-content: center;
	}
}