/* ===========================
   FOUNDERS PAGE STYLES
   =========================== */

/* Hero Section */
.founder-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.founder-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(46, 143, 51, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 64, 175, 0.1) 0%, transparent 50%);
    animation: patternFloat 20s ease-in-out infinite;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(46, 143, 51, 0.05) 0%,
        rgba(255, 255, 255, 0.95) 50%,
        rgba(30, 64, 175, 0.05) 100%);
}

.founder-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #2e8f33 0%, #1e40af 100%);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(46, 143, 51, 0.3);
}

.hero-badge i {
    animation: starRotate 3s linear infinite;
}

.founder-hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.founder-hero-subtitle {
    font-size: 20px;
    color: var(--gray-light);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid #2e8f33;
    border-radius: 25px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #2e8f33;
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

/* Founder Profile Section */
.founder-profile {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Image Column */
.profile-image-wrapper {
    position: relative;
}

.image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatCircle 6s ease-in-out infinite;
}

.circle-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(46, 143, 51, 0.2), transparent);
    top: -20px;
    left: -20px;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.15), transparent);
    bottom: -30px;
    right: -30px;
    animation-delay: 1s;
}

.circle-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), transparent);
    top: 50%;
    right: -40px;
    animation-delay: 2s;
}

.profile-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-image-container:hover {
    transform: translateY(-10px) scale(1.02);
}

.founder-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    opacity: 1 !important;
}

.profile-image-container:hover .founder-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 143, 51, 0.8), rgba(30, 64, 175, 0.8));
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content i {
    font-size: 60px;
    color: white;
    animation: fadeInScale 0.5s ease;
}

/* Profile Stats */
.profile-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(46, 143, 51, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2e8f33, #1e40af);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 12px;
    color: var(--gray-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-text);
    margin-top: 2px;
}

/* Content Column */
.profile-content {
    padding: 20px 0;
}

.content-header {
    margin-bottom: 40px;
}

.founder-name {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 10px;
    background: linear-gradient(135deg, #2e8f33, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-title {
    font-size: 20px;
    color: var(--gray-light);
    font-weight: 600;
    margin-bottom: 20px;
}

/* Journey Timeline Section */
.journey-timeline {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #2e8f33, #1e40af);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid #2e8f33;
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    transform: translateX(-50%) scale(1.5);
    box-shadow: 0 0 0 8px rgba(46, 143, 51, 0.2);
}

.timeline-content {
    width: 45%;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(46, 143, 51, 0.15);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2e8f33, #1e40af);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-icon {
    transform: rotate(360deg);
}

.timeline-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.timeline-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--light-text);
}

/* CTA Section */
.founder-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2e8f33 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

.founder-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    /* animation: patternFloat 20s ease-in-out infinite; */
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.founder-cta .cta-title{
    font-size: 42px;
}

/* CTA Section specific button styles */
.founder-cta .btn-primary {
    background: white;
    color: #2e8f33;
}

.founder-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.founder-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.founder-cta .btn-secondary:hover {
    background: white;
    color: #2e8f33;
    transform: translateY(-3px);
}

/* Animations */
@keyframes patternFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(46, 143, 51, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(46, 143, 51, 0.5);
    }
}

@keyframes starRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes floatCircle {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Tablet */
@media (max-width: 1024px) {
    .founder-hero-title {
        font-size: 44px;
    }

    .profile-grid {
        gap: 60px;
    }

    .founder-name {
        font-size: 40px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline-content {
        width: 42%;
    }

    .section-title {
        font-size: 36px;
    }

    .cta-title {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .founder-hero {
        padding: 80px 0 60px;
        min-height: 50vh;
    }

    .founder-hero-title {
        font-size: 32px;
    }

    .founder-hero-subtitle {
        font-size: 16px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 18px;
    }

    .profile-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .profile-stats {
        grid-template-columns: 1fr;
    }

    .founder-name {
        font-size: 32px;
    }

    .founder-title {
        font-size: 18px;
    }

    .bio-text {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        justify-content: flex-end !important;
    }

    .timeline-marker {
        left: 30px;
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: auto !important;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        margin-right: 0;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-description {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .founder-profile,
    .mission-vision,
    .journey-timeline,
    .founder-cta {
        padding: 60px 0;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .founder-hero-title {
        font-size: 26px;
    }

    .founder-hero-subtitle {
        font-size: 14px;
    }

    .founder-name {
        font-size: 26px;
    }

    .section-title {
        font-size: 24px;
    }

    .mv-card {
        padding: 30px 20px;
    }

    .mv-title {
        font-size: 22px;
    }

    .mv-description {
        font-size: 14px;
    }

    .timeline-title {
        font-size: 18px;
    }

    .timeline-description {
        font-size: 14px;
    }

    .cta-title {
        font-size: 24px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .stat-value {
        font-size: 14px;
    }
}

.founder-title {
    font-size: 20px;
    color: var(--gray-light);
    font-weight: 600;
    margin-bottom: 20px;
}

/* Profile section social links */
.profile-content .social-links {
    display: flex;
    gap: 15px;
}

.profile-content .social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2e8f33, #1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.profile-content .social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(46, 143, 51, 0.3);
}

/* Bio Content */
.bio-content {
    margin-bottom: 40px;
}

.bio-intro {
    position: relative;
    /* padding-left: 40px; */
    margin-bottom: 25px;
}

.quote-icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 30px;
    color: #2e8f33;
    opacity: 0.3;
}

.bio-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 20px;
}

/* Expertise Tags */
.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(46, 143, 51, 0.1), rgba(30, 64, 175, 0.1));
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.tag:hover {
    background: linear-gradient(135deg, #2e8f33, #1e40af);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 143, 51, 0.3);
}

/* Mission & Vision Section */
.mission-vision {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-light);
    line-height: 1.6;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mv-card {
    padding: 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2e8f33, #1e40af);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mv-card:hover::before {
    transform: scaleX(1);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(46, 143, 51, 0.15);
    border-color: #2e8f33;
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2e8f33, #1e40af);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.mv-card:hover .mv-icon {
    transform: scale(1.1) rotate(5deg);
}

.mv-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.mv-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--light-text);
}

