﻿/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* VIDEO HERO SECTION */
.video-hero-container {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    margin-bottom: 50px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.fade-image {
    max-width: 300px;
    max-height: 200px;
    margin-bottom: 30px;
    opacity: 0.8;
    filter: brightness(1.2);
    animation: fadeIn 1.5s ease-in-out;
}

.bold-text {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: slideUp 1s ease-out;
}

.subtitle {
    color: white;
    font-size: 1.5rem;
    max-width: 600px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    animation: slideUp 1.2s ease-out;
}

.cta-button {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeIn 2s ease-in-out;
}

    .cta-button:hover {
        background: #ff5252;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

.loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
    z-index: 3;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* ABOUT EMPOWERMED WOMEN SECTION STYLES */

.empower-about-section {
    background: linear-gradient(135deg, #f8fbf3 0%, #e8f5e8 100%);
    padding: 100px 0;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

    .empower-about-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(150, 201, 62, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Consistent Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

    .section-header h1 {
        font-size: 2.8rem;
        color: #2c3e50;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

        .section-header h1:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #96c93e, #7ab317);
            border-radius: 2px;
        }

    .section-header p {
        font-size: 1.2rem;
        color: #7f8c8d;
        max-width: 600px;
        margin: 0 auto;
    }

/* About Content */
.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-statement {
    margin-bottom: 40px;
}

.about-description {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #96c93e;
    box-shadow: 0 5px 25px rgba(150, 201, 62, 0.1);
}

/* Objectives */
.about-objectives {
    margin-bottom: 40px;
}

.objective-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #96c93e;
}

.objective-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #96c93e, #7ab317);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .objective-icon i {
        font-size: 1.3rem;
        color: white;
    }

.objective-content h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.objective-content p {
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

/* Highlights */
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 3px solid #96c93e;
}

    .highlight-item:hover {
        transform: translateX(10px);
        box-shadow: 0 8px 30px rgba(150, 201, 62, 0.15);
    }

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #96c93e, #7ab317);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .highlight-icon i {
        font-size: 1.3rem;
        color: white;
    }

.highlight-text h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.highlight-text p {
    color: #7f8c8d;
    line-height: 1.5;
    margin: 0;
}

/* Professional Read More Link */
.about-actions {
    text-align: center;
}

.about-read-more {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #96c93e;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 15px 35px;
    border: 2px solid #96c93e;
    border-radius: 30px;
    background: rgba(150, 201, 62, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(150, 201, 62, 0.2);
}

    .about-read-more:hover {
        gap: 20px;
        color: white;
        background: #96c93e;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(150, 201, 62, 0.3);
        text-decoration: none;
    }

    .about-read-more i {
        font-size: 1rem;
        transition: transform 0.3s ease;
    }

    .about-read-more:hover i {
        transform: translateX(5px);
    }

/* About Visual Styles */
.about-visual {
    position: relative;
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-container:hover .about-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(150, 201, 62, 0.1), rgba(122, 179, 23, 0.05));
    pointer-events: none;
}

/* Impact Stats */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.impact-stat {
    background: white;
    padding: 25px 15px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .impact-stat:hover {
        transform: translateY(-5px);
    }

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #96c93e;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #96c93e, #7ab317);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        order: -1;
    }

    .about-image {
        height: 350px;
    }

    .impact-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .empower-about-section {
        padding: 60px 0;
        margin: 40px 0;
    }

    .section-header h1 {
        font-size: 2.2rem;
    }

    .about-description {
        font-size: 1.1rem;
        padding: 20px;
    }

    .objective-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .impact-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-read-more {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-header h1 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .about-description {
        font-size: 1rem;
        padding: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-read-more {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}















/* EXECUTIVE COMMITTEE SECTION */
.container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 40px 20px;*/
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

    .section-header h1 {
        font-size: 2.8rem;
        color: #2c3e50;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

        .section-header h1:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            /*background: linear-gradient(to right, #3498db, #2c3e50);*/
            background: linear-gradient(to right, #939393, #8bc32a);
            border-radius: 2px;
        }

    .section-header p {
        font-size: 1.2rem;
        color: #7f8c8d;
        max-width: 600px;
        margin: 0 auto;
    }

.committee-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.members-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.member-card {
    flex: 0 0 calc(33.333% - 30px);
    margin: 0 15px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

    .member-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

.member-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

    .member-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.member-card:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 25px 20px;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.member-position {
    font-size: 1.1rem;
    /*color: #3498db;*/
    color: #96c93e;
    margin-bottom: 15px;
    font-weight: 600;
}

.member-bio {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.5;
}

.slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 15px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    /*color: #3498db;*/
    color: #96c93e;
    transition: all 0.3s ease;
}

    .nav-btn:hover {
        /*background: #3498db;*/
        background: #96c93e;
        color: white;
        transform: scale(1.1);
    }

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bdc3c7;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .dot.active {
        /* background: #3498db;*/
        background: #96c93e;
        transform: scale(1.2);
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .bold-text {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .fade-image {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .bold-text {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .fade-image {
        max-width: 150px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .member-card {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .member-card {
        flex: 0 0 calc(100% - 30px);
    }

    .section-header h1 {
        font-size: 2.2rem;
    }
}





/* ADVISORY BOARD SECTION STYLES */
.advisory-board-section {
    /*background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);*/
    background: linear-gradient(135deg, #f8f9fa 0%, #eaf5e9 100%);
    padding: 60px 0;
    margin: 40px 0;
}

.advisory-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Consistent Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

    .section-header h1 {
        font-size: 2.8rem;
        color: #2c3e50;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

        .section-header h1:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #96c93e, #7ab317);
            border-radius: 2px;
        }

    .section-header p {
        font-size: 1.2rem;
        color: #7f8c8d;
        max-width: 600px;
        margin: 0 auto;
    }

/* Advisory Slider */
.advisory-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.advisory-members {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 25px;
}

.advisory-card {
    flex: 0 0 calc(25% - 19px); /* 4 cards in one row with gap */
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid #96c93e;
    min-width: calc(25% - 19px);
}

    .advisory-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 35px rgba(150, 201, 62, 0.15);
    }

.advisory-image {
    height: 180px; /* Smaller than executive committee */
    overflow: hidden;
    position: relative;
}

    .advisory-image img {
        /*width: 100%;*/
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.advisory-card:hover .advisory-image img {
    transform: scale(1.05);
}

.advisory-info {
    padding: 20px 15px;
}

.advisory-name {
    font-size: 1.2rem; /* Smaller font than executive committee */
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.3;
}

.advisory-bio {
    color: #7f8c8d;
    font-size: 0.9rem; /* Smaller font than executive committee */
    line-height: 1.5;
    margin: 0;
}

/* Navigation */
.advisory-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.advisory-nav-btn {
    width: 40px; /* Smaller than executive committee */
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #96c93e;
    transition: all 0.3s ease;
    display: none; /* Hidden on desktop */
}

    .advisory-nav-btn:hover {
        background: #96c93e;
        color: white;
        transform: scale(1.1);
    }

.advisory-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
    display: none; /* Hidden on desktop */
}

.advisory-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #bdc3c7;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .advisory-dot.active {
        background: #96c93e;
        transform: scale(1.2);
    }

/* Responsive Design */
@media (max-width: 992px) {
    .advisory-card {
        flex: 0 0 calc(50% - 13px); /* 2 cards per row on tablet */
        min-width: calc(50% - 13px);
    }

    .advisory-nav-btn,
    .advisory-dots {
        display: flex; /* Show navigation on tablet and mobile */
    }
}

@media (max-width: 768px) {
    .advisory-board-section {
        padding: 50px 0;
    }

    .section-header h1 {
        font-size: 2.2rem;
    }

    .advisory-card {
        flex: 0 0 calc(100% - 20px); /* 1 card per row on mobile */
        min-width: calc(100% - 20px);
    }

    .advisory-image {
        height: 160px;
    }

    .advisory-info {
        padding: 18px 15px;
    }

    .advisory-name {
        font-size: 1.1rem;
    }

    .advisory-bio {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .section-header h1 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .advisory-image {
        height: 150px;
    }
}



/* GROUPS SECTION STYLES */
/* GROUPS SECTION STYLES */
.empower-groups-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbf3 100%);
    padding: 80px 0;
    margin: 40px 0;
}

.groups-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Consistent Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

    .section-header h1 {
        font-size: 2.8rem;
        color: #2c3e50;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

        .section-header h1:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #96c93e, #7ab317);
            border-radius: 2px;
        }

    .section-header p {
        font-size: 1.2rem;
        color: #7f8c8d;
        max-width: 600px;
        margin: 0 auto;
    }

/* Groups Grid - Fixed 3 columns for 2 rows */
.groups-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.group-card {
    background: white;
    border-radius: 15px;
    padding: 50px 30px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: block;
    height: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

    .group-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;
    }

    .group-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(150, 201, 62, 0.15);
        border-color: #96c93e;
    }

        .group-card:hover::before {
            left: 100%;
        }

/* Centered Icon */
.group-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #96c93e, #7ab317);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.group-card:hover .group-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(150, 201, 62, 0.3);
}

.group-icon i {
    font-size: 2.2rem;
    color: white;
}

.group-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Centered Group Name */
.group-name {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
    transition: color 0.3s ease;
    line-height: 1.3;
    text-align: center;
}

.group-card:hover .group-name {
    color: #96c93e;
}

/* Prominent Read More Link */
.group-link-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.group-link {
    color: #96c93e;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 12px 25px;
    border: 2px solid #96c93e;
    border-radius: 25px;
    background: rgba(150, 201, 62, 0.1);
}

.group-card:hover .group-link {
    gap: 15px;
    color: white;
    background: #96c93e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(150, 201, 62, 0.3);
}

.group-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.group-card:hover .group-link i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .groups-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .group-card {
        padding: 40px 25px;
        min-height: 200px;
    }

    .group-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

        .group-icon i {
            font-size: 2rem;
        }

    .group-name {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .empower-groups-section {
        padding: 60px 0;
    }

    .section-header h1 {
        font-size: 2.2rem;
    }

    .groups-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .group-card {
        padding: 40px 30px;
        min-height: 180px;
    }

    .group-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

        .group-icon i {
            font-size: 1.8rem;
        }

    .group-name {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .section-header h1 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .group-card {
        padding: 35px 25px;
    }

    .group-icon {
        width: 65px;
        height: 65px;
    }

        .group-icon i {
            font-size: 1.6rem;
        }

    .group-name {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .group-link {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}





/* COMMUNITY ACTION SECTION STYLES */
.community-action-section {
    background: linear-gradient(135deg, #f8fbf3 0%, #e8f5e8 100%);
    padding: 80px 0;
    margin: 40px 0;
}

.action-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Consistent Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

    .section-header h1 {
        font-size: 2.8rem;
        color: #2c3e50;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

        .section-header h1:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #96c93e, #7ab317);
            border-radius: 2px;
        }

    .section-header p {
        font-size: 1.2rem;
        color: #7f8c8d;
        max-width: 600px;
        margin: 0 auto;
    }

/* Action Widgets Grid */
.action-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.action-widget {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    display: block;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .action-widget::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(150, 201, 62, 0.05), transparent);
        transition: left 0.6s ease;
    }

    .action-widget:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(150, 201, 62, 0.2);
        border-color: #96c93e;
    }

        .action-widget:hover::before {
            left: 100%;
        }

/* Widget Icons */
.widget-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #96c93e, #7ab317);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.action-widget:hover .widget-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(150, 201, 62, 0.3);
}

.widget-icon i {
    font-size: 2.5rem;
    color: white;
}

/* Widget Content */
.widget-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.widget-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.widget-description {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1rem;
    text-align: center;
    flex-grow: 1;
}

/* Widget Links */
.widget-link {
    color: #96c93e;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    padding: 15px 30px;
    border: 2px solid #96c93e;
    border-radius: 30px;
    background: rgba(150, 201, 62, 0.1);
    margin-top: auto;
}

.action-widget:hover .widget-link {
    gap: 15px;
    color: white;
    background: #96c93e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(150, 201, 62, 0.3);
}

.widget-link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.action-widget:hover .widget-link i {
    transform: translateX(5px);
}

/* Widget Badges */
.widget-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #96c93e, #7ab317);
    color: white;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(150, 201, 62, 0.3);
}

/* Individual Widget Colors */
.join-widget {
    border-top: 5px solid #96c93e;
}

.directory-widget {
    /*border-top: 5px solid #3498db;*/
    border-top: 5px solid #80b81f;
}

.gallery-widget {
    /* border-top: 5px solid #e74c3c;*/
    border-top: 5px solid #80b81f;
}

.join-widget .widget-icon {
    /* background: linear-gradient(135deg, #96c93e, #7ab317);*/
    background: linear-gradient(135deg, #939393, #939393);
}

.directory-widget .widget-icon {
    /*background: linear-gradient(135deg, #3498db, #2980b9);*/
    background: linear-gradient(135deg, #939393, #939393);
}

.gallery-widget .widget-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    background: linear-gradient(135deg, #939393, #939393);
}

.join-widget .widget-link {
    border-color: #96c93e;
    background: rgba(150, 201, 62, 0.1);
}

.directory-widget .widget-link {
    /*border-color: #3498db;
    background: rgba(52, 152, 219, 0.1);*/
    border-color: #96c93e;
    background: rgba(150, 201, 62, 0.1);
}

.gallery-widget .widget-link {
   /* border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);*/
}

.join-widget:hover .widget-link {
    background: #96c93e;
}

.directory-widget:hover .widget-link {
    /* background: #3498db;
    border-color: #3498db;*/
    background: #96c93e;
}

.gallery-widget:hover .widget-link {
    /*background: #e74c3c;
    border-color: #e74c3c;*/
    background: #96c93e;
}

/* Responsive Design */
@media (max-width: 992px) {
    .action-widgets {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
        margin: 0 auto;
    }

    .action-widget {
        min-height: 280px;
        padding: 35px 25px;
    }

    .widget-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 25px;
    }

        .widget-icon i {
            font-size: 2.2rem;
        }

    .widget-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .community-action-section {
        padding: 60px 0;
    }

    .section-header h1 {
        font-size: 2.2rem;
    }

    .action-widget {
        padding: 30px 25px;
        min-height: 260px;
    }

    .widget-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

        .widget-icon i {
            font-size: 2rem;
        }

    .widget-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .widget-description {
        margin-bottom: 25px;
        font-size: 0.95rem;
    }

    .widget-link {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-header h1 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .action-widget {
        padding: 25px 20px;
    }

    .widget-icon {
        width: 70px;
        height: 70px;
    }

        .widget-icon i {
            font-size: 1.8rem;
        }

    .widget-title {
        font-size: 1.2rem;
    }

    .widget-link {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .widget-badge {
        top: 15px;
        right: 15px;
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}