.dr1030proprietor {
	padding: 80px 20px;
	background: linear-gradient(135deg, #3e0012, #6d071a);
	/* Jewel Maroon */
	color: #fff8e1;
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	position: relative;
	overflow: hidden;
}

.dr1030proprietor-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.06);
	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;
}

.dr1030proprietor-container.fade-in-active {
	opacity: 1;
	transform: translateY(0);
}

.dr1030proprietor-content {
	flex: 1 1 60%;
}

.dr1030proprietor-title {
	font-size: 2.2rem;
	font-weight: 800;
	color: #fdd835;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.dr1030proprietor-sub {
	font-size: 1.4rem;
	color: #fffde7;
	font-weight: 600;
	margin-bottom: 12px;
}

.dr1030proprietor-contact {
	font-size: 1.1rem;
	color: #ffe082;
	margin-bottom: 16px;
}

.dr1030proprietor-note {
	font-size: 1.05rem;
	line-height: 1.6;
	color: #fff9c4;
}

.dr1030proprietor-special {
	margin-top: 18px;
	font-size: 1.05rem;
	color: #fff9c4;
	line-height: 1.6;
}

/* Buttons */
.dr1030proprietor-buttons {
	margin-top: 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.dr1030proprietor-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: #a0d911;
	color: #1f1f1f;
	border: 2px solid #8bc34a;
	box-shadow: 0 4px 12px rgba(160, 217, 17, 0.3);
}

.whatsapp-btn:hover {
	background-color: #91c41b;
	transform: scale(1.05);
}

/* Call */
.call-btn {
	background-color: #ffb300;
	color: #1f1f1f;
	border: 2px solid #ffa000;
	box-shadow: 0 4px 12px rgba(255, 179, 0, 0.4);
}

.call-btn:hover {
	background-color: #ffa000;
	transform: scale(1.05);
}

/* Badge */
.dr1030proprietor-badge {
	flex: 1 1 30%;
	text-align: center;
}

.dr1030proprietor-badge img {
	width: 120px;
	height: 120px;
	padding: 14px;
	background: #fffaf0;
	border-radius: 24px;
	border: 4px solid #fbc02d;
	box-shadow: 0 8px 30px rgba(255, 235, 59, 0.2);
	transition: transform 0.3s ease;
}

.dr1030proprietor-badge img:hover {
	transform: rotate(6deg) scale(1.08);
}

/* Responsive */
@media ( max-width : 768px) {
	.dr1030proprietor-container {
		flex-direction: column;
		text-align: center;
	}
	.dr1030proprietor-buttons {
		justify-content: center;
	}
}