/* Founder Page Styles - Modern Professional Design */

/* Ensure Font Awesome icons render properly */
.fas, .fab, .far {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.fab {
    font-weight: 400;
    font-family: "Font Awesome 6 Brands";
}

/* Global icon animations */
i {
    transition: all 0.3s ease;
}

/* Hero Section */
.founder-hero {
    position: relative;
    background: linear-gradient(135deg, #0a5f3a 0%, #0d7044 50%, #09552F 100%);
    padding: 100px 0 80px;
    overflow: hidden;
}

.founder-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 245, 184, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(159, 217, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.1) 100%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    font-size: 1rem;
    display: inline-block;
    vertical-align: middle;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: white;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #D4F5B8, #9FD96B);
    margin: 0 auto;
    border-radius: 2px;
}

/* Profile Section */
.founder-profile {
    padding: 100px 0;
    background: white;
}

.profile-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 5rem;
    align-items: start;
}

.profile-image-section {
    position: sticky;
    top: 100px;
}

.image-container {
    position: relative;
    margin-bottom: 2.5rem;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1);
}

.founder-portrait {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(9, 85, 47, 0.4), transparent);
    pointer-events: none;
}

.profile-highlights {
    background: #f8fdf5;
    border-radius: 16px;
    padding: 1.8rem;
    border: 1px solid #e8f5e0;
}

.highlight-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.highlight-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e8f5e0;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(159, 217, 107, 0.05);
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-radius: 8px;
}

.highlight-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.highlight-item i {
    color: #09552F;
    font-size: 1.8rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
    line-height: 1;
}

.highlight-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.3rem;
}

.highlight-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Profile Content */
.section-tag {
    display: inline-block;
    color: #09552F;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    background: #f8fdf5;
    border-radius: 20px;
}

.profile-content h2 {
    font-size: 2.5rem;
    color: #1A1A1A;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.intro-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2.5rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.expertise-card:hover .expertise-icon i {
    transform: scale(1.1);
}

.expertise-card {
    background: white;
    padding: 1.8rem;
    border-radius: 12px;
    border: 2px solid #e8f5e0;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    border-color: #9FD96B;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.expertise-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4F5B8, #9FD96B);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.expertise-icon i {
    color: #09552F;
    font-size: 1.5rem;
    line-height: 1;
    display: block;
}

.expertise-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
}

.expertise-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.bio-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

/* Career & Achievements Section */
.founder-biography {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fafafa 0%, white 50%);
}

.bio-header {
    text-align: center;
    margin-bottom: 4rem;
}

.bio-header h2 {
    font-size: 2.5rem;
    color: #1A1A1A;
    font-weight: 800;
    margin-bottom: 1rem;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #9FD96B, #D4F5B8);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: -30px;
    top: 0;
    width: 12px;
    height: 12px;
    background: #09552F;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px #9FD96B;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8f5e0;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.timeline-badge {
    display: inline-block;
    background: linear-gradient(135deg, #09552F, #0d7044);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.8rem;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

/* Education Section */
.education-section {
    padding: 100px 0;
    background: white;
}

.education-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
}

.education-content h2 {
    font-size: 2.5rem;
    color: #1A1A1A;
    font-weight: 800;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.education-items {
    margin-bottom: 3rem;
}

.education-item:hover i {
    transform: scale(1.1);
    color: #0d7044;
}

.education-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fafafa;
    border-radius: 12px;
    border-left: 4px solid #9FD96B;
    transition: all 0.3s ease;
}

.education-item:hover {
    background: #f8fdf5;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.education-item i {
    color: #09552F;
    font-size: 1.8rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
    line-height: 1;
}

.education-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.3rem;
}

.education-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.personal-story {
    background: #f8fdf5;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8f5e0;
}

.personal-story h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1rem;
}

.personal-story p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.personal-story p:last-child {
    margin-bottom: 0;
}

/* Mission Vision Cards */
.mission-vision-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mv-card {
    background: linear-gradient(135deg, #09552F 0%, #0d7044 100%);
    padding: 2.5rem;
    border-radius: 16px;
    color: white;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 245, 184, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mv-icon i {
    font-size: 1.8rem;
    color: white;
    line-height: 1;
    display: block;
}

.mv-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.mv-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .profile-grid {
        grid-template-columns: 400px 1fr;
        gap: 3rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .profile-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .profile-image-section {
        position: relative;
        top: 0;
        max-width: 500px;
        margin: 0 auto;
    }

    .profile-content h2 {
        font-size: 2rem;
    }

    .education-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .timeline {
        padding-left: 40px;
    }
}

@media (max-width: 768px) {
    .founder-hero {
        padding: 80px 0 60px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .founder-profile,
    .founder-biography,
    .education-section {
        padding: 60px 0;
    }

    .profile-content h2,
    .bio-header h2,
    .education-content h2 {
        font-size: 1.8rem;
    }

    .intro-text p {
        font-size: 1rem;
    }

    .expertise-card {
        padding: 1.5rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .mission-vision-cards {
        gap: 1.5rem;
    }

    .mv-card {
        padding: 2rem;
    }

    .mv-card h3 {
        font-size: 1.4rem;
    }

    .mv-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }

    .profile-content h2,
    .bio-header h2,
    .education-content h2 {
        font-size: 1.5rem;
    }

    .section-tag {
        font-size: 0.8rem;
    }

    .timeline {
        padding-left: 30px;
    }

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

    .timeline-marker {
        left: -25px;
    }

    .timeline-content {
        padding: 1.2rem;
    }

    .highlight-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .education-item {
        padding: 1.2rem;
    }

    .personal-story {
        padding: 1.5rem;
    }

    .mv-card {
        padding: 1.8rem;
    }
}
