/* --- About Us Page Styles --- */

/* Banner Section */
.about-banner {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 50, 113, 0.7); /* Primary color with opacity */
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay h1 {
    font-size: 64px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 10px;
    letter-spacing: 2px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.3);
    color: #fff;
}

.banner-overlay p {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.9;
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    text-align: center;
}

.intro-section .lead {
    font-size: 22px;
    line-height: 1.7;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
}

.intro-section .lead strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--secondary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(58, 66, 140, 0.3);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 15px;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-section .row {
    align-items: center;
}

.team-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.team-content h3,
.partners-info h3,
.projects-section h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.team-content p,
.partners-info p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

/* Partners Section */
.partners-info {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.partners-info p {
    max-width: 700px;
    margin: 0 auto;
}
/* --- Partners Carousel --- */
.partners-carousel-section {
    width: 100%;
    overflow: hidden;
    padding: 50px 0;
    position: relative;
}

.logo-slider {
    position: relative;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
}

.slide-track {
    display: flex;
    width: calc(250px * 18);
    animation: scroll 30s linear infinite;
}

.slide {
    width: 250px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.slide img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 9));
    }
}

/* Projects Section */
.projects-section {
    padding: 80px 0;
    text-align: center;
}

.projects-list {
    max-width: 600px;
    margin: 30px auto 0;
    text-align: left;
    border-left: 3px solid var(--primary-color);
    padding-left: 30px;
}

.project-item {
    padding: 15px 0;
    font-size: 16px;
    position: relative;
}

.project-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--primary-color);
}

.project-item strong {
    font-weight: 700;
    color: #333;
}

.more-projects {
    margin-top: 20px;
    font-style: italic;
    color: #777;
}

/* Responsive */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .team-section .row {
        flex-direction: column;
    }
    .team-image {
        margin-bottom: 30px;
    }
    .team-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .banner-overlay h1 {
        font-size: 42px;
    }
    .banner-overlay p {
        font-size: 16px;
    }
    .intro-section .lead {
        font-size: 18px;
    }
    .team-content h3,
    .partners-info h3,
    .projects-section h3 {
        font-size: 26px;
    }
}