/* ==============================================
   PREMIUM FOUNDER SECTION STYLES
   - Modern, Clean, Export-Oriented Design
   ============================================== */

/* Section Container */
.sgn-founder-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fdfa 0%, #ffffff 100%);
    /* Subtle light green/cream tint */
    position: relative;
    overflow: hidden;
}

/* Optional Decorative Leaf Pattern (CSS generated subtle shape) */
.sgn-founder-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(130, 174, 70, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.sgn-founder-section .container {
    position: relative;
    z-index: 1;
}

/* Image Wrapper */
.sgn-founder-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Soft Premium Shadow */
    transition: transform 0.4s ease;
    background: #fff;
    padding: 10px;
    /* White frame effect */
}

.sgn-founder-image-wrapper:hover {
    transform: scale(1.02);
    /* Slight scale on hover */
}

.sgn-founder-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    /* Inner radius */
    object-fit: cover;
}

/* Content Area */
.sgn-founder-content {
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Typography Hierarchy */
.sgn-founder-heading {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #82ae46;
    /* Brand Green */
    margin-bottom: 10px;
    display: block;
}

.sgn-founder-subheading {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    /* Dark Corporate Blue/Grey */
    margin-bottom: 25px;
    line-height: 1.3;
    font-family: "Poppins", sans-serif;
    /* Ensuring premium font */
}

.sgn-founder-name {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.sgn-founder-title {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.sgn-founder-bio {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    text-align: justify;
}

/* Quote Box Highlight */
.sgn-founder-quote-box {
    background: #f0fdf4;
    /* Very light green bg */
    border-left: 4px solid #82ae46;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 0 8px 8px 0;
}

.sgn-founder-quote-box p {
    font-size: 16px;
    font-style: italic;
    color: #333;
    font-weight: 500;
    margin: 0;
}

/* Highlights Grid */
.sgn-founder-highlights {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.sgn-founder-badge {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    background: #fff;
    padding: 8px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.sgn-founder-badge i {
    color: #82ae46;
    margin-right: 8px;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .sgn-founder-section {
        padding: 60px 0;
    }

    .sgn-founder-content {
        padding-left: 0;
        padding-top: 40px;
        text-align: center;
    }

    .sgn-founder-bio {
        text-align: center;
    }

    .sgn-founder-highlights {
        justify-content: center;
    }

    .sgn-founder-quote-box {
        text-align: center;
        border-left: none;
        border-top: 4px solid #82ae46;
        border-radius: 0 0 8px 8px;
    }
}