﻿/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 0;
    text-align: center;
}

    .about-hero h1 {
        color: #059669;
        margin-bottom: 20px;
    }

    .about-hero p {
        color: #6aac7b;
        font-size: 24px;
        font-weight: bold;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.8;
    }

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

.mission-vision-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-content, .vision-content {
    text-align: center;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission-content {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
}

.vision-content {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: #059669;
}

    .mission-content:hover, .vision-content:hover {
        transform: translateY(-10px);
    }

    .mission-content h3, .vision-content h3 {
        margin-bottom: 20px;
        font-size: 2.5rem !important;
    }

    .mission-content p, .vision-content p {
        font-size: 18px;
        line-height: 1.8;
    }

/* Video Section */
.video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
}

    .video-section h2 {
        text-align: center;
        color: #059669;
        margin-bottom: 20px;
    }

.video-description {
    text-align: center;
    font-size: 20px;
    color: #6aac7b;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    max-width: 800px;
    margin: 0 auto 60px;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

    .video-wrapper:hover {
        transform: translateY(-5px);
    }

    .video-wrapper video {
        width: 100%;
        height: auto;
        display: block;
    }

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 150, 105, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: rgba(5, 150, 105, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .play-button:hover {
        transform: scale(1.1);
    }

.video-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.highlight-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .highlight-item:hover {
        transform: translateY(-5px);
    }

.highlight-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.highlight-item h4 {
    font-size: 20px;
    font-weight: bold;
    color: #059669;
    margin-bottom: 15px;
    font-family: peyda;
}

.highlight-item p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

    .team-section h2 {
        text-align: center;
        color: #059669;
        margin-bottom: 60px;
    }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .team-member:hover {
        transform: translateY(-10px);
    }

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    font-weight: bold;
}

.member-name {
    font-size: 24px;
    font-weight: bold;
    color: #059669;
    margin-bottom: 10px;
}

.member-role {
    color: #6aac7b;
    font-size: 18px;
    margin-bottom: 15px;
}

.member-description {
    color: #666;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: white;
}

    .values-section h2 {
        text-align: center;
        color: #059669;
        margin-bottom: 60px;
    }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    transition: transform 0.3s ease;
}

    .value-card:hover {
        transform: translateY(-5px);
    }

.value-icon {
    width: 80px;
    height: 80px;
    background-color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 36px;
}

.value-title {
    font-size: 24px;
    font-weight: bold;
    color: #059669;
    margin-bottom: 15px;
}

.value-description {
    color: #666;
    line-height: 1.6;
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 4rem !important;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 20px;
    font-weight: bold;
}

/* Contact CTA Section */
.contact-cta {
    padding: 80px 0;
    background-color: #f8fafc;
    text-align: center;
}

    .contact-cta h2 {
        color: #059669;
        margin-bottom: 20px;
    }

    .contact-cta p {
        font-size: 20px;
        color: #6aac7b;
        margin-bottom: 40px;
    }

.cta-button {
    background-color: #059669;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    font-family: peyda;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .cta-button:hover {
        background-color: white;
        color: #059669;
        border: 2px solid #059669;
        transform: translateY(-3px);
    }

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #f5f5f5;
    padding: 60px 0 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

    .footer-column h3 {
        color: white;
        font-size: 18px;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50px;
            height: 2px;
            background-color: #059669;
        }

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 14px;
    }

        .footer-links a:hover {
            color: #059669;
        }

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #999;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        order: 1;
    }

    .logo {
        order: 2;
        margin: 0 auto;
    }

    .auth-buttons {
        display: none;
    }

    h1 {
        font-size: 3rem !important;
    }

    h2 {
        font-size: 2.5rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    .about-hero {
        padding: 50px 0;
    }

        .about-hero p {
            font-size: 18px;
        }

    .mission-vision {
        padding: 50px 0;
    }

    .mission-vision-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-section, .values-section, .stats-section, .contact-cta {
        padding: 50px 0;
    }

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

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item h3 {
        font-size: 3rem !important;
    }
}

/* Mobile Responsive for Video Section */
@media (max-width: 768px) {
    .video-section {
        padding: 50px 0;
    }

    .video-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .video-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .highlight-item {
        padding: 20px 15px;
    }

    .highlight-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .highlight-item h4 {
        font-size: 18px;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}
