/* --- FOUNDER PAGE STYLES --- */

.founder-section {
    padding: 80px 0;
    background-color: var(--white);
}

.founder-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 60px;
    align-items: flex-start;
}

.founder-image-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 20px;
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0, 34, 102, 0.08);
}

.founder-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-top: 4px solid var(--secondary);
    border-left: 4px solid var(--secondary);
    border-radius: 20px 0 0 0;
    z-index: 1;
}

.founder-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    border-bottom: 4px solid var(--secondary);
    border-right: 4px solid var(--secondary);
    border-radius: 0 0 20px 0;
    z-index: 1;
}

.founder-img {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    aspect-ratio: 3/4;
}

.founder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    z-index: 3;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.founder-info h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 800;
}

.founder-info p {
    color: var(--gray-400);
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

.founder-content {
    padding-top: 20px;
}

.founder-content .sub-heading {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--secondary);
    font-weight: 700;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 15px;
}

.founder-content h2 {
    font-size: 36px;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.founder-content p {
    color: var(--dark);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

.founder-philosophy {
    background: var(--gray-100);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--secondary);
    margin: 30px 0;
}

.founder-philosophy h4 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.founder-philosophy p {
    font-size: 18px;
    font-style: italic;
    color: var(--dark);
    margin: 0;
}

.founder-message {
    position: relative;
    padding: 30px 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 16px;
    margin-top: 40px;
    box-shadow: 0 15px 30px rgba(0, 34, 102, 0.15);
}

.founder-message i.fa-quote-left {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.1);
}

.founder-message h4 {
    color: var(--secondary);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.founder-message p {
    color: var(--white);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.founder-contact {
    margin-top: 50px;
    border-top: 1px solid var(--gray-100);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 34, 102, 0.05);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-text h5 {
    color: var(--dark);
    font-size: 14px;
    margin-bottom: 3px;
    font-weight: 700;
}

.contact-text p {
    color: var(--gray-400);
    font-size: 15px;
    margin: 0;
}

@media (max-width: 992px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .founder-image-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }
}
