.director-main-container {
	position: relative;
	max-width: 1320px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
	display: flex;
	position: relative;
	gap: 40px;
	padding-top: 80px;
	padding-bottom: 100px;
}        
.image-panel {
	flex: 1.2;
	position: relative;
	overflow: hidden;
	height: 100%;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}        
.director-photo {
	width: 100%;
	transition: all 0.8s ease;
}        
.director-photo:hover {
	transform: scale(1.02);
	filter: contrast(1.2) brightness(1);
}        			
.content-panel {
	flex: 1.4;
	position: relative;
	background: #66cc60;
	background-size: 400% 400%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px 20px;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}               
.content-wrapper {
	max-width: 650px;
	position: relative;
	z-index: 2;
}        
.floating-elements {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	overflow: hidden;
}        
.floating-circle {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	animation: float 20s infinite linear;
}        
.floating-circle:nth-child(1) {
	width: 100px;
	height: 100px;
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}        
.floating-circle:nth-child(2) {
	width: 60px;
	height: 60px;
	top: 60%;
	right: 15%;
	animation-delay: -7s;
}        
.floating-circle:nth-child(3) {
	width: 80px;
	height: 80px;
	bottom: 30%;
	left: 20%;
	animation-delay: -14s;
}        
@keyframes float {
	0%, 100% { transform: translateY(0px) rotate(0deg); }
	33% { transform: translateY(-20px) rotate(120deg); }
	66% { transform: translateY(10px) rotate(240deg); }
}        
.section-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgb(0 0 0 / 20%);
	padding: 8px 24px;
	border-radius: 50px;
	font-size: 10px;
	font-weight: 400;
	color: rgb(0 0 0 / 90%);
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 32px;
	animation: slideInFromLeft 1s ease-out;
}        
.main-heading {
	font-size: 30px;
	font-weight: 500;
	color: #ffffff;
	margin-bottom: 0px;
	line-height: 1.1;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: slideInFromRight 1s ease-out 0.2s both;
}        
.director-info {
	margin-bottom: 30px;
	animation: slideInFromLeft 1s ease-out 0.4s both;
}        
.director-name-text {
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 1px;
	color: #ffffff;
	margin-bottom: 0px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}        
.director-role {
	font-size: 18px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
	letter-spacing: 2px;
}    
.message-body {
	animation: fadeInUp 1s ease-out 0.6s both;
}        
.message-paragraph {
	font-size: 16px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 15px;
	line-height: 1.8;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}        
.quote-block {
	position: relative;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	padding: 20px;
	margin: 18px 0;
	font-size: 15px;
	font-weight: 500;
	color: #ffffff;
	font-style: italic;
	letter-spacing: 1px;
	line-height: 25px;
	text-align: center;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	animation: scaleIn 1s ease-out 0.8s both;
}        
.quote-block::before {
	content: '"';
	position: absolute;
	top: 16px;
	left: 20px;
	font-size: 80px;
	color: rgba(255, 255, 255, 0.3);
	font-family: serif;
}        
.signature-area {
	margin-top: 64px;
	padding-top: 40px;
	border-top: 2px solid rgba(255, 255, 255, 0.2);
	animation: slideInFromBottom 1s ease-out 1s both;
}        
.signature-name-text {
	font-size: 32px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 8px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}        
.signature-position {
	font-size: 20px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	letter-spacing: 1px;
}	
/* Animations */
@keyframes slideInFromLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}        
@keyframes slideInFromRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}        
@keyframes slideInFromBottom {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}    
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}        
@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
/* Tablet Responsive */
@media (max-width: 1024px) {
	.director-main-container {
		gap: 30px;
		padding: 30px;
	}        
	.content-panel {
		padding: 50px 30px;
	}
	.main-heading {
		font-size: 52px;
	}
}        
/* Mobile Responsive */
@media (max-width: 768px) {
	.director-main-container {
		flex-direction: column;
		gap: 30px;
		padding: 60px 0;
		padding-left: 15px;
		padding-right: 15px;
		min-height: auto;
	}
	.image-panel {
		flex: none;
		height: 50vh;
		min-height: 400px;
	}        
	.director-photo {
		min-height: 400px;
	}        
	.content-panel {
		flex: none;
		padding: 50px 30px;
	}        
	.main-heading {
		font-size: 42px;
	}
	.director-name-text {
		font-size: 24px;
	}        
	.message-paragraph {
		font-size: 18px;
	}        
	.quote-block {
		font-size: 20px;
		padding: 32px 24px;
	}
}        
@media (max-width: 480px) {
	.director-main-container {
		gap: 20px;
		padding-left: 15px;
		padding-right: 15px;
	}        
	.image-panel {
		height: 40vh;
		min-height: 300px;
	}    
	.director-photo {
		min-height: 300px;
	}        
	.content-panel {
		padding: 40px 24px;
	}
	.main-heading {
		font-size: 32px;
	}        
	.director-name-text {
		font-size: 20px;
	}        
	.message-paragraph {
		font-size: 16px;
	}
	.quote-block {
		font-size: 18px;
		padding: 24px 20px;
	}
}