.founder-area {
    background: #f9f9f9;
    padding: 50px 20px;
    border-radius: 12px;
}

.founder-thumb img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.founder-content h4 {
    font-size: 26px;
    margin-bottom: 5px;
    color: #333;
}

.founder-designation {
    font-size: 16px;
    color: #4CAF50;
    font-weight: 500;
    margin-bottom: 15px;
}

.founder-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.founder-social ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.founder-social ul li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #4CAF50;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    transition: all 0.3s;
}

.founder-social ul li a:hover {
    background: #333;
}


 .specialized-gardens img {
        width: 100%;
        object-fit: cover;
        max-height: 300px;
        border-radius: 10px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .specialized-gardens img:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .specialized-gardens h4 {
        font-size: 22px;
        font-weight: 600;
        color: #333;
    }

    .specialized-gardens p {
        font-size: 16px;
        color: #555;
        line-height: 1.7;
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse !important;
    }

    @media (max-width: 768px) {
        .specialized-gardens img {
            max-height: 250px;
        }

        .specialized-gardens h4 {
            font-size: 18px;
        }

        .specialized-gardens p {
            font-size: 14px;
        }
    }