:root {
    --primary-color: #003366;
    --secondary-color: #004d99;
    --navy-dark: #1a1a4b;
    --accent-red: #e31e24;
    --text-color: #1e293b;
    --light-text-color: #64748b;
    --white: #ffffff;
    --bg-color: #ffffff;
    --light-bg: #f8fafc;
    --border-color: #e2e8f0;
    --container-max-width: 1200px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --serif-font: 'Playfair Display', 'Georgia', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}


a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-size: 30px !important;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--light-text-color);
}

.p-size {
    font-size: 20px !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-red {
    background-color: var(--accent-red);
    color: var(--white);
}

.btn-red:hover {
    background-color: #c31a1e;
    transform: translateY(-1px);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-navy {
    background-color: var(--navy-dark);
    color: var(--white);
}

.btn-navy:hover {
    background-color: #2a2a6b;
}

.btn-donate-sm {
    background-color: #004d99;
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8125rem;
}

/* Header */
.navbar {
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    color: var(--text-color);
    background: #F8FAFC;
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: -10px;
}

.logo img {
    width: 180px;
    height: auto;
}


.nav-links {
    display: flex;
    gap: 20px;
    padding-top: 8px;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding-bottom: 6px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 8px;
}

.header-search-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-search-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 51, 102, 0.25);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.header-search-btn:active {
    transform: translateY(0);
}

.no-scroll {
    overflow: hidden;
}

.site-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
}

.site-search-overlay[hidden] {
    display: none;
}

.site-search-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
}

.initiatives-grid-center {
    margin-top: 15px;
    justify-content: center;
    display: flex;
}

.third-card {
    width: 50%;
}

.site-search-panel {
    position: relative;
    max-width: 820px;
    margin: 90px auto 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    padding: 18px;
}

.site-search-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.site-search-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--text-color);
}

.site-search-close {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--light-text-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.site-search-input {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--light-bg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 14px 16px;
}

.site-search-input i {
    color: var(--primary-color);
}

.site-search-input input {
    width: 100%;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    background: transparent;
    color: var(--text-color);
}

.site-search-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
}

.site-search-actions .btn {
    padding: 10px 18px;
    font-size: 0.875rem;
}

.burger {
    display: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    user-select: none;
}

.burger div {
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 6px 0;
    transition: all 0.3s ease;
}

.lang-toggle {
    display: flex;
    background: #E2E8F0;
    border-radius: 20px;
    padding: 2px;
}

.lang-toggle span {
    padding: 4px 12px;
    font-size: 0.75rem;
    border-radius: 18px;
    cursor: pointer;
}

.lang-toggle span.active {
    background: var(--primary-color);
    color: var(--white);
}

.google-translate {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body>.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    background-color: #2b4c8c;
    background-image: linear-gradient(135deg, rgba(0, 51, 102, 0.9) 0%, rgba(43, 76, 140, 0.8) 100%), url('../images/hero.png');
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.05) 100%);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero h1 {
    max-width: 600px;
    margin-bottom: 24px;
    font-size: 4rem;
    line-height: 1.1;
}

.hero p {
    max-width: 500px;
    margin-bottom: 40px;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-btns {
    display: flex;
    gap: 16px;
}

/* Vision & Mission Sections */
.vm-row {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 50px 0;
}

.vm-row.reverse {
    flex-direction: row-reverse;
}

.vm-image {
    flex: 1;
    object-fit: cover;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.vm-image img {
    width: 100%;
    height: auto;
}

.vm-content {
    flex: 1;
}

.vm-title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.vm-bar {
    width: 4px;
    height: 35px;
    background-color: var(--accent-red);
}

.vm-title {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 0;
}

.section-title {
    font-size: 22px !important;
    color: var(--primary-color);
}

.vm-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* About Us Page Specific Styles */
.about-hero {
    padding: 160px 0 100px;
    background-color: var(--navy-dark);
    color: var(--white);
    text-align: center;
}

/* Tabs Styling */
.tabs-container {
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.tabs-header {
    display: flex;
    justify-content: center;
    margin: 0 auto 40px;
    border-bottom: 1px solid var(--border-color);
    max-width: 600px;
    /* Center and limit width */
}

.tab-btn {
    flex: 1;
    /* Half and half */
    background: transparent;
    border: none;
    padding: 15px 0;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--light-text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-content {
    display: none;
    animation: tabFadeIn 0.4s ease-out;
}

.tab-content.active {
    display: block;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Profile Grid */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.profile-item {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border-bottom: 3px solid var(--border-color);
    transition: all 0.3s ease;
}

.profile-item:hover {
    border-bottom-color: var(--accent-red);
    transform: translateY(-5px);
}

.profile-item h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--light-text-color);
    margin-bottom: 10px;
}

.profile-item p {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0;
}

.profile-item p a {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.profile-item .btn {
    margin-top: 12px;
    padding: 10px 18px;
    font-size: 0.875rem;
}

.about-section {
    padding: 60px 0 80px;
}

/* Board of Directors Page */
.board-hero {
    padding: 120px 0 80px;
    background-color: var(--navy-dark);
    color: var(--white);
    text-align: center;
}

.board-section {
    padding: 80px 0;
}

.directors-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.director-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.director-photo-wrap {
    flex: 0 0 170px;
}

.director-photo-wrap img {
    width: 170px;
    height: 170px;
    object-fit: cover;
}

.director-content {
    flex: 1;
    padding-top: 8px;
}

.director-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 2px;
}

.director-role {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--light-text-color);
    margin-bottom: 18px;
}

.director-bio p {
    font-size: 0.9375rem;
    line-height: 1.85;
    color: var(--light-text-color);
    margin-bottom: 14px;
}

.director-divider {
    height: 1px;
    background: var(--border-color);
    margin-top: 26px;
}

.contact-hero {
    padding: 120px 0 80px;
    background-color: var(--navy-dark);
    color: var(--white);
    text-align: center;
}

.contact-banner-section {
    padding: 40px 0 0;
    background: var(--bg-color);
}

.contact-banner {
    width: 100%;
    height: auto;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
    display: block;
}

.contact-disclaimer {
    margin-top: 18px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 18px 20px;
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--light-text-color);
}

.contact-disclaimer a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-section {
    padding: 80px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.contact-card.full {
    grid-column: 1 / -1;
}

.contact-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.contact-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    color: var(--primary-color);
    font-size: 1rem;
}

.contact-card h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-color);
}

.contact-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-card p a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-form-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
}

.contact-form-card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.contact-form-card p {
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-field {
    margin-bottom: 14px;
}

.form-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 12px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
}

.form-field textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.5;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: rgba(0, 51, 102, 0.35);
    box-shadow: 0 0 0 4px rgba(0, 51, 102, 0.08);
}

.contact-form-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 8px;
}

.recaptcha-field {
    display: flex;
    justify-content: flex-start;
}

.contact-form-note {
    font-size: 0.8125rem;
    color: var(--light-text-color);
    margin-top: 10px;
}

.reports-hero {
    padding: 120px 0 80px;
    background-color: var(--navy-dark);
    color: var(--white);
    text-align: center;
}

.reports-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.sitemap-hero {
    padding: 120px 0 80px;
    background-color: var(--navy-dark);
    color: var(--white);
    text-align: center;
}

.sitemap-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.sitemap-search {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 14px 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.sitemap-search-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    color: var(--primary-color);
    flex: 0 0 38px;
}

.sitemap-search input {
    width: 100%;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    background: transparent;
    color: var(--text-color);
}

.sitemap-meta {
    margin-top: 14px;
    color: var(--light-text-color);
    font-size: 0.9375rem;
}

.sitemap-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.sitemap-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.sitemap-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 51, 102, 0.22);
}

.sitemap-card-title {
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 8px;
}

.sitemap-card-desc {
    font-size: 0.9375rem;
    color: var(--light-text-color);
    line-height: 1.6;
    margin-bottom: 12px;
}

.sitemap-card-url {
    font-size: 0.8125rem;
    color: var(--primary-color);
    font-weight: 700;
    word-break: break-word;
}

.reports-block {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 34px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
}

.reports-block-header h2 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: var(--text-color);
}

.reports-block-header p {
    font-size: 1rem;
    margin-bottom: 22px;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.reports-grid.reports-grid-single {
    grid-template-columns: 1fr;
    max-width: 520px;
}

.report-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.report-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 51, 102, 0.22);
}

.report-card-top {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.report-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    color: var(--primary-color);
    flex: 0 0 42px;
}

.report-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.2;
}

.report-meta {
    font-size: 0.8125rem;
    color: var(--light-text-color);
    margin-top: 4px;
}

.report-cta {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color);
}

.about-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 60px;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.initiative-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--accent-red);
    transition: transform 0.3s ease;
}

.initiative-card:hover {
    transform: translateY(-5px);
}

.initiative-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.initiative-card p {
    font-size: 1rem;
    color: var(--light-text-color);
    margin-bottom: 0;
}

.quote-section {
    background-color: var(--light-bg);
    padding: 80px 0;
    text-align: center;
    margin-top: 60px;
    border-radius: 24px;
}

.quote-text {
    font-family: var(--serif-font);
    font-size: 2rem;
    color: var(--primary-color);
    max-width: 800px;
    margin: 0 auto 20px;
    font-style: italic;
}

.quote-author {
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-title {
    color: var(--light-text-color);
    font-size: 0.875rem;
}

.inner-navbar {
    background: #F8FAFC !important;
}


.vm-text {
    font-size: 1rem;
    color: var(--light-text-color);
    line-height: 1.8;
    margin-bottom: 32px;
}

.main-head {
    font-size: 35px !important;
}

/* Programs Section */
.programs-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.programs-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.programs-section .section-text {
    max-width: 700px;
    margin: 0 auto 60px;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.program-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.program-icon.healthcare {
    background-color: #fff1f2;
    color: #e11d48;
}

.program-icon.education {
    background-color: #eff6ff;
    color: #2563eb;
}

.program-icon.welfare {
    background-color: #f0fdf4;
    color: #16a34a;
}

.program-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.program-card p {
    font-size: 0.9375rem;
    color: var(--light-text-color);
    margin-bottom: 30px;
    flex-grow: 1;
}

.program-footer {
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.8125rem;
    color: #94a3b8;
}

/* Contact/Get In Touch Section */
.get-in-touch {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.get-in-touch h2 {
    font-size: 2.15rem;
    color: var(--white);
    margin-bottom: 40px;
}

.contact-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 0;
}

.contact-item i {
    font-size: 1.35rem;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.contact-item h2 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 0;
    font-weight: 500;
}

.jamapunji-section {
    padding: 40px 0;
    background: var(--light-bg);
}

.jamapunji-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.jamapunji-image {
    max-width: 520px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
}

.cta-card {
    background-color: #1e40af;
    padding: 60px 40px;
    border-radius: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-card h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

/* Footer */
footer {
    padding: 40px 0;
    background-color: var(--white);
    color: var(--text-color);
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 32px;
    margin-bottom: 18px;
}

.footer-links a {
    color: var(--light-text-color);
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-tagline {
    margin-top: 10px;
    color: var(--light-text-color);
}

.footer-updated {
    margin-top: 10px;
    color: var(--light-text-color);
    text-align: center;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    margin-top: 6px;
}

.footer-bottom-text {
    text-align: left;
}

.footer-bottom-text p {
    margin: 0;
}

.footer-bottom-text .footer-tagline {
    margin-top: 10px;
}

.footer-bottom-text .footer-updated {
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 3rem;
    }

    .reports-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sitemap-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .director-card {
        gap: 24px;
    }

    .director-photo-wrap {
        flex: 0 0 150px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .director-photo-wrap img {
        width: 150px;
        height: 150px;
        border-width: 5px;
    }

    .director-name {
        font-size: 1.375rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: fixed;
        background: #F8FAFC;
        height: 70px;
    }

    .burger {
        display: block;
    }

    .header-right {
        display: flex;
        gap: 12px;
    }

    .lang-toggle span {
        padding: 4px 10px;
    }

    .site-search-panel {
        width: calc(100% - 24px);
        margin: 78px 12px 0;
        padding: 16px;
        border-radius: 18px;
    }

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

    .footer-bottom-text {
        text-align: center;
    }

    .contact-banner-section {
        padding-top: 24px;
    }

    .contact-banner {
        border-radius: 14px;
    }

    .contact-disclaimer {
        padding: 16px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: 0;
        height: calc(100vh - 70px);
        width: min(320px, 82vw);
        background: #F8FAFC;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 22px;
        gap: 18px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -20px 0 40px rgba(0, 0, 0, 0.25);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 10px 12px;
        border-radius: 10px;
        color: var(--text-color);
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: #E2E8F0;
        color: var(--primary-color);
    }

    .nav-links a::after {
        left: 12px;
        right: 12px;
        bottom: 6px;
    }

    .nav-links.nav-active {
        transform: translateX(0);
    }

    .reports-section {
        padding: 60px 0;
    }

    .reports-block {
        padding: 26px;
    }

    .reports-grid {
        grid-template-columns: 1fr;
    }

    .sitemap-section {
        padding: 60px 0;
    }

    .sitemap-grid {
        grid-template-columns: 1fr;
    }

    .recaptcha-field {
        transform: scale(0.92);
        transform-origin: left top;
    }

    .hero {
        padding: 80px 0;
        text-align: center;
    }

    .hero h1 {
        margin: 0 auto 24px;
        font-size: 2.5rem;
    }

    .hero p {
        margin: 0 auto 40px;
    }

    .hero-btns {
        justify-content: center;
    }

    .vm-row,
    .vm-row.reverse {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .vm-title-wrapper {
        justify-content: center;
    }

    .program-grid {
        grid-template-columns: 1fr;
    }

    .contact-columns {
        grid-template-columns: 1fr;
    }

    /* About Page Responsiveness */
    .about-hero h1 {
        font-size: 2.25rem !important;
    }

    .initiatives-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .initiative-card {
        padding: 25px;
    }

    .tabs-header {
        max-width: 100%;
        gap: 10px;
    }

    .tab-btn {
        font-size: 0.9375rem;
        padding: 10px 0;
    }

    .quote-text {
        font-size: 1.5rem;
    }

    .profile-grid {
        grid-template-columns: 1fr;
    }

    .board-hero {
        padding: 90px 0 60px;
    }

    .board-hero h1 {
        font-size: 2.25rem !important;
    }

    .director-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .director-photo-wrap {
        flex: none;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .director-photo-wrap img {
        width: 140px;
        height: 140px;
        border-width: 5px;
    }

    .director-content {
        padding-top: 0;
        max-width: 760px;
    }

    .directors-list {
        gap: 60px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .third-card {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .director-photo-wrap img {
        width: 120px;
        height: 120px;
        border-width: 4px;
    }

    .director-name {
        font-size: 1.25rem;
    }
}