/* Women Empowerment Page - Advanced Features Styles */

/* Reuse stats dashboard with pink/purple theme */
.stats-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.stat-card {
    background: linear-gradient(135deg, #d81b60 0%, #f06292 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(216, 27, 96, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(216, 27, 96, 0.4);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Chart Container */
.chart-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
}

/* SHG Directory */
.shg-directory {
    margin: 30px 0;
}

.shg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.shg-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #d81b60;
    transition: transform 0.3s;
}

.shg-card:hover {
    transform: translateY(-5px);
}

.shg-header h4 {
    color: #880e4f;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.shg-name-en {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.shg-info {
    margin: 20px 0;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-label {
    color: #666;
    font-weight: 500;
}

.info-value {
    color: #333;
    font-weight: 600;
}

.shg-products {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
}

.products-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.product-tag {
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
    color: #880e4f;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid #f06292;
}

/* Women Schemes */
.schemes-section {
    margin: 30px 0;
}

.schemes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.scheme-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid #e91e63;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.scheme-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.scheme-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.scheme-card h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.scheme-name-en {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.btn-scheme {
    background: #e91e63;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s;
}

.btn-scheme:hover {
    background: #c2185b;
}

/* Skill Programs */
.skill-programs {
    margin: 30px 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.program-card {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #ff9800;
    transition: transform 0.3s;
}

.program-card:hover {
    transform: scale(1.05);
}

.program-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.program-card h4 {
    color: #e65100;
    margin-bottom: 5px;
}

.program-name-en {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.program-details {
    text-align: left;
    margin: 15px 0;
}

.program-details p {
    margin: 8px 0;
    color: #333;
}

.program-status {
    font-weight: 600;
    color: #ff6f00;
}

.btn-enroll {
    background: #ff9800;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn-enroll:hover {
    background: #f57c00;
}

/* Success Stories */
.success-stories {
    margin: 30px 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.story-card {
    background: linear-gradient(135deg, #e8eaf6, #c5cae9);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #673ab7;
    transition: transform 0.3s;
}

.story-card:hover {
    transform: translateX(10px);
}

.story-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.story-card h4 {
    color: #4527a0;
    margin-bottom: 10px;
}

.achievement {
    font-weight: 600;
    color: #5e35b1;
    margin-bottom: 15px;
}

.story-text {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.story-year {
    background: #673ab7;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Helplines */
.helplines-section {
    margin: 30px 0;
}

.helplines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.helpline-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid #e91e63;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.helpline-card:hover {
    transform: scale(1.05);
}

.helpline-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.helpline-card h4 {
    margin-bottom: 5px;
}

.helpline-name-en {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.helpline-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 20px 0;
}

.btn-call {
    background: #e91e63;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-call:hover {
    background: #c2185b;
    transform: scale(1.05);
}

/* Support Services */
.services-section {
    margin: 30px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #2196f3;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.service-card h4 {
    color: #1976d2;
    margin-bottom: 5px;
}

.service-name-en {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.service-desc {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-contact {
    color: #666;
    font-size: 0.95rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin: 40px 0 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Anganwadi Info Box */
.anganwadi-info {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #ff9800;
    margin: 30px 0;
}

.anganwadi-info h3 {
    color: #e65100;
    margin-bottom: 15px;
}

.anganwadi-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.anganwadi-stat {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.anganwadi-stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6f00;
    margin-bottom: 5px;
}

.anganwadi-stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-dashboard {
        grid-template-columns: repeat(2, 1fr);
    }

    .shg-grid,
    .schemes-grid,
    .programs-grid,
    .stories-grid,
    .helplines-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-dashboard {
        grid-template-columns: 1fr;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .helpline-number {
        font-size: 2rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}