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

:root {
    --primary-pink: #E75480;
    --deep-pink: #C13B5F;
    --dark-gray: #2D2D2D;
    --light-gray: #F9FAFB;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

/*body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--white);
}*/

body {
    background: linear-gradient(135deg, rgba(231, 84, 128, 0.05), rgba(193, 59, 95, 0.05));
}

/*body.page-template-template-about {
    background: white;
}*/

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ========================================
   NAVBAR
======================================== */
.home .navbar {
    position: fixed;
    top: 0;
}

.navbar {
    position: relative;
    
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

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

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

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #4B5563;
    font-size: 1.125rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-pink);
}

.btn-donate {
    padding: 0.5rem 1.5rem;
    background: var(--primary-pink);
    color: white;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-donate:hover {
    background: var(--deep-pink);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.mobile-menu-btn {
    display: none;
    background: none;
    color: var(--primary-pink);
    font-size: 1.5rem;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /*margin-top: 80px;*/
}

.hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(231, 84, 128, 0.9), rgba(193, 59, 95, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 1000px;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-pink);
    border-radius: 50px;
    font-size: 1.125rem;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: #F3F4F6;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1.125rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-border {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 6px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}

/* ========================================
   SECTION HEADERS
======================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.section-title.light {
    color: white;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #6B7280;
    max-width: 700px;
    margin: 0 auto;
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.9);
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #FCE7F3;
    color: var(--primary-pink);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* ========================================
   FOCUS AREAS SECTION
======================================== */
.focus-areas {
    padding: 5rem 0;
    /*background: white;*/
    position: relative;
    overflow: hidden;
}

.decorative-blob {
    position: absolute;
    border-radius: 50%;
    /*filter: blur(80px);*/
    opacity: 0.8;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: rgba(231, 84, 128, 0.2);
    bottom: 0;
    left: 0;
    transform: translate(-50%, -50%);
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: rgba(193, 59, 95, 0.2);
    bottom: 0;
    right: 0;
    transform: translate(33%, 33%);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.focus-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.focus-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.focus-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    transition: transform 0.3s;
}

.focus-card:hover .focus-icon {
    transform: scale(1.1);
}

.icon-education {
    background: linear-gradient(135deg, #E75480, #F78DA7);
}

.icon-women {
    background: linear-gradient(135deg, #C13B5F, #E75480);
}

.icon-justice {
    background: linear-gradient(135deg, #2D2D2D, #4D4D4D);
}

.icon-community {
    background: linear-gradient(135deg, #E75480, #C13B5F);
}

.focus-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
}

.focus-description {
    color: #6B7280;
    line-height: 1.7;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about {
    padding: 5rem 0;
    background: linear-gradient(to bottom, white, #F9FAFB);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: flex-start;
}

.about-image {
    /*position: relative;*/
    position: sticky;
    top: 30px;
}

.about-image img {
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.about-decoration {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 200px;
    height: 200px;
    background: var(--primary-pink);
    border-radius: 1rem;
    z-index: -1;
}

.home .about .about-decoration {
    left: -24px;
}

.about-content {
    max-width: 600px;
}

.about-content p {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 0rem;
    line-height: 1.8;
    text-align: justify;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #F9FAFB;
    border-radius: 12px;
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.icon-mission {
    background: linear-gradient(135deg, #E75480, #F78DA7);
}

.icon-vision {
    background: linear-gradient(135deg, #C13B5F, #E75480);
}

.icon-values {
    background: linear-gradient(135deg, #2D2D2D, #4D4D4D);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.value-text {
    color: #6B7280;
}

/* ========================================
   IMPACT STATS SECTION
======================================== */
.impact-stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, #E75480, #C13B5F, #E75480);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.stat-value {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    display: inline-block;
}

.stat-suffix {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    display: inline;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* ========================================
   PROGRAMS SECTION
======================================== */
.programs {
    padding: 5rem 0;
    background: #F9FAFB;
    position: relative;
}

.program-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    color: #4B5563;
    border: 2px solid #E5E7EB;
    border-radius: 50px;
    transition: all 0.3s;
}

.tab-btn.active {
    background: linear-gradient(to right, var(--primary-pink), var(--deep-pink));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(231, 84, 128, 0.3);
    transform: scale(1.05);
}

.tab-btn.active:hover {
    color: #4B5563;
}

.tab-btn:hover {
    background: #F3F4F6;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.program-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
}

.program-card.hidden {
    display: none;
}

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

.program-image {
    position: relative;
    height: 224px;
    overflow: hidden;
}

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

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

.program-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.program-region {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--primary-pink);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.program-beneficiaries {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    padding: 0.25rem 1rem;
    background: var(--primary-pink);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
}

.program-content {
    padding: 1.5rem;
}

.program-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.program-description {
    color: #6B7280;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.btn-link {
    color: var(--primary-pink);
    background: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: gap 0.3s;
    padding-left: 0px;
    text-decoration: none;
}

.program-card:hover .btn-link {
    gap: 0.75rem;
}

/* ========================================
   NEWS SECTION
======================================== */
.news {
    padding: 5rem 0;
    background: white;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.news-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    height: 224px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.news-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--primary-pink);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    color: #6B7280;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-excerpt {
    color: #6B7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.btn-outline {
    padding: 0.75rem 2rem;
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    background: white;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--primary-pink);
    color: white;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F9FAFB, white);
}

.testimonials-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin: 1rem;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-pink);
    font-family: serif;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-pink), var(--deep-pink));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
}

.author-name {
    font-weight: 600;
    color: var(--dark-gray);
}

.author-role {
    font-size: 0.875rem;
    color: #6B7280;
}

.swiper-button-prev,
.swiper-button-next {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--primary-pink);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--primary-pink);
    color: white;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 1.25rem;
}

.swiper-pagination-bullet {
    background: var(--primary-pink);
}

/* ========================================
   TEAM SECTION
======================================== */
.team {
    padding: 5rem 0;
    /*background: white;*/
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
}

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

.team-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #FCE7F3, #FEE2E2);
}

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

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

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0.6;
}

.team-social {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.team-card:hover .team-social {
    opacity: 1;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-pink);
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--primary-pink);
    color: white;
}

.team-badge {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-pink), var(--deep-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.team-badge::after {
    content: '';
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
}

.team-card:hover .team-badge {
    transform: translateX(-50%) scale(1.25);
}

.team-content {
    padding: 2.5rem 1.5rem 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-designation {
    color: var(--primary-pink);
    font-weight: 500;
}

/* ========================================
   PARTNERS SECTION
======================================== */
.partners {
    padding: 5rem 0;
    background: linear-gradient(to bottom, white, #F9FAFB);
}

.partners-slider {
    max-width: 1200px;
    margin: 0 auto;
}

.partner-card {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 2rem;
    height: 128px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.partner-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-pink), var(--deep-pink));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: transform 0.3s;
}

.partner-card:hover .partner-logo {
    transform: scale(1.1);
}

.partner-name {
    font-size: 0.875rem;
    color: #6B7280;
    text-align: center;
}

/* ========================================
   CALL TO ACTION SECTION
======================================== */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #E75480, #C13B5F, #E75480);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-title {
    color: white;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
}

.cta-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.cta-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.cta-card:hover .cta-icon {
    transform: scale(1.1);
}

.cta-card-title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.btn-white {
    width: 100%;
    padding: 1rem 1.5rem;
    background: white;
    color: var(--primary-pink);
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-white:hover {
    background: #F3F4F6;
}

.btn-dark {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--dark-gray);
    color: white;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.btn-dark:hover {
    background: #4D4D4D;
}

.cta-footer {
    text-align: center;
    font-size: 1.125rem;
    opacity: 0.8;
}

.cta-footer a {
    text-decoration: underline;
}

.cta-footer a:hover {
    text-decoration: none;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--dark-gray);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-pink);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    gap: 0.75rem;
}

.contact-icon {
    color: var(--primary-pink);
    flex-shrink: 0;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-pink);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: color 0.3s;
}

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

/* ========================================
   SCROLL TO TOP BUTTON
======================================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-pink), var(--deep-pink));
    color: white;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    padding: 0px;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
    .navbar-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        border-top: 1px solid #E5E7EB;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

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

    .mobile-menu-btn {
        display: block;
    }

    .btn-donate {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .focus-grid,
    .programs-grid,
    .news-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

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

    .about-decoration {
        width: 150px;
        height: 150px;
        bottom: -12px;
        right: -12px;
    }

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

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

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

@media (min-width: 992px) {
  
  .primary-menu li.menu-item-has-children > .sub-menu li:hover {
    background: #f8f9fb;
  }

  .mega-menu.active, .primary-menu li.menu-item-has-children.active > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    /*pointer-events: auto;*/
    transition: opacity .3s ease, transform .3s ease;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
  }
}

/* ========================================
   PROGRAM DETAIL PAGE STYLES
======================================== */

/* BREADCRUMB */
.breadcrumb {
    background: #F9FAFB;
    padding: 1.5rem 0;
    /*margin-top: 80px;*/
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 0px;
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.breadcrumb-link {
    color: #6B7280;
    transition: color 0.3s;
}

.breadcrumb-link:hover {
    color: var(--primary-pink);
}

.breadcrumb-separator {
    color: #D1D5DB;
}

.breadcrumb-current {
    color: var(--dark-gray);
    font-weight: 500;
}

/* PROGRAM HERO */
.program-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.program-hero-bg {
    position: absolute;
    inset: 0;
}

.program-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(231, 84, 128, 0.85), rgba(193, 59, 95, 0.85));
}

.program-hero-content {
    position: relative;
    z-index: 10;
    color: white;
    padding: 4rem 0;
}

.prog_region {
    display: flex;
    gap: 10px;
}

.prog_region .program-badge:hover {
    background: white;
    color: var(--primary-pink);
}

.prog_region .program-badge {
    color: white;
    transition: .3s ease-in-out;
}

.program-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.program-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.program-hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
}

.program-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 800px;
}

.hero-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
}

.hero-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* QUICK INFO BAR */
.quick-info {
    background: white;
    border-bottom: 1px solid #E5E7EB;
    padding: 2rem 0;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

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

.quick-info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.quick-info-label {
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 0.25rem;
}

.quick-info-value {
    font-weight: 600;
    color: var(--dark-gray);
}

/* PROGRAM OVERVIEW */
.program-overview {
    padding: 5rem 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.overview-text {
    font-size: 1.125rem;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.overview-highlights {
    margin-top: 2.5rem;
    padding: 2rem;
    background: #F9FAFB;
    border-radius: 1rem;
    border-left: 4px solid var(--primary-pink);
}

.highlights-title {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    padding: 0.75rem 0;
    color: #4B5563;
    font-size: 1.0625rem;
    border-bottom: 1px solid #E5E7EB;
}

.highlights-list li:last-child {
    border-bottom: none;
}

/* SIDEBAR */
.overview-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 50px;
    height: fit-content;
}

.sidebar-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

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

.coordinator-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--primary-pink);
}

.coordinator-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--dark-gray);
}

.coordinator-role {
    color: var(--primary-pink);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.coordinator-bio {
    font-size: 0.9375rem;
    color: #6B7280;
    margin-bottom: 1rem;
}

.contact-btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #F9FAFB;
    color: var(--dark-gray);
    border-radius: 50px;
    transition: all 0.3s;
    font-size: 0.875rem;
}

.contact-btn:hover {
    background: var(--primary-pink);
    color: white;
}

.sidebar-text {
    color: #6B7280;
    margin-bottom: 1rem;
}

.btn-support {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--deep-pink));
    color: white;
    border-radius: 50px;
    font-weight: 500;
    margin-bottom: 0.75rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(231, 84, 128, 0.3);
}

.btn-support:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 84, 128, 0.4);
}

.btn-support-secondary {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: white;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-support-secondary:hover {
    background: var(--primary-pink);
    color: white;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F9FAFB;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

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

/* OBJECTIVES */
.objectives {
    padding: 5rem 0;
    background: #F9FAFB;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.objective-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-pink), var(--deep-pink));
}

.objective-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(231, 84, 128, 0.2);
    margin-bottom: 1rem;
}

.objective-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.objective-text {
    color: #6B7280;
    line-height: 1.7;
}

/* ACHIEVEMENTS */
.achievements {
    padding: 5rem 0;
    background: white;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.achievement-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #FFF1F3, #FCE7F3);
    border-radius: 1rem;
    transition: all 0.3s;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(231, 84, 128, 0.2);
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.achievement-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 0.5rem;
}

.achievement-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.achievement-desc {
    font-size: 0.9375rem;
    color: #6B7280;
}

.impact-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(231, 84, 128, 0.05), rgba(193, 59, 95, 0.05));
    padding: 3rem;
    border-radius: 1.5rem;
}

.story-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.story-quote {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.story-text {
    font-size: 1.0625rem;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.story-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-pink);
}

.story-name {
    font-weight: 600;
    color: var(--dark-gray);
}

.story-role {
    font-size: 0.875rem;
    color: #6B7280;
}

.story-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

/* ACTIVITIES TIMELINE */
.activities {
    padding: 5rem 0;
    background: #F9FAFB;
}

.activities-timeline {
    max-width: 900px;
    margin: 3rem auto;
    position: relative;
}

.activities-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-pink), var(--deep-pink));
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: 18px;
    top: 0;
    width: 24px;
    height: 24px;
    background: white;
    border: 4px solid var(--primary-pink);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(231, 84, 128, 0.1);
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid white;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.timeline-text {
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.timeline-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(231, 84, 128, 0.1);
    color: var(--primary-pink);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* GALLERY */
.gallery {
    padding: 5rem 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

/* PROGRAM TESTIMONIALS */
.program-testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F9FAFB, white);
}

/* SUPPORT SECTION */
.support {
    padding: 5rem 0;
    background: white;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.support-card {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.support-card:hover {
    border-color: var(--primary-pink);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(231, 84, 128, 0.15);
}

.support-card.featured {
    border-color: var(--primary-pink);
    background: linear-gradient(135deg, rgba(231, 84, 128, 0.03), rgba(193, 59, 95, 0.03));
    box-shadow: 0 10px 25px rgba(231, 84, 128, 0.1);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-pink), var(--deep-pink));
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.support-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.support-text {
    color: #6B7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.support-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.support-list li {
    padding: 0.75rem 0;
    color: #4B5563;
    border-bottom: 1px solid #E5E7EB;
}

.support-list li:last-child {
    border-bottom: none;
}

.btn-support-card {
    width: 100%;
    padding: 1rem 1.5rem;
    background: white;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-support-card:hover {
    background: var(--primary-pink);
    color: white;
}

.btn-support-card.primary {
    background: linear-gradient(135deg, var(--primary-pink), var(--deep-pink));
    color: white;
    border: none;
}

.btn-support-card.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 84, 128, 0.3);
}

/* RELATED PROGRAMS */
.related-programs {
    padding: 5rem 0;
    background: #F9FAFB;
}

.related-grid {
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));*/
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.related-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.related-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.related-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    display: block;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.related-card:hover .related-image img {
    transform: scale(1.1);
}

.related-region {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--primary-pink);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.related-content {
    padding: 1.5rem;
}

.related-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
}

.related-text {
    color: #6B7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* PROGRAM CTA */
.program-cta {
    padding: 5rem 0;
    
    color: white;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.program-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    /*background: rgba(255, 255, 255, 0.05);*/
    background: rgb(255 124 124 / 38%);
    border-radius: 50%;
}

.program-cta:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    inset: 0;
    background: linear-gradient(135deg, rgba(231, 84, 128, 0.85), rgba(193, 59, 95, 0.85));
}

.program-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.program-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.program-cta-text {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.program-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-pink);
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* RESPONSIVE DESIGN FOR PROGRAM DETAIL */
@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .overview-sidebar {
        order: -1;
    }

    .impact-story {
        grid-template-columns: 1fr;
    }

    .story-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .program-hero {
        min-height: 400px;
    }

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

    .quick-info-grid {
        grid-template-columns: 1fr;
    }

    .objectives-grid,
    .achievements-grid,
    .support-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

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

    .activities-timeline {
        padding-left: 0;
    }

    .activities-timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-marker {
        left: 8px;
    }
}

@media (max-width: 480px) {
    .program-hero-title {
        font-size: 2rem;
    }

    .breadcrumb-content {
        font-size: 0.875rem;
    }

    .program-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
    }
}
/* ========================================
   NEWSLETTER PAGE STYLES
======================================== */

/* PAGE HEADER */
.newsletter-header {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(231, 84, 128, 0.05), rgba(193, 59, 95, 0.05));
    margin-top: 80px;
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: #6B7280;
    max-width: 700px;
    margin: 0 auto;
}
.banner_subtitle {
    font-size: 14px;
    color: white;
    margin-bottom: 10px;
}

/* NEWSLETTER VIEWER */
.newsletter-viewer {
    padding: 4rem 0;
    background: white;
}

.viewer-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Newsletter Info Sidebar */
.newsletter-info {
    position: sticky;
    top: 100px;
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
}

.newsletter-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--deep-pink));
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.newsletter-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.newsletter-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
}

.meta-item {
    font-size: 0.875rem;
    color: #6B7280;
}

.newsletter-description h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.issue-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.issue-highlights li {
    padding: 0.5rem 0;
    color: #4B5563;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Viewer Actions */
.viewer-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.btn-download,
.btn-share,
.btn-print {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-download {
    background: linear-gradient(135deg, var(--primary-pink), var(--deep-pink));
    color: white;
    box-shadow: 0 4px 12px rgba(231, 84, 128, 0.3);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 84, 128, 0.4);
}

.btn-share,
.btn-print {
    background: white;
    color: var(--dark-gray);
    border: 2px solid #E5E7EB;
}

.btn-share:hover,
.btn-print:hover {
    border-color: var(--primary-pink);
    color: var(--primary-pink);
}

.btn-icon {
    font-size: 1.125rem;
}

/* Newsletter Navigation */
.newsletter-navigation {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E5E7EB;
}

.nav-btn {
    padding: 1rem;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    transition: all 0.3s;
    cursor: pointer;
}

.nav-btn:hover:not(.disabled) {
    background: white;
    border-color: var(--primary-pink);
    color: var(--primary-pink);
    transform: translateX(4px);
}

.prev-btn:hover:not(.disabled) {
    transform: translateX(-4px);
}

.nav-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-btn small {
    display: block;
    font-size: 0.75rem;
    color: #9CA3AF;
    margin-bottom: 0.25rem;
}

.nav-btn strong {
    display: block;
    font-size: 0.875rem;
    color: var(--dark-gray);
}

.nav-btn span {
    font-size: 1.25rem;
}

/* PDF Viewer Container */
.pdf-viewer-container {
    background: #F3F4F6;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pdf-viewer {
    background: white;
    min-height: 800px;
    max-height: 1000px;
    overflow-y: auto;
    position: relative;
}

/* PDF Placeholder (for demo) */
.pdf-placeholder {
    padding: 3rem;
}

.pdf-page {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pdf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-pink);
}

.pdf-date {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-pink);
}

.pdf-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    text-align: center;
}

.pdf-cover-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.pdf-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.pdf-content p {
    font-size: 1.0625rem;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.pdf-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(231, 84, 128, 0.05), rgba(193, 59, 95, 0.05));
    border-radius: 12px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 0.5rem;
}

/*.stat-label {
    font-size: 0.875rem;
    color: #6B7280;
}*/

.pdf-note {
    background: #FFF9E6;
    border-left: 4px solid #FFC107;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    color: #856404;
}

/* Actual PDF iframe (when using real PDFs) */
.pdf-iframe {
    width: 100%;
    height: 800px;
    border: none;
    display: none; /* Hidden by default, show when using real PDFs */
}

/* PDF Controls */
.pdf-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-top: 1px solid #E5E7EB;
}

.control-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    color: var(--dark-gray);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
}

.control-btn:hover {
    background: var(--primary-pink);
    color: white;
    border-color: var(--primary-pink);
}

.zoom-level {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-gray);
    min-width: 60px;
    text-align: center;
}

/* NEWSLETTER ARCHIVE */
.newsletter-archive {
    padding: 5rem 0;
    background: #F9FAFB;
}

.archive-filters {
    display: flex;
    gap: 1rem;
}

.filter-select {
    padding: 0.75rem 1.5rem;
    border: 2px solid #E5E7EB;
    border-radius: 50px;
    background: white;
    color: var(--dark-gray);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%234B5563' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.filter-select:hover,
.filter-select:focus {
    border-color: var(--primary-pink);
    outline: none;
}

/* Archive Grid */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.archive-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.archive-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.archive-card.current {
    border: 2px solid var(--primary-pink);
}

.archive-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.archive-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.archive-card:hover .archive-thumbnail img {
    transform: scale(1.1);
}

.thumbnail-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
}

.current-badge {
    padding: 0.375rem 1rem;
    background: var(--primary-pink);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.thumbnail-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 1rem;
    background: rgba(45, 45, 45, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.archive-content {
    padding: 1.5rem;
}

.archive-date {
    font-size: 0.875rem;
    color: var(--primary-pink);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.archive-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.archive-excerpt {
    font-size: 0.9375rem;
    color: #6B7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/*.archive-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
}*/

.meta-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(231, 84, 128, 0.1);
    color: var(--primary-pink);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.meta-pages {
    font-size: 0.875rem;
    color: #9CA3AF;
}

.archive-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-view {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--deep-pink));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 84, 128, 0.4);
}

.btn-download-small {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 2px solid #E5E7EB;
    color: var(--dark-gray);
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-download-small:hover {
    border-color: var(--primary-pink);
    color: var(--primary-pink);
}

/* Archive Footer */
.archive-footer {
    text-align: center;
    margin-top: 3rem;
}

.btn-load-more {
    padding: 1rem 3rem;
    background: white;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-load-more:hover {
    background: var(--primary-pink);
    color: white;
}

/* SUBSCRIBE CTA */
.subscribe-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-pink), var(--deep-pink));
    color: white;
    position: relative;
    overflow: hidden;
}

.subscribe-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.subscribe-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.subscribe-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.subscribe-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.subscribe-text {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.subscribe-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.subscribe-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.subscribe-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-subscribe {
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-pink);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.subscribe-note {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .viewer-wrapper {
        grid-template-columns: 1fr;
    }

    .newsletter-info {
        position: relative;
        top: 0;
        order: -1;
    }
}

@media (max-width: 768px) {
    .newsletter-header {
        padding: 2rem 0;
    }

    .viewer-wrapper {
        gap: 2rem;
    }

    .pdf-viewer {
        min-height: 600px;
    }

    .pdf-page {
        padding: 2rem 1.5rem;
    }

    .pdf-title {
        font-size: 2rem;
    }

    .pdf-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .archive-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .archive-filters {
        width: 100%;
        flex-direction: column;
    }

    .filter-select {
        width: 100%;
    }

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

    .subscribe-form {
        flex-direction: column;
    }

    .btn-subscribe {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .viewer-actions {
        gap: 0.5rem;
    }

    .btn-download,
    .btn-share,
    .btn-print {
        padding: 0.75rem 1rem;
        font-size: 0.9375rem;
    }

    .newsletter-navigation {
        gap: 0.5rem;
    }

    .pdf-controls {
        gap: 0.5rem;
    }

    .control-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

/* FILTER ANIMATION */
.archive-card.hidden {
    display: none;
}

.archive-card.filtering {
    animation: fadeOut 0.3s ease;
}

.archive-card.showing {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.95);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Blog page styles start */

.news-events-section {
    padding-top: 70px;
}
.container-inner {
    width: 60%;
}

.blog_detail {
    padding-top: 60px;
    padding-bottom: 60px;
}

.blog_hero_content .program-hero-subtitle {
    max-width: 60%;
    font-size: 18px;
    margin-bottom: 20px;
}

.blog_banner .program-hero-title {
    font-size: clamp(2.5rem, 5vw, 3rem); 
}

.blog_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.blog_detail .entry-content {
    padding-bottom: 40px;
    text-align: justify;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.post-navigation .nav-box {
    flex: 1;
}

.nav-box a {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.nav-box a:hover {
    transform: translateY(-4px);
}

.nav-thumb img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
}

.nav-content {
    flex: 1;
}

.nav-label {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

.nav-content h4 {
    font-size: 18px;
    color: #222;
    line-height: 1.4;
}

.nav-next {
    text-align: right;
}

.nav-next a {
    justify-content: flex-end;
}

@media(max-width: 767px){

    .post-navigation {
        flex-direction: column;
    }

}

/* Blog page styles end */

/* Archive page styles start */

.archive_banner {
    min-height: 300px;
    margin-bottom: 80px;
}

.archive-heading {
    font-size: 42px;
    margin-bottom: 15px;
}

.archive-description {
    max-width: 700px;
    color: #666;
    line-height: 1.8;
}

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

.archive-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

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

.archive-thumb img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.archive-content {
    padding: 20px;
}

.archive-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 13px;
}

.archive-type {
    color: #0077b6;
    font-weight: 600;
}

.archive-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.archive-title a {
    color: #222;
    text-decoration: none;
}

.archive-excerpt {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.archive-readmore {
    color: #ff7a18;
    text-decoration: none;
    font-weight: 600;
}

.pagination {
    margin-top: 60px;
    margin-bottom: 50px;
    justify-content: center;
    gap: 12px;
}

.pagination .page-numbers {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: #d45a80;
    text-align: center;
    color: white;
    border-radius: 6px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.pagination .page-numbers.current {
    background: #d45a8047;
    color: #0c0c0c;
}
.pagination .page-numbers.next {
    background: transparent;
    color: #d45a80;
    width: auto;
    margin-left: 40px;
}
.pagination .page-numbers.prev {
    background: transparent;
    color: #d45a80;
    width: auto;
    margin-right: 40px;
}

@media(max-width: 991px){

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

}

@media(max-width: 767px){

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

}

.center_title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    /*color: var(--primary-pink);*/
    margin-bottom: 1rem;
    text-align: center;
}

/* Archive page styles end */

/* Teams page styles start */

.teams-main .team-grid {
    gap: 20px;
}

.cta_inner .cta-grid {
    max-width: 500px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.cta_inner .cta-grid .btn-secondary,
.cta_inner .cta-grid .btn-white {
    padding: 14px 1.5rem;
    /*border: none;*/
    font-size: 16px;
}

.cta_inner .cta-grid .btn-white {
    border: 2px solid rgba(255, 255, 255, 0.3)
}

/* Teams page styles end */

/* About page sytles start */

.page-header-inner {
    padding: 5rem 0px;
    background: linear-gradient(135deg, 
    rgba(231, 84, 128, 0.1) 0%, 
    rgba(255, 255, 255, 1) 50%, 
    rgba(193, 59, 95, 0.05) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header-inner .page-title {
    font-weight: 500;
}

.page-header-inner .page-subtitle {
    max-width: 70%;
}

.our-story {
    background: linear-gradient(to bottom, 
        white 0%, 
        #F9FAFB 100%);
}

.about-focus .focus-card:first-child {
    background: linear-gradient(135deg, 
        rgba(231, 84, 128, 0.05) 0%, 
        transparent 100%);
}

.about-focus .focus-card:nth-child(2) {
    background: linear-gradient(135deg, 
        rgba(193, 59, 95, 0.05) 0%, 
        transparent 100%);
}

.about-focus .focus-card:last-child {
    background: linear-gradient(135deg, 
        rgba(45, 45, 45, 0.05) 0%, 
        transparent 100%);
}

.about-focus .focus-icon img,
.journey-icon img {
    width: 32px;
}

.our-journey,
.impact-section {
    padding: 5rem 0px;
}

.journey-wrapper {
    max-width: 75%;
    margin: auto;
    display: flex;
    justify-content: center;
}

.journey-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
}

.journey-item:hover .journey-icon {
    transform: scale(1.1);
}

.journey-info .year {
    color: #E75480;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.journey-info p {
    color: #4a5565;
}

.journey-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #E75480, #C13B5F);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    position: relative;
    transition: .4s ease-in-out;
}

.journey-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-icon-wrap:before {
    content: '';
    background: linear-gradient(
    180deg,
    #C13B5F 0%,
    rgba(193, 59, 95, 0.05) 100% );
    width: 2px;
    height: 100%;
    position: absolute;
    top: 72px;
}

.impact-section {
    background: linear-gradient(to bottom, 
        #F9FAFB 0%, 
        white 100%);
}

.abt-stat-card {
    background: white;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.abt-stat-card .stat-value,
.abt-stat-card .stat-suffix {
    font-size: 2.25rem;
    color: var(--primary-pink);
    font-weight: 500;
}

.abt-stat-card .stat-label {
    color: #4a5565;
    opacity: 1;
    font-size: 1rem;
}

.abt-stat-card .stat-icon {
    margin: auto;
    margin-bottom: 16px;
}

.abt-stat-card .stat-icon img {
    filter: invert(1);
}

.page-template-template-about .cta-subtitle {
    font-size: 18px;
}

/* About page styles end */

/* Contact page styles start */

.contact-info .cont-info-card {
    background: linear-gradient(135deg, 
        rgba(231, 84, 128, 0.05) 0%, 
        transparent 100%);
}

.cont-info-card img {
    width: 32px;
}

.form-section {
    padding: 5rem 0px;
}

.form-container {
    max-width: 50%;
    margin: auto;
}

.form-box {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 12px;
    background: white;
}

.form-box .title-area h3 {
    font-size: 30px;
    font-weight: 400;
    text-align: center;
    padding-bottom: 15px;
}

.form-box .title-area p {
    text-align: center;
    padding-bottom: 15px;
}

.form-wrap form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-wrap .form-group {
    padding-bottom: 20px;
    width: 48%;
    flex: 0 0 auto;
}

.form-wrap .form-group p {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 0px;
}

.form-wrap .form-group p input {
    width: 100%;
    border: 1px solid #d1d5dc;
    padding: 12px 10px;
    border-radius: 6px;
}

.form-wrap .form-group textarea {
    height: 80px;
} 

.form-wrap .form-submit {
    margin: auto;
    padding-bottom: 0px;
}

.form-wrap .form-submit p {
    flex-direction: row;
    position: relative;
}

.form-wrap .form-submit .wpcf7-spinner {
    position: absolute;
    right: 12px;
    top: 12px;
    margin: 0;
}

.form-wrap .wpcf7 form .wpcf7-response-output {
    margin: 20px auto 0px;
    width: 100%;
    text-align: center;
}

.form-wrap .form-submit p input {
    background: var(--primary-pink);
    color: white;
    font-size: 18px;
    border: none;
    padding: 15px 10px;
    border-radius: 35px;
}

.social-cta .section-title {
    font-size: 42px;
    font-weight: 400;
    color: white;
}

.social-cta .section-subtitle {
    font-size: 20px;
}

.social-cta-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding-top: 20px;
}

.social-cta-grid .btn-social {
    padding: 12px 1.5rem;
}

/* Contact page styles end */

/* Podcast page styles start */

.centerContSec {
    padding: 60px 0px;
}

.centerContSec .short_cont {
    max-width: 70%;
    margin: auto;
}

.centerContSec .short_cont p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 0px;
    color: #6B7280;
}

.podcastSec {
    padding-bottom: 70px;
    padding-top: 70px;
}

.podcast_list {
    display: flex;
    /*justify-content: center;*/
    gap: 24px;
    flex-wrap: wrap;
}

.podcast_item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    flex: 0 0 auto;
    width: 48%;
}

.podcast_video .mejs-container,
.podcast_item .podcast_video iframe {
    min-height: 360px;
}

.podcast_item .podcast_video iframe,
.podcast_item .podcast_video .wp-video {
    border-top-right-radius: 14px;
    border-top-left-radius: 14px;
    width: 100%;
    height: 100%;
}

.wp-video-shortcode video, video.wp-video-shortcode,
.podcast_video .mejs-container {
    border-radius: 14px;
}

.podcast_item .podcast_info {
    padding: 30px 20px;
}

.podcast_title {
    color: var(--primary-color);
}

/* Podcast page styles end */

/* Donation page styles start */

.donation_types {
    padding: 5rem 0px;
}

.donation_type_tabs {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.donation-tabs {
    flex-direction: column;
    gap: 1.75rem;
    flex: 0 0 auto;
    width: 25%;
}

.don-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    border: 2px solid rgba(231, 84, 128, 0.2);
    background: white;
    color: rgb(75, 85, 99);
}

.donation-card {
    background: rgb(255, 245, 247);
    border: 1px solid rgba(231, 84, 128, 0.15);
    border-radius: 1.5rem;
    padding: clamp(1.5rem, 4vw, 3rem);
    box-shadow: rgba(231, 84, 128, 0.08) 0px 8px 40px;
    display: none;
}

.donation-card.active {
     display: block;
}

.bankInfo {
    max-width: 70%;
}

.bankDet {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.875rem 0px;
    border-bottom: 1px solid rgba(231, 84, 128, 0.1);
}

.bankDet span {
    min-width: 140px;
    font-size: 0.85rem;
    color: rgb(156, 163, 175);
    font-weight: 500;
    padding-top: 1px;
}

.bankDet p.ac_numb {
    font-family: "Courier New", monospace;
    font-weight: 600;
    color: rgb(45, 45, 45);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.bankDet p {
    margin-bottom: 0px;
}

.donation_cont .don_title {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgb(45, 45, 45);
    margin-bottom: 0.4rem;
}

.donation_cont ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px 60px;
    flex-wrap: wrap;
}

.donation_cont ul li {
    position: relative;
    padding-left: 30px;
    /*margin-bottom: 10px;*/
}

.donation_cont ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #c53d62;
    font-weight: 500;
}

.donation_cont .ctaArea {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    border: 1px dashed rgba(231, 84, 128, 0.3);
}

.donation_cont .ctaArea .ctaBtn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, rgb(231, 84, 128), rgb(193, 59, 95));
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: rgba(231, 84, 128, 0.3) 0px 4px 16px;
}

.faqSec {
    background: rgb(249, 250, 251);
    padding: 5rem 0px;
}

.faqCont {
    max-width: 60%;
    margin: auto;
}

.faqItem {
    background: white;
    /*border: 1px solid rgba(231, 84, 128, 0.3);*/
    border: 1px solid rgb(229, 231, 235);
    border-radius: 0.875rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: border-color 0.2s;
    box-shadow: rgba(231, 84, 128, 0.08) 0px 4px 16px
}

.faqItem.active {
    border: 1px solid rgba(231, 84, 128, 0.3);
}

.faqQues {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
}

.faqQues h6,
.faqAns p {
    margin-bottom: 0px;
}

.faqQues span {
    font-size: 20px;
    transition: .3s ease-in-out;
}

.faqItem.active .faqQues span {
    transform: rotate(45deg);
}

.faqAns {
    padding: 1rem 1.5rem 1.25rem;
    color: rgb(75, 85, 99);
    font-size: 0.9rem;
    line-height: 1.7;
    border-top: 1px solid rgba(231, 84, 128, 0.1);
    transition: .5s ease-in-out;
    display: none;
}

.faqItem.active .faqAns {
    display: block;
}

/* Donation page styles end */