/* About Page Styles */

/* Fade-in animation for scroll effects */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section Background */
.hero-section {
    /* background image is provided inline in the template to allow MEDIA_URL/CDN paths */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: clamp(420px, 65vw, 600px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mission & Vision Cards */
.mission-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover {
    box-shadow: 0 8px 24px rgba(26, 31, 54, 0.12);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.mission-icon {
    width: 64px;
    height: 64px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    color: var(--accent);
}

.mission-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

/* Leadership Grid */
.leadership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.leadership-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.leadership-image {
    width: 100%;
    height: clamp(280px, 42vw, 400px);
    overflow: hidden;
    border-radius: 8px 0 0 8px;
}

.leadership-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.leadership-content {
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.leadership-message {
    color: #ffffff;
    line-height: 1.75;
    font-size: 0.98rem;
}

.leadership-message p {
    margin-bottom: 16px;
}

.leadership-message p:last-child {
    margin-bottom: 0;
}

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

.leadership-role {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 20px;
}

/* Card hover effects for value cards */
.value-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 31, 54, 0.15);
}

/* Service card animation */
.service-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    background: var(--card);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 31, 54, 0.1);
    border-color: var(--accent);
}

.service-card i {
    color: var(--accent);
    transition: color 0.3s ease;
}

.service-card:hover i {
    color: var(--accent);
}

/* Responsive styles */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: 400px;
        background-attachment: scroll;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .leadership-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .leadership-image {
        height: clamp(220px, 40vw, 300px);
        border-radius: 8px 8px 0 0;
    }

    .leadership-content {
        padding: 30px;
    }

    .leadership-name {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .mission-card {
        padding: 1.5rem;
    }

    .mission-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .mission-title {
        font-size: 20px 