/* Founder Page Styles - Premium & Balanced */

/* --- Hero Section Override (Making it more compact) --- */
.page-hero {
    padding: 80px 0 60px !important;
}

.page-hero h1 {
    font-size: 2.8rem !important;
    /* Reduced from 3.5rem */
    letter-spacing: -1px;
}

.page-hero p {
    font-size: 1.05rem !important;
    /* Reduced from 1.2rem */
    margin-bottom: 20px !important;
}

/* --- Founder Section --- */
.founder-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Elegant decorative element */
.founder-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 160, 175, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.founder-container {
    display: flex;
    gap: 70px;
    align-items: center;
    /* Vertical center for better balance */
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.founder-image-col {
    flex: 0 0 360px;
    text-align: center;
}

.founder-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Softer shadow */
    margin-bottom: 25px;
    background: #fff;
    padding: 10px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #edf2f7;
}

.founder-image-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(34, 160, 175, 0.12);
}

.founder-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.founder-info h3 {
    font-size: 18px;
    color: #1a2a3a;
    margin-bottom: 3px;
    font-weight: 700;
}

.founder-info p {
    color: #22A0AF;
    font-weight: 500;
    font-size: 13px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.founder-content-col {
    flex: 1;
    min-width: 320px;
}

.founder-content-col .section-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(34, 160, 175, 0.1);
    color: #22A0AF;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-content-col h2 {
    font-size: 26px;
    /* Reduced from 30px */
    color: #1a2a3a;
    margin-bottom: 18px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.founder-bio {
    font-size: 14.5px;
    /* Reduced from 15px */
    line-height: 1.65;
    color: #4a5568;
    margin-bottom: 25px;
}

.founder-bio p {
    margin-bottom: 15px;
}

.founder-quote {
    position: relative;
    padding: 22px 28px;
    background: #fdfdfd;
    border-left: 3px solid #22A0AF;
    border-radius: 4px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.founder-quote i {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: rgba(34, 160, 175, 0.1);
}

.founder-quote p {
    font-style: italic;
    font-size: 15px;
    /* Reduced from 16px */
    color: #2d3748;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

.et-brand {
    color: #22A0AF;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .founder-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .founder-image-col {
        margin-bottom: 0px;
    }

    .founder-content-col {
        text-align: center;
    }

    .founder-quote {
        text-align: left;
    }

    .page-hero h1 {
        font-size: 2.2rem !important;
    }
}

@media (max-width: 576px) {
    .founder-section {
        padding: 50px 0;
    }

    .founder-image-col {
        flex: 0 0 100%;
        max-width: 260px;
    }

    .founder-content-col h2 {
        font-size: 22px;
    }

    .founder-bio {
        font-size: 14px;
    }
}