/* Bold Modern About Section Styling */
.fc-about.modern-about-section {
	padding: 6rem 0;
    position: relative;
    overflow: hidden;
    color: #1e293b;
}
.fc-about.modern-about-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(99, 102, 241, 0.08) 100%);
    z-index: 0;
}
.fc-about.modern-about-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.07) 0%, rgba(239, 68, 68, 0.07) 100%);
    z-index: 0;
}  
.container {
    position: relative;
    z-index: 1;
}
/* Section Title */
.fc-about-content h2.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #295f2f, #3d8345);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    position: relative;
    font-family: "Barlow Semi Condensed", sans-serif;
    letter-spacing: 1px;
}
.fc-about-content h2.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #3d8345, #3bbd4a);
    border-radius: 5px;
}
/* Content Styling */
.fc-about-content {
    padding: 1rem 0;
}
.fc-about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
    font-weight: 400;
}
.fc-about-content strong {
    color: #185720;
    font-weight: 700;
}
.fc-about-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: #0f172a;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid #3e8349;
    font-family: "Barlow Semi Condensed", sans-serif;
    letter-spacing: 1px;
    font-weight: 400;
}
/* Image styling */
.fc-about-image {
    position: relative;
    padding: 1rem;
}
.fc-about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a6130 0%, #33713a 100%);
    border-radius: 20px;
    transform: rotate(-3deg);
    z-index: -1;
}
.fc-about-image img {
    border-radius: 15px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-height: 450px;
    object-fit: cover;
    width: 100%;
    border: 8px solid white;
}
.fc-about-image:hover img {
    transform: scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25) !important;
}
.directors-wrapper {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #fdfbfb, #ebedee);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.directors-image {
    flex: 1 1 40%;
    background: url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?auto=format&fit=crop&w=800&q=80') center center/cover no-repeat;
    min-height: 320px;
}
.directors-content {
    flex: 1 1 60%;
    padding: 40px 50px;
    background-color: #fff;
}
.directors-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #2c3e50;
    position: relative;
}
.directors-content h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: #1e90ff;
    margin-top: 10px;
    border-radius: 2px;
}
.directors-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-top: 20px;
}
.highlight-name {
    color: #1e90ff;
	font-weight: 600;
}
.highlight-exp {
    color: #e91e63;
    font-weight: 700;
}
/* Lists styling */
.fc-list, .fc-bullet-list, .fc-check-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2.5rem;
}
.fc-list li {
    padding: 0.9rem 0;
    display: flex;
    align-items: center;
    line-height: 1.5;
    border-bottom: 1px dashed rgba(203, 213, 225, 0.8);
    font-family: "Barlow Semi Condensed", sans-serif;
    letter-spacing: 1px;
    font-size: 1.05rem;
}
.fc-list li:last-child {
    border-bottom: none;
}
.fc-list li i {
    color: #2b6231;
    margin-right: 1rem;
    font-size: 1.3rem;
    background: rgba(59, 130, 246, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.fc-bullet-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem 2rem;
}
.fc-bullet-list li {
    position: relative;
    padding: 0.6rem 0 0.6rem 1.8rem;
    line-height: 1.5;
    font-weight: 500;
    font-family: "Barlow Semi Condensed", sans-serif;
    letter-spacing: 1px;
    align-items: center;
    display: flex;
    font-size: 1.05rem;
}
.fc-bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #2b6231;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}	
.fc-check-list li {
    padding: 0.8rem 0;
    line-height: 1.6;
    font-weight: 500;
    color: #334155;
    font-family: "Barlow Semi Condensed", sans-serif;
    letter-spacing: 1px;
    font-size: 1.05rem;
}
.fc-check-list li:hover {
    color: #1e40af;
    transform: translateX(5px);
    transition: all 0.3s ease;
}
/* Cards section */
.fc-cards-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.fc-card-Vision, .fc-card-mission, .fc-card-dc {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
}
.fc-card-Vision::before, .fc-card-mission::before, .fc-card-dc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2b6231, #2fcd40);
}
.fc-card-Vision:hover, .fc-card-mission:hover, .fc-card-dc:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.fc-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    position: relative;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}
.fc-card-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    opacity: 0.4;
    transform: scale(1.2);
    z-index: -1;
}
.fc-card-icon i {
    font-size: 1.8rem;
    color: white;
}
.fc-card-Vision h4, .fc-card-mission h4, .fc-card-dc h4 {
    font-size: 1.4rem;
    margin-top: 10px;
    margin-bottom: 18px;
    color: #0f172a;
    font-weight: 700;
}
.fc-card-Vision p, .fc-card-mission p, .fc-card-dc p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 15px;
}
/* Let's Connect section */
.fc-about-content h4:last-of-type {
    display: inline-block;
    background: linear-gradient(90deg, #2b6231, #2fcd40);
    color: white;
    padding: 0.5rem 14px;
    border-radius: 30px;
    font-size: 18px;
    border-left: none;
    font-weight: 400;
}
.fc-about-content p:last-of-type {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #f8fafc 100%);
    border-radius: 12px;
    border-left: 5px solid #2b6231;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    margin-top: 1rem;
}
/* Responsive adjustments */
@media (max-width: 992px) {
    .fc-about-content h2.section-title {
		font-size: 2rem;
    }
    .fc-cards-section {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
}
@media (max-width: 768px) {
    .directors-wrapper {
		flex-direction: column;
    }
    .directors-content {
		padding: 30px 20px;
    }
    .directors-content h2 {
		font-size: 26px;
    }
    .directors-content p {
		font-size: 16px;
    }
}
@media (max-width: 576px) {
    .fc-about.modern-about-section {
		padding: 4rem 0;
	}
    .fc-about-content h2.section-title {
		font-size: 1.8rem;
    }    
    .fc-about-content h4 {
		font-size: 1.3rem;
    }
    .fc-bullet-list {
		grid-template-columns: 1fr;
    }
}