﻿/* LEEDER AGRI GENETICS - Founder Section CSS */
/* Full Height Images | Alternating Layout | Professional */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.leeder-founder-section {
    background: linear-gradient(135deg, #f8faf8 0%, #f0f4f0 100%);
    padding: 80px 0;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    position: relative;
    overflow-x: hidden;
}

    .leeder-founder-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle at 10% 20%, rgba(46, 125, 50, 0.03) 0%, transparent 50%), radial-gradient(circle at 90% 80%, rgba(255, 152, 0, 0.03) 0%, transparent 50%);
        pointer-events: none;
    }

.leeder-founder-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ========== SECTION HEADER ========== */
.leeder-founder-header {
    text-align: center;
    margin-bottom: 60px;
}

.leeder-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    padding: 8px 28px;
    border-radius: 60px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

    .leeder-header-badge i {
        font-size: 0.9rem;
        color: #ffd54f;
    }

    .leeder-header-badge span {
        font-size: 0.85rem;
        font-weight: 600;
        color: white;
        letter-spacing: 1px;
    }

.leeder-founder-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.highlight {
    color: #2e7d32;
    position: relative;
    display: inline-block;
}

    .highlight::after {
        content: '';
        position: absolute;
        bottom: 6px;
        left: 0;
        width: 100%;
        height: 8px;
        background: rgba(46, 125, 50, 0.2);
        border-radius: 4px;
        z-index: -1;
    }

.leeder-founder-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #2e7d32, #ff9800, #2e7d32);
    margin: 0 auto 18px;
    border-radius: 3px;
}

.leeder-founder-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
}

/* ========== FOUNDER CARDS ========== */
.leeder-founder-card {
    display: flex;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

    .leeder-founder-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
    }

/* Default: Image Left, Content Right */
.leeder-founder-card {
    flex-direction: row;
}

    /* Reverse: Content Left, Image Right */
    .leeder-founder-card.reverse {
        flex-direction: row-reverse;
    }

/* ========== IMAGE SECTION - FULL HEIGHT ========== */
.leeder-card-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.left-full-image, .right-full-image {
    background: #2e7d32;
}

.leeder-full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leeder-founder-card:hover .leeder-full-img {
    transform: scale(1.05);
}

/* Image Overlay - Social Icons & Tag */
.leeder-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.leeder-founder-card:hover .leeder-image-overlay {
    opacity: 1;
}

.overlay-content {
    width: 100%;
    padding: 30px;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.leeder-founder-card:hover .overlay-content {
    transform: translateY(0);
}

/* Social Icons */
.image-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e7d32;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

    .social-icon:hover {
        background: #ff9800;
        color: white;
        transform: translateY(-3px);
    }

/* Image Tag */
.image-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 40px;
}

    .image-tag i {
        font-size: 0.8rem;
        color: #ffd54f;
    }

    .image-tag span {
        font-size: 0.8rem;
        font-weight: 600;
        color: white;
        letter-spacing: 0.5px;
    }

/* ========== CONTENT SECTION ========== */
.leeder-card-content {
    flex: 1;
    background: white;
}

.leeder-content-wrapper {
    padding: 45px;
}

/* Designation Badge */
.leeder-designation-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 6px 20px;
    border-radius: 40px;
    margin-bottom: 20px;
}

    .leeder-designation-badge i {
        font-size: 0.8rem;
        color: #2e7d32;
    }

    .leeder-designation-badge span {
        font-size: 0.75rem;
        font-weight: 700;
        color: #2e7d32;
        letter-spacing: 1px;
    }

/* Founder Name */
.leeder-founder-name {
    font-size: 2rem;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 12px;
}

.leeder-name-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff9800, transparent);
    margin-bottom: 22px;
}

/* Quote Block */
.leeder-quote-block {
    background: #fef9e6;
    padding: 18px 22px;
    border-radius: 20px;
    margin-bottom: 22px;
    border-left: 4px solid #ff9800;
}

    .leeder-quote-block i {
        font-size: 1rem;
        color: #ff9800;
        opacity: 0.6;
        margin-right: 8px;
    }

    .leeder-quote-block p {
        font-size: 0.95rem;
        font-style: italic;
        color: #444;
        line-height: 1.5;
        display: inline;
    }

/* Bio Text */
.leeder-bio-text {
    margin-bottom: 22px;
}

    .leeder-bio-text p {
        font-size: 0.9rem;
        line-height: 1.7;
        color: #555;
        text-align: justify;
    }

/* Achievement List */
.leeder-achievement-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.achievement-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    padding: 6px 14px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

    .achievement-chip:hover {
        background: #2e7d32;
        transform: translateY(-2px);
    }

        .achievement-chip:hover i,
        .achievement-chip:hover span {
            color: white;
        }

    .achievement-chip i {
        font-size: 0.75rem;
        color: #ff9800;
    }

    .achievement-chip span {
        font-size: 0.75rem;
        font-weight: 500;
        color: #333;
    }

/* Stats Container */
.leeder-stats-container {
    display: flex;
    gap: 30px;
    padding-top: 20px;
    border-top: 2px dashed #e0e0e0;
}

.stats-card {
    text-align: center;
}

.stats-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #d32f2f;
}

.stats-label {
    font-size: 0.7rem;
    color: #777;
    font-weight: 500;
}

/* ========== MVV SECTION ========== */
.leeder-mvv-wrapper {
    margin: 60px 0 50px;
}

.leeder-mvv-header {
    text-align: center;
    margin-bottom: 45px;
}

    .leeder-mvv-header h3 {
        font-size: 2rem;
        font-weight: 700;
        color: #1b5e20;
        margin-bottom: 10px;
    }

    .leeder-mvv-header p {
        font-size: 0.95rem;
        color: #666;
    }

.leeder-mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.leeder-mvv-card {
    background: white;
    padding: 35px 28px;
    border-radius: 28px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

    .leeder-mvv-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
    }

    .leeder-mvv-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
    }

.mission-card::before {
    background: linear-gradient(90deg, #2e7d32, #66bb6a);
}

.vision-card::before {
    background: linear-gradient(90deg, #ff9800, #ffc107);
}

.moto-card::before {
    background: linear-gradient(90deg, #d32f2f, #ef5350);
}

.mvv-icon-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-card .mvv-icon-circle {
    background: #e8f5e9;
}

.vision-card .mvv-icon-circle {
    background: #fff3e0;
}

.moto-card .mvv-icon-circle {
    background: #fce4ec;
}

.mvv-icon-circle i {
    font-size: 2.2rem;
}

.mission-card .mvv-icon-circle i {
    color: #2e7d32;
}

.vision-card .mvv-icon-circle i {
    color: #ff9800;
}

.moto-card .mvv-icon-circle i {
    color: #d32f2f;
}

.leeder-mvv-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.mission-card h4 {
    color: #2e7d32;
}

.vision-card h4 {
    color: #ff9800;
}

.moto-card h4 {
    color: #d32f2f;
}

.leeder-mvv-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}

.moto-signature {
    margin-top: 12px;
    font-size: 0.8rem;
    color: #d32f2f;
    font-weight: 600;
    letter-spacing: 1px;
}

.mvv-bottom-bar {
    width: 50px;
    height: 2px;
    background: #e0e0e0;
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ========== JOINT MESSAGE SECTION ========== */
.leeder-joint-container {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    border-radius: 28px;
    padding: 45px;
    display: flex;
    gap: 30px;
    margin-bottom: 45px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.joint-icon-wrapper {
    flex-shrink: 0;
}

    .joint-icon-wrapper i {
        font-size: 3.5rem;
        color: #ffd54f;
        opacity: 0.9;
    }

.joint-text-wrapper {
    flex: 1;
}

    .joint-text-wrapper h4 {
        font-size: 1.3rem;
        font-weight: 700;
        color: white;
        margin-bottom: 18px;
    }

    .joint-text-wrapper p {
        font-size: 1rem;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.95);
        font-style: italic;
        margin-bottom: 22px;
    }

.joint-signature-line {
    text-align: right;
}

    .joint-signature-line span {
        font-size: 0.85rem;
        font-weight: 600;
        color: #ffd54f;
        letter-spacing: 0.5px;
    }

/* ========== CTA SECTION ========== */
.leeder-cta-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cta-primary, .cta-secondary, .cta-tertiary {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-primary {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: white;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

    .cta-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(46, 125, 50, 0.4);
    }

.cta-secondary {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

    .cta-secondary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255, 152, 0, 0.4);
    }

.cta-tertiary {
    background: linear-gradient(135deg, #1565c0, #0d47a1);
    color: white;
    box-shadow: 0 5px 15px rgba(21, 101, 192, 0.3);
}

    .cta-tertiary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(21, 101, 192, 0.4);
    }

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .leeder-founder-title {
        font-size: 2.3rem;
    }

    .leeder-founder-name {
        font-size: 1.7rem;
    }

    .leeder-content-wrapper {
        padding: 35px;
    }

    .leeder-card-image {
        min-height: 450px;
    }
}

@media (max-width: 900px) {
    .leeder-founder-card {
        flex-direction: column !important;
        margin-bottom: 40px;
    }

        .leeder-founder-card.reverse {
            flex-direction: column !important;
        }

    .leeder-card-image {
        min-height: 380px;
        width: 100%;
        order: 1;
    }

    .leeder-card-content {
        width: 100%;
        order: 2;
    }

    .leeder-content-wrapper {
        padding: 30px;
    }

    .leeder-mvv-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .leeder-founder-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .leeder-founder-section {
        padding: 50px 0;
    }

    .leeder-founder-container {
        padding: 0 20px;
    }

    .leeder-founder-title {
        font-size: 1.8rem;
    }

    .leeder-founder-subtitle {
        font-size: 0.9rem;
    }

    .leeder-founder-name {
        font-size: 1.4rem;
    }

    .leeder-quote-block p {
        font-size: 0.85rem;
    }

    .leeder-bio-text p {
        font-size: 0.85rem;
    }

    .achievement-chip span {
        font-size: 0.7rem;
    }

    .stats-number {
        font-size: 1.3rem;
    }

    .leeder-mvv-header h3 {
        font-size: 1.6rem;
    }

    .leeder-mvv-card {
        padding: 25px 20px;
    }

        .leeder-mvv-card h4 {
            font-size: 1.2rem;
        }

    .leeder-joint-container {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .joint-signature-line {
        text-align: center;
    }

    .leeder-cta-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-primary, .cta-secondary, .cta-tertiary {
        justify-content: center;
    }

    .leeder-card-image {
        min-height: 320px;
    }
}

@media (max-width: 480px) {
    .leeder-founder-container {
        padding: 0 16px;
    }

    .leeder-founder-title {
        font-size: 1.5rem;
    }

    .leeder-header-badge {
        padding: 6px 20px;
    }

        .leeder-header-badge span {
            font-size: 0.75rem;
        }

    .leeder-content-wrapper {
        padding: 25px 20px;
    }

    .leeder-founder-name {
        font-size: 1.2rem;
    }

    .leeder-quote-block {
        padding: 12px 16px;
    }

        .leeder-quote-block p {
            font-size: 0.8rem;
        }

    .leeder-achievement-list {
        gap: 8px;
    }

    .achievement-chip {
        padding: 4px 12px;
    }

        .achievement-chip span {
            font-size: 0.65rem;
        }

    .leeder-stats-container {
        gap: 20px;
    }

    .stats-number {
        font-size: 1.1rem;
    }

    .stats-label {
        font-size: 0.6rem;
    }

    .leeder-card-image {
        min-height: 280px;
    }

    .image-social {
        gap: 10px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .image-tag {
        padding: 5px 15px;
    }

        .image-tag span {
            font-size: 0.7rem;
        }

    .mvv-icon-circle {
        width: 60px;
        height: 60px;
    }

        .mvv-icon-circle i {
            font-size: 1.8rem;
        }

    .joint-icon-wrapper i {
        font-size: 2.5rem;
    }

    .joint-text-wrapper h4 {
        font-size: 1.1rem;
    }

    .joint-text-wrapper p {
        font-size: 0.85rem;
    }

    .joint-signature-line span {
        font-size: 0.7rem;
    }
}
