﻿/* Founder Section */
.founder-section {
    padding: 60px 20px;
    background: linear-gradient(to right, #f0f9ff, #e0f7fa);
    text-align: center;
}

.founder-header h2 {
    font-size: 28px;
    font-weight: bold;
    color: #004d40;
    margin-bottom: 10px;
}

.founder-header h3 {
    font-size: 22px;
    color: #00796b;
    margin-bottom: 30px;
}

.founder-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.founder-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
    animation: fadeInLeft 1.5s ease;
}

    .founder-image img {
        width: 250px;
        height: 250px;
        object-fit: cover;
        border-radius: 50%;
        border: 6px solid #00796b;
        box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
    }

    .founder-image h4 {
        margin-top: 15px;
        font-size: 20px;
        font-weight: bold;
        color: #004d40;
    }

    .founder-image p {
        font-size: 16px;
        color: #666;
    }

.founder-message {
    flex: 2;
    min-width: 320px;
    text-align: left;
    animation: fadeInRight 1.5s ease;
}

    .founder-message h3 {
        color: #00796b;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .founder-message p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 20px;
        color: #333;
    }

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animated {
    animation-duration: 1.5s;
    animation-fill-mode: both;
}
