.about-hero {
    background: linear-gradient(135deg, rgba(73, 25, 104, 0.9) 0%, rgba(69, 31, 151, 0.9) 100%),
        url('../images/profile/5.jpg') no-repeat center center;
    background-size: cover;
    padding: 150px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/dot-pattern.png') repeat;
    opacity: 0.1;
    z-index: 0;
}

.about-hero h1 {
    color: #fff;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.about-hero p.lead {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
/*-----------------------------*/
.simple-feature-cards {
	margin: 0 -15px;
}

.simple-card {
	background: #fff;
	border-radius: 10px;
	padding: 25px;
	height: 100%;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	border: 1px solid rgba(0, 0, 0, 0.03);
}

.simple-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(76, 24, 100, 0.1);
}

.card-icon-circle {
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, #4c1864 0%, #8e44ad 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.simple-card:hover .card-icon-circle {
	transform: scale(1.1);
	box-shadow: 0 8px 20px rgba(76, 24, 100, 0.2);
}

.card-icon {
	width: 35px;
	height: 35px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.card-body {
	padding: 0;
}

.card-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 10px;
}

.card-text {
	color: #7f8c8d;
	font-size: 0.9rem;
	line-height: 1.5;
	margin-bottom: 0;
}

.leadership-section {
	background: #f9f9f9;
	position: relative;
	overflow: hidden;
}

.leadership-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 150px;
	background: linear-gradient(135deg, #4c1864 0%, #8e44ad 100%);
	z-index: 0;
}



.team-members {
	position: relative;
	z-index: 2;
}

.team-card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.4s ease;
	margin-bottom: 30px;
	height: 100%;
}

.team-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(76, 24, 100, 0.15);
}

.team-image-wrapper {
	position: relative;
	overflow: hidden;
	height: 280px;
}

.team-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.team-card:hover .team-image {
	transform: scale(1.05);
}

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(76, 24, 100, 0.7) 0%, transparent 50%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.team-card:hover .image-overlay {
	opacity: 1;
}

.social-links {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	opacity: 0;
	transition: all 0.3s ease;
	display: flex;
	gap: 10px;
}

.team-card:hover .social-links {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: #fff;
	color: #4c1864;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.social-links a:hover {
	background: #4c1864;
	color: #fff;
	transform: translateY(-3px);
}

.team-content {
	padding: 25px;
	text-align: center;
	position: relative;
}

.team-name {
	font-size: 1.3rem;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 5px;
}

.team-position {
	color: #8e44ad;
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 15px;
}

.team-bio p {
	color: #7f8c8d;
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 0;
}

.accent-line {
	width: 50px;
	height: 3px;
	background: linear-gradient(to right, #4c1864, #8e44ad);
	margin: 20px auto 0;
	transition: all 0.3s ease;
}

.team-card:hover .accent-line {
	width: 80px;
}

/* Custom scrollbar for modal */
.modal-body::-webkit-scrollbar {
	width: 8px;
}

.modal-body::-webkit-scrollbar-track {
	background: #f1f1f1;
}

.modal-body::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
	background: #555;
}

/* Better list styling */
.list-group-item {
	padding: 0.5rem 1rem;
	border-left: none;
	border-right: none;
}

/* Header/footer shadow */
.modal-header {
	border-bottom: 1px solid #eee;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.modal-footer {
	border-top: 1px solid #eee;
	box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments */
@media (max-width: 1199px) {
	.team-image-wrapper {
		height: 240px;
	}
}

@media (max-width: 991px) {
	.team-image-wrapper {
		height: 200px;
	}

	.team-content {
		padding: 20px;
	}
}

@media (max-width: 767px) {
	.team-card {
		max-width: 350px;
		margin-left: auto;
		margin-right: auto;
	}
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.simple-card {
		padding: 20px;
	}

	.card-icon-circle {
		width: 60px;
		height: 60px;
		margin-bottom: 15px;
	}

	.card-icon {
		width: 30px;
		height: 30px;
	}
}

@media (max-width: 767px) {
	.col-lg-3 {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

@media (max-width: 575px) {
	.col-lg-3 {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.simple-card {
		max-width: 300px;
		margin-left: auto;
		margin-right: auto;
	}
}


/* Approach section */

.workflow-steps-container {
	position: relative;
	padding: 30px 0;
}

.step-card {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 25px 15px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	height: 100%;
	margin: 0 5px;
}

.step-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(76, 24, 100, 0.15);
}

.step-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, #4c1864 0%, #8e44ad 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 30px;
	position: relative;
	transition: all 0.3s ease;
}

.step-card:hover .step-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 10px 25px rgba(76, 24, 100, 0.3);
}

.step-number {
	position: absolute;
	top: -10px;
	right: -10px;
	width: 30px;
	height: 30px;
	background: #fff;
	color: #4c1864;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
	border: 2px solid #4c1864;
}

.step-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 15px;
	transition: all 0.3s ease;
}

.step-content {

	transition: all 0.4s ease;
	opacity: 1;
}

.step-card:hover .step-content {
	height: auto;
	opacity: 1;
	margin-top: 10px;
}

.step-content p {
	color: #7f8c8d;
	font-size: 0.9rem;
	line-height: 1.6;
	margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
	.workflow-line {
		display: none;
	}

	.step-card {
		margin-bottom: 30px;
	}
}

@media (max-width: 991px) {

	.step-icon {
		width: 70px;
		height: 70px;
		font-size: 25px;
	}
}

@media (max-width: 767px) {

	.section-subtitle {
		font-size: 1rem;
	}

	.step-card {
		max-width: 300px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 575px) {

	.step-icon {
		width: 60px;
		height: 60px;
		font-size: 22px;
	}

	.step-title {
		font-size: 1rem;
	}
}