#founderImage{
    max-width:100%;
    height:auto;
    border-radius:20px;
    transition:0.4s ease-in-out;

    /* Blue Lightning Glow */
    box-shadow:0 0 20px rgba(34,117,144,0.5),
               0 0 35px rgba(34,117,144,0.4);

    /* Combined Animations */
    animation:
        lightningGlow 2s infinite alternate,
        jumpingEffect 2.5s ease-in-out infinite;
}

/* Hover Effect */
#founderImage:hover{
    transform:scale(1.03);
    box-shadow:
        0 0 40px rgba(34,117,144,0.9),
        0 0 80px rgba(34,117,144,0.7),
        0 0 120px rgba(34,117,144,0.5);
}

/* Lightning Animation */
@keyframes lightningGlow{

    0%{
        box-shadow:
            0 0 10px rgba(34,117,144,0.3),
            0 0 20px rgba(34,117,144,0.2);
    }

    25%{
        box-shadow:
            0 0 25px rgba(34,117,144,0.8),
            0 0 50px rgba(34,117,144,0.6);
    }

    50%{
        box-shadow:
            0 0 15px rgba(34,117,144,0.4),
            0 0 30px rgba(34,117,144,0.3);
    }

    75%{
        box-shadow:
            0 0 35px rgba(34,117,144,1),
            0 0 70px rgba(34,117,144,0.8);
    }

    100%{
        box-shadow:
            0 0 20px rgba(34,117,144,0.5),
            0 0 40px rgba(34,117,144,0.4);
    }
}

/* Jumping Animation */
@keyframes jumpingEffect{

    0%{
        transform:translateY(0);
    }

    25%{
        transform:translateY(-8px);
    }

    50%{
        transform:translateY(0);
    }

    75%{
        transform:translateY(-4px);
    }

    100%{
        transform:translateY(0);
    }
}


.about-section {
    padding: 80px 20px;
    background: #ffffff;   /* WHITE BACKGROUND */
    color: #1f2937;
    font-family: 'Segoe UI', sans-serif;
}

/* Container */
.about-container {
    max-width: 1100px;
    margin: auto;
}

/* Header */
.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-header h1 {
    font-size: 52px;
    font-weight: 800;
    color: #14532d;
}

.about-header h1 span {
    color: #f59e0b;
}

.tagline {
    font-size: 20px;
    margin-top: 10px;
    font-style: italic;
    color: #374151;
}

/* Intro */
.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #374151;
    text-align: center;
}

/* Features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 60px 0;
}

.feature-card {
    background: #f9fafb;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.feature-card .icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #14532d;
}

.feature-card p {
    font-size: 15px;
    color: #4b5563;
}

/* Vision Mission */
.vm-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.vm-box {
    background: #f9fafb;
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid #14532d;
    transition: 0.3s;
}

.vm-box:hover {
    transform: scale(1.03);
}

.vm-box h2 {
    color: #14532d;
    margin-bottom: 15px;
    font-size: 24px;
}

.vm-box p, .vm-box li {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

/* Story */
.about-story {
    margin-top: 60px;
    text-align: center;
}

.about-story h2 {
    font-size: 32px;
    color: #14532d;
    margin-bottom: 20px;
}

.about-story p {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
    max-width: 900px;
    margin: auto;
    margin-bottom: 15px;
}

/* Final */
.final-tagline {
    text-align: center;
    margin-top: 60px;
}

.final-tagline h2 {
    font-size: 28px;
    font-weight: 700;
    color: #14532d;
}

/* Animation */
.feature-card, .vm-box {
    animation: fadeUp 0.8s ease-in-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}