.dr1040proprietor {
	padding: 60px 20px;
	background: linear-gradient(to right, #e3f2fd, #e0f2f1);
	font-family: 'Poppins', sans-serif;
}

.proprietor-container {
	max-width: 1100px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
	flex-wrap: wrap;
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.proprietor-container.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Image */
.proprietor-image {
	flex: 1 1 320px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #ffffff;
	padding: 10px;
	border-radius: 25px;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.proprietor-image img {
	width: 100%;
	max-width: 320px;
	height: auto;
	object-fit: contain;
	border-radius: 20px;
	background: #fff;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.proprietor-image img:hover {
	transform: scale(1.02);
	box-shadow: 0 16px 45px rgba(0, 0, 0, 0.25);
}

/* Content */
.proprietor-content {
	flex: 2 1 400px;
	text-align: left;
}

.proprietor-title {
	font-size: 2rem;
	font-weight: 700;
	background: linear-gradient(to right, #0d47a1, #00796b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 10px;
}

.proprietor-name {
	font-size: 1.7rem;
	font-weight: 700;
	color: #0d47a1;
	margin-bottom: 5px;
}

.proprietor-role {
	font-size: 1.1rem;
	font-weight: 600;
	color: #00796b;
	margin-bottom: 15px;
}

.proprietor-desc {
	font-size: 1rem;
	color: #37474f;
	line-height: 1.6;
	margin-bottom: 20px;
}

/* Buttons */
.proprietor-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.proprietor-actions a {
	text-decoration: none;
	padding: 12px 20px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 0.95rem;
	transition: 0.3s ease;
	text-align: center;
	min-width: 130px;
}

.whatsapp-btn {
	background: #25d366;
	color: white;
}

.whatsapp-btn:hover {
	background: #1ebe57;
}

.call-btn {
	background: #0d47a1;
	color: white;
}

.call-btn:hover {
	background: #08337a;
}

/* Responsive */
@media ( max-width : 768px) {
	.proprietor-container {
		flex-direction: column;
		text-align: center;
	}
	.proprietor-content {
		text-align: center;
	}
	.proprietor-actions {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.proprietor-actions a {
		width: 80%;
		max-width: 320px;
	}
}