.dr1049proprietor {
	padding: 90px 20px;
	background: linear-gradient(to right, #fff8f5, #f7e5e3);
	font-family: 'Poppins', 'Noto Serif Telugu', sans-serif;
	color: #3c1f25;
}

.proprietor-container {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	align-items: center;
	gap: 50px;
	opacity: 0;
	transform: translateY(40px);
	transition: all 1s ease-in-out;
}

.fade-in-active {
	opacity: 1 !important;
	transform: translateY(0) !important;
}

/* IMAGE */
.proprietor-image img {
	width: 100%;
	border-radius: 18px;
	border: 5px solid #ffffff;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

/* HEADINGS */
.dr1049proprietor h2 {
	font-size: 2.4rem;
	font-weight: 800;
	color: #8d2d3f;
	margin-bottom: 6px;
}

.dr1049proprietor h2 span {
	display: block;
	font-size: 1.1rem;
	color: #b17578;
	margin-top: 5px;
}

/* BOXES */
.gst-box, .contact-box {
	background: #ffffff;
	border-left: 6px solid #8d2d3f;
	padding: 16px 20px;
	border-radius: 12px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
	margin: 18px 0;
}

/* HIGHLIGHTS */
.category-highlights h3 {
	font-size: 1.4rem;
	color: #8d2d3f;
	margin-bottom: 10px;
}

.category-highlights ul {
	margin-left: 20px;
}

.category-highlights ul li {
	font-size: 1.1rem;
	margin: 6px 0;
	color: #5a2e33;
}

/* CONTACT */
.contact-line p {
	font-size: 1.1rem;
	margin: 5px 0;
}

/* BUTTONS */
.buttons {
	margin-top: 25px;
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.btn {
	padding: 15px 32px;
	border-radius: 35px;
	font-weight: 600;
	font-size: 1.15rem;
	text-decoration: none;
	transition: 0.3s ease;
}

.btn.call {
	background: #8d2d3f;
	color: white;
}

.btn.whatsapp {
	background: #25d366;
	color: white;
}

.btn:hover {
	transform: scale(1.07);
}

/* RESPONSIVE */
@media ( max-width : 992px) {
	.proprietor-container {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.buttons {
		justify-content: center;
	}
}