/* Vision & Mission Grid */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vm-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(38, 64, 37, 0.1);
    box-shadow: 0 10px 30px rgba(38, 64, 37, 0.03);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(38, 64, 37, 0.1);
    border-color: var(--primary-color);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(38, 64, 37, 0.1) 0%, transparent 70%);
    border-radius: 0 0 0 100%;
    transition: all 0.4s ease;
}

.vm-card:hover::before {
    transform: scale(1.2);
}

.vm-icon {
    width: 60px;
    height: 60px;
    background: rgba(38, 64, 37, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.4s ease;
}

.vm-card:hover .vm-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(180deg);
}

.vm-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.vm-content p {
    font-size: 15px;
    color: var(--text-earthy);
    line-height: 1.6;
    margin: 0;
}


/* Founder Section */
.founder-section {
    padding: 80px 0;
    background: var(--white);
    /* Clean off-white */
    position: relative;
    overflow: hidden;
}

.founder-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

@media (min-width: 992px) {
    .founder-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 80px;
    }
}

/* Founder Image Column */
.founder-image-col {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.founder-img-shape {
    position: relative;
    width: 300px;
    height: 380px;
    border-radius: 200px 200px 20px 20px;
    overflow: visible;
    /* Allow badge to pop out */
}

@media (min-width: 768px) {
    .founder-img-shape {
        width: 380px;
        height: 480px;
    }
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 200px 200px 20px 20px;
    box-shadow: 20px 20px 0px rgba(38, 64, 37, 0.15);
    /* Offset background shape simulation */
}

.founder-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(38, 64, 37, 0.1);
    animation: float-badge 3s ease-in-out infinite;
}

.founder-badge .years {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.founder-badge .text {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Founder Info Column */
.founder-info-col {
    flex: 1.2;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(38, 64, 37, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.founder-info-col h2 {
    font-size: 36px;
    color: var(--dark-navy);
    font-weight: 700;
    margin-bottom: 10px;
}

.founder-title {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
    display: block;
}

.founder-bio {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-earthy);
    margin-bottom: 20px;
}

.founder-signature {
    margin: 30px 0 40px;
}

.sign-text {
    font-family: 'Damion', cursive;
    /* We might need to import a script font or use a fallback */
    font-family: cursive;
    /* Fallback */
    font-size: 32px;
    color: var(--dark-navy);
    font-weight: 400;
}