.dr1050proprietor {
	padding: 80px 20px;
	background: linear-gradient(135deg, #f0f7ff, #e8f0fc);
	font-family: 'Poppins', 'Noto Serif Telugu', sans-serif;
	opacity: 0;
}

.dr1050proprietor .proprietor-container {
	max-width: 1000px;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 40px;
	align-items: center;
}

.dr1050proprietor .proprietor-image img {
	width: 100%;
	max-width: 220px;
	border-radius: 50%;
	border: 5px solid #0a3cff;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
}

.dr1050proprietor .proprietor-image img:hover {
	transform: scale(1.05);
}

.dr1050proprietor .proprietor-details h2 {
	font-size: 2rem;
	color: #0a3cff;
	font-weight: 700;
	margin-bottom: 6px;
}

.dr1050proprietor .english-name {
	display: block;
	font-size: 1rem;
	color: #1e5aff;
	font-weight: 500;
	margin-top: 4px;
}

.dr1050proprietor .designation {
	font-size: 1.1rem;
	color: #333;
	margin-bottom: 12px;
	font-weight: 600;
}

.dr1050proprietor .location {
	font-size: 0.95rem;
	color: #555;
	margin-bottom: 20px;
}

.dr1050proprietor .experience {
	font-size: 1rem;
	color: #444;
	line-height: 1.7;
	margin-bottom: 24px;
}

.dr1050proprietor .english-desc {
	display: block;
	font-size: 0.95rem;
	color: #0a3cff;
	margin-top: 8px;
	font-weight: 500;
}

.dr1050proprietor .contact-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.dr1050proprietor .btn {
	padding: 12px 28px;
	border-radius: 28px;
	font-weight: 600;
	text-decoration: none;
	transition: 0.3s ease;
}

.dr1050proprietor .btn.call {
	background: #0a3cff;
	color: #fff;
}

.dr1050proprietor .btn.whatsapp {
	background: #25d366;
	color: #fff;
}

.dr1050proprietor .btn:hover {
	transform: scale(1.05);
}

/* Responsive */
@media ( max-width : 992px) {
	.dr1050proprietor .proprietor-container {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.dr1050proprietor .contact-buttons {
		justify-content: center;
	}
}