/* About Page Styles */

/* Hero Section */
.about-hero {
    background-color: #0c3043;
    color: #ffffff;
    padding: 160px 0 60px 0;
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* Overview Section */
.about-overview {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0;
    background-color: #ffffff;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.overview-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0c3043;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

/* Mission Section */
.about-mission {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2 {
    color: #0c3043;
    margin-bottom: 1.5rem;
}

.mission-text {
    text-align: left;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.mission-text ul li {
    margin-bottom: 1.1em;
}

.mission-image img {
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.about-team {
    padding: 100px 0;
    background-color: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}


.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: #0c3043;
    margin-bottom: 0.5rem;
}

.member-title {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}

.team-member ul li {
    margin-bottom: 1.1em;
}

/* Values Section */
.about-values {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.value-item h3 {
    color: #0c3043;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Philosophy Section */
.about-philosophy {
    padding: 100px 0;
    background-color: #ffffff;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.philosophy-text h2 {
    color: #0c3043;
    margin-bottom: 1.5rem;
}

.philosophy-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.philosophy-list {
    list-style: none;
    padding: 0;
}

.philosophy-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #333;
}

.philosophy-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0c3043;
    font-size: 1.5rem;
}

.philosophy-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.about-cta {
    padding: 100px 0;
    background-color: #0c3043;
    color: #ffffff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .overview-content,
    .mission-content,
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .overview-stats {
        grid-template-columns: 1fr;
    }

    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Animation Classes */
.fade-up-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Image Overlap Section */
.about-image-overlap-section {
    width: 100%;
    background: transparent;
    margin-bottom: 60px;
}

.about-image-overlap-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 40px;
}

.about-image-overlap-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 0 0 0 0;
}

.about-image-overlap-content {
    min-height: 320px;
    padding: 64px 56px 48px 56px;
    max-width: 1000px;
    width: 95%;
    font-size: 1.15rem;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-image-overlap-title {
    font-size: 2.8rem;
    color: #18314f;
    margin-bottom: 24px;
    font-weight: 400;
}

.about-image-overlap-divider {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.about-image-overlap-label {
    font-size: 1rem;
    color: #18314f;
    font-weight: 600;
    margin-right: 16px;
}

.about-image-overlap-line {
    flex: 1;
    height: 1px;
    background: #18314f;
    opacity: 0.2;
}

.about-image-overlap-lead {
    font-size: 1.3rem;
    color: #18314f;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .about-image-overlap-content {
        padding: 40px 16px 32px 16px;
        min-height: 220px;
    }
    .about-image-overlap-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .about-image-overlap-img {
        height: 180px;
    }
    .about-image-overlap-content {
        min-height: 0;
        padding: 24px 6px 18px 6px;
    }
}