: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;
}

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

.banner-content-in-about-us {
	background: rgba(255, 255, 255, 0.95);
	padding: 20px 25px;
	border-radius: 4px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	max-width: 300px;
	margin-left: 7%;
}

.banner-content-in-about-us h2 {
	font-size: 18px;
	font-weight: bold;
	color: #000;
	margin-bottom: 8px;
}

.banner-content-in-about-us p {
	font-size: 14px;
	color: #333;
	margin: 0;
}

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

	.banner-content-in-about-us {
		max-width: 90%;
		padding: 15px;
	}

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

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

.about-container {
	margin: 0 auto;
	padding: 40px 20px;
}

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

.about-main {
	flex: 3;
}

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

.about-main h3 {
	font-size: 20px;
	margin-top: 30px;
	margin-bottom: 10px;
}

.about-main p {
	font-size: 16px;
	/* line-height: 1.6; */
    text-align: justify;
}

.about-main ul {
	list-style: disc;
	padding-left: 20px;
	margin-bottom: 20px;
}

.about-main li {
	margin-bottom: 10px;
	font-size: 16px;
}

.about-main a {
	color: #007bff;
	text-decoration: underline;
}

.about-image {
	max-width: 100%;
	margin: 20px 0;
	border-radius: 4px;
}

.about-btn {
	width: 100% !important;
}

@media (max-width: 768px) {
	.about-content {
		flex-direction: column;
	}

	.about-main,
	.about-sidebar {
		width: 100%;
	}

	.about-sidebar {
		margin-top: 30px;
	}
}

/* Sidebar Styling */
.about-sidebar {
	flex: 1;
	background: #f9f9f9;
	padding: 20px;
	border-radius: 8px;
	box-shadow: var(--shadow-light);
	display: flex;
	flex-direction: column;
}

.sidebar-heading {
	font-size: 18px;
	color: var(--primary-blue);
	text-align: center; /* Centered Heading */
	margin-bottom: 15px;
	font-weight: bold;
	text-transform: uppercase;
	border-bottom: 2px solid var(--primary-blue); /* Adding underline effect */
	padding-bottom: 10px;
}

.sidebar-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-list li {
	/* margin-bottom: 12px; */
	font-size: 15px;
}

.sidebar-list li a {
	color: var(--dark-pink);
	text-decoration: none;
	display: block;
	padding: 10px;
	border-radius: 40px;
	transition: background-color 0.3s ease;
}

.sidebar-list li a:hover {
	background-color: var(--light-pink); /* Highlight on hover */
	color: var(--primary-blue); /* Change text color on hover */
}

.about-btn {
	width: 100%;
	/* background: var(--primary-blue); */
	color: white;
	padding: 12px 20px;
	text-align: center;
	border-radius: 40px;
	font-weight: bold;
	transition: background 0.3s ease;
	margin-top: 20px;
}

.about-btn:hover {
	background: var(--dark-pink);
}

@media (max-width: 768px) {
	.about-sidebar {
		margin-top: 30px;
	}

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

	.sidebar-list li a {
		font-size: 14px;
	}
}








.leader-section {
    padding: 0px 0;
}

.leader-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* IMAGE WITH SLANTED CLIP-PATH */
.leader-image {
    width: 360px;
    height: 360px;
    overflow: hidden;
    border-radius: 12px;
}

.leader-image.slant-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.leader-image.slant-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
}

/* TEXT */
.leader-info {
    flex: 1;
}

.leader-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 6px;
}

.leader-role {
    font-size: 18px;
    color: var(--dark-pink);
    margin-bottom: 10px;
}

.leader-bio {
    text-align: justify;
    font-size: 15px;
    line-height: 17px;
   
}


/* MOBILE VIEW */
@media (max-width: 768px) {
    .leader-row {
        flex-direction: column;
        text-align: center;
    }

    .leader-image {
        width: 250px;
        height: 250px;
    }

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

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




.team-modal .modal-content {
    border-radius: 16px;
    background-color: var(--background-light);
    color: #000;
    padding: 25px;
    box-shadow: 0 18px 40px var(--shadow-strong);
}

.team-modal .modal-content img {
    width: 150px;
    height: 150px;
    border-radius: 14px;
    object-fit: cover;
    object-position: top;
    margin-bottom: 18px;
    margin-inline: auto;
    box-shadow: 0 4px 14px var(--shadow-light);
}










/* Card wrapper */
.team-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

/* Hover effect */
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

/* Image full width + full height */
.team-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* Content */
.team-content {
    padding: 12px 15px;
    text-align: center;
}

.team-name {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 3px;
}

.team-role {
    font-size: 14px;
    color: #ff5252;
    font-weight: 500;
    margin-bottom: 0;
}

/* Flag icon */
.flag-icon {
    width: 18px;
    height: 18px;
    margin-right: 4px;
    border-radius: 3px;
    vertical-align: middle;
}

/* Mobile */
@media (max-width: 768px) {
    .team-img {
        height: 160px;
    }
}
