﻿
:root {
    --primary-color: #2c3e50;
    --secondary-color: #27ae60;
    --accent-color: #f39c12;
    --text-dark: #333;
    --text-light: #666;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff !important;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    margin: 0 10px;
    transition: color 0.3s;
}

    .navbar-nav .nav-link:hover {
        color: var(--accent-color) !important;
    }

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

    .hero-section h1 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .hero-section p {
        font-size: 1.3rem;
        margin-bottom: 30px;
        opacity: 0.95;
    }

.btn-primary-custom {
    background: var(--accent-color);
    border: none;
    padding: 12px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .btn-primary-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        background: #e67e22;
    }

/* Statistics Section */
.stats-section {
    background: #f8f9fa;
    padding: 60px 0;
    margin-top: -30px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
    margin-bottom: 20px;
}

    .stat-card:hover {
        transform: translateY(-10px);
    }

.stat-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 2.5rem;
        font-weight: bold;
        color: var(--primary-color);
        position: relative;
        padding-bottom: 15px;
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }

/* About Section */
.about-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.mission-card {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 5px solid var(--secondary-color);
}

    .mission-card h4 {
        color: var(--primary-color);
        margin-bottom: 15px;
    }

/* How It Works */
.step-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s;
}

    .step-card:hover {
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    }

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Team Section */




/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

    .contact-item i {
        font-size: 1.5rem;
        color: var(--accent-color);
        margin-right: 15px;
        width: 30px;
    }

.form-control {
    border-radius: 5px;
    padding: 12px;
}

/* Login Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom: none;
}

    .modal-header .close {
        color: white;
        opacity: 0.8;
        text-shadow: none;
    }

        .modal-header .close:hover {
            opacity: 1;
        }

.modal-title {
    font-weight: bold;
}

.modal-body {
    padding: 30px;
}

    .modal-body label {
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 8px;
    }

    .modal-body .form-control {
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        padding: 12px 15px;
        transition: all 0.3s;
    }

        .modal-body .form-control:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.2rem rgba(39, 174, 96, 0.25);
        }

.modal-footer {
    border-top: none;
    padding: 0 30px 30px;
    flex-direction: column;
}

    .modal-footer .btn {
        border-radius: 8px;
        padding: 12px;
        font-weight: 600;
        transition: all 0.3s;
    }

    .modal-footer .btn-primary {
        background: var(--secondary-color);
        border: none;
    }

        .modal-footer .btn-primary:hover {
            background: #229954;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
        }

    .modal-footer .btn-secondary {
        background: #95a5a6;
        border: none;
        margin-top: 10px;
    }

        .modal-footer .btn-secondary:hover {
            background: #7f8c8d;
        }

.text-danger {
    font-size: 0.875rem;
    margin-top: 5px;
}

/* Footer */
.footer {
    background: #1a252f;
    color: white;
    padding: 30px 0;
    text-align: center;
}

    .footer p {
        margin: 0;
        opacity: 0.8;
    }

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

