.dr1031proprietor {
	padding: 80px 20px;
	background: linear-gradient(135deg, #402a0d, #8a5200);
	/* Golden brown */
	color: #fffaf2;
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	position: relative;
	overflow: hidden;
}

.dr1031proprietor-container {
	max-width: 1100px;
	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: 24px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(10px);
	transform: translateY(30px);
	opacity: 0;
	transition: all 1s ease;
}

.dr1031proprietor-container.fade-in-active {
	opacity: 1;
	transform: translateY(0);
}

.dr1031proprietor-content {
	flex: 1 1 60%;
}

.dr1031proprietor-title {
	font-size: 2.3rem;
	font-weight: 800;
	color: #ffd700;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.dr1031proprietor-sub {
	font-size: 1.4rem;
	color: #ffecb3;
	font-weight: 600;
	margin-bottom: 12px;
}

.dr1031proprietor-contact {
	font-size: 1.1rem;
	color: #ffe082;
	margin-bottom: 16px;
}

.dr1031proprietor-note {
	font-size: 1.05rem;
	line-height: 1.6;
	color: #ffecb3;
}

.dr1031proprietor-special {
	margin-top: 18px;
	font-size: 1.05rem;
	color: #fff9c4;
	line-height: 1.6;
}

/* Buttons */
.dr1031proprietor-buttons {
	margin-top: 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.dr1031proprietor-buttons a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	border-radius: 30px;
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

/* WhatsApp */
.whatsapp-btn {
	background-color: #d4f709;
	color: #1f1f1f;
	border: 2px solid #b9e300;
	box-shadow: 0 4px 12px rgba(160, 217, 17, 0.3);
}

.whatsapp-btn:hover {
	background-color: #c0df07;
	transform: scale(1.05);
}

/* Call */
.call-btn {
	background-color: #ffc107;
	color: #1f1f1f;
	border: 2px solid #ffb300;
	box-shadow: 0 4px 12px rgba(255, 179, 0, 0.4);
}

.call-btn:hover {
	background-color: #ffb300;
	transform: scale(1.05);
}

/* Badge */
.dr1031proprietor-badge {
	flex: 1 1 30%;
	text-align: center;
}

.dr1031proprietor-badge img {
	width: 120px;
	height: 120px;
	padding: 14px;
	background: #fffaf0;
	border-radius: 24px;
	border: 4px solid #ffd700;
	box-shadow: 0 8px 30px rgba(255, 235, 59, 0.2);
	transition: transform 0.3s ease;
}

.dr1031proprietor-badge img:hover {
	transform: rotate(6deg) scale(1.08);
}

/* Responsive */
@media ( max-width : 768px) {
	.dr1031proprietor-container {
		flex-direction: column;
		text-align: center;
	}
	.dr1031proprietor-buttons {
		justify-content: center;
	}
}