/* Proprietor Section */
.dr1027proprietor {
	padding: 80px 20px;
	background: linear-gradient(135deg, #2E3A59, #1f2c47);
	/* Indigo Slate gradient */
	color: #F4F7FA; /* Soft text */
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	position: relative;
	overflow: hidden;
}

.proprietor-container {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.05);
	padding: 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
	opacity: 0;
	transform: translateY(30px);
	transition: all 1s ease;
}

.proprietor-container.fade-in {
	opacity: 1;
	transform: translateY(0);
}

.proprietor-content {
	flex: 1 1 60%;
}

.proprietor-title {
	font-size: 2rem;
	color: #6FCF97; /* Fresh Green */
	margin-bottom: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.proprietor-name {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: #ffffff;
}

.proprietor-contact {
	font-size: 1.1rem;
	color: #cfd8dc;
	margin-bottom: 16px;
}

.proprietor-note {
	font-size: 1.05rem;
	line-height: 1.6;
	color: #e0f2f1;
}

/* Buttons */
.proprietor-buttons {
	margin-top: 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.proprietor-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-btn {
	background-color: #25D366;
	color: #fff;
	border: 2px solid #1da851;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
	background-color: #1da851;
	transform: scale(1.05);
}

.call-btn {
	background-color: #FF7043;
	color: #fff;
	border: 2px solid #e65c2c;
	box-shadow: 0 4px 12px rgba(255, 112, 67, 0.3);
}

.call-btn:hover {
	background-color: #e65c2c;
	transform: scale(1.05);
}

/* Image/Badge */
.proprietor-badge {
	flex: 1 1 30%;
	text-align: center;
}

.proprietor-badge img {
	width: 120px;
	height: 120px;
	border-radius: 20px;
	padding: 12px;
	background: #ffffff;
	box-shadow: 0 6px 24px rgba(255, 255, 255, 0.15);
	border: 4px solid #6FCF97;
	transition: transform 0.3s ease;
}

.proprietor-badge img:hover {
	transform: rotate(8deg) scale(1.05);
}

/* Responsive */
@media ( max-width : 768px) {
	.proprietor-container {
		flex-direction: column;
		text-align: center;
	}
	.proprietor-buttons {
		justify-content: center;
	}
}