﻿body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    color: #333;
    background: #f9fafb;
}

.container {
    width: 90%;
    max-width: 400px;
    margin: auto;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

    .section-header h2 {
        font-size: 32px;
        font-weight: 700;
    }

/* HERO */
.about-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #1B4D3E, #2F7A5D);
    color: #fff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 800;
}

.hero-left span {
    color: #D4A13E;
}

.hero-buttons {
    margin: 30px 0;
}

.btn-primary {
    background: #D4A13E;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    margin-right: 10px;
}

.btn-outline {
    border: 2px solid #fff;
    padding: 10px 22px;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.hero-right img {
    width: 100%;
    border-radius: 10px;
}

/* TIMELINE */
.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
}

.timeline-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* VALUES */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 25px;
}

.value-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s;
}

    .value-card:hover {
        transform: translateY(-8px);
    }

.highlight {
    background: #1B4D3E;
    color: #fff;
}

/* FOUNDER */
.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.founder-img img {
    width: 100%;
    border-radius: 12px;
}

.founder-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

/* CTA */
.cta {
    background: #1B4D3E;
    text-align: center;
    padding: 70px 0;
    color: #fff;
}

.btn-primary.large {
    padding: 14px 35px;
    font-size: 16px;
}

/* Responsive */
@media(max-width: 768px) {
    .hero-grid,
    .founder-grid {
        grid-template-columns: 1fr;
    }

    .hero-left h1 {
        font-size: 34px;
    }
}
/* ================= FOUNDER SECTION ================= */

.founder-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    font-family: 'Inter', sans-serif;
}

.founder-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    align-items: stretch; /* SAME HEIGHT FIX */
}

/* IMAGE SIDE */
.founder-image {
    position: relative;
    height: 100%;
}

    .founder-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* IMPORTANT FOR SAME HEIGHT */
        display: block;
    }

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27,77,62,0.4), rgba(212,161,62,0.3));
}

/* CONTENT SIDE */
.founder-details {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-tag {
    font-size: 14px;
    font-weight: 600;
    color: #1B4D3E;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-details h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0 5px;
    color: #222;
}

.founder-details h4 {
    font-size: 18px;
    color: #D4A13E;
    margin-bottom: 20px;
}

.founder-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* STATS */
.founder-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat-box {
    text-align: center;
}

    .stat-box h3 {
        font-size: 28px;
        font-weight: 700;
        color: #1B4D3E;
    }

    .stat-box span {
        font-size: 14px;
        color: #777;
    }

/* SIGNATURE */
.founder-signature {
    font-style: italic;
    font-weight: 500;
    color: #444;
    border-left: 4px solid #D4A13E;
    padding-left: 15px;
}

/* HOVER EFFECT */
.founder-card:hover {
    transform: translateY(-5px);
    transition: 0.4s ease;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .founder-card {
        grid-template-columns: 1fr;
    }

    .founder-image {
        height: 400px;
    }

    .founder-details {
        padding: 40px;
    }

    .founder-stats {
        flex-direction: column;
        gap: 15px;
    }
}