/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #1e2a3e;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #da291c;
    color: white;
    font-size: 0.85rem;
    padding: 8px 0;
    position: relative;
    z-index: 1001;
}

.top-bar-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-info-right {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: auto;
}

.contact-info-right span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-info {
    flex: 1;
}

/* ===== HEADER & LOGO ===== */
header {
    background: #fff;
    border-bottom: 1px solid #f0eae4;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    flex-wrap: nowrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-img {
    width: 54px;
    height: 80px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #b13a2e;
    line-height: 1.2;
    white-space: nowrap;
}

.logo-text .tagline {
    font-size: 0.7rem;
    color: #6c7a8e;
    display: block;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-menu li {
    position: relative;
    white-space: nowrap;
}

.menu-item-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-menu li a {
    text-decoration: none;
    font-weight: 600;
    color: #000;
    padding: 8px 0;
    background: transparent;
    border-radius: 0;
    white-space: nowrap;
}

.nav-menu li>a:hover {
    background: rgba(222, 155, 2, 0.8);
    color: #000;
    padding: 8px 14px;
    border-radius: 8px;
}

.dropdown-arrow {
    font-size: 0.7rem;
    color: #000;
    transition: 0.2s;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(222, 155, 2, 0.8);
    min-width: 240px;
    border-radius: 12px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.2s;
    z-index: 100;
    list-style: none;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 22px;
    color: #000 !important;
    background: rgba(222, 155, 2, 0.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    font-weight: 500;
    white-space: nowrap;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: rgb(243, 177, 25);
    padding-left: 28px;
}

.search-icon a {
    font-size: 1.1rem;
    padding: 8px 8px;
}

.btn-donate {
    background: #c72a2f;
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-donate:hover {
    background: #a52226;
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #2c3e4e;
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
        order: 2;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .logo {
        gap: 8px;
    }

    .logo-img {
        width: 45px;
        height: auto;
    }

    .logo-text h1 {
        font-size: 1.2rem;
        white-space: normal;
    }

    .logo-text .tagline {
        font-size: 0.6rem;
        white-space: normal;
    }

    .main-nav {
        width: 100%;
        order: 3;
    }

    .nav-menu {
        position: fixed;
        top: 120px;
        left: -100%;
        flex-direction: column;
        background: #f3b119;
        width: 100%;
        transition: 0.3s;
        gap: 0;
        padding: 0;
        z-index: 999;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
        flex-wrap: wrap;
    }

    .nav-menu.show-mobile {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        white-space: normal;
    }

    .menu-item-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 20px;
        background: #f3b119;
        width: 100%;
    }

    .menu-item-wrapper a {
        flex: 1;
        font-weight: 700;
        color: #000;
        padding: 0;
        background: transparent !important;
        white-space: normal;
    }

    .dropdown-arrow {
        color: white;
        cursor: pointer;
        padding: 5px 12px;
        border-radius: 30px;
        background: rgba(0, 0, 0, 0.05);
        font-size: 1rem;
    }

    .dropdown-menu {
        position: static;
        background: rgba(222, 155, 2, 0.8);
        width: 100%;
        display: none;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .dropdown-menu.open {
        display: block;
    }

    .dropdown-menu li a {
        padding: 12px 20px 12px 35px;
        border-bottom: 1px solid #000;
        background: rgba(222, 155, 2, 0.8);
        color: #000 !important;
        font-size: 0.9rem;
        white-space: normal;
    }

    .btn-donate {
        margin-left: auto;
    }

    .search-icon {
        display: none;
    }

    .top-bar-container {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .contact-info-right {
        margin-left: 0;
        justify-content: center;
    }
}

/* ===== IMAGE SLIDER ===== */
.hero-slider {
    width: 100%;
    position: relative;
    background: #1e2a3a;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    background: #1e2a3a;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 12px 18px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: 0.2s;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

.dot.active {
    background: #da291c;
    transform: scale(1.2);
}

@media (max-width: 768px) {

    .slider-prev,
    .slider-next {
        font-size: 1.2rem;
        padding: 8px 12px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }
}

/* ===== ANNUAL REPORT SECTION ===== */
.annual-report-section {
    background: #0f4c5c;
    padding: 48px 0;
    text-align: center;
    color: white;
}

.annual-report-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.annual-report-content p {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 28px;
    opacity: 0.95;
}

.btn-read-report {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #0f4c5c;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: 0.2s;
    border: 2px solid white;
}

.btn-read-report:hover {
    background: transparent;
    color: white;
    border-color: white;
}

@media (max-width: 768px) {
    .annual-report-content h2 {
        font-size: 1.8rem;
    }

    .annual-report-content p {
        font-size: 1.1rem;
    }

    .btn-read-report {
        padding: 10px 24px;
    }
}

/* ===== MISSION SECTION ===== */
.mission-section {
    padding: 64px 0;
    background: rgb(255, 230, 235);
}

.mission-wrapper p {
    font-size: 1.05rem;
    color: #2c3e50;
    margin-bottom: 28px;
    line-height: 1.6;
}

.section-title {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 28px;
    letter-spacing: -0.4px;
    color: #1e2a3e;
}

.section-title span {
    color: #c72a2f;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #c72a2f;
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-read-more:hover {
    background: #a52226;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(199, 42, 47, 0.3);
}

/* ===== THEMATIC AREAS SECTION ===== */
.thematic-section {
    background: #ffffff;
    padding: 64px 0;
}

.centered {
    text-align: center;
}

.thematic-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5b6e;
    max-width: 800px;
    margin: 0 auto 48px auto;
}

.thematic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 20px;
}

.thematic-card {
    border-radius: 28px;
    padding: 32px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.thematic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.thematic-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.thematic-card ul {
    list-style: none;
    padding-left: 0;
    flex: 1;
}

.thematic-card ul li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.4;
}

.thematic-card ul li:before {
    content: "▹";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

/* NEW COLORS FOR 8 THEMATIC CARDS */
.thematic-national {
    background: linear-gradient(135deg, #e67e22, #f39c12);
}

.thematic-education {
    background: linear-gradient(135deg, #2980b9, #3498db);
}

.thematic-publichealth {
    background: linear-gradient(135deg, #1abc9c, #16a085);
}

.thematic-health {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.thematic-social {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
}

.thematic-employment {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.thematic-sports {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.thematic-agriculture {
    background: linear-gradient(135deg, #d35400, #e67e22);
}

@media (max-width: 768px) {
    .thematic-grid {
        grid-template-columns: 1fr;
    }

    .thematic-card h3 {
        font-size: 1.5rem;
    }

    .thematic-card {
        min-height: auto;
    }
}

/* ===== OVERVIEW PAGE ===== */
.overview-section {
    padding: 60px 0 80px 0;
    background: #ffffff;
}

.overview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0eae4;
}

.overview-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #b13a2e;
    margin: 0;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #6c7a8e;
}

.breadcrumb a {
    color: #b13a2e;
    text-decoration: none;
    transition: 0.2s;
}

.breadcrumb a:hover {
    color: #c72a2f;
    text-decoration: underline;
}

.breadcrumb .separator {
    margin: 0 8px;
    color: #ccc;
}

.overview-content {
    max-width: 1000px;
    margin: 0 auto;
}

.overview-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 24px;
    text-align: justify;
}

@media (max-width: 768px) {
    .overview-section {
        padding: 40px 0 60px 0;
    }

    .overview-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .overview-title {
        font-size: 1.7rem;
    }

    .overview-content p {
        font-size: 0.98rem;
        text-align: left;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: #0f1a24;
    padding-top: 56px;
    color: #dddddd;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 44px;
    margin-bottom: 48px;
}

.footer-col h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 22px;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #bcbcbc;
    font-size: 0.85rem;
    transition: 0.2s;
}

.footer-col ul li a:hover {
    color: #ffb347;
}

.footer-bottom {
    border-top: 1px solid #2a3a48;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-icons a {
    color: #bcbcbc;
    margin-right: 22px;
    font-size: 1.2rem;
    transition: 0.2s;
    text-decoration: none;
}

.social-icons a:hover {
    color: white;
}

.copyright {
    font-size: 0.75rem;
    text-align: right;
}

.copyright a {
    color: #bcbcbc;
    text-decoration: none;
    transition: 0.2s;
}

.copyright a:hover {
    color: #ffb347;
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .copyright {
        text-align: center;
    }
}

/* ===== MISSION & VISION PAGE ===== */
.mission-vision-content {
    max-width: 900px;
    margin: 0 auto;
}

.mission-vision-content .vision-block,
.mission-vision-content .mission-block {
    margin-bottom: 48px;
}

.mission-vision-content .vision-block h2,
.mission-vision-content .mission-block h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #b13a2e;
    margin-bottom: 16px;
    border-bottom: 3px solid #f0eae4;
    padding-bottom: 12px;
}

.mission-vision-content .vision-block p,
.mission-vision-content .mission-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

.mission-vision-content strong {
    color: #c72a2f;
}

@media (max-width: 768px) {

    .mission-vision-content .vision-block h2,
    .mission-vision-content .mission-block h2 {
        font-size: 1.6rem;
    }

    .mission-vision-content .vision-block p,
    .mission-vision-content .mission-block p {
        font-size: 1rem;
    }
}

/* ===== PRESIDENT'S MESSAGE PAGE ===== */
.presidents-message-content .message-letter {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.presidents-message-content .message-letter p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: justify;
}

.presidents-message-content .message-letter p:first-child {
    font-size: 1.15rem;
}

.presidents-message-content .signature {
    margin-top: 40px;
    text-align: right;
}

.presidents-message-content .signature p {
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.presidents-message-content .signature .designation {
    font-size: 0.95rem;
    color: #6c7a8e;
}

@media (max-width: 768px) {
    .presidents-message-content .message-letter p {
        font-size: 0.98rem;
        text-align: left;
    }

    .presidents-message-content .signature {
        text-align: left;
    }
}

/* ===== ORGANOGRAM PAGE ===== */
.organogram-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0;
}

.organogram-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border: 1px solid #f0eae4;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    background: #fff;
}

.organogram-alt-text {
    font-size: 0.95rem;
    color: #6c7a8e;
    margin-top: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .organogram-container {
        padding: 10px 0;
    }

    .organogram-img {
        border-radius: 8px;
    }
}

/* ===== EXECUTIVE BODY PAGE ===== */
.executive-body-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 0;
}

.table-wrapper {
    margin-bottom: 48px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #b13a2e;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0eae4;
}

.executive-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    min-width: 600px;
}

.executive-table thead {
    background: #b13a2e;
    color: white;
}

.executive-table thead th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.executive-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid #f0eae4;
    color: #2c3e50;
}

.executive-table tbody tr:nth-child(even) {
    background: #fdf8f6;
}

.executive-table tbody tr:hover {
    background: #f5ede8;
}

.executive-table tbody td:first-child {
    font-weight: 600;
    color: #b13a2e;
}

@media (max-width: 768px) {
    .executive-table {
        font-size: 0.85rem;
        min-width: 500px;
    }

    .executive-table thead th,
    .executive-table tbody td {
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .executive-table {
        font-size: 0.78rem;
        min-width: 420px;
    }

    .executive-table thead th,
    .executive-table tbody td {
        padding: 8px 10px;
    }
}

/* ===== GOVERNANCE PAGE ===== */
.governance-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 0;
}

.governance-block {
    margin-bottom: 56px;
}

.governance-block h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #b13a2e;
    margin-bottom: 20px;
    border-bottom: 3px solid #f0eae4;
    padding-bottom: 12px;
}

.governance-block .block-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 28px;
}

.legal-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-item {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    padding: 12px 18px;
    background: #fdf8f6;
    border-radius: 8px;
    border-left: 4px solid #b13a2e;
}

.legal-title {
    font-weight: 700;
    color: #1e2a3e;
    min-width: 200px;
    font-size: 1rem;
}

.legal-desc {
    color: #2c3e50;
    font-size: 0.95rem;
}

.disclosure-item {
    padding: 16px 18px;
    background: #f9f7f5;
    border-radius: 8px;
    margin-bottom: 12px;
    border-left: 4px solid #c72a2f;
}

.disclosure-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #2c3e50;
    margin: 0;
}

.disclosure-item strong {
    color: #b13a2e;
}

@media (max-width: 768px) {
    .governance-block h2 {
        font-size: 1.6rem;
    }

    .legal-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .legal-title {
        min-width: auto;
        font-size: 0.95rem;
    }

    .legal-desc {
        font-size: 0.9rem;
    }

    .disclosure-item p {
        font-size: 0.95rem;
    }
}

/* ===== HEALTH, WOMEN, DISABILITY, LIVELIHOOD, SOCIAL PAGES ===== */
.health-content ul.check-color,
.women-child-content ul.check-color,
.disability-content ul.check-color,
.livelihood-content ul.check-color,
.social-content ul.check-color {
    list-style: none;
    padding-left: 0;
}

.health-content ul.check-color li,
.women-child-content ul.check-color li,
.disability-content ul.check-color li,
.livelihood-content ul.check-color li,
.social-content ul.check-color li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px;
    line-height: 1.6;
}

.health-content ul.check-color li::before,
.women-child-content ul.check-color li::before,
.disability-content ul.check-color li::before,
.livelihood-content ul.check-color li::before,
.social-content ul.check-color li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #27ae60;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1rem;
}

.health-content h3,
.women-child-content h3,
.disability-content h3,
.livelihood-content h3,
.social-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #b13a2e;
    margin-top: 32px;
    margin-bottom: 12px;
}

.health-content h3:first-of-type,
.women-child-content h3:first-of-type,
.disability-content h3:first-of-type,
.livelihood-content h3:first-of-type,
.social-content h3:first-of-type {
    margin-top: 0;
}

.health-content p,
.women-child-content p,
.disability-content p,
.livelihood-content p,
.social-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 18px;
    text-align: justify;
}

.health-content br,
.women-child-content br,
.disability-content br,
.livelihood-content br,
.social-content br {
    display: none;
}

.health-content strong,
.health-content b,
.women-child-content strong,
.women-child-content b,
.disability-content strong,
.disability-content b,
.livelihood-content strong,
.livelihood-content b,
.social-content strong,
.social-content b {
    color: #b13a2e;
}

@media (max-width: 768px) {

    .health-content p,
    .women-child-content p,
    .disability-content p,
    .livelihood-content p,
    .social-content p {
        font-size: 0.98rem;
        text-align: left;
    }

    .health-content h3,
    .women-child-content h3,
    .disability-content h3,
    .livelihood-content h3,
    .social-content h3 {
        font-size: 1.2rem;
    }
}

/* ===== PARTNERS PAGE ===== */
.partners-content .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 10px;
}

.partners-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    min-width: 400px;
}

.partners-table thead {
    background: #b13a2e;
    color: white;
}

.partners-table thead th {
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.partners-table tbody td {
    padding: 12px 18px;
    border-bottom: 1px solid #f0eae4;
    color: #2c3e50;
}

.partners-table tbody tr:nth-child(even) {
    background: #fdf8f6;
}

.partners-table tbody tr:hover {
    background: #f5ede8;
}

.partners-table tbody td:first-child {
    font-weight: 600;
    color: #b13a2e;
    width: 60px;
}

@media (max-width: 768px) {
    .partners-table {
        font-size: 0.85rem;
        min-width: 300px;
    }

    .partners-table thead th,
    .partners-table tbody td {
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .partners-table {
        font-size: 0.78rem;
        min-width: 250px;
    }

    .partners-table thead th,
    .partners-table tbody td {
        padding: 8px 10px;
    }
}

/* ===== ANNUAL REPORTS PAGE ===== */
.annual-reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.report-card {
    background: #f9f7f5;
    border-radius: 16px;
    padding: 30px 20px 25px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #f0eae4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.report-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.pdf-icon {
    font-size: 4.5rem;
    margin-bottom: 12px;
    display: block;
    transition: transform 0.2s;
}

.report-card:hover .pdf-icon {
    transform: scale(1.05);
}

.report-card .year {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e2a3e;
    margin-bottom: 6px;
}

.report-card .file-name {
    font-size: 0.8rem;
    color: #6c7a8e;
    margin-bottom: 16px;
    word-break: break-all;
}

.report-card .btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #b13a2e;
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.2s;
    border: none;
    cursor: pointer;
}

.report-card .btn-download:hover {
    background: #8f2d23;
    transform: scale(1.02);
}

.report-card .btn-download.external {
    background: #2c3e50;
}

.report-card .btn-download.external:hover {
    background: #1a252f;
}

.color-1 {
    color: #e74c3c;
}

.color-2 {
    color: #2980b9;
}

.color-3 {
    color: #27ae60;
}

.color-4 {
    color: #8e44ad;
}

.color-5 {
    color: #d35400;
}

.color-6 {
    color: #16a085;
}

.color-7 {
    color: #c0392b;
}

.color-8 {
    color: #2c3e50;
}

.color-9 {
    color: #f39c12;
}

.color-10 {
    color: #1abc9c;
}

.color-11 {
    color: #3498db;
}

.color-12 {
    color: #9b59b6;
}

.color-13 {
    color: #e67e22;
}

.color-14 {
    color: #2ecc71;
}

.color-15 {
    color: #e74c8b;
}

.color-16 {
    color: #1e8449;
}

.color-17 {
    color: #2471a3;
}

.color-18 {
    color: #6c3483;
}

.color-19 {
    color: #b9770e;
}

.color-20 {
    color: #c0392b;
}

@media (max-width: 768px) {
    .annual-reports-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
        gap: 20px;
    }

    .pdf-icon {
        font-size: 3.5rem;
    }

    .report-card .year {
        font-size: 1rem;
    }

    .report-card .btn-download {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
}

@media (max-width: 480px) {
    .annual-reports-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .pdf-icon {
        font-size: 3rem;
    }

    .report-card {
        padding: 20px 12px 18px;
    }
}

/* ===== DONATE, VOLUNTEER, CAREERS "Coming Soon" PAGES ===== */
.donate-section,
.volunteer-section,
.careers-section {
    padding: 80px 0 100px;
    background: #ffffff;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donate-content,
.volunteer-content,
.careers-content {
    max-width: 700px;
    margin: 0 auto;
}

.donate-icon,
.volunteer-icon,
.careers-icon {
    font-size: 5rem;
    color: #b13a2e;
    margin-bottom: 30px;
    display: block;
}

.donate-content h1,
.volunteer-content h1,
.careers-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #b13a2e;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.donate-content .subtitle,
.volunteer-content .subtitle,
.careers-content .subtitle {
    font-size: 1.2rem;
    color: #6c7a8e;
    margin-bottom: 30px;
}

.coming-soon {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #c72a2f;
    letter-spacing: 6px;
    text-transform: uppercase;
    animation: pulseGlow 1.8s ease-in-out infinite;
    padding: 10px 30px;
    border: 3px solid #b13a2e;
    border-radius: 60px;
    background: rgba(177, 58, 46, 0.05);
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.7;
        box-shadow: 0 0 0 0 rgba(177, 58, 46, 0.2);
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
        box-shadow: 0 0 30px 10px rgba(177, 58, 46, 0.1);
    }

    100% {
        transform: scale(1);
        opacity: 0.7;
        box-shadow: 0 0 0 0 rgba(177, 58, 46, 0);
    }
}

.donate-loading,
.volunteer-loading,
.careers-loading {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.donate-loading span,
.volunteer-loading span,
.careers-loading span {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #b13a2e;
    border-radius: 50%;
    animation: bounceDots 1.4s ease-in-out infinite;
}

.donate-loading span:nth-child(2),
.volunteer-loading span:nth-child(2),
.careers-loading span:nth-child(2) {
    animation-delay: 0.2s;
}

.donate-loading span:nth-child(3),
.volunteer-loading span:nth-child(3),
.careers-loading span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounceDots {

    0%,
    80%,
    100% {
        transform: scale(0.4);
        opacity: 0.3;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {

    .donate-content h1,
    .volunteer-content h1,
    .careers-content h1 {
        font-size: 2.5rem;
    }

    .coming-soon {
        font-size: 1.8rem;
        padding: 8px 20px;
    }

    .donate-icon,
    .volunteer-icon,
    .careers-icon {
        font-size: 3.5rem;
    }
}