/*--------------------------------------------------------------
# Founder Section
--------------------------------------------------------------*/
.founder-one {
    position: relative;
    display: block;
    padding: 100px 0 100px;
    z-index: 1;
}

.founder-one__inner {
    background: linear-gradient(135deg, #2b2114 0%, #1a150e 100%);
    padding: 80px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.founder-one__inner::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--fistudy-base);
    opacity: 0.03;
    border-radius: 50%;
}

.founder-one__inner::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: var(--fistudy-white);
    opacity: 0.02;
    border-radius: 40px;
    transform: rotate(45deg);
}

.founder-one__content {
    position: relative;
    z-index: 2;
}

.founder-one__tagline {
    font-size: 14px;
    color: var(--fistudy-base);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
}

.founder-one__title {
    font-size: 48px;
    line-height: 1.1;
    color: var(--fistudy-white);
    font-weight: 700;
    margin-bottom: 15px;
}

.founder-one__title span {
    color: var(--fistudy-base);
}

.founder-one__name {
    font-size: 32px;
    color: var(--fistudy-white);
    font-weight: 600;
    margin-bottom: 30px;
    font-family: var(--fistudy-font-two);
    font-style: italic;
}

.founder-one__divider {
    width: 80px;
    height: 4px;
    background: var(--fistudy-base);
    margin-bottom: 40px;
}

.founder-one__text {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.founder-one__text strong {
    color: var(--fistudy-white);
    display: block;
    margin-bottom: 10px;
    font-size: 22px;
}

.founder-one__img-box {
    position: relative;
    padding: 20px;
}

.founder-one__img-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--fistudy-base);
    border-radius: 30px;
    z-index: 1;
    transform: scale(0.95);
    transition: all 0.5s ease;
}

.founder-one__inner:hover .founder-one__img-frame {
    transform: scale(1);
    opacity: 0.5;
}

.founder-one__img {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.founder-one__img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.founder-one__inner:hover .founder-one__img img {
    transform: scale(1.05);
}

.founder-one__decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    z-index: 3;
    width: 120px;
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(-45deg);
    opacity: 0.2;
}

/* Responsive */
@media (max-width: 1199px) {
    .founder-one__inner {
        padding: 60px;
    }
    .founder-one__title {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .founder-one__inner {
        padding: 40px;
    }
    .founder-one__content {
        margin-bottom: 50px;
        text-align: center;
    }
    .founder-one__divider {
        margin: 0 auto 30px;
    }
    .founder-one__img-box {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .founder-one {
        padding: 60px 0;
    }
    .founder-one__inner {
        padding: 30px 20px;
        border-radius: 20px;
    }
    .founder-one__title {
        font-size: 32px;
    }
    .founder-one__name {
        font-size: 24px;
    }
    .founder-one__text {
        font-size: 18px;
    }
    .founder-one__text strong {
        font-size: 20px;
    }
}
