/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
/*background: linear-gradient(45deg, #ff6b35, #f7931e);*/
body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #444064, #00BF63) !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    /*position: fixed;*/
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.logomain {
    width: 30%;
}

.navbar {
    padding: 0px 0px 0px 0px;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.logo span {
    color: #fff;
    font-size: 0.9rem;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
}

    .nav-menu a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        padding: 0.5rem 6px;
        display: flex;
        align-items: center;
        gap: 0.3rem;
    }

        .nav-menu a:hover {
            color: #fff3e0;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: white;
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
    z-index: 999;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    color: #333;
    padding: 0.7rem 1rem;
    display: block;
    border-radius: 0;
}

    .dropdown-menu li a:hover {
        background: #f8f9fa;
        color: #00BF63;
    }

    .dropdown-menu li a::after {
        display: none;
    }

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

    .hamburger span {
        width: 25px;
        height: 3px;
        background: white;
        margin: 3px 0;
        transition: 0.3s;
    }

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3c72, #2bd920);
    color: white;
    padding: 20px 0 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="1000,100 1000,0 0,100"/></svg>');
        background-size: cover;
        background-position: bottom;
    }

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text h2 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.constituency-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
   padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    font-size: 15px;
}

.btn-primary {
    background: linear-gradient(45deg, #00BF63, #00BF63);
    color: white;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    }

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

    .btn-secondary:hover {
        background: white;
        color: #1e3c72;
    }

.hero-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

    .image-placeholder i {
        font-size: 4rem;
        margin-bottom: 1rem;
        opacity: 0.7;
    }

    .image-placeholder p {
        opacity: 0.7;
        font-weight: 500;
    }

/* Hero Stats */
.hero-stats {
    /*background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);*/
    padding: 2rem 0;
    margin-top: 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-header h2 {
        font-size: 2.5rem;
        color: #1e3c72;
        margin-bottom: 1rem;
        position: relative;
        font-weight: 700;
        margin-top: -75px;
    }

.img-responsive {
    max-width: 100%;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 3px;
    background: linear-gradient(45deg, #00BF63, #00BF63);
}

.section-header h3 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    position: relative;
    font-weight: 700;
}

.img-responsive {
    max-width: 100%;
}

.section-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #00BF63, #00BF63);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 100%;
    margin: 0 auto;
    /*font-weight: bold;*/
    text-align: center;
    /*font-family: fangsong;*/
}

/* Latest Updates Section */
.latest-updates {
    padding: 80px 0;
    background: #f8f9fa;
    margin-top: -150px;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.update-card {
    background: white;
   padding: 25px 10px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .update-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(45deg, #00BF63, #00BF63);
    }

    .update-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

.update-icon {
    width: 100%;
    height: auto;
    background: linear-gradient(45deg, #00BF63, #00BF63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

    .update-icon i {
        font-size: 1.5rem;
        color: white;
    }

.update-card h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.update-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.update-date {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-text h3 {
    color: #1e3c72;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

    .about-text h3:first-child {
        margin-top: 0;
    }

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.qualities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.quality-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

    .quality-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        background: white;
    }

    .quality-item i {
        font-size: 3rem;
        color: #00BF63;
        margin-bottom: 1rem;
    }

    .quality-item h4 {
        color: #1e3c72;
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

    .quality-item p {
        color: #666;
        font-size: 1rem;
    }

/* Vision & Mission Section */
.vision-mission {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.vision-mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.vision-card, .mission-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .vision-card::before, .mission-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(45deg, #00BF63, #00BF63);
    }

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00BF63, #00BF63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

    .card-icon i {
        font-size: 2rem;
        color: white;
    }

.vision-card h3, .mission-card h3 {
    color: #1e3c72;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.vision-card p, .mission-card p {
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
}

.commitments h3 {
    text-align: center;
    color: #1e3c72;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.commitment-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .commitment-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    .commitment-item i {
        font-size: 2.5rem;
        color: #00BF63;
        margin-bottom: 1rem;
    }

    .commitment-item h4 {
        color: #1e3c72;
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

    .commitment-item p {
        color: #666;
        line-height: 1.6;
    }

/* Initiatives Section */
.initiatives {
    padding: 80px 0;
    background: white;
}

.initiatives-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid #e9ecef;
    background: white;
    color: #666;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

    .tab-btn.active,
    .tab-btn:hover {
        background: linear-gradient(45deg, #00BF63, #00BF63);
        color: white;
        border-color: transparent;
    }

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

    .tab-pane.active {
        display: block;
    }

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.initiative-card {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

    .initiative-card:hover {
        background: white;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        transform: translateY(-5px);
    }

.initiative-image {
    width: 100%;
    height: auto;
    background: linear-gradient(45deg, #00BF63, #00BF63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

    .initiative-image i {
        font-size: 2rem;
        color: white;
    }

.initiative-card h4 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.initiative-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.initiative-status {
    background: #28a745;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

/* News & Media Section */
.news-media {
    padding: 80px 0;
    background: #f8f9fa;
}

.news-content {
    max-width: 1000px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .news-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    .news-card.featured {
        grid-row: span 2;
    }

.news-image {
    height: auto;
    background: linear-gradient(45deg, #00BF63, #00BF63);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.news-card.featured .news-image {
    height: auto;
}

.news-image i {
    font-size: 3rem;
}

.news-content-text {
    padding: 1.5rem;
}

.news-category {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.news-card h3 {
    color: #1e3c72;
    margin: 1rem 0;
    font-size: 1.2rem;
    line-height: 1.4;
}

.news-card.featured h3 {
    font-size: 1.4rem;
}

.news-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-date {
    color: #999;
    font-size: 0.9rem;
}

.read-more {
    color: #00BF63;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .read-more:hover {
        color: #e55a2b;
    }

.media-links h3 {
    color: #1e3c72;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.8rem;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.media-link {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

    .media-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        color: #00BF63;
    }

    .media-link i {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #00BF63;
    }

    .media-link span {
        display: block;
        font-weight: 500;
    }

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: white;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #e9ecef;
    background: white;
    color: #666;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

    .filter-btn.active,
    .filter-btn:hover {
        background: linear-gradient(45deg, #00BF63, #00BF63);
        color: white;
        border-color: transparent;
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }

.gallery-image {
    height: 250px;
    background: linear-gradient(45deg, #00BF63, #00BF63);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

    .gallery-image i {
        font-size: 3rem;
        opacity: 0.7;
    }

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Public Connect Section */
.public-connect {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
}

    .public-connect .section-header h2 {
        color: white;
        margin-top: -40px;
    }

        .public-connect .section-header h2::after {
            background: #ffd700;
        }

    .public-connect .section-header p {
        color: rgba(255, 255, 255, 0.9);
    }

.connect-content {
    max-width: 1000px;
    margin: 0 auto;
}

.connect-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.connect-card {
    /*background: rgba(255, 255, 255, 0.1);*/
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

    .connect-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.15);
    }

.connect-icon {
    width: 80px;
    height: 80px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

    .connect-icon i {
        font-size: 2rem;
        color: #1e3c72;
    }

.connect-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.connect-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.office-hours {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-align: center;
}

    .office-hours h3 {
        margin-bottom: 2rem;
        font-size: 1.8rem;
    }

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.hours-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .hours-item strong {
        color: #ffd700;
    }

/* Events Section */
.events {
    padding: 80px 0;
    background: #f8f9fa;
}

.events-content {
    max-width: 1000px;
    margin: 0 auto;
}

.events-calendar {
    margin-bottom: 4rem;
}

.event-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

    .event-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

.event-date {
    background: linear-gradient(45deg, #00BF63, #00BF63);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
}

    .event-date .day {
        font-size: 2rem;
        font-weight: 700;
        display: block;
    }

    .event-date .month {
        font-size: 0.9rem;
        opacity: 0.9;
    }

.event-details {
    flex: 1;
}

    .event-details h4 {
        color: #1e3c72;
        margin-bottom: 0.5rem;
        font-size: 1.3rem;
    }

    .event-details p {
        color: #666;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

.event-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: #999;
}

    .event-meta span {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

.event-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

    .event-status.upcoming {
        background: #28a745;
        color: white;
    }

    .event-status.completed {
        background: #6c757d;
        color: white;
    }

/* Get Involved Section */
.get-involved {
    padding: 80px 0;
    background: white;
}

.involvement-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.involvement-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

    .involvement-card:hover {
        background: white;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        transform: translateY(-5px);
    }

.involvement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00BF63, #00BF63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

    .involvement-icon i {
        font-size: 2rem;
        color: white;
    }

.involvement-card h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.involvement-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.involvement-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

    .involvement-card ul li {
        color: #555;
        margin-bottom: 0.8rem;
        padding-left: 1.5rem;
        position: relative;
    }

        .involvement-card ul li::before {
            content: '✓';
            The website HTML file has now been completed with the following additions: - Completed the "Get Involved" section with Volunteer Opportunities, Collaboration, and Community Ideas cards. - Added the "Contact" section with office address, phone numbers, email addresses, office timings, and a contact form. - Added the Footer with social links, quick links, services, contact info, and legal links. - Added a scroll-to-top button. - Included the script.js file at the end. The structure and content now fully match the navigation menu and the design is consistent throughout. Next, I recommend testing the website thoroughly including: - Navigation menu and dropdowns - Smooth scrolling and active link highlighting - Contact form validation and submission - Responsive design on different screen sizes - Scroll animations and counters - All interactive tabs and buttons right: 1rem;
        }

.event-status.upcoming {
    background: #28a745;
    color: white;
}

.event-status.completed {
    background: #6c757d;
    color: white;
}

.campaign-highlights h3 {
    color: #1e3c72;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.8rem;
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.campaign-card {
    background: white;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .campaign-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    .campaign-card i {
        font-size: 3rem;
        color: #00BF63;
        margin-bottom: 1rem;
    }

    .campaign-card h4 {
        color: #1e3c72;
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

    .campaign-card p {
        color: #666;
        line-height: 1.6;
    }

/* Get Involved Section */
.get-involved {
    padding: 80px 0;
    background: white;
}

.involvement-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.involvement-card {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

    .involvement-card:hover {
        background: white;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        transform: translateY(-5px);
    }

.involvement-icon {
    width: 100%;
    height: auto;
    background: linear-gradient(45deg, #00BF63, #00BF63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

    .involvement-icon i {
        font-size: 2.5rem;
        color: white;
    }

.involvement-card h3 {
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.involvement-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.involvement-card ul {
    text-align: left;
    margin-bottom: 2rem;
    color: #555;
}

    .involvement-card ul li {
        margin-bottom: 0.5rem;
        padding-left: 1rem;
        position: relative;
    }

        .involvement-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
        }

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
}

    .contact .section-header h2 {
        color: white;
    }

        .contact .section-header h2::after {
            background: #ffd700;
        }

    .contact .section-header p {
        color: rgba(255, 255, 255, 0.9);
    }

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

    .contact-item i {
        font-size: 1.5rem;
        color: #ffd700;
        margin-top: 0.5rem;
    }

    .contact-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .contact-item p {
        opacity: 0.9;
        line-height: 1.6;
    }

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 15px 20px;
        border: none;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.9);
        font-size: 1rem;
        transition: all 0.3s ease;
        font-family: inherit;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            background: white;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #00BF63;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

    .footer-section ul li {
        margin-bottom: 0.8rem;
    }

        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .footer-section ul li a:hover {
                color: #00BF63;
            }

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

    .social-links a {
        width: 45px;
        height: 45px;
        background: #333;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .social-links a:hover {
            background: #00BF63;
            transform: translateY(-3px);
        }

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #00BF63, #f7931e);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

    .scroll-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .scroll-top:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    }

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .vision-mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: linear-gradient(135deg, #00BF63, #f7931e);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 0;
    }

        .nav-menu.active {
            left: 0;
        }

        .nav-menu li {
            margin: 0.5rem 0;
        }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        margin-top: 0.5rem;
    }

        .dropdown-menu li a {
            color: white;
            padding: 0.5rem 1rem;
        }

    .hero {
        padding: 50px 0 0px;
        min-height: auto;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .event-status {
        position: static;
        margin-top: 1rem;
    }

    .involvement-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 1.3rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .qualities {
        grid-template-columns: 1fr;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .initiatives-grid {
        grid-template-columns: 1fr;
    }

    .updates-grid {
        grid-template-columns: 1fr;
    }

    .connect-options {
        grid-template-columns: 1fr;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }

    .campaign-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Loading Animation */
body:not(.loaded) {
    overflow: hidden;
}

    body:not(.loaded)::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #1e3c72, #2a5298);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    body:not(.loaded)::after {
        content: 'Loading...';
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 1.5rem;
        font-weight: 600;
        z-index: 10000;
        animation: pulse 1.5s infinite;
    }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #00BF63, #f7931e);
    border-radius: 4px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(45deg, #e55a2b, #e8851a);
    }

/* Print Styles */
@media print {
    .header,
    .scroll-top,
    .hero-buttons,
    .btn {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
    }

    .hero {
        background: none;
        color: #000;
        padding: 20px 0;
    }

    .section-header h2 {
        color: #000;
    }

    .logospan {
        width: 100%;
    }
}


.lftmargin {
    margin-left: 240px;
}

.side-menu {
    position: fixed;
    top: 110px;
    left: 24px;
    width: 313px;
    height: 83vh;
    background-color: #00bf63;
    padding: 0px 0px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    border-right: 1px solid #333;
    z-index: 1;
    border-radius: 20px;
}

    .side-menu .auhtor-info {
        text-align: center;
        margin-bottom: 0px;
    }

    .side-menu .author-avatar img {
        width: 100%;
        height: auto;
        /* border-radius: 5%; */
        object-fit: cover;
        /* border: 2px solid #00aced; */
        /* margin-bottom: 10px; */
        border-radius: 20px 15px 0px 20px;
    }

    .side-menu .auhtor-info h2 {
        font-size: 20px;
        margin: 5px 0;
        color: #fff;
    }

    .side-menu .auhtor-info h4 {
        font-size: 22px;
        color: #fff;
        margin-bottom: 10px;
        margin-top: -9px;
    }

    .side-menu .auhtor-info p {
        font-size: 15px;
        color: #000;
        font-weight: bold;
        margin-bottom: 8px;
        margin-top: -15px;
        line-height: 23px;
        padding:0px 10px;
    }

    .side-menu .left-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
        width: 100%;
    }

        .side-menu .left-menu ul li {
            margin: 0px 0;
        }

            .side-menu .left-menu ul li a {
                color: #fff;
                text-decoration: none;
                font-size: 15px;
                display: block;
                padding: 0px;
                border-radius: 6px;
                transition: 0.3s ease;
            }

                .side-menu .left-menu ul li a:hover {
                    background-color: #00aced;
                    color: #fff;
                }

    .side-menu .social-media-3 {
        margin-top: -6px;
    }

        .side-menu .social-media-3 a {
            color: #fff;
            margin: 0 6px;
            font-size: 18px;
            transition: color 0.3s ease;
        }

            .side-menu .social-media-3 a:hover {
                color: #00aced;
            }

    .side-menu .bottom-section {
        margin-top: auto;
        text-align: center;
        font-size: 13px;
        color: #999;
        padding-top: 20px;
    }

/* Main content on the right */
.main-content {
    margin-left: 250px; /* Sidebar width */
    padding: 40px;
    background-color: #f9f9f9;
    min-height: 100vh;
    position: relative;
    z-index: 10;
}

    .main-content h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .main-content p {
        font-size: 16px;
        line-height: 1.6;
    }

.siderimg {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
}
/*Aboutpage*/
.pagebosec {
    padding: 50px 0px;
    background-color: #f8f9fa;
}

.aboutus-page {
    position: relative;
    padding: 0px 0;
    background: #333; /* Light background for section */
}

.aboutus-page-bg {
    background: url('images/about-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 20px 0;
    position: relative;
    z-index: 0;
}

    .aboutus-page-bg::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5); /* Overlay for text readability */
        z-index: -1;
    }

.aboutus-pagetext {
    text-align: center;
    color: #fff;
}

.aboutus-pagetext-h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.aboutus-pagetext-ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
    margin: 0;
}

    .aboutus-pagetext-ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        transition: color 0.3s ease;
    }

        .aboutus-pagetext-ul li a:hover {
            color: #ffd700; /* Yellow on hover */
        }

    .aboutus-pagetext-ul .hcoloraaa {
        color: #ffd700;
        cursor: default;
    }

    /* Optional: Icons Styling */
    .aboutus-pagetext-ul i {
        margin-left: 5px;
    }

.biography-flex-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 40px 60px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.bio-content {
    flex: 1 1 50%;
    min-width: 280px;
}

.bio-image {
    flex: 1 1 25%;
    text-align: right;
}

    .bio-image img {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

.biography-img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.biography-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.biography-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.iconfoot {
    width: 40px;
    height: 40px;
    line-height: 44px;
    background-color: black;
    border-radius: 50%;
    padding: 0px 14px;
}

.contact-info p i {
    padding: 0px 5px;
}
.sliderp {
    position: absolute;
    top: 427px;
    width: 580px;
    font-size: 14px;
    left: 790px;
}
.sliderp1 {
    display:none;
}