/* Proprietor Section - DRS నర్సరీ Style */
.dr1028proprietor {
	padding: 80px 20px;
	background: linear-gradient(135deg, #4caf50, #1b5e20);
	/* Green gradient */
	color: #f0fdf4; /* Light 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.06); /* Translucent white */
	padding: 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
	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: #c8e6c9; /* Light 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: #dcedc8; /* Pale green */
	margin-bottom: 16px;
}

.proprietor-note {
	font-size: 1.05rem;
	line-height: 1.6;
	color: #f1f8e9; /* Soft background green */
}

/* 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: #689f38;
	color: #fff;
	border: 2px solid #558b2f;
	box-shadow: 0 4px 12px rgba(104, 159, 56, 0.3);
}

.call-btn:hover {
	background-color: #558b2f;
	transform: scale(1.05);
}

/* Badge / Image */
.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.2);
	border: 4px solid #c8e6c9;
	transition: transform 0.3s ease;
}

.proprietor-badge img:hover {
	transform: rotate(8deg) scale(1.05);
}

/* Responsive Design */
@media ( max-width : 768px) {
	.proprietor-container {
		flex-direction: column;
		text-align: center;
	}
	.proprietor-buttons {
		justify-content: center;
	}
}

/* Optional: Fade-in animation helper classes (global) */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 1s ease;
}

.fade-in-active {
	opacity: 1;
	transform: translateY(0);
}