/* --- GLOBAL STYLES & RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-teal: #172f4f;
    --dark-teal: #0f1f35;
    --light-bg: #f9fbfb;
    --text-color: #333333;
    --white: #ffffff;
    --footer-dark: #141414;
    --border-color: rgba(23, 47, 79, 0.15);
}

body {
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 60px 0;
}

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

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

.shadow {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.rounded-img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    display: block;
}

/* --- GRID SYSTEM --- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    align-items: center;
}

/* --- HEADINGS & LABELS --- */
.section-title-badge {
    background: linear-gradient(135deg, rgba(23, 47, 79, 0.08) 0%, rgba(23, 47, 79, 0.02) 100%);
    color: var(--primary-teal);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 25px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 30px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(23, 47, 79, 0.1);
    box-shadow: 0 4px 15px rgba(23, 47, 79, 0.05);
}

.section-title-badge::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--primary-teal);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(23, 47, 79, 0.2);
}

.section-main-title {
    color: var(--dark-teal);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    position: relative;
    line-height: 1.2;
}

.section-main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background-color: var(--primary-teal);
    border-radius: 4px;
}

.section-sub-title {
    color: var(--primary-teal);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
    background: rgba(23, 47, 79, 0.05);
    padding: 6px 20px;
    border-radius: 30px;
    border: 1px solid rgba(23, 47, 79, 0.1);
}

/* --- TOP BAR --- */
.top-bar {
    background: linear-gradient(90deg, var(--dark-teal) 0%, var(--primary-teal) 100%);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-email {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
}

.top-socials a {
    color: var(--white);
    margin-left: 15px;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.top-socials a:hover {
    opacity: 0.8;
}

/* --- HEADER --- */
.main-header {
    background-color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--primary-teal);
    line-height: 1.1;
}

.logo-text p {
    font-size: 0.75rem;
    color: #666;
    font-weight: 600;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-right: auto;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 0; height: 2px;
    background-color: var(--primary-teal);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-teal);
}

/* --- DROPDOWN MENUS --- */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    visibility: hidden;
    opacity: 0;
    transform: translateY(15px);
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 4px;
    border-top: 3px solid var(--primary-teal);
    padding: 10px 0;
    z-index: 1001; /* Keeps it above the hero slider */
    transition: all 0.3s ease;
}

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

.dropdown-menu a {
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    font-size: 0.9rem;
    transition: background-color 0.3s, color 0.3s;
}

.dropdown-menu a:hover {
    background-color: var(--light-bg);
    color: var(--primary-teal);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-btn {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    color: var(--primary-teal);
    font-size: 1.1rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background-color: var(--primary-teal);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.menu-btn {
    background: none;
    border: none;
    font-weight: 700;
    color: var(--text-color);
    cursor: pointer;
    display: none;
    align-items: center;
    gap: 5px;
    font-size: 1.5rem;
}

.mobile-menu-close {
    display: none;
}

.contact-btn {
    background-color: var(--primary-teal);
    color: var(--white);
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(23, 47, 79, 0.2);
}

.contact-btn:hover {
    background-color: var(--dark-teal);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(23, 47, 79, 0.3);
}

/* --- HERO SLIDER --- */
.hero-slider {
    position: relative;
    height: 75vh;
    background-color: #eee;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slide-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 10;
    color: var(--white);
    max-width: 600px;
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 0.8s ease backwards;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease backwards 0.2s;
}

.slide-btn {
    background-color: var(--primary-teal);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    animation: fadeInUp 1.2s ease backwards 0.4s;
    display: inline-block;
}

.slide-btn:hover {
    background-color: var(--white);
    color: var(--primary-teal);
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--primary-teal);
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow { left: 20px; }
.next-arrow { right: 20px; }

.watermark-logo {
    position: absolute;
    top: 30px;
    right: 5%;
    opacity: 0.6;
    z-index: 5;
}

/* --- WHO WE ARE --- */
.who-we-are p {
    margin-bottom: 15px;
    color: #444;
    text-align: justify;
}

.read-more-btn {
    background-color: var(--primary-teal);
    color: var(--white);
    text-decoration: none;
    padding: 10px 24px;
    display: inline-block;
    border-radius: 4px;
    margin-top: 10px;
    font-weight: 500;
}

/* --- WHAT WE DO (PILLARS) --- */
.pillars-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.pillar-card {
    flex: 1;
    min-width: 180px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pillar-icon {
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 15px;
}

.pillar-card h3 {
    font-size: 0.95rem;
    color: var(--primary-teal);
    font-weight: 600;
}

/* --- OUR IMPACT --- */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 40px auto;
}

.impact-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 30px 20px;
    border-radius: 8px;
    transition: transform 0.3s;
}

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

.impact-icon {
    font-size: 3.5rem;
    color: var(--primary-teal);
    margin-bottom: 10px;
}

.counter {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 5px;
}

.impact-card p {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.impact-decorations {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    opacity: 0.85;
}

/* --- NEWS & BLOGS --- */
.blog-slider-container {
    display: flex;
    align-items: center;
    position: relative;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    width: 100%;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.blog-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-body h3 {
    font-size: 1.25rem;
    color: var(--dark-teal);
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 700;
}
.blog-body h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.blog-body h3 a:hover { color: var(--primary-teal); }

.blog-date {
    font-size: 0.85rem;
    color: var(--primary-teal);
    margin-bottom: 15px;
    display: inline-block;
    background: rgba(23, 47, 79, 0.08);
    padding: 5px 12px;
    border-radius: 20px;
    align-self: flex-start;
    font-weight: 600;
}

.blog-body p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.6;
}
.blog-card-link {
    display: block;
    overflow: hidden;
}
.blog-footer {
    padding: 0 25px 25px;
}

.btn-outline-sm {
    border: 2px solid var(--primary-teal);
    padding: 8px 24px;
    text-decoration: none;
    color: var(--primary-teal);
    font-size: 0.85rem;
    font-weight: 600;
    align-self: flex-start;
    border-radius: 30px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-sm:hover {
    background-color: var(--primary-teal);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(23, 47, 79, 0.2);
}

/* Special Profile Card layout */
.anniversary-card {
    background: linear-gradient(135deg, var(--white) 0%, #f0f7f9 100%);
    padding: 30px;
    justify-content: center;
    border: none;
    box-shadow: 0 10px 30px rgba(23, 47, 79, 0.08);
    border-radius: 16px;
}

.anniversary-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.anniversary-badge .big-num {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-teal);
    line-height: 1;
}

.anniversary-badge .badge-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    line-height: 1.1;
}

.director-profile {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.director-img {
    width: 90px !important;
    height: 90px !important;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid var(--primary-teal);
}

.director-profile h4 {
    font-size: 1rem;
    color: var(--primary-teal);
}

.director-profile .title {
    font-size: 0.8rem;
    color: #666;
}

.anniversary-card blockquote {
    font-style: italic;
    font-size: 0.88rem;
    color: #444;
    position: relative;
    padding-left: 15px;
    border-left: 3px solid var(--primary-teal);
}

.blog-arrow {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ccc;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    z-index: 10;
}
.left-arrow { left: -40px; }
.right-arrow { right: -40px; }

/* --- MAIN FOOTER --- */
.main-footer {
    background-color: var(--dark-teal);
    color: var(--white);
    border-top: 4px solid var(--primary-teal);
}

.footer-top {
    padding: 40px 0;
}

.footer-top.grid-2 {
    align-items: flex-start;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
}

/* Map frame configuration */
.map-box {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    color: #333;
}

.map-info {
    padding: 15px;
    background: var(--white);
}

.map-info h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.map-info p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 6px;
}

.map-info .rating {
    font-size: 0.85rem;
    font-weight: bold;
}

.map-info .rating i {
    color: #f39c12;
}

/* About Column */
.about-col .footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.about-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Links column styles */
.links-col h3, .contact-col h3 {
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 8px;
}

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

.links-col ul li {
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 8px;
}

.links-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.links-col ul li a:hover {
    color: var(--white);
    transform: translateX(8px);
}

/* Contact information styles */
.contact-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-group i {
    font-size: 1.2rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-group:hover i {
    background: var(--white);
    color: var(--dark-teal);
}

.contact-info h4 {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.contact-info p, .contact-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--white);
}

/* LOWER BOTTOM BAR */
.footer-bottom {
    background-color: var(--footer-dark);
    padding: 15px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    flex: 1;
    min-width: 280px;
}

.footer-social-circles {
    display: flex;
    gap: 10px;
}

.footer-social-circles a {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-circles a:hover {
    transform: translateY(-3px);
    background-color: var(--white);
    color: var(--dark-teal);
}

.privacy-note {
    font-style: italic;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .hero-slider {
        height: 50vh;
    }
    .blog-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .header-actions {
        gap: 10px;
    }
    .menu-btn {
        display: flex;
    }
    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-right: 0;
        padding-top: 15px;
        border-top: 1px solid var(--border-color);
    }
    .main-nav.show-menu {
        display: flex;
    }
    .nav-dropdown {
        width: 100%;
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--primary-teal);
        padding: 5px 0 5px 15px;
        visibility: visible;
        opacity: 1;
        transform: none;
        display: none;
        min-width: 100%;
        margin-top: 10px;
    }
    .dropdown-menu.show-dropdown {
        display: block !important;
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: 8px 0;
    }
    .contact-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* --- MOBILE ENHANCEMENTS FOR SMALL SCREENS --- */
@media (max-width: 480px) {
    .container { width: 95%; }
    .section { padding: 30px 0; }

    /* Headings / typography adjustments */
    .section-main-title { font-size: 1.6rem; margin-bottom: 30px; }
    .section-sub-title { font-size: 0.8rem; }

    /* Top bar - keep it compact */
    .top-bar { padding: 6px 0; }
    .top-bar .top-email { display: none; } /* hide email to save space */
    .top-socials a { margin-left: 10px; font-size: 1rem; }

    /* Header / logo */
    .logo-img { width: 80px; height: auto; }

    /* Touch targets: make buttons slightly larger and circular */
    .search-btn, .menu-btn { width: 48px; height: 48px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
    .menu-btn { font-size: 1.5rem; }

    /* Mobile nav adjustments */
    .main-nav { width: 90%; max-width: 320px; right: -100%; }
    .main-nav.active { right: 0; }
    .main-nav .nav-link { padding: 18px 16px; font-size: 1rem; }
    .dropdown-menu { padding-left: 20px; }
    .dropdown-menu.show-dropdown a { padding: 10px 0; }

    /* Make donate/contact button prominent in menu */
    .main-nav .contact-btn, .contact-btn { display: block; width: calc(100% - 40px); margin: 10px 20px; padding: 12px; border-radius: 10px; text-align: center; }

    /* Hero slider smaller height for small screens */
    .hero-slider { height: 40vh; }
    .slide-content h2 { font-size: 1.6rem; max-width: 320px; }
    .slide-content p { font-size: 1rem; }

    /* Search box font size */
    .search-box input { font-size: 1.4rem; }

    /* Blog cards stack and image height reduced */
    .blog-grid { grid-template-columns: 1fr; gap: 20px; }
    .blog-card img { height: 180px; }

    /* Impact grid: smaller cards */
    .impact-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; }
    .impact-card { padding: 18px 12px; }
    .counter { font-size: 1.6rem; }

    /* SDG wrapper minor padding to fit small screens */
    .sdg-wrapper { max-width: 100%; padding: 8px; }

    /* Buttons and CTAs slightly smaller but tappable */
    .btn-outline-sm, .btn-primary, .btn-primary-sm { padding: 10px 18px; font-size: 0.95rem; }

    /* Footer: stack content and center */
    .footer-bottom-content { flex-direction: column; align-items: center; text-align: center; }

    /* Improve visibility of mobile close button for menu */
    .mobile-menu-close { display: flex !important; }

    /* Make interactive elements have clearer active feedback */
    .nav-link:active, .btn-text:active, .btn-outline-sm:active { transform: translateY(1px); opacity: 0.95; }

    /* Reduce large paddings on complex components */
    .contact-wrapper, .history-wrapper, .partner-content-wrapper, .partner-text { padding: 20px; }
}

/* --- SDG SECTION --- */
.sdg-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(23, 47, 79, 0.1);
}

.sdg-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.sdg-wrapper:hover img {
    transform: scale(1.02);
}

/* --- SEARCH OVERLAY --- */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 31, 53, 0.95); /* Dark teal with opacity */
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.search-overlay.active {
    visibility: visible;
    opacity: 1;
}

.search-box {
    position: relative;
    width: 90%;
    max-width: 600px;
    transform: translateY(-50px);
    transition: transform 0.4s ease;
}

.search-overlay.active .search-box {
    transform: translateY(0);
}

.search-box form {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--white);
    padding-bottom: 10px;
}

.search-box input {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    outline: none;
    font-weight: 300;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-search {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.submit-search:hover {
    color: var(--primary-teal);
}

.close-search {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-search:hover {
    transform: rotate(90deg);
}

/* --- OUR TEAM SECTION --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(23, 47, 79, 0.05);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(23, 47, 79, 0.12);
}

.team-img {
    position: relative;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.08);
}

.team-social {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px 10px;
    background: linear-gradient(to top, rgba(15, 31, 53, 0.95), transparent);
    transition: bottom 0.4s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: var(--white);
    color: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.team-info {
    padding: 25px 15px;
}

.team-info h4 {
    font-size: 1.25rem;
    color: var(--dark-teal);
    margin-bottom: 5px;
    font-weight: 700;
}

.team-info > p {
    font-size: 0.85rem;
    color: var(--primary-teal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-read-bio {
    background: none;
    border: none;
    color: var(--dark-teal);
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    padding: 0;
}

.btn-read-bio:hover {
    color: var(--primary-teal);
}

.btn-read-bio i {
    transition: transform 0.3s ease;
}

.btn-read-bio.active i {
    transform: rotate(180deg);
}

.team-bio {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease, opacity 0.5s ease, margin-top 0.3s ease, padding-top 0.3s ease;
    opacity: 0;
    text-align: left;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
}

.team-bio.show {
    max-height: 1500px;
    opacity: 1;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(23, 47, 79, 0.1);
}

/* --- PAGE HEADER --- */
.page-header {
    background: linear-gradient(135deg, var(--dark-teal) 0%, var(--primary-teal) 100%);
    padding: 80px 0;
    color: var(--white);
    margin-bottom: 0;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* --- CONTACT FORM SECTION --- */
.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(23, 47, 79, 0.08);
    border: 1px solid rgba(23, 47, 79, 0.05);
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
}

.contact-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    text-align: left;
}

.contact-form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-teal);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(23, 47, 79, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--light-bg);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(23, 47, 79, 0.1);
}

.btn-primary {
    background-color: var(--primary-teal);
    color: var(--white);
    border: none;
    padding: 15px 35px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(23, 47, 79, 0.2);
}

.btn-primary:hover {
    background-color: var(--dark-teal);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(23, 47, 79, 0.3);
}

@media (max-width: 768px) {
    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    .contact-wrapper {
        padding: 30px 20px;
    }
}

/* --- HISTORY SECTION --- */
.history-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(23, 47, 79, 0.05);
    border: 1px solid rgba(23, 47, 79, 0.05);
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.history-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--light-bg);
    padding: 25px 30px;
    border-radius: 12px;
    transition: all 0.4s ease;
    border-left: 4px solid var(--primary-teal);
}

.history-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(23, 47, 79, 0.08);
    background: var(--white);
}

.history-icon {
    background: linear-gradient(135deg, var(--dark-teal) 0%, var(--primary-teal) 100%);
    color: var(--white);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.history-content p {
    margin: 0;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    font-weight: 500;
}

@media (max-width: 768px) {
    .history-wrapper {
        padding: 30px 20px;
    }
    .history-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
}

/* --- STORY SECTION --- */
.story-content {
    padding: 0 15px;
}

.story-content p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* --- VISION & MISSION SECTION --- */
.vision-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(23, 47, 79, 0.05);
    border-top: 4px solid var(--primary-teal);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(23, 47, 79, 0.12);
}

.vision-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(23, 47, 79, 0.1) 0%, rgba(23, 47, 79, 0.02) 100%);
    color: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
}

.vision-card h3 {
    font-size: 1.6rem;
    color: var(--dark-teal);
    margin-bottom: 15px;
    font-weight: 800;
}

.vision-card .highlight-text {
    font-size: 1.1rem;
    color: var(--primary-teal);
    margin-bottom: 15px;
    font-style: italic;
    border-left: 3px solid var(--primary-teal);
    padding-left: 15px;
}

.vision-card p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    flex-grow: 1;
}

/* --- VALUES SECTION --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(23, 47, 79, 0.04);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(23, 47, 79, 0.04);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(23, 47, 79, 0.1);
    border-color: rgba(23, 47, 79, 0.15);
}

.value-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px auto;
    background: var(--light-bg);
    color: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: var(--primary-teal);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.value-card h4 {
    font-size: 1.25rem;
    color: var(--dark-teal);
    margin-bottom: 12px;
    font-weight: 700;
}

.value-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* --- PARTNERS SECTION --- */
.partner-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(23, 47, 79, 0.05);
    border: 1px solid rgba(23, 47, 79, 0.05);
}

.partner-text p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.partner-text p strong {
    color: var(--primary-teal);
    font-size: 1.15rem;
}

.partner-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .partner-content-wrapper {
        padding: 30px 20px;
    }
}

/* --- MOBILE MENU OVERLAY (NATIVE APP STYLE) --- */
.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 31, 53, 0.7); /* تاریککردنی پشتەوە */
    backdrop-filter: blur(5px);
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .main-nav {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -100%; /* شاردنەوە لە دەرەوەی شاشە بەلای ڕاستدا */
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--white);
        z-index: 2000;
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: flex-start;
        padding: 80px 20px 30px !important;
        margin: 0;
        box-shadow: -5px 0 25px rgba(0,0,0,0.15);
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        border-top: none !important;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0; /* هێنانە ناوەوەی مینیوکە */
    }

    .main-nav .nav-link {
        width: 100%;
        padding: 15px 10px;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(23, 47, 79, 0.08);
        display: block;
        transition: padding-left 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    }

    .main-nav .nav-link:hover, .main-nav .nav-link.active {
        padding-left: 20px;
        background-color: var(--light-bg);
        border-radius: 4px;
    }
    
    .main-nav .nav-link::after {
        display: none; /* شاردنەوەی هێڵی ژێرەوەی دیسکتۆپ */
    }

    /* دوگمەی داخستن (X) */
    .mobile-menu-close {
        position: absolute;
        top: 25px;
        right: 25px;
        background: none;
        border: none;
        font-size: 2.2rem;
        color: var(--dark-teal);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        transition: background-color 0.3s ease;
    }
    
    .mobile-menu-close:hover {
        background-color: var(--light-bg);
    }
}

/* --- PROJECT CARDS --- */
.project-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.project-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-img-wrapper img {
    transform: scale(1.08);
}

.project-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-teal);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.project-body {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.project-date i {
    color: var(--primary-teal);
}

.project-body h3 {
    font-size: 1.3rem;
    color: var(--dark-teal);
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 800;
}

.project-body p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.7;
}

.project-footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
    margin-top: auto;
}

.btn-text {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-text:hover {
    color: var(--dark-teal);
    gap: 12px;
}

/* --- DOCUMENT CARDS (Published Documents Page) --- */
.document-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.document-card .project-img-wrapper {
    position: relative;
}

.document-card .download-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-teal);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    transform: scale(0);
    opacity: 0;
}

.document-card-link:hover .download-icon {
    transform: scale(1);
    opacity: 1;
}

.document-card-link:hover .download-icon:hover {
    background-color: var(--primary-teal);
    color: var(--white);
    transform: scale(1.1);
}

.document-card .project-body {
    padding-bottom: 30px; /* Remove footer padding */
}

/* --- VIDEO SECTION --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

.video-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.video-thumbnail {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.08);
}

.video-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-teal);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
}

.video-card:hover .play-icon {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.video-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.video-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.video-date i {
    color: var(--primary-teal);
}

.video-body h3 {
    font-size: 1.3rem;
    color: var(--dark-teal);
    margin-bottom: 10px;
    font-weight: 800;
}

.video-body p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

/* --- VIDEO LIGHTBOX --- */
.video-lightbox {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(15, 31, 53, 0.9);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex; align-items: center; justify-content: center;
    visibility: hidden; opacity: 0;
    transition: all 0.4s ease;
}
.video-lightbox.active { visibility: visible; opacity: 1; }
.lightbox-content { position: relative; width: 90%; max-width: 900px; }
.close-lightbox { position: absolute; top: -40px; right: 0; background: none; border: none; font-size: 2.5rem; color: var(--white); cursor: pointer; transition: transform 0.3s ease; }
.close-lightbox:hover { transform: rotate(90deg); }
.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #000; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* --- DONATION MODAL --- */
.donation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 31, 53, 0.9);
    backdrop-filter: blur(8px);
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.donation-overlay.active {
    visibility: visible;
    opacity: 1;
}

.donation-box {
    background: var(--white);
    border-radius: 20px;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.donation-overlay.active .donation-box {
    transform: scale(1);
}

.close-donation {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.05);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.8rem;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.3s ease;
}

.close-donation:hover {
    background: var(--primary-teal);
    color: var(--white);
    transform: rotate(90deg);
}

.donation-header {
    background: linear-gradient(135deg, var(--dark-teal) 0%, var(--primary-teal) 100%);
    color: var(--white);
    padding: 40px 30px;
    text-align: center;
}

.donation-header i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.donation-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.donation-header p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    max-width: 350px;
    margin: 0 auto;
}

.donation-body {
    padding: 30px;
}

.card-icons {
    display: flex;
    gap: 15px;
    font-size: 2.5rem;
    color: #a0aec0;
    margin-bottom: 15px;
}

.secure-note {
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
}

.secure-note i {
    color: var(--primary-teal);
    margin-right: 5px;
}

/* --- VOLUNTEER PAGE --- */
.volunteer-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(23, 47, 79, 0.08);
    border: 1px solid rgba(23, 47, 79, 0.05);
    text-align: center;
}

.volunteer-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px auto;
    background: linear-gradient(135deg, var(--dark-teal) 0%, var(--primary-teal) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}

.volunteer-content-wrapper h2 {
    font-size: 1.8rem;
    color: var(--dark-teal);
    margin-bottom: 20px;
    font-weight: 800;
}

.volunteer-content-wrapper p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.volunteer-content-wrapper .tagline {
    font-style: italic;
    font-weight: 600;
    color: var(--primary-teal);
    border-top: 1px dashed rgba(23, 47, 79, 0.2);
    padding-top: 20px;
    margin-top: 30px;
}

.volunteer-action {
    margin-top: 30px;
}

/* --- SUPPORT US PAGE --- */
.support-us-text {
    text-align: center;
    margin-bottom: 40px;
}

.support-us-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* --- CAREERS PAGE (NO OPENINGS) --- */
.no-openings-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px dashed rgba(23, 47, 79, 0.2);
}

.no-openings-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px auto;
    background: var(--white);
    color: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(23, 47, 79, 0.08);
}

.no-openings-wrapper h2 {
    font-size: 1.6rem;
    color: var(--dark-teal);
    margin-bottom: 15px;
}

.no-openings-wrapper p {
    font-size: 1.1rem;
    color: #666;
}

/* --- PARTNER WITH US PAGE --- */
.partner-with-us-text {
    text-align: center;
    margin-bottom: 40px;
}

.partner-with-us-text h2 {
    font-size: 1.8rem;
    color: var(--dark-teal);
    margin-bottom: 20px;
}

.partner-with-us-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* --- SHOP / PRODUCT PAGE --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(15, 31, 53, 0.8), transparent);
    text-align: center;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.product-card:hover .product-overlay {
    transform: translateY(0);
    opacity: 1;
}

.btn-primary-sm {
    background-color: var(--white);
    color: var(--primary-teal);
    border: none;
    padding: 12px 25px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-primary-sm:hover {
    background-color: var(--primary-teal);
    color: var(--white);
    transform: translateY(-2px);
}
