﻿/* ===== Founder Section ===== */
.founder-section {
    background: linear-gradient(135deg, #f9fff5, #f2f9f0);
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.container-founder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

/* ===== Founder Image ===== */
.founder-image {
    flex: 1 1 350px;
    text-align: center;
}

    .founder-image img {
        max-width: 100%;
        width: 350px;
        border-radius: 20px;
        box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
        border: 5px solid #fff;
    }

.founder-name {
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
    color: #1b5e20;
    background: linear-gradient(90deg, #4caf50, #81c784);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== Founder Message ===== */
.founder-message {
    flex: 2 1 600px;
}

    .founder-message h2 {
        font-size: 30px;
        color: #2e7d32;
        margin-bottom: 20px;
    }

    .founder-message p {
        font-size: 16px;
        line-height: 1.7;
        color: #333;
        margin-bottom: 15px;
    }

.mission-box {
    background: #e8f5e9;
    border-left: 6px solid #4caf50;
    padding: 18px;
    margin-top: 25px;
    border-radius: 12px;
}

    .mission-box h3 {
        margin: 0 0 12px 0;
        color: #388e3c;
    }

/* ===== 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 Design ===== */
@media (max-width: 992px) {
    .founder-message h2 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .container-founder {
        flex-direction: column;
        text-align: center;
    }

    .founder-message {
        max-width: 100%;
    }

        .founder-message h2 {
            font-size: 24px;
        }

        .founder-message p {
            font-size: 15px;
        }
}

@media (max-width: 480px) {
    .founder-image img {
        width: 100%;
        max-width: 280px;
    }

    .founder-name {
        font-size: 16px;
    }
}
