﻿/* ===============================
   Founder Message - Agvetos Pvt. Ltd
================================ */

.founder-section {
    background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 100%);
    padding: 100px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.founder-container {
    max-width: 1250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* Founder Image */
.founder-image {
    flex: 1 1 40%;
    text-align: center;
}

    .founder-image img {
        width: 100%;
        max-width: 420px;
        border-radius: 50%;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        transition: transform 0.5s ease, box-shadow 0.5s ease;
    }

        .founder-image img:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        }

/* Founder Content */
.founder-content {
    flex: 1 1 55%;
    color: #1f2937;
}

.founder-title {
    font-size: 40px;
    color: #065f46;
    font-weight: 800;
    margin-bottom: 10px;
}

.founder-name {
    font-size: 26px;
    color: #b45309;
    font-weight: 700;
}

.founder-designation {
    font-size: 18px;
    color: #374151;
    margin-bottom: 25px;
    font-style: italic;
}

.founder-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 18px;
    text-align: justify;
}

/* ===============================
   Mission Vision Motto Section
================================ */

.mvm-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #fdf6ec 0%, #fef3c7 100%);
    text-align: center;
}

.mvm-heading {
    font-size: 38px;
    font-weight: 800;
    color: #065f46;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.mvm-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Individual Cards */
.mvm-card {
    flex: 1 1 300px;
    max-width: 360px;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    color: #fff;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

    .mvm-card h3 {
        font-size: 26px;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .mvm-card p {
        font-size: 17px;
        line-height: 1.7;
    }

/* Distinct Card Colors */
.mission {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.vision {
    background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
}

.motto {
    background: linear-gradient(135deg, #f97316 0%, #b45309 100%);
}

/* Hover Animations */
.mvm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* ===============================
   Scroll Animations
================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

    [data-animate].visible {
        opacity: 1;
        transform: translateY(0);
    }

[data-animate="fade-left"] {
    transform: translateX(60px);
}

    [data-animate="fade-left"].visible {
        transform: translateX(0);
    }

[data-animate="fade-right"] {
    transform: translateX(-60px);
}

    [data-animate="fade-right"].visible {
        transform: translateX(0);
    }

[data-animate="fade-up"] {
    transform: translateY(60px);
}

    [data-animate="fade-up"].visible {
        transform: translateY(0);
    }

/* ===============================
   Responsive Design
================================ */
@media (max-width: 992px) {
    .founder-container {
        flex-direction: column;
        text-align: center;
    }

    .founder-content {
        margin-top: 40px;
    }

    .founder-title {
        font-size: 32px;
    }

    .founder-content p {
        font-size: 16px;
    }

    .mvm-heading {
        font-size: 30px;
    }
}
