:root {
    --primary-cyan: #14BED9;
    --primary-cyan-hover: #009BD6;
    --primary-yellow: #FFC107;
    --primary-yellow-hover: #E0A800;
    --primary-navy: #1954AC;
    --primary-navy-light: #eff6ff;
    /* light blue tint */
    --primary-green: #10b981;
    --primary-green-hover: #059669;
    --text-main: #475569;
    --text-dark: #1e293b;
    --bg-light: #f8fafc;
    --bg-cyan-light: #f0fdfa;
    /* or a gentle cyan tint */
    --white: #ffffff;
    --border: #e2e8f0;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.w-full {
    width: 100%;
}

.center {
    text-align: center;
}

.mt-minus {
    margin-top: -1rem;
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-cyan {
    background-color: var(--primary-cyan);
    color: var(--white);
}

.bg-cyan-light {
    background-color: #f0fbfc;
}

.bg-navy {
    background-color: var(--primary-navy);
}

.bg-navy-light {
    background-color: #dbeafe;
}

.text-navy {
    color: var(--primary-navy);
}

.text-yellow {
    color: var(--primary-yellow);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btna {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btna-yellow {
    background-color: var(--primary-yellow);
    color: var(--primary-navy);
    width: max-content;
}

.btna-yellow:hover {
    background-color: #14BED9;
    color: var(--white);
}

.btn-yellow {
    background-color: var(--primary-yellow);
    color: var(--primary-navy);
    width: max-content;
}

.btn-yellow:hover {
    background-color: #1954AC;
    color: var(--white);
}

.btn-green {
    background-color: var(--primary-green);
    color: var(--white);
}

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

.btn-donate {
    background-color: #22C55E;
    color: var(--white);
    padding-left: 2rem;
    padding-right: 0.5rem;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
    gap: 1.25rem;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);

}

.btn-donate:hover {
    background-color: #14BED9;
    color: #14BED9;
    box-shadow: 0 8px 24px rgba(20, 190, 217, 0.35);
}

.circle-icon {
    background-color: var(--white);
    color: #22C55E;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.circle-icon:hover {
    background-color: var(--white);
    color: #14BED9;
}


.circle-icon i {
    width: 18px;
    height: 18px;
}

.circle-icon-blue {
    background-color: var(--primary-navy);
    color: var(--primary-yellow);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-icon-blue i {
    width: 18px;
    height: 18px;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-cyan);
    color: var(--primary-cyan);
    padding: 0.5rem 1.25rem;
}

.btn-outline:hover {
    background-color: rgba(0, 174, 239, 0.1);
}

.btn.large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.w-full {
    width: 100%;
}

.subtitle {
    color: var(--primary-cyan);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--primary-navy);
    margin-bottom: 3rem;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo-img {
    height: 90px;
    object-fit: contain;
}

.nav-links {
    display: none;
    gap: 2rem;
    align-items: center;
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-links a {
    color: #64748b;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 0.25rem;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-cyan);
    border-radius: 2px;
}

.mobile-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 1rem;
    background-color: var(--white);
    border-top: 1px solid var(--border);
    gap: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    padding: 0.5rem;
    border-radius: 0.25rem;
    position: relative;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background-color: var(--bg-cyan-light);
    color: var(--primary-cyan);
}

.mobile-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 8px;
    width: calc(100% - 16px);
    height: 2px;
    background-color: var(--primary-cyan);
}

.mobile-nav-dropdown {
    position: relative;
    width: 100%;
}

.mobile-dropdown-content {
    display: none;
    flex-direction: column;
    width: 100%;
}

.mobile-nav-dropdown:hover .mobile-dropdown-content {
    display: flex;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .mobile-toggle {
        display: none;
    }

    .mobile-nav {
        display: none !important;
    }
}

/* --- About Dropdown Menu --- */
.nav-dropdown {
    position: relative;
}

.nav-dropdown>a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown>a svg,
.nav-dropdown>a i {
    width: 14px;
    height: 14px;
    transition: transform 0.25s ease;
}

.nav-dropdown:hover>a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 180px;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 999;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

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

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: rgba(20, 190, 217, 0.08);
    color: var(--primary-cyan);
}


/* --- Hero Section & Slider --- */
.hero {
    position: relative;
    overflow: hidden;
    height: auto;
    padding-top: 100px;
}

.slider-container {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    display: none;
    width: 100%;
    flex-direction: column;
}

.slide.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.slide.active .hero-content h1 {
    animation: fadeInUp 0.8s ease-out forwards;
}

.slide.active .hero-content p {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.slide.active .hero-content a.btn {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-content {
    background-color: #14BED9;
    color: var(--white);
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.blue-square {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background-color: var(--primary-navy);
}

.hero-content h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

.hero-image {
    height: 300px;
    background-size: cover;
    background-position: center;
}

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

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

.dot.active {
    background-color: var(--primary-yellow);
}

@media (min-width: 992px) {
    .slide {
        flex-direction: row;
        height: 680px;
    }

    .hero-content {
        flex: 0 0 45%;
        padding: 5rem;
        padding-left: max(5rem, calc((100vw - 1200px) / 2 + 1.5rem));
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .hero-image {
        flex: 0 0 55%;
        height: 100%;
    }
}

/* --- Who We Are --- */
.who-we-are {
    position: relative;
    padding: 6rem 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-attachment: fixed;
    background-position: center right;
    border-bottom: 12px solid var(--primary-navy);
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 0) 80%);
    z-index: 1;
}

.relative-z {
    position: relative;
    z-index: 2;
    width: 100%;
}

.welcome-text-wrapper {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.welcome-badge {
    display: inline-block;
    background-color: #f0fdf4;
    color: var(--primary-green);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.welcome-text-wrapper h2 {
    font-size: 36px;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.welcome-text-wrapper p {
    color: var(--text-main);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.w-max {
    width: max-content;
}

@media (max-width: 768px) {
    .who-we-are {
        background-position: center bottom;
        padding-top: 3rem;
        padding-bottom: 15rem;
    }

    .gradient-overlay {
        background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 65%, rgba(255, 255, 255, 0) 100%);
    }
}

/* --- Stats Bar --- */
.stats-bar {
    background-color: #1954AC;
    color: var(--white);
    padding: 5.5rem 0;
    background-image:
        linear-gradient(rgba(25, 84, 172, 0.95), rgba(25, 84, 172, 0.95)),
        url('image/Home/pattern.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0 1rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

.stat-number-wrapper {
    font-family: 'montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
    line-height: 1;
}

.stat-item p {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.3;
    text-align: left;
    margin: 0;
    font-weight: 400;
}

@media (min-width: 768px) {
    .stats-grid {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .stat-item {
        flex: 1;
        justify-content: center;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-item:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.3);
    }
}

/* --- Image Divider --- */
.image-divider {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@media (min-width: 768px) {
    .image-divider {
        height: 400px;
    }
}

/* --- Mission & Vision --- */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 1.5rem;
}

.mv-card {
    display: flex;
    flex-direction: column;
}

.mv-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.icon-box {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box i {
    width: 20px;
    height: 20px;
}

.icon-yellow {
    background-color: #fef3c7;
    color: var(--primary-yellow);
}

.icon-cyan {
    background-color: #cffafe;
    color: var(--primary-cyan);
}

.mv-card h3 {
    font-size: 1.25rem;
    color: var(--primary-navy);
    margin: 0;
}

.mv-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-main);
}

@media (min-width: 768px) {
    .mission-vision {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* --- Programs Section --- */
.programs-section {
    padding: 5rem 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.program-card {
    background-color: #f8fafc;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    border: none;
    transition: background-color 0.4s ease, transform 0.4s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    background-color: #14BED9;
}

.program-card .img-wrapper {
    height: 200px;
    overflow: hidden;
}

.program-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover img {
    transform: scale(1.05);
}

.card-body {
    padding: 3.5rem 2rem 5rem 2rem;
}

.card-body h4 {
    font-size: 1.25rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    transition: color 0.4s ease;
}

.card-body p {
    font-size: 0.875rem;
    color: var(--text-main);
    line-height: 1.6;
    transition: color 0.4s ease;
}

.program-card:hover .card-body h4,
.program-card:hover .card-body p {
    color: var(--white);
}

.program-card.highlighted {
    background-color: var(--primary-cyan);
    border: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.program-card.highlighted h4 {
    color: var(--white);
}

.program-card.highlighted p {
    color: rgba(255, 255, 255, 0.9);
}

.circle-btn {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.program-card:hover .circle-btn {
    background-color: #FFB703;
    color: var(--white);
}

@media (min-width: 768px) {
    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .program-card.highlighted {
        transform: translateY(-1rem);
    }

    .program-card.highlighted:hover {
        transform: translateY(-1.5rem);
    }
}

/* --- Initiatives Section --- */
.initiatives-section {
    padding: 5rem 0 2rem 0;
    position: relative;
    z-index: 1;
}

.initiatives-top-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.init-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1.5rem;
    border: 1px solid #cffafe;
}

.icon-cyan-text {
    color: var(--primary-cyan);
}

.init-card h4 {
    font-size: 1.25rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.init-card p {
    font-size: 0.875rem;
}

.tabs-container {
    background-color: var(--white);
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.tabs-sidebar {
    background-color: #f8fafc;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-right: 1px solid var(--border);
}

.tabs-sidebar h3 {
    margin-bottom: 1rem;
    color: var(--primary-navy);
    font-size: 24px;
}

.tab-btn {
    text-align: left;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    background-color: var(--white);
    border: 1px solid var(--border);
    cursor: pointer;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background-color: var(--bg-light);
}

.tab-btn.active {
    background-color: var(--primary-navy);
    color: var(--white);
    border-color: var(--primary-navy);
}

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

.tabs-content {
    padding: 2rem;
    flex: 1;
}

.tab-pane {
    display: none;
    flex-direction: column;
    gap: 2rem;
}

.tab-pane.active {
    display: flex;
}

.tab-text {
    flex: 1;
}

.tab-text h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.tab-text p {
    margin-bottom: 1.5rem;
}

.tab-img {
    flex: 1;
    border-radius: 1rem;
    overflow: hidden;
    height: 250px;
}

.tab-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .initiatives-top-cards {
        grid-template-columns: 1fr 1fr;
    }

    .tabs-container {
        flex-direction: row;
    }

    .tabs-sidebar {
        width: 33.333%;
    }

    .tabs-content {
        width: 66.666%;
        padding: 3rem;
    }

    .tab-pane {
        flex-direction: row;
        align-items: center;
    }

    .tab-img {
        height: 350px;
    }
}

/* --- Strategic Alignment --- */
.strategic-alignment {
    padding: 2rem 0 3rem 0;
}

.alignment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 1rem;
}

.align-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-weight: 400;
}

.align-item p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
    color: var(--white);
}

.align-item i {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 0.125rem;
    color: var(--white);
}

@media (min-width: 768px) {
    .alignment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .alignment-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }

    .align-item {
        padding: 0 1.5rem;
    }

    .align-item:first-child {
        padding-left: 0;
    }

    .align-item:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.3);
    }
}

/* --- CTA Banner --- */
.cta-section {
    padding: 1rem 0 5rem 0;
}

.cta-box {
    border-radius: 1rem;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    background-image:
        linear-gradient(rgba(25, 84, 172, 0.95), rgba(25, 84, 172, 0.95)),
        url('image/Home/pattern.png');
    background-repeat: repeat;
    background-size: auto;
    background-position: center;

}

.cta-box h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--white);
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    font-size: 16px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .cta-box {
        padding: 4rem;
    }

    .cta-box h2 {
        font-size: 2.5rem;
    }
}

/* --- Board of Directors --- */
.directors-section {
    padding: 5rem 0;
}

.directors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.director-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.director-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px -6px rgba(25, 84, 172, 0.3);
}

.director-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.director-card:hover img {
    transform: scale(1.05);
}

.director-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #14BED9;
    backdrop-filter: blur(4px);
    padding: 1rem 1.5rem;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid #cffafe;
    transition: background-color 0.35s ease;
}

.director-card:hover .director-info {
    background-color: #1954AC;
    border-top-color: rgba(255, 255, 255, 0.25);
}

.director-info h5 {
    font-size: 1.125rem;
    color: var(--white);
}

.director-info p {
    font-size: 0.75rem;
    color: #cffafe;
}

.circle-btn-sm {
    width: 2rem;
    height: 2rem;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.director-card:hover .circle-btn-sm {
    transform: scale(1.15);
    background-color: #ffffff;
    color: #1954AC;
}

.circle-btn-sm i {
    width: 16px;
    height: 16px;
}

@media (min-width: 576px) {
    .directors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .directors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Contact Section --- */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-box-sm {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-item h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.method-item p {
    font-size: 0.875rem;
    color: var(--text-main);
}

.contact-form-container {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-cyan);
}

.form-response {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
}

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

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

/* ─── SUPPORT / DONATE CTA ───────────────────────────────── */
.about-support-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 380px;
}

.about-support-img {
    background-image: url('image/About Us/Support Our Mission.jpg');
    background-size: cover;
    background-position: center;
}

.about-support-content {
    background: var(--primary-cyan);
    padding: 4rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-support-content h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.about-support-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 500px;
}

.btn-donate-about {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-yellow);
    color: var(--primary-navy);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.8rem 1.75rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    width: max-content;
}

.btn-donate-about:hover {
    background: var(--primary-yellow-hover);
}

.btn-donate-about .arrow-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-navy);
    color: var(--primary-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-donate-about .arrow-circle i {
    width: 16px;
    height: 16px;
}

@media (max-width: 991.98px) {
    .about-support-split {
        grid-template-columns: 1fr;
    }

    .about-support-img {
        min-height: 260px;
    }

    .about-support-content {
        padding: 3rem 2rem;
    }

    .about-support-content h2 {
        font-size: 28px;
    }
}




/* --- Footer --- */
.footer {
    background-color: var(--primary-navy);
    background-image: url('image/Home/footerwate.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    color: var(--white);
    padding-top: 5rem;
    padding-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-logo img {
    height: 170px;
    object-fit: contain;
}

.brand-col p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.social-links {
    display: flex;
    gap: 0.85rem;
}

.social-links a {
    width: 2.25rem;
    height: 2.25rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-cyan);
    color: var(--white);
    transform: translateY(-3px);
}

.social-links i {
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
    font-size: 1.1rem;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.footer-col h4 {
    color: var(--primary-yellow);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-col ul a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-col ul a:hover {
    color: var(--primary-cyan);
}

.newsletter-col p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    position: relative;
    max-width: 320px;
}

.newsletter-form input {
    width: 100%;
    padding: 0.75rem 3.5rem 0.75rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 0.5rem;
    outline: none;
    font-size: 0.9rem;
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background-color: var(--primary-cyan);
    color: var(--white);
    border: none;
    width: 40px;
    height: calc(100% - 10px);
    border-radius: 0.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    background-color: var(--primary-cyan-hover);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.85rem;
    text-align: center;
    opacity: 0.9;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.4fr 0.8fr 1.2fr 1fr 1.2fr;
        gap: 4rem;
    }

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

    .footer-bottom p {
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.6);
    }
}

/* --- Mobile Typography --- */
@media (max-width: 767px) {

    .welcome-text-wrapper h2,
    .cta-box h2,
    .support-content h2 {
        font-size: 27px !important;
    }

    .section-header h2 {
        font-size: 27px !important;
    }

    .init-card h4 {
        font-size: 20px !important;
    }

    .tabs-sidebar button {
        font-size: 14px !important;
    }

    body,
    p,
    .mv-card p,
    .cta-box p,
    .support-content p,
    .method-item p {
        font-size: 14px !important;
    }

    .welcome-text-wrapper p {
        font-size: 14px !important;
    }
}