﻿/* Founder Section */
.founder-section {
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.container-founder {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* Founder Image */
.founder-image {
    flex: 1;
    text-align: center;
}

    .founder-image img {
        width: 280px;
        max-width: 100%;
        border-radius: 20px;
        box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.2);
    }

.founder-name {
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2e7d32;
}

/* Founder Message */
.founder-message {
    flex: 2;
    color: #2c3e50;
}

    .founder-message h2 {
        font-size: 2rem;
        color: #1b5e20;
        margin-bottom: 20px;
        position: relative;
    }

        .founder-message h2::after {
            content: "";
            display: block;
            width: 60px;
            height: 4px;
            background: #66bb6a;
            margin-top: 8px;
            border-radius: 2px;
        }

    .founder-message p {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 15px;
    }

/* Mission Box */
.mission-box {
    margin-top: 25px;
    padding: 20px;
    background: #ffffff;
    border-left: 5px solid #43a047;
    border-radius: 12px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
}

    .mission-box h3 {
        margin-bottom: 10px;
        font-size: 1.3rem;
        color: #2e7d32;
    }

/* Animations */
.fade-in-left {
    animation: fadeInLeft 1.2s ease forwards;
    opacity: 0;
}

.fade-in-right {
    animation: fadeInRight 1.2s ease forwards;
    opacity: 0;
}

@keyframes fadeInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container-founder {
        flex-direction: column;
        text-align: center;
    }

    .founder-message h2::after {
        margin-left: auto;
        margin-right: auto;
    }
}
