.dr1048proprietor {
	padding: 80px 20px;
	background: linear-gradient(135deg, #1c1c1c, #4c3b27);
	color: #fff8e1;
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	position: relative;
	overflow: hidden;
}

.dr1048proprietor-container {
	max-width: 1150px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	background: rgba(255, 255, 255, 0.05);
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(8px);
	transform: translateY(30px);
	opacity: 0;
	transition: all 1s ease;
}

.dr1048proprietor-container.fade-in-active {
	opacity: 1;
	transform: translateY(0);
}

.dr1048proprietor-content {
	flex: 1 1 60%;
}

.dr1048proprietor-title {
	font-size: 2.4rem;
	font-weight: 800;
	color: #ffdd57;
	margin-bottom: 10px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.dr1048proprietor-sub {
	font-size: 1.3rem;
	font-weight: 600;
	color: #ffe082;
	margin-bottom: 10px;
}

.dr1048proprietor-contact {
	font-size: 1.1rem;
	color: #ffd54f;
	margin-bottom: 14px;
}

.dr1048proprietor-note {
	font-size: 1.05rem;
	line-height: 1.6;
	color: #ffeaa7;
}

.dr1048proprietor-special {
	margin-top: 18px;
	font-size: 1.05rem;
	color: #fff9c4;
	line-height: 1.6;
}

.dr1048proprietor-buttons {
	margin-top: 26px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.dr1048proprietor-buttons a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	border-radius: 28px;
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.whatsapp-btn {
	background-color: #25d366;
	color: #fff;
	border: 2px solid #25d366;
	box-shadow: 0 4px 14px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn:hover {
	background-color: #1ebc57;
	transform: scale(1.05);
}

.call-btn {
	background-color: #ffc107;
	color: #1f1f1f;
	border: 2px solid #ffb300;
	box-shadow: 0 4px 14px rgba(255, 179, 0, 0.5);
}

.call-btn:hover {
	background-color: #ffb300;
	transform: scale(1.05);
}

.dr1048proprietor-badge {
	flex: 1 1 30%;
	text-align: center;
}

.dr1048proprietor-badge img {
	width: 120px;
	height: 120px;
	padding: 16px;
	background: #fff8dc;
	border-radius: 50%;
	border: 4px solid #ffd700;
	box-shadow: 0 8px 30px rgba(255, 235, 59, 0.2);
	transition: transform 0.3s ease;
}

.dr1048proprietor-badge img:hover {
	transform: rotate(6deg) scale(1.08);
}

@media ( max-width : 768px) {
	.dr1048proprietor-container {
		flex-direction: column;
		text-align: center;
	}
	.dr1048proprietor-buttons {
		justify-content: center;
	}
}