.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.25s; }
.delay-3 { transition-delay: 0.4s; }
.delay-4 { transition-delay: 0.55s; }
.delay-5 { transition-delay: 0.7s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.1;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* SECTION */
.founder-section {
    padding: 4rem 0 ;
}

/* TITLE */
.founder-title {
    text-align: center;
    font-size: clamp(1.8rem, 6vw, 3rem);
    font-weight: 700;
    background: linear-gradient(90deg, #221e5c, #3c55ea, #00a8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* CARD */
.founder-card {
    margin: auto;
    padding: 90px 70px 0;
    position: relative;
}

/* CURVED LINE WRAPPER */
.founder-curve-wrapper {
    position: absolute;
    top: 90px; 
    left: 0;
    width: 100%;
    height: 100px;
    pointer-events: none;
}

/* SVG */
.founder-curve {
    width: 100%;
    height: 100%;
}

.founder-avatar {
    position: absolute;
    top: 70px;
    left: 45%;
    transform: translateX(-50%);
    width: 135px;
    height: 135px;
    border-radius: 50%;
    object-fit: cover;
    /* border: 6px solid #fff; */
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
    background: #fff;
    z-index: 2;
}


/* CONTENT */
.founder-content {
    margin-top: 140px;
}

/* FULL MESSAGE */
.founder-message {
    width: 100%;
    /* max-width: 800px; */
    margin-bottom: 50px;
}

.founder-heading {
    color: #0f172a;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.founder-text {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 14px;
}

.founder-text strong {
    color: #1d2c5e;
    font-weight: 600;
}

/* BOTTOM ROW */
.founder-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT INFO */
.founder-name {
    font-size: 20px;
    font-weight: 700;
    color: #1e2a5a;
}

.founder-role {
    font-size: 13px;
    color: #8c94b2;
    margin-bottom: 10px;
}

.founder-sign {
    width: 150px;
    opacity: 0.95;
}

/* BUTTON */
.founder-btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #0057b8;
    color: #fff;
    padding: 0.75rem 1.2rem;
    border-radius: 0.6rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.founder-btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.founder-btn:hover {
    background: #003d82;
    transform: translateY(-2px);
}

.founder-btn:hover i {
    transform: translateX(6px);
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .founder-card {
        padding: 80px 30px 50px;
    }

    .founder-message {
        text-align: center;
        margin: auto auto 40px;
    }

    .founder-bottom {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        text-align: center;
    }

    .founder-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 320px) and (max-width: 720px) {
    .founder-avatar {
        width: 100px;
        height: 100px;
        top: 90px;
        left: 39%;
    }

    .founder-title{
        margin-bottom: -2.5rem;
    }
    
}
