﻿/* Government Missions Page Styles */
.gov-mission-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    padding: 20px 0;
}

/* Header Section */
.mission-header {
    background: linear-gradient(135deg, #1a5f23 0%, #2e8b57 100%);
    color: white;
    padding: 50px 0;
    border-radius: 0 0 30px 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

    .mission-header h1 {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    }

.mission-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Introduction Section */
.intro-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #2e8b57;
}

    .intro-section h2 {
        color: #1a5f23;
        margin-bottom: 20px;
        font-weight: 600;
    }

/* Mission Cards Container */
.missions-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Individual Mission Cards */
.mission-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .mission-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

.card-header {
    padding: 25px;
    color: white;
    text-align: center;
}

.card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Mission-specific colors */
.nfsm-pulses .card-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
}

.nfsm-cereals .card-header {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
}

.nlm-fodder .card-header {
    background: linear-gradient(135deg, #ffd166 0%, #ff9e6d 100%);
}

.state-programs .card-header {
    background: linear-gradient(135deg, #9d50bb 0%, #6e48aa 100%);
}

/* Contribution Sections */
.contribution-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
}

    .contribution-section h4 {
        color: #2e8b57;
        border-bottom: 2px solid;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }

.bullet-points {
    list-style-type: none;
    padding-left: 0;
}

    .bullet-points li {
        padding: 8px 0;
        padding-left: 25px;
        position: relative;
    }

        .bullet-points li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #2e8b57;
            font-weight: bold;
        }

.states-covered {
    background: #e8f5e9;
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    border-left: 4px solid #4caf50;
}

/* Commitment Section */
.commitment-section {
    background: white;
    padding: 50px 30px;
    border-radius: 25px;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

    .commitment-section h2 {
        color: #1a5f23;
        margin-bottom: 40px;
        font-size: 2.2rem;
    }

.commitment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.commitment-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-top: 5px solid;
}

    .commitment-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .commitment-card:nth-child(1) {
        border-color: #ff6b6b;
    }

    .commitment-card:nth-child(2) {
        border-color: #4ecdc4;
    }

    .commitment-card:nth-child(3) {
        border-color: #ffd166;
    }

    .commitment-card:nth-child(4) {
        border-color: #9d50bb;
    }

    .commitment-card:nth-child(5) {
        border-color: #4caf50;
    }

    .commitment-card:nth-child(6) {
        border-color: #2196f3;
    }

    .commitment-card h4 {
        color: #1a5f23;
        margin-bottom: 10px;
    }

/* Partner Section */
.partner-section {
    background: linear-gradient(135deg, #1a5f23 0%, #2e8b57 100%);
    color: white;
    padding: 60px 30px;
    border-radius: 25px;
    text-align: center;
    margin: 50px 0;
}

    .partner-section h2 {
        margin-bottom: 30px;
        font-size: 2.2rem;
    }

.contact-button {
    background: white;
    color: #1a5f23;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    margin-top: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

    .contact-button:hover {
        background: #f0f0f0;
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

/* Quality Standards Footer */
.quality-footer {
    text-align: center;
    padding: 30px;
    background: #2c3e50;
    color: white;
    border-radius: 20px 20px 0 0;
    margin-top: 50px;
}

    .quality-footer h3 {
        color: #ffd166;
        margin-bottom: 10px;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .mission-header h1 {
        font-size: 2rem;
    }

    .missions-container {
        grid-template-columns: 1fr;
    }

    .commitment-cards {
        grid-template-columns: 1fr;
    }

    .intro-section,
    .mission-card,
    .commitment-card {
        padding: 20px;
    }
}

/* Mission Icons */
.mission-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a5f23;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}
