﻿.webesignservice {
    background: #eef3ff;
    padding-top: 20px;
}

.websitedesignfluid .container .websitedesign {
    padding-top: 30px;
    padding-bottom: 50px;
}

.aboutPg {
    background: linear-gradient(90deg, #e3f0ff 0%, #f4f8ff 100%);
    padding: 40px 0 60px 0;
}

.about-main {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 32px;
}

.about-content {
    flex: 2 1 440px;
    min-width: 340px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(42,76,255,0.09);
    padding: 36px 40px 28px 40px;
    margin-bottom: 0;
    transition: box-shadow 0.2s;
}

    .about-content h2 {
        color: #2a4cff;
        font-size: 2em;
        margin-bottom: 18px;
        font-weight: 700;
    }

    .about-content p {
        font-size: 1.13em;
        color: #1a2a3a;
        line-height: 1.7;
        margin-bottom: 18px;
    }

    .about-content em {
        color: #2a4cff;
        font-style: normal;
        font-weight: 600;
        background: #e6f7ff;
        padding: 4px 10px;
        border-radius: 6px;
    }

.about-image {
    flex: 1 1 280px;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .about-image img {
        max-width: 100%;
        border-radius: 18px;
        box-shadow: 0 6px 24px rgba(42,76,255,0.13);
        transition: box-shadow 0.2s;
    }

    .about-image img:hover {
        box-shadow: 0 12px 36px rgba(42,76,255,0.18);
    }

.founder-section {
    margin-top: 32px;
}
.founder-card {
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(120deg, #f4f8ff 60%, #e3f0ff 100%);
    box-shadow: 0 8px 32px rgba(42,76,255,0.13);
    border: 1.5px solid #e3eaff;
    border-radius: 22px;
    padding: 38px 32px 32px 32px;
    position: relative;
    transition: box-shadow 0.2s;
}

    .founder-card:hover {
        box-shadow: 0 16px 48px rgba(42,76,255,0.18);
    }

.founder-avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 18px auto;
    border-radius: 50%;
    overflow: hidden;
    background: #e6f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid #2a4cff33;
}

    .founder-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

.founder-title {
    color: #2a4cff;
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.founder-name {
    font-size: 1.25em;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.founder-subtitle {
    font-size: 1em;
    color: #888;
    margin-bottom: 6px;
    font-style: italic;
}

.founder-qual {
    font-size: 1em;
    color: #2a4cff;
    font-weight: 500;
    margin-bottom: 10px;
}

.founder-role {
    font-size: 1.08em;
    color: #1a2a3a;
    font-weight: 600;
    margin-bottom: 10px;
}

.founder-exp {
    font-size: 1em;
    color: #444;
    margin-bottom: 8px;
}

.founder-bio {
    font-size: 1em;
    color: #444;
    margin-bottom: 10px;
}

    .founder-bio .highlight {
        color: #2a4cff;
        font-weight: 600;
        background: #e6f7ff;
        padding: 2px 6px;
        border-radius: 4px;
    }

.founder-quote {
    font-size: 1em;
    color: #2a4cff;
    font-style: italic;
    margin-top: 12px;
    background: #e6f7ff;
    padding: 8px 14px;
    border-radius: 8px;
    display: inline-block;
}

@media (max-width: 900px) {
    .about-main {
        flex-direction: column;
        align-items: stretch;
    }

    .about-image {
        margin-top: 28px;
    }

    .about-content {
        padding: 28px 18px 20px 18px;
    }
}

@media (max-width: 600px) {
    .founder-card {
        padding: 24px 8px 20px 8px;
    }

    .founder-avatar {
        width: 64px;
        height: 64px;
    }

    .about-content {
        padding: 28px 18px 20px 18px;
    }
}