.mission-vision-section {
    padding: 6rem 2rem;
    background: #ffffff;
    color: #1a1a1a;
}

.section-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-radius: 20px;
    font-size: 0.9rem;
}


.section-heading {
    color: var(--Accents-Purple-Purple, #612CE7);
    text-align: center;
    font-family: Audiowide;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.founder-section {
    max-width: 1200px;
    margin: 3rem auto 0;
}

.founder-profile {
    background: hsla(0, 0%, 0%, 0.86);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    position: relative;
    padding-right: 300px;
}

.profile-label {
    color: var(--primary-color);

    display: block;
}

.founder-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.founder-info {
    flex: 1;
    padding-top: 2rem;
}

.founder-info h3 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: hsla(0, 0%, 100%, 1);
}

.founder-info p {
    color: hsla(0, 0%, 100%, 1);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: bahnschrift;
}

.founder-name {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.founder-name span:first-child {
    font-size: 1.2rem;
    font-weight: bold;
    color: hsla(0, 0%, 100%, 1);
}

.founder-title {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.founder-image {

    flex: 0 0 300px;
    position: relative;
}


.founder-profile img {

    /* Try other values below */
    opacity: 0.2;
    /* Optional for extra blend effect */
    width: auto;
    height: 100%;
    max-height: 300px;
    border-radius: 8px;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    ;
}

.team-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 255, 102, 0.1);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 0.5rem;
}

.mission-card {
    background: #E8EFEB;
    border-radius: 12px;
    padding: 1rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mission-vision-image {
    width: 60%;
    height: 160px;
    object-fit: contain;
    border-radius: 8px;
    margin: 0.8rem auto;
    display: block;
    transition: transform 0.3s ease;
}

.card-label {
    color: var(--primary-color);
    display: block;
    margin-bottom: 1rem;
}

.mission-card h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.mission-card p {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: bahnschrift;
}



@media (max-width: 1024px) {
    .founder-content {
        flex-direction: column;
        gap: 2rem;
    }

    .founder-image {
        flex: 0 0 auto;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .founder-profile {
        padding-right: 20px;
        padding-bottom: 300px;
    }

    .mission-cards {
        grid-template-columns: 1fr;
    }

    .founder-info h3 {
        font-size: 1.5rem;
    }
}