/* ================================================
   ENHANCED ABOUT US PAGE CSS - REAP HR
   Modern, Professional, Fully Responsive
   ================================================ */

:root {
	--primary-blue: #0d2d45;
	--dark-pink: #ff6961;
	--light-pink: #fedcb8;
	--shadow-light: rgba(0, 0, 0, 0.08);
	--shadow-strong: rgba(0, 0, 0, 0.15);
	--background-light: #fdf8ef;
	--text-dark: #333;
	--text-light: #666;
	--white: #ffffff;
}

/* ================================================
   1. HERO BANNER - ENHANCED WITH PARALLAX
   ================================================ */

.hero-banner-in-about-us {
	position: relative;
	width: 100%;
	height: 450px;
	background: url("../images/banner/about-web.webp") no-repeat center
		center/cover;
	display: flex;
	align-items: center;
	justify-content: center;
	/* padding-left: 60px; */
	overflow: hidden;
	background-attachment: fixed; /* Parallax effect */
}

/* Gradient overlay for better readability */
.hero-banner-in-about-us::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(13, 45, 69, 0.85) 0%,
		rgba(13, 45, 69, 0.5) 100%
	);
	z-index: 1;
}

/* Animated dot pattern overlay */
.hero-banner-in-about-us::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.1) 1px,
		transparent 1px
	);
	background-size: 30px 30px;
	opacity: 0.4;
	z-index: 1;
	animation: dotPattern 20s linear infinite;
}

@keyframes dotPattern {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(30px, 30px);
	}
}

.banner-content-in-about-us {
	background: rgba(255, 255, 255, 0.98);
	padding: 40px 45px;
	border-radius: 16px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
	max-width: 500px;
	margin-left: 0%;
	z-index: 2;
	position: relative;
	animation: slideInLeft 0.8s ease-out;
	border-left: 5px solid var(--dark-pink);
	backdrop-filter: blur(10px);
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-80px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.banner-content-in-about-us h2 {
	font-size: 32px;
	font-weight: 700;
	color: var(--primary-blue);
	margin-bottom: 15px;
	position: relative;
}

.banner-content-in-about-us p {
	font-size: 17px;
	color: var(--text-dark);
	margin: 0;
	line-height: 1.6;
}

/* Breadcrumb navigation */
.breadcrumb-nav {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	background: rgba(255, 255, 255, 0.95);
	padding: 12px 28px;
	border-radius: 30px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
	backdrop-filter: blur(10px);
}

.breadcrumb-nav a {
	color: var(--primary-blue);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: color 0.3s;
}

.breadcrumb-nav a:hover {
	color: var(--dark-pink);
}

.breadcrumb-nav span {
	color: var(--text-light);
	margin: 0 8px;
}

/* ================================================
   2. STATISTICS SECTION - NEW & ANIMATED
   ================================================ */

.statistics-section {
	background: linear-gradient(135deg, var(--primary-blue) 0%, #1a4d6d 100%);
	padding: 80px 0;
	color: var(--white);
	position: relative;
	overflow: hidden;
}

.statistics-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>')
		repeat;
	opacity: 0.3;
}

.stats-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.stat-card {
	text-align: center;
	padding: 40px 30px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
	background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
	font-size: 52px;
	margin-bottom: 20px;
	color: var(--light-pink);
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.stat-number {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 12px;
	display: block;
	background: linear-gradient(135deg, #fff 0%, var(--light-pink) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-label {
	font-size: 17px;
	opacity: 0.95;
	font-weight: 500;
	letter-spacing: 0.5px;
}

/* ================================================
   3. ABOUT CONTENT SECTION - ENHANCED
   ================================================ */

.about-container {
	margin: 0 auto;
	padding: 80px 20px;
	max-width: 1200px;
}

.about-content {
	display: flex;
	gap: 50px;
	align-items: flex-start;
}

.about-main {
	flex: 3;
	animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.about-main h2 {
	font-size: 40px;
	margin-bottom: 25px;
	color: var(--primary-blue);
	position: relative;
	padding-bottom: 20px;
	font-weight: 700;
}

.about-main h2::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100px;
	height: 5px;
	background: linear-gradient(90deg, var(--dark-pink) 0%, transparent 100%);
	border-radius: 3px;
}

.about-main h3 {
	font-size: 26px;
	margin-top: 45px;
	margin-bottom: 18px;
	color: var(--primary-blue);
	font-weight: 600;
	position: relative;
	padding-left: 20px;
}

.about-main h3::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 30px;
	background: var(--dark-pink);
	border-radius: 2px;
}

.about-main p {
	font-size: 17px;
	line-height: 1.8;
	text-align: justify;
	color: var(--text-dark);
	margin-bottom: 20px;
}

.about-main ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 35px;
}

.about-main li {
	margin-bottom: 20px;
	font-size: 17px;
	padding-left: 45px;
	position: relative;
	line-height: 1.7;
}

.about-main li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: white;
	font-weight: bold;
	font-size: 16px;
	background: linear-gradient(135deg, var(--dark-pink) 0%, #ff8a80 100%);
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 3px 10px rgba(255, 105, 97, 0.3);
}

.about-main li strong {
	color: var(--primary-blue);
	font-weight: 600;
}

/* CTA Link Styling */
.about-main a {
	color: var(--dark-pink);
	text-decoration: none;
	font-weight: 600;
	position: relative;
	transition: color 0.3s;
}

.about-main a::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--dark-pink);
	transition: width 0.3s;
}

.about-main a:hover::after {
	width: 100%;
}

.about-main a:hover {
	color: var(--primary-blue);
}

/* ================================================
   4. SIDEBAR - ENHANCED & STICKY
   ================================================ */

.about-sidebar {
	flex: 1;
	background: var(--background-light);
	padding: 15px;
	border-radius: 20px;
	box-shadow: 0 10px 30px var(--shadow-light);
	display: flex;
	flex-direction: column;
	position: sticky;
	top: 100px;
	max-height: calc(100vh - 120px);
	overflow-y: auto;
	border: 2px solid rgba(13, 45, 69, 0.08);
}

/* Custom scrollbar */
.about-sidebar::-webkit-scrollbar {
	width: 6px;
}

.about-sidebar::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
}

.about-sidebar::-webkit-scrollbar-thumb {
	background: var(--dark-pink);
	border-radius: 10px;
}

.sidebar-heading {
	font-size: 20px;
	color: var(--primary-blue);
	text-align: center;
	margin-bottom: 15px;
	font-weight: 700;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 18px;
	letter-spacing: 0.5px;
}

.sidebar-heading::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: var(--dark-pink);
	border-radius: 2px;
}

.sidebar-list {
	list-style: none;
	padding: 0;
	/* margin: 0 0 35px 0; */
}

.sidebar-list li {
	font-size: 15px;
	margin-bottom: 4px;
}

.sidebar-list li a {
	color: var(--primary-blue);
	text-decoration: none;
	display: flex;
	align-items: center;
	padding: 10px 12px;
	border-radius: 50px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	font-weight: 500;
}

.sidebar-list li a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	background: linear-gradient(
		90deg,
		var(--light-pink) 0%,
		rgba(254, 220, 184, 0.5) 100%
	);
	transition: width 0.3s ease;
	z-index: -1;
}

.sidebar-list li a::after {
	content: "→";
	opacity: 0;
	margin-left: auto;
	transition: opacity 0.3s, transform 0.3s;
	transform: translateX(-10px);
}

.sidebar-list li a:hover::before {
	width: 100%;
}

.sidebar-list li a:hover::after {
	opacity: 1;
	transform: translateX(0);
}

.sidebar-list li a:hover {
	padding-left: 24px;
	color: var(--primary-blue);
}

.about-btn {
	width: 100%;
	color: white;
	padding: 16px 28px;
	text-align: center;
	border-radius: 50px;
	font-weight: 700;
	transition: all 0.3s ease;
	margin-top: auto;
	font-size: 16px;
	border: none;
	cursor: pointer;
	box-shadow: 0 6px 20px rgba(255, 105, 97, 0.3);
	background: linear-gradient(135deg, var(--dark-pink) 0%, #ff8a80 100%);
	position: relative;
	overflow: hidden;
}

.about-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.5s;
}

.about-btn:hover::before {
	left: 100%;
}

.about-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(255, 105, 97, 0.4);
}

/* ================================================
   5. LEADERSHIP SECTION - ENHANCED
   ================================================ */

.leader-section {
	padding: 80px 0 1px 0;
	background: var(--background-light);
}

.leader-row {
	display: flex;
	align-items: center;
	gap: 35px;
	margin-bottom: 80px;
	animation: fadeInUp 0.8s ease-out;
    padding: 0px 35px;
}

.leader-image {
	width: 450px;
	height: 450px;
	overflow: hidden;
	border-radius: 24px;
	position: relative;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
	flex-shrink: 0;
}

.leader-image::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		transparent 0%,
		rgba(13, 45, 69, 0.4) 100%
	);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.leader-image:hover::after {
	opacity: 1;
}

.leader-image.slant-left img,
.leader-image.slant-right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: transform 0.6s ease;
}

.leader-image.slant-left img {
	clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.leader-image.slant-right img {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 88%);
}

.leader-image:hover img {
	transform: scale(1.08);
}

.leader-info {
	flex: 1;
}

.leader-name {
	font-size: 38px;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--primary-blue);
	line-height: 1.2;
}

.leader-role {
	font-size: 22px;
	color: var(--dark-pink);
	margin-bottom: 25px;
	font-weight: 600;
}

.leader-bio {
	text-align: justify;
	font-size: 17px;
	line-height: 1.9;
	color: var(--text-dark);
}

/* ================================================
   6. TEAM CARDS - MODERN & INTERACTIVE
   ================================================ */

.team-section {
	padding: 80px 0 60px;
	background: var(--white);
}

.team-title {
	text-align: center;
	font-size: 36px;
	color: var(--primary-blue);
	margin-bottom: 20px;
	font-weight: 700;
	position: relative;
	padding-bottom: 25px;
}

.team-title::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: var(--dark-pink);
	border-radius: 2px;
}

.team-subtitle {
	text-align: center;
	font-size: 17px;
	color: var(--text-light);
	margin-bottom: 50px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.team-card {
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	height: 100%;
	cursor: pointer;
	position: relative;
	border: 2px solid transparent;
}

.team-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--dark-pink) 0%, #ff8a80 100%);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.team-card:hover::before {
	transform: scaleX(1);
}

.team-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
	border-color: var(--light-pink);
}

.team-img {
	width: 100%;
	height: 320px;
	overflow: hidden;
	position: relative;
}

.team-img::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to bottom,
		transparent 0%,
		rgba(13, 45, 69, 0.5) 100%
	);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.team-card:hover .team-img::after {
	opacity: 1;
}

.team-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: transform 0.6s ease;
}

.team-card:hover .team-img img {
	transform: scale(1.12);
}

.team-content {
    height: 100%;
	padding: 24px 20px;
	text-align: center;
	background: var(--background-light);
}

.team-name {
	font-size: 19px;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--primary-blue);
}

.team-role {
	font-size: 15px;
	color: var(--dark-pink);
	font-weight: 600;
	margin-bottom: 0;
}

/* Flag icon enhancement */
.flag-icon {
	width: 22px;
	height: 22px;
	margin-right: 6px;
	border-radius: 4px;
	vertical-align: middle;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* ================================================
   7. TEAM MODAL - ENHANCED
   ================================================ */

.team-modal .modal-content {
	border-radius: 24px;
	background-color: var(--background-light);
	color: var(--text-dark);
	padding: 45px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
	border: none;
	position: relative;
	overflow: hidden;
}

.team-modal .modal-content::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, var(--dark-pink) 0%, #ff8a80 100%);
}

.team-modal .modal-content img {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	object-fit: cover;
	object-position: top;
	margin-bottom: 28px;
	margin-inline: auto;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	border: 5px solid white;
}

.team-modal h4 {
	font-size: 30px;
	color: var(--primary-blue);
	font-weight: 700;
	margin-bottom: 12px;
}

.team-modal strong {
	font-size: 19px;
	color: var(--dark-pink);
	display: block;
	margin-bottom: 20px;
	font-weight: 600;
}

.team-modal p {
	font-size: 16px;
	line-height: 1.8;
	color: var(--text-dark);
}

/* ================================================
   8. RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 992px) {
	.hero-banner-in-about-us {
		height: 350px;
		/* padding-left: 30px; */
		background-attachment: scroll;
	}

	.banner-content-in-about-us {
		max-width: 90%;
		padding: 30px 35px;
		margin-left: 0;
	}

	.about-content {
		flex-direction: column;
	}

	.about-sidebar {
		position: static;
		max-height: none;
		margin-top: 10px;
	}

	.leader-row {
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}

	.leader-image {
		width: 100%;
		max-width: 400px;
		height: 400px;
		margin: 0 auto;
	}

	.leader-info {
		text-align: center;
	}

	.leader-bio {
		text-align: justify;
	}
}

@media (max-width: 768px) {
	.hero-banner-in-about-us {
		height: 280px;
		/* padding-left: 20px; */
	}

	.banner-content-in-about-us {
		padding: 25px 30px;
	}

	.banner-content-in-about-us h2 {
		font-size: 24px;
	}

	.banner-content-in-about-us p {
		font-size: 15px;
	}

	.breadcrumb-nav {
		bottom: 20px;
		padding: 10px 20px;
		font-size: 13px;
	}

	.statistics-section {
		padding: 60px 0;
	}

	.stats-container {
		gap: 30px;
	}

	.stat-card {
		padding: 30px 20px;
	}

	.about-container {
		padding: 20px 20px;
	}

	.about-main h2 {
		font-size: 32px;
	}

	.about-main h3 {
		font-size: 22px;
	}

	.leader-image {
		width: 100%;
		max-width: 320px;
		height: 320px;
	}

	.leader-name {
		font-size: 30px;
	}

	.leader-role {
		font-size: 18px;
	}

	.team-img {
		height: 320px;
	}

	.team-modal .modal-content {
		padding: 35px 25px;
	}
}

@media (max-width: 576px) {
	.banner-content-in-about-us h2 {
		font-size: 20px;
	}

	.stat-number {
		font-size: 32px;
	}

	.stat-label {
		font-size: 15px;
	}

	.about-main h2 {
		font-size: 28px;
	}

	.about-main h3 {
		font-size: 20px;
	}

	.about-main p,
	.about-main li {
		font-size: 16px;
	}

	.sidebar-heading {
		font-size: 18px;
	}

	.team-img {
		height: 300px;
	}
}

/* ================================================
   9. UTILITY ANIMATIONS & EFFECTS
   ================================================ */

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Smooth scroll behavior */
html {
	scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
	outline: 2px solid var(--dark-pink);
	outline-offset: 2px;
}

/* Loading animation for images */
img {
	animation: fadeIn 0.5s ease-in;
}
