.founder-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #F39C12, #E67E22);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    z-index: 1;
}

.founder-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #E67E22, #F39C12);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.08;
    z-index: 1;
}

.founder-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.founder-image {
    position: relative;
    width: 100%;
    max-width: 400px;
    max-height: 500px;
    border-radius: 20px;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3/4;
    overflow: hidden;
}

/* .founder-image::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 60%;
    background: linear-gradient(135deg,
        rgba(243, 156, 18, 0.9) 0%,
        rgba(230, 126, 34, 0.4) 50%,
        rgba(211, 84, 0, 0.3) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    z-index: 1;
    border-radius: 30px;
    filter: blur(20px);
} */

.founder-image::before {
    content: '';
    position: absolute;
    width: 82%;
    height: 55%;
    background: linear-gradient(135deg,
        rgba(243, 156, 18, 1.9) 0%,
        rgba(230, 126, 34, 0.6) 50%,
        rgba(211, 84, 0, 0.7) 100%);
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    z-index: 1;
    border-radius: 30px;
    filter: blur(20px);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scaleX(-1);
    object-position: center;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    /* transition: transform 0.3s ease; */
    display: block;
}

/* .founder-image:hover img {
    transform: scale(1.3);
} */

.founder-content {
    padding: 40px 60px 40px 80px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.founder-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #E68500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.founder-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.5px;
}

.founder-short-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    font-weight: 400;
    margin-bottom: 35px;
    text-align: justify;
    max-width: 90%;
}

.founder-short-description p {
    margin-bottom: 15px;
}

.biography {
    display: none;
}

.read-more-btn {
    margin-top: 10px;
}

.read-more-btn .btn {
    background: linear-gradient(135deg, #F39C12 0%, #E67E22 100%);
    border: none;
    padding: 18px 45px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.read-more-btn .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
    transition: left 0.3s ease;
    z-index: 1;
}

.read-more-btn .btn span {
    position: relative;
    z-index: 2;
}

.read-more-btn .btn:hover::before {
    left: 0;
}

.read-more-btn .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.5);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .founder-content {
        padding: 40px 40px 40px 60px;
    }

    .founder-name {
        font-size: 2.6rem;
    }

    .founder-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 991px) {
    .founder-section {
        padding: 60px 0;
        min-height: auto;
    }

    .founder-image {
        max-width: 350px;
        max-height: 450px;
        margin: 0 auto 40px;
        aspect-ratio: 3/4;
    }

    .founder-content {
        text-align: center;
        padding: 20px;
        height: auto;
    }

    .founder-name {
        font-size: 2.4rem;
        margin-bottom: 15px;
    }

    .founder-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .founder-short-description {
        max-width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .founder-section {
        padding: 50px 0;
    }

    .founder-image {
        max-width: 280px;
        max-height: 360px;
        margin-bottom: 30px;
        aspect-ratio: 3/4;
    }

    .founder-content {
        padding: 15px;
    }

    .founder-name {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .founder-title {
        font-size: 1.1rem;
        margin-bottom: 18px;
    }

    .founder-short-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .read-more-btn .btn {
        padding: 15px 35px;
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 576px) {
    .founder-section {
        padding: 40px 0;
    }

    .founder-image {
        max-width: 100%;
        max-height: 320px;
        margin-bottom: 25px;
        aspect-ratio: 3/4;
    }

    .founder-content {
        padding: 10px;
    }

    .founder-name {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .founder-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .founder-short-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .read-more-btn .btn {
        padding: 12px 30px;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .founder-name {
        font-size: 1.6rem;
    }

    .founder-title {
        font-size: 0.95rem;
    }

    .founder-short-description {
        font-size: 0.85rem;
    }

    .read-more-btn .btn {
        padding: 10px 25px;
        font-size: 0.8rem;
    }
}