/* ===== Variables & Reset ===== */
:root {
    --primary: #127de9;
    --primary-dark: #0e5fb0;
    --primary-light: #4a9ef5;
    --dark: #0f172a;
    --light: #f8fafc;
    --text: #1a2332;
    --text-light: #cbd5e1;
    --shadow: 0 20px 60px rgba(18, 125, 233, 0.12);
}

* {
    box-sizing: border-box;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    overflow: hidden;
}

/* ===== Hero ===== */
.about-hero {
    position: relative;
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    box-shadow: var(--shadow);
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 20%, rgba(18, 125, 233, 0.25), transparent 60%);
    pointer-events: none;
}

.about-hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.about-hero-shapes span {
    position: absolute;
    display: block;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    animation: aboutFloat 20s infinite alternate;
}

.about-hero-shapes span:nth-child(1) {
    width: 200px;
    height: 200px;
    top: -80px;
    right: -60px;
    animation-duration: 18s;
}

.about-hero-shapes span:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: -120px;
    left: -80px;
    background: rgba(74, 158, 245, 0.07);
    animation-duration: 25s;
    animation-delay: 2s;
}

.about-hero-shapes span:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 20%;
    background: rgba(18, 125, 233, 0.1);
    animation-duration: 15s;
    animation-delay: 4s;
}

@keyframes aboutFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(30px, -30px) rotate(15deg);
    }
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-title {
    color: #fff;
    font-size: 3.6rem;
    font-weight: 800;
    margin: 0 0 5px;
    letter-spacing: 1px;
}

.about-title span {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    color: var(--primary-light);
    font-size: 1.3rem;
    letter-spacing: 5px;
    font-weight: 300;
    margin-bottom: 15px;
}

.about-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 5px;
    margin: 18px auto 25px;
}

.about-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 2;
    max-width: 750px;
    margin: 0 auto;
}

.about-description strong {
    color: #fff;
    font-weight: 600;
}

/* ===== Who We Are (asymmetric) ===== */
.about-who {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px 0 60px;
    align-items: center;
}

.about-who-image {
    flex: 1 1 300px;
    border-radius: 30px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 800;
    box-shadow: 0 20px 40px rgba(18, 125, 233, 0.25);
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.about-who-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.about-who-image .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18, 125, 233, 0.5), rgba(14, 95, 176, 0.7));
    z-index: 1;
}

.about-who-image span {
    position: relative;
    z-index: 2;
    text-align: center;
    line-height: 1.4;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.about-who-text {
    flex: 2 1 400px;
}

.about-who-text h2 {
    font-size: 2.2rem;
    color: var(--text);
    margin: 0 0 15px;
    position: relative;
}

.about-who-text h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    margin-top: 8px;
    border-radius: 5px;
}

.about-who-text p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 2;
    margin: 0;
}

/* ===== Services – Creative Timeline Style ===== */
.about-services {
    margin: 60px 0;
    position: relative;
}

.about-services::before {
    content: '';
    position: absolute;
    right: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    border-left: 3px dashed var(--primary);
    border-right: 3px dashed var(--primary-light);
    transform: translateX(50%);
    border-radius: 5px;
    opacity: 0.4;
}

.about-services-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 50px;
    position: relative;
}

.about-services-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    margin: 12px auto 0;
    border-radius: 5px;
}

.about-services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.about-service-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 0 20px;
    min-height: 200px;
}

.about-service-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.about-service-item .service-content {
    background: #fff;
    padding: 30px 35px;
    border-radius: 30px;
    border: 1px solid #eef2f6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    width: 45%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-service-item .service-content:hover {
    border-color: var(--primary);
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(18, 125, 233, 0.08);
}

.about-service-item .service-content img.bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.12;
}

.about-service-item .service-content .content-inner {
    position: relative;
    z-index: 1;
}

.about-service-item .service-dot {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px var(--primary-light), 0 0 20px rgba(18, 125, 233, 0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.about-service-item:hover .service-dot {
    transform: translateX(50%) scale(1.2);
    box-shadow: 0 0 0 5px var(--primary-light), 0 0 40px rgba(18, 125, 233, 0.4);
}

.about-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 14px;
    margin-bottom: 12px;
}

.about-service-icon svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

.about-service-item h3 {
    font-size: 1.3rem;
    color: var(--text);
    margin: 0 0 8px;
}

.about-service-item p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

/* ===== Timeline ===== */
.about-timeline {
    margin: 60px 0 40px;
    position: relative;
}

.about-timeline::before {
    content: '';
    position: absolute;
    right: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-light));
    transform: translateX(50%);
    border-radius: 5px;
}

.about-timeline-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 50px;
}

.about-timeline-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.about-timeline-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 0 20px;
}

.about-timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.about-timeline-item .timeline-content {
    background: #fff;
    padding: 20px 30px;
    border-radius: 30px;
    border: 1px solid #eef2f6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    width: 45%;
    transition: all 0.3s ease;
}

.about-timeline-item .timeline-content:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

.about-timeline-item .timeline-dot {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px var(--primary-light);
    z-index: 2;
}

.about-timeline-year {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.about-timeline-desc {
    font-size: 1rem;
    color: #475569;
    margin-top: 5px;
}

/* ===== Team & Advisors ===== */
.about-team {
    margin: 60px 0 40px;
}

.about-team-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 40px;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.about-team-member {
    background: #fff;
    border-radius: 30px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.about-team-member:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(18, 125, 233, 0.08);
}

.about-team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 18px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(18, 125, 233, 0.2);
    transition: all 0.3s ease;
}

.about-team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    background: #fff;
    border-radius: 50%;
}

.about-team-member:hover .about-team-avatar {
    transform: scale(1.05) rotate(-3deg);
    box-shadow: 0 16px 40px rgba(18, 125, 233, 0.3);
}

.about-team-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 4px;
}

.about-team-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0 0 8px;
}

.about-team-bio {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.about-team-bio a {
    color: var(--primary);
    text-decoration: none;
}

.about-team-bio a:hover {
    text-decoration: underline;
}

/* ===== Creative Connect Section ===== */
.about-connect {
    margin: 50px 0 40px;
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    border-radius: 40px;
    padding: 50px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(18, 125, 233, 0.25);
    transition: all 0.3s ease;
}

.about-connect:hover {
    transform: scale(1.01);
    box-shadow: 0 30px 70px rgba(18, 125, 233, 0.35);
}

.about-connect::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" opacity="0.05"><circle cx="50" cy="50" r="40" fill="white"/><circle cx="150" cy="150" r="60" fill="white"/><circle cx="180" cy="30" r="30" fill="white"/></svg>');
    background-size: 200px 200px;
    opacity: 0.1;
}

.about-connect-content {
    position: relative;
    z-index: 1;
}

.about-connect h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: 1px;
}

.about-connect p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.about-connect .connect-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-connect .connect-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-connect .connect-btn:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: #fff;
}

.about-connect .connect-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.about-connect .connect-btn-primary {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #fff;
}

.about-connect .connect-btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

/* ===== Actions ===== */
.about-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0 20px;
    flex-wrap: wrap;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 8px 30px rgba(18, 125, 233, 0.35);
}

.about-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(18, 125, 233, 0.5);
}

.about-btn img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .about-service-item .service-content {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 40px 20px;
        min-height: 300px;
    }

    .about-title {
        font-size: 2.4rem;
    }

    .about-subtitle {
        font-size: 1rem;
    }

    .about-description {
        font-size: 0.95rem;
    }

    .about-who {
        flex-direction: column;
    }

    .about-who-image {
        width: 100%;
        min-height: 200px;
    }

    .about-services::before {
        right: 20px;
    }

    .about-service-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-right: 40px;
    }

    .about-service-item .service-content {
        width: 100%;
    }

    .about-service-item .service-dot {
        right: 20px;
        transform: translateX(50%);
    }

    .about-timeline::before {
        right: 20px;
    }

    .about-timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-right: 40px;
    }

    .about-timeline-item .timeline-content {
        width: 100%;
    }

    .about-timeline-item .timeline-dot {
        right: 20px;
        transform: translateX(50%);
    }

    .about-connect {
        padding: 30px 20px;
    }

    .about-connect h2 {
        font-size: 1.8rem;
    }

    .about-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 15px;
    }

    .about-hero {
        padding: 30px 15px;
        border-radius: 20px;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-who-text h2 {
        font-size: 1.8rem;
    }

    .about-connect .connect-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== FOUNDER - CREATIVE SECTION ===== */
.about-founder-section {
    position: relative;
    margin: 60px 0 40px;
    padding: 20px 0;
    overflow: hidden;
}

.founder-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* ===== HEADER ===== */
.founder-header {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
    z-index: 2;
}

.founder-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(18, 125, 233, 0.12), rgba(74, 158, 245, 0.08));
    color: var(--primary);
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    border: 1px solid rgba(18, 125, 233, 0.15);
    backdrop-filter: blur(4px);
    margin-bottom: 12px;
}

.founder-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text);
    margin: 0;
    position: relative;
    display: inline-block;
}

.founder-title span {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(18, 125, 233, 0.06), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

/* ===== MAIN CARD ===== */
.founder-card {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: #fff;
    border-radius: 50px 50px 50px 20px;
    padding: 40px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(18, 125, 233, 0.08);
    box-shadow:
        0 30px 80px rgba(18, 125, 233, 0.08),
        0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(18, 125, 233, 0.02) 100%);
    pointer-events: none;
}

.founder-card:hover {
    box-shadow:
        0 40px 100px rgba(18, 125, 233, 0.12),
        0 15px 40px rgba(0, 0, 0, 0.03);
    transform: translateY(-4px);
}

/* ===== VISUAL SIDE ===== */
.founder-visual {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    position: relative;
}

.founder-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 1/1;
}

.founder-image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at 30% 30%, rgba(18, 125, 233, 0.15), transparent 60%);
    border-radius: 50%;
    filter: blur(20px);
    animation: founderGlow 4s ease-in-out infinite alternate;
}

@keyframes founderGlow {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.2) rotate(10deg);
        opacity: 1;
    }
}

.founder-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 5px;
    box-shadow: 0 25px 60px rgba(18, 125, 233, 0.25);
    animation: morphing 8s ease-in-out infinite alternate;
}

@keyframes morphing {
    0% {
        border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%;
    }

    50% {
        border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
    }

    100% {
        border-radius: 45% 55% 50% 50% / 55% 45% 50% 50%;
    }
}

.founder-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
    background: #fff;
}

/* Floating Badges */
.founder-floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: floatBadge 6s ease-in-out infinite alternate;
    z-index: 3;
    letter-spacing: 0.5px;
}

.badge-1 {
    top: 8%;
    right: -8%;
    background: linear-gradient(135deg, #fff, #f0f4ff);
    color: var(--primary);
    animation-delay: 0s;
}

.badge-2 {
    bottom: 12%;
    left: -10%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    animation-delay: 2s;
}

.badge-3 {
    top: 45%;
    left: -5%;
    font-size: 1.2rem;
    background: rgba(255, 215, 0, 0.15);
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.2);
    animation-delay: 4s;
    padding: 4px 12px;
}

@keyframes floatBadge {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(-12px) rotate(5deg);
    }
}

/* ===== SOCIAL LINKS ===== */
.founder-social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
    color: var(--text);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.social-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-btn.instagram {
    color: #E4405F;
}

.social-btn.instagram:hover {
    background: #E4405F;
    color: #fff;
    border-color: #E4405F;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(228, 64, 95, 0.3);
}

.social-btn.linkedin {
    color: #0A66C2;
}

.social-btn.linkedin:hover {
    background: #0A66C2;
    color: #fff;
    border-color: #0A66C2;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(10, 102, 194, 0.3);
}

/* ===== INFO SIDE ===== */
.founder-info {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    position: relative;
}

.founder-name-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.founder-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
    margin: 0;
    line-height: 1.2;
}

.founder-name span {
    color: var(--primary);
}

.founder-role-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(18, 125, 233, 0.08), rgba(74, 158, 245, 0.05));
    color: var(--primary);
    padding: 4px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(18, 125, 233, 0.1);
    width: fit-content;
}

.founder-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 5px;
    margin: 4px 0 6px;
}

.founder-bio p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 2;
    margin: 0;
    position: relative;
}

.bio-quote {
    font-size: 2.4rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: serif;
    line-height: 0.5;
    display: inline-block;
    vertical-align: middle;
    margin: 0 4px;
}

.bio-quote.end {
    transform: rotate(180deg);
    display: inline-block;
}

.founder-bio strong {
    color: var(--text);
    font-weight: 700;
}

/* ===== ACHIEVEMENTS ===== */
.founder-achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 12px;
    margin: 6px 0 8px;
}

.achievement-item {
    background: #f8fafc;
    padding: 12px 10px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    background: #fff;
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(18, 125, 233, 0.06);
}

.achievement-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.achievement-label {
    display: block;
    font-size: 0.65rem;
    color: #94a3b8;
    font-weight: 500;
    margin-top: 2px;
}

/* ===== CONTACT BUTTON ===== */
.founder-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 34px;
    border-radius: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(18, 125, 233, 0.3);
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.founder-contact-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.founder-contact-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 45px rgba(18, 125, 233, 0.4);
}

.founder-contact-btn:hover::before {
    opacity: 1;
}

.founder-contact-btn span,
.founder-contact-btn svg {
    position: relative;
    z-index: 1;
}

.founder-contact-btn svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.founder-contact-btn:hover svg {
    transform: translateX(4px) rotate(-8deg);
}

/* ===== BG SHAPES ===== */
.founder-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    background: var(--primary);
    animation: shapeFloat 20s ease-in-out infinite alternate;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
    background: var(--primary-light);
    animation: shapeFloat 25s ease-in-out infinite alternate-reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 5%;
    background: #f59e0b;
    opacity: 0.02;
    animation: shapeFloat 18s ease-in-out infinite alternate;
}

.shape-4 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 20%;
    background: var(--primary);
    opacity: 0.015;
    animation: shapeFloat 22s ease-in-out infinite alternate-reverse;
}

@keyframes shapeFloat {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    100% {
        transform: translate(40px, -40px) rotate(30deg) scale(1.1);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .founder-card {
        padding: 25px 20px;
        border-radius: 30px;
        gap: 25px;
    }

    .founder-title {
        font-size: 2rem;
    }

    .founder-name {
        font-size: 1.8rem;
    }

    .founder-image-wrapper {
        max-width: 250px;
    }

    .founder-floating-badge {
        font-size: 0.6rem;
        padding: 4px 12px;
    }

    .badge-1 {
        top: 4%;
        right: -4%;
    }

    .badge-2 {
        bottom: 6%;
        left: -6%;
    }

    .badge-3 {
        top: 40%;
        left: -4%;
    }

    .founder-achievements {
        grid-template-columns: repeat(2, 1fr);
    }

    .founder-social-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
    }

    .social-btn span {
        display: none;
    }

    .founder-contact-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .founder-bio p {
        font-size: 0.95rem;
    }

    .founder-bg-shapes .bg-shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .founder-card {
        padding: 18px 14px;
        border-radius: 20px;
    }

    .founder-image-wrapper {
        max-width: 200px;
    }

    .founder-title {
        font-size: 1.6rem;
    }

    .founder-name {
        font-size: 1.4rem;
    }

    .founder-badge {
        font-size: 0.7rem;
        padding: 4px 16px;
    }

    .achievement-item {
        padding: 8px 6px;
    }

    .achievement-number {
        font-size: 1.1rem;
    }
}