﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #f8fbf3 0%, #e8f5e8 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

.about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Breadcrumb */
.breadcrumb {
    /*padding: 20px 0;*/
    margin-bottom: 30px;
}

    .breadcrumb a {
        color: #96c93e;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

        .breadcrumb a:hover {
            color: #7ab317;
        }

    .breadcrumb span {
        color: #7f8c8d;
        margin: 0 10px;
    }

/* Header Section */
.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(150, 201, 62, 0.1) 0%, rgba(122, 179, 23, 0.05) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}


/*background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
*/

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../gallary/AboutHeader.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

    .page-header > * {
        position: relative;
        z-index: 2;
    }

    .page-header h1 {
        font-size: 3.5rem;
        color: #2c3e50;
        margin-bottom: 20px;
        font-weight: 800;
        text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    }

    .page-header .subtitle {
        font-size: 1.4rem;
        color: #96c93e;
        font-weight: 600;
        margin-bottom: 30px;
    }

.header-divider {
    width: 100px;
    height: 5px;
    background: linear-gradient(to right, #96c93e, #7ab317);
    margin: 0 auto;
    border-radius: 3px;
}

/* Core Mission Section */
.core-mission {
    background: white;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

    .core-mission::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(150, 201, 62, 0.05) 0%, transparent 70%);
        z-index: 1;
    }

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.mission-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: #f8fbf3;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

    .mission-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(150, 201, 62, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .mission-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 50px rgba(150, 201, 62, 0.2);
        border-color: #96c93e;
    }

        .mission-card:hover::before {
            left: 100%;
        }

.mission-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #96c93e, #7ab317);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.mission-card:hover .mission-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(150, 201, 62, 0.4);
}

.mission-icon i {
    font-size: 2.5rem;
    color: white;
}

.mission-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.mission-card p {
    color: #7f8c8d;
    line-height: 1.7;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* Main Streams Section */
.streams-section {
    margin-bottom: 50px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 2.8rem;
        color: #2c3e50;
        margin-bottom: 20px;
        font-weight: 700;
    }

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #96c93e, #7ab317);
    margin: 0 auto;
    border-radius: 2px;
}

.streams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.stream-card {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #96c93e;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .stream-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: linear-gradient(135deg, #96c93e, #7ab317);
        transition: height 0.4s ease;
        z-index: 1;
    }

    .stream-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 50px rgba(150, 201, 62, 0.2);
    }

        .stream-card:hover::after {
            height: 100%;
        }

    .stream-card > * {
        position: relative;
        z-index: 2;
    }

    .stream-card:hover h3,
    .stream-card:hover p {
        color: white;
    }

.stream-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #96c93e, #7ab317);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.stream-card:hover .stream-number {
    background: white;
    color: #96c93e;
    transform: scale(1.1);
}

.stream-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
    transition: color 0.4s ease;
}

.stream-card p {
    color: #7f8c8d;
    line-height: 1.7;
    font-size: 1.05rem;
    transition: color 0.4s ease;
}

/* Activities Section */
.activities-section {
    margin-bottom: 50px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.activity-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #96c93e;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .activity-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: linear-gradient(135deg, #96c93e, #7ab317);
        transition: height 0.4s ease;
        z-index: 1;
    }

    .activity-card:hover {
        transform: translateY(-8px) rotate(1deg);
        box-shadow: 0 15px 40px rgba(150, 201, 62, 0.25);
    }

        .activity-card:hover::before {
            height: 100%;
        }

    .activity-card > * {
        position: relative;
        z-index: 2;
    }

    .activity-card:hover h4,
    .activity-card:hover p {
        color: white;
    }

    .activity-card h4 {
        color: #2c3e50;
        margin-bottom: 15px;
        font-size: 1.3rem;
        font-weight: 600;
        transition: color 0.4s ease;
    }

    .activity-card p {
        color: #7f8c8d;
        font-size: 1rem;
        line-height: 1.6;
        transition: color 0.4s ease;
    }

/* Importance Section */
.importance-section {
    background: white;
    border-radius: 20px;
    padding: 60px 50px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}


/*background: url('https://images.unsplash.com/photo-1551836026-d5c0889dd6d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
*/

.importance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../gallary/AboutHeader.jpg') center/cover;
    opacity: 0.03;
    z-index: 1;
}

.importance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.importance-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 25px;
    background: #f8fbf3;
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

    .importance-item:hover {
        transform: translateX(10px) scale(1.02);
        border-color: #96c93e;
        box-shadow: 0 10px 30px rgba(150, 201, 62, 0.15);
    }

.importance-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #96c93e, #7ab317);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.importance-item:hover .importance-icon {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 10px 25px rgba(150, 201, 62, 0.3);
}

.importance-icon i {
    color: white;
    font-size: 1.5rem;
}

.importance-content h4 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 600;
}

.importance-content p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Stats Section */
.stats-section {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(150, 201, 62, 0.1) 0%, rgba(122, 179, 23, 0.05) 100%);
    border-radius: 20px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

    .stats-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('../gallary/AboutHeader.jpg') center/cover;
        opacity: 0.05;
        z-index: 1;
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.stat-item {
    background: white;
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .stat-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(150, 201, 62, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .stat-item:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 20px 50px rgba(150, 201, 62, 0.2);
    }

        .stat-item:hover::before {
            left: 100%;
        }

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #96c93e;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #96c93e, #7ab317);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    color: #7f8c8d;
    font-weight: 600;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #96c93e, #7ab317);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('../gallary/AboutHeader.jpg') center/cover;
        opacity: 0.1;
        z-index: 1;
    }

    .cta-section > * {
        position: relative;
        z-index: 2;
    }

    .cta-section h2 {
        color: white;
        font-size: 2.5rem;
        margin-bottom: 30px;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: white;
    color: #96c93e;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

    .cta-button:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 20px 50px rgba(255, 255, 255, 0.4);
        gap: 25px;
        background: #2c3e50;
        color: white;
    }

    .cta-button i {
        transition: transform 0.4s ease;
    }

    .cta-button:hover i {
        transform: translateX(8px) rotate(360deg);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header .subtitle {
        font-size: 1.2rem;
    }

    .core-mission, .importance-section {
        padding: 30px 20px;
    }

    .mission-grid, .streams-grid, .activities-grid, .importance-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 18px 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .about-page {
        padding: 15px;
    }

    .mission-card, .stream-card, .activity-card {
        padding: 25px 20px;
    }

    .importance-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}
