/* Additional styles for the about page */
.hero {
    text-align: center;
    color: #f8f9fa;
}

.hero p {
    color: #fff;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.about-content-section {
    background: #f8f9fa;
    padding: 0 0 80px;
}

.about-content {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-section {
    margin-bottom: 60px;
}

.content-section .section-title {
    color: #8B0000;
}

.detail-editor {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.detail-editor p {
    margin-bottom: 1.5rem;
    color: #403f3f;
    font-size: 1.1rem;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.vision-mission-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.vision-mission-card:hover {
    transform: translateY(-5px);
}

.vision-mission-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.vision-mission-card h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.vision-mission-card p {
    color: #666;
    text-align: left;
    line-height: 1.7;
}

.quote-section {
    text-align: center;
    margin: 60px 0;
}

.organization-quote {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    border-left: none;
}

.focus-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.focus-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.focus-card:hover {
    transform: translateY(-5px);
}

.focus-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.focus-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.focus-card p {
    color: #666;
    line-height: 1.6;
}

.timeline-section {
    background: white;
    padding: 80px 0;
}

.timeline {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #667eea;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #667eea;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0 30px;
    flex: 1;
}

.timeline-content h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.nav-links a.active {
    color: #667eea;
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-header .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .detail-editor {
        padding: 25px;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .organization-quote {
        font-size: 1.2rem;
        padding: 25px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 50px;
    }

    .timeline-year {
        position: absolute;
        left: -30px;
        min-width: 60px;
        font-size: 0.9rem;
    }

    .timeline-content {
        margin: 10px 0 0 0;
        width: 100%;
    }
}

/*affiliation*/

.affiliation-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.affiliation-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.affiliation-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.affiliation-hero .container p {
    color: #ffff;
}

.affiliation-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.affiliation-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.intro-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.affiliations-section {
    padding: 80px 0;
    background: white;
}

.affiliations-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.affiliation-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.affiliation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.card-header .acronym {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 400;
}

.card-content {
    padding: 30px;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
    gap: 15px;
}

.join-year {
    background: #e3f2fd;
    color: #1976d2;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.website-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.website-link:hover {
    color: #764ba2;
}

.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-container p {
    color: #fff;
}

.stats-container h2 {
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.collaboration-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.collaboration-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.collaboration-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.collaboration-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.highlight-box {
    background: white;
    border-left: 5px solid #667eea;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
    text-align: left;
}

.highlight-box h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.highlight-box p {
    color: #555;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .affiliation-hero h1 {
        font-size: 2.5rem;
    }

    .affiliation-hero p {
        font-size: 1.1rem;
    }

    .intro-content h2,
    .section-header h2 {
        font-size: 2rem;
    }

    .card-header h3 {
        font-size: 1.5rem;
    }

    .card-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
        /* Single column */
    }
}

@media (max-width: 480px) {
    .affiliation-hero {
        padding: 100px 0 60px;
    }

    .intro-section,
    .affiliations-section,
    .collaboration-section {
        padding: 60px 0;
    }

    .card-header,
    .card-content {
        padding: 20px;
    }

    .vision-mission-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }
}

@media (max-width: 200px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/*Team Css*/
.intro-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.team-section {
    padding: 80px 0;
    background: white;
}

.team-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.team-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-photo {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.05);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.team-position {
    font-size: 1rem;
    color: #667eea;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.team-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
}


.container .about-content p {
    color: #666;
}

.container .timeline p {
    color: #666;
}

.contact-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.leadership-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    justify-content: space-evenly;
    text-align: center;

}

.leadership-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.leadership-card:hover {
    transform: translateY(-5px);
}

.leadership-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    overflow: hidden;
}

.leadership-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.leadership-name {
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.leadership-title {
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.leadership-bio {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.values-section {
    padding: 80px 0;
    background: white;
}

.values-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease, background 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.value-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 768px) {
    .team-hero h1 {
        font-size: 2.5rem;
    }

    .team-hero p {
        font-size: 1.1rem;
    }

    .intro-content h2,
    .section-header h2 {
        font-size: 2rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .leadership-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .leadership-card {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .vision-mission-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 480px) {
    .team-hero {
        padding: 100px 0 60px;
    }

    .intro-section,
    .team-section,
    .leadership-section,
    .values-section {
        padding: 60px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-info {
        padding: 20px;
    }

    .leadership-card {
        padding: 25px 15px;
    }

    .value-card {
        padding: 25px 15px;
    }
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.contact-main {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-card h2 {
    color: #333;
    margin-bottom: 30px;
    font-size: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
}

.info-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-content h3 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.info-content p {
    color: #666;
    margin: 2px 0;
    line-height: 1.5;
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-card h2 {
    color: #333;
    margin-bottom: 30px;
    font-size: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.social-links {
    margin-top: 30px;
}

.social-links h3 {
    color: #333;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.map-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.map-section h2 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 30px 20px;
    }
}

.projects-hero {
    background: linear-gradient(135deg, #53bbb7 0%, #4d7978 100%);
    color: white;
    padding: 80px 0 70px;
    text-align: center;
}

.projects-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffff;
}

.projects-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    color: #ffff;
}

.breadcrumb {
    background: #f8f9fa;
    padding: 15px 0;
}

.breadcrumb-nav {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-nav a {
    color: #6c757d;
    text-decoration: none;
    margin-right: 10px;
}

.breadcrumb-nav a:hover {
    color: #495057;
}

@media (max-width: 768px) {
    .projects-hero h1 {
        font-size: 2rem;
    }
}


/*Story list */
.programs-hero {
    background: linear-gradient(135deg, #9f7aea 0%, #e53e3e 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.programs-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.programs-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    color: #ffff;
}

.breadcrumb {
    background: #f8f9fa;
    padding: 15px 0;
}

.breadcrumb-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-nav a {
    color: #6c757d;
    text-decoration: none;
    margin-right: 10px;
}

.breadcrumb-nav a:hover {
    color: #495057;
}

.filter-section {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid #e9ecef;
}

.filter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.filter-tabs {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tab {
    padding: 12px 24px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-tab.active,
.filter-tab:hover {
    background: #9f7aea;
    color: white;
    border-color: #9f7aea;
}

.programs-main {
    padding: 60px 0;
    background: #dcece9;
}

.program2 {
    background-color: #f0e3c3;
}

.programs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.programs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex: 1 1 calc(20% - 20px);
    min-width: 150px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-header {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.program-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-type {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.type-workshop {
    color: #9f7aea;
}

.type-training {
    color: #3182ce;
}

.type-support {
    color: #38a169;
}

.type-advocacy {
    color: #e53e3e;
}

.type-education {
    color: #dd6b20;
}

.type-health {
    color: #805ad5;
}

.program-body {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.program-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 0.85rem;
}

.meta-item i {
    color: #9f7aea;
}

.program-body h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #d55662;
}

.program-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.program-features {
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.feature-item i {
    color: #9f7aea;
    margin-top: 3px;
}

.program-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-primary {
    background: #9f7aea;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background: #805ad5;
}

.btn-outline {
    border: 2px solid #9f7aea;
    color: #9f7aea;
    padding: 8px 18px;
    background: transparent;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: #9f7aea;
    color: white;
}

.upcoming-section {
    background: white;
    padding: 60px 0;
}

.upcoming-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-title p {
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.event-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.event-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    flex: 1 1 calc(50% - 10px);
    min-width: 300px;
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.event-date {
    background: #9f7aea;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.event-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.event-info {
    flex-grow: 1;
}

.event-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #2c3e50;
}

.event-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.event-meta .meta-item {
    font-size: 0.85rem;
}

.event-description {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.testimonial-section {
    background: linear-gradient(135deg, #9f7aea 0%, #e53e3e 100%);
    color: white;
    padding: 60px 0;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-title {
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-title h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.testimonial-title p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.author-info p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.author strong {
    text-align: left;
}

@media (max-width: 1024px) {
    .program-card {
        flex: 1 1 calc(50% - 15px);
    }

    .testimonial-card {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .programs-hero h1 {
        font-size: 2rem;
    }

    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .program-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .event-card {
        flex: 1 1 100%;
    }

    .testimonial-card {
        flex: 1 1 100%;
    }

    .program-meta {
        flex-direction: column;
        gap: 8px;
    }

    .program-actions {
        flex-direction: column;
    }
}


.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .card-image img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .card-content h3 {
    color: #d55662;
}

.card-content p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #64748b;
}

.meta-left {
    display: flex;
    gap: 1rem;
}



.objectives ul li {
    margin: 0 0 0 1rem;
    text-align: left;
}

@media (max-width: 1400px) {
    .objectives {
        flex: 1 1 100%;
    }
}


.video {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.video iframe {
    width: 60%;
    height: 400px;
    border: none;
    border-radius: 12px;
    margin: 1rem auto;
}

@media (max-width: 768px) {
    .video iframe {
        width: 100%;
        height: 250px;
    }

}

/*Youtube video css*/
.video-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    margin-bottom: 2rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}