/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background-color: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    object-fit: contain;
}

.logo-placeholder {
    width: 50px;
    height: 50px;
}

.logo-circle {
    width: 5%;
    height: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #f97316 100%);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-book {
    position: absolute;
    bottom: 8px;
    width: 20px;
    height: 12px;
    background: white;
    border-radius: 2px;
}

.logo-book::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 8px;
    background: #2563eb;
}

.logo-person {
    position: absolute;
    top: 12px;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50% 50% 0 0;
}

.logo-person::after {
    content: '';
    position: absolute;
    top: 6px;
    left: -2px;
    width: 12px;
    height: 8px;
    background: white;
    border-radius: 0 0 8px 8px;
}

.logo-sun {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 3px;
    height: 3px;
    background: #fbbf24;
    border-radius: 50%;
}

.logo-sun::before,
.logo-sun::after {
    content: '';
    position: absolute;
    background: #fbbf24;
}

.logo-sun::before {
    top: -2px;
    left: 1px;
    width: 1px;
    height: 4px;
}

.logo-sun::after {
    top: 1px;
    left: -2px;
    width: 4px;
    height: 1px;
}

.logo-text h2 {
    color: #2563eb;
    margin-bottom: 0;
    font-size: 1.8rem;
}

.logo-text span {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section with Slideshow */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
}

/* Slideshow Background */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #f8fafc;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.slide.active {
    opacity: 1;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
    padding: 120px 20px 80px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    position: relative;
}

.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.stat p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Slideshow Navigation */
.slideshow-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active,
.nav-dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Slideshow Arrows */
.slideshow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 4;
    backdrop-filter: blur(10px);
}

.slideshow-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slideshow-arrow.prev {
    left: 30px;
}

.slideshow-arrow.next {
    right: 30px;
}

.slideshow-arrow i {
    font-size: 1.2rem;
}

/* Mobile Slideshow Controls */
@media screen and (max-width: 768px) {
    .slideshow-nav {
        bottom: 20px;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
        gap: 8px;
    }
    
    .slideshow-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slideshow-arrow.prev {
        left: 15px;
    }
    
    .slideshow-arrow.next {
        right: 15px;
    }
    
    .slideshow-arrow i {
        font-size: 1rem;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f9fafb;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-info {
    display: grid;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.about-details {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.detail-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-item h4 {
    color: #374151;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.detail-item i {
    color: #2563eb;
}

/* Team Section */
.team-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e7eb;
}

.team-title {
    text-align: center;
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 2.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.team-member {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    margin-bottom: 1rem;
}

.member-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2563eb;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.member-info p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0;
    font-weight: 500;
}

/* Objectives Section */
.objectives {
    padding: 80px 0;
    background: white;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.objective-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #2563eb;
    transition: all 0.3s ease;
    height: 100%;
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

.objective-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.objective-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.objective-card ul {
    list-style: none;
    padding-left: 0;
}

.objective-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #374151;
}

.objective-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Values Section */
.values {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.values .section-header h2,
.values .section-header p {
    color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #f97316;
}

.value-item h3 {
    margin-bottom: 1rem;
    color: white;
}

.value-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f9fafb;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #2563eb;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #6b7280;
    margin-bottom: 0;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }
    
    .logo-container {
        gap: 0.5rem;
    }
    
    .logo-image {
        width: 30px;
        height: 30px;
    }
    
    .logo-text h2 {
        font-size: 1.5rem;
    }
    
    .logo-text span {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .objective-card,
    .info-card,
    .contact-form,
    .team-member {
        padding: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .member-image img {
        width: 80px;
        height: 80px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Activities Section - Hope in Bloom */
.activities {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef7f0 0%, #fff1e9 100%);
    position: relative;
    overflow: hidden;
}

.activities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="flowers" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(255,192,203,0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23flowers)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.activities .container {
    position: relative;
    z-index: 2;
}

.activities .section-header h2 {
    background: linear-gradient(135deg, #e91e63 0%, #f06292 50%, #ffb74d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

.activities .section-header p {
    color: #8d6e63;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
}

/* Image Gallery */
.activities-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
    background: #ffffff;
    padding: 10px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.3);
}

.activity-image {
    width: 100%;
    height: 280px;
    object-fit: contain;
    background: #f8fafc;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-item:hover .activity-image {
    transform: scale(1.1);
}

/* Story Content */
.activities-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.story-text {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(233, 30, 99, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.story-text p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.story-text p:last-child {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Program Highlights */
.program-highlights {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(233, 30, 99, 0.15);
    backdrop-filter: blur(10px);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.program-highlights h3 {
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* Social Hashtags */
.social-hashtags {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.social-hashtags h4 {
    color: #2d3748;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.hashtag {
    background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.hashtag:hover {
    transform: scale(1.1);
}

/* Mobile Responsiveness for Activities */
@media screen and (max-width: 768px) {
    .activities .section-header h2 {
        font-size: 2.2rem;
    }
    
    .activities-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item {
        margin: 0 1rem;
    }
    
    .activities-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-text {
        padding: 2rem;
    }
    
    .story-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .program-highlights {
        position: static;
    }
    
    .highlight-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hashtags {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .activities .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .activity-image {
        height: 220px;
    }
    
    .story-text {
        padding: 1.5rem;
    }
    
    .story-text p {
        font-size: 0.95rem;
    }
    
    .program-highlights {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* Program Sections */
.program-section {
    margin-bottom: 4rem;
}

.program-header {
    text-align: center;
    margin-bottom: 2rem;
}

.program-header h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.current-program .program-header h3 {
    background: linear-gradient(135deg, #ffa726 0%, #ff7043 50%, #ffb74d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.past-program .program-header h3 {
    background: linear-gradient(135deg, #e91e63 0%, #f06292 50%, #ffb74d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.program-date {
    color: #6b7280;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.current-program .program-date {
    color: #d97706;
    font-weight: 600;
}

/* Program Divider */
.program-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    margin: 4rem 0;
    position: relative;
}

.program-divider::before {
    content: '◆';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: white;
    color: #9ca3af;
    padding: 0 1rem;
    font-size: 1.2rem;
}

/* Current Program Specific Styling */
.current-program {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, #fef7f0 0%, #fff8f1 100%);
    border-radius: 25px;
    border: 2px solid #fed7aa;
    box-shadow: 0 8px 32px rgba(255, 167, 38, 0.15);
}

.current-program::before {
    content: 'CURRENT';
    position: absolute;
    top: -10px;
    right: 2rem;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.current-program .story-text {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.current-program .program-highlights {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.current-program .stat-item {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
}

.current-program .stat-number {
    color: #d97706;
}

.current-program .hashtag {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

/* Past Program Specific Styling */
.past-program {
    opacity: 0.95;
}

.past-program .program-header {
    position: relative;
}

.past-program .program-header::after {
    content: 'PAST PROGRAM';
    position: absolute;
    top: -15px;
    right: 0;
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Video Section Styles */
.video-section {
    margin-bottom: 3rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: #000;
}

.activity-video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
    border-radius: 15px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 15px;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: all;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.play-button:hover {
    background: #2563eb;
    color: white;
    transform: scale(1.1);
    border-color: #2563eb;
}

.play-button i {
    margin-left: 4px; /* Adjust for visual centering of play icon */
}

/* Program Goals Styling */
.program-goals {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.program-goals h5 {
    color: #2d3748;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.goals-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.goals-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 10px;
    color: #1f2937;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid #2563eb;
}

.goals-list li:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.goals-list li i {
    color: #2563eb;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Enhanced Current Program Styling for Video Section */
.current-program .video-section {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(249, 115, 22, 0.2);
}

.current-program .goals-list li {
    background: linear-gradient(135deg, #fef7f0 0%, #fed7aa 100%);
    border-left-color: #f97316;
}

.current-program .goals-list li:hover {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
}

.current-program .goals-list li i {
    color: #f97316;
}

/* Video Responsive Design */
@media screen and (max-width: 1024px) {
    .video-container {
        max-width: 90%;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 768px) {
    .video-section {
        padding: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .video-container {
        max-width: 100%;
        border-radius: 12px;
    }
    
    .activity-video {
        border-radius: 12px;
    }
    
    .video-overlay {
        border-radius: 12px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .goals-list li {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .goals-list li i {
        font-size: 1rem;
        width: 18px;
    }
}

@media screen and (max-width: 480px) {
    .video-section {
        margin-bottom: 1.5rem;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .goals-list li {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    
    .program-goals h5 {
        font-size: 1rem;
    }
}

/* Mobile Responsiveness for Program Sections */
@media screen and (max-width: 768px) {
    .program-header h3 {
        font-size: 1.8rem;
    }
    
    .current-program {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .current-program::before {
        right: 1rem;
        font-size: 0.7rem;
        padding: 0.25rem 0.8rem;
    }
    
    .past-program .program-header::after {
        font-size: 0.6rem;
        padding: 0.15rem 0.6rem;
    }
}

@media screen and (max-width: 480px) {
    .program-header h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .current-program {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .program-divider {
        margin: 3rem 0;
    }
}
