/* About Page Styling for K Manu & Associates */

.about-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c2c2c;
    background-color: #ffffff;
}

.founder-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 50%, #f8f8f8 100%);
    position: relative;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.founder-image {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.founder-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.founder-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid #d4af37;
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.founder-image:hover::after {
    opacity: 1;
}

.founder-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.founder-image:hover img {
    transform: scale(1.05);
}

.founder-bio {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px 0;
}

.founder-bio p {
    font-size: 17px;
    line-height: 2;
    color: #4a4a4a;
    text-align: justify;
    margin: 0;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #d4af37;
}

.founder-bio p:first-of-type::first-letter {
    font-size: 3.5rem;
    font-weight: 700;
    float: left;
    line-height: 0.9;
    margin: 10px 10px 0 -5px;
    color: #d4af37;
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .founder-section {
        padding: 80px 0;
    }

    .founder-content {
        gap: 60px;
    }

    .founder-bio p {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .founder-section {
        padding: 60px 0;
    }

    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-bio {
        padding: 0;
    }

    .founder-bio p {
        font-size: 15px;
        text-align: left;
        line-height: 1.8;
        padding-left: 15px;
    }

    .founder-bio p:first-of-type::first-letter {
        font-size: 2.5rem;
        margin: 5px 8px 0 -3px;
    }
}

@media screen and (max-width: 480px) {
    .founder-section {
        padding: 40px 0;
    }

    .founder-content {
        gap: 30px;
    }

    .founder-bio p {
        font-size: 14px;
        line-height: 1.7;
        padding-left: 12px;
    }

    .founder-bio p:first-of-type::first-letter {
        font-size: 2rem;
    }
}
