* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6B9B37;
    --secondary-color: #F28C38;
    --accent-color: #2D5D9B;
    --dark-color: #2C3E50;
    --light-color: #ECF0F1;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.donate-btn-nav {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(107, 155, 55, 0.3);
}

.donate-btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 155, 55, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    /* margin-top: 10px; */
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 20px;
    animation: slideUp 2s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title {
    font-size: 4rem;
    font-weight: 700;
    /* margin-bottom: 10px; */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-text {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.cta-btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(242, 140, 56, 0.4);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(242, 140, 56, 0.6);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 968px) {
    .nav-wrapper {
        position: relative;
    }
    
    .donate-btn-nav {
        position: absolute;
        right: 60px; /* Space for hamburger */
        top: 50%;
        transform: translateY(-50%);
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hamburger {
        position: absolute;
        right: 0;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 30px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 640px) {
    .donate-btn-nav {
        right: 55px;
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .donate-btn-nav i {
        display: none; /* Hide heart icon on very small screens */
    }
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* Milestones */
.milestones {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 80px 0;
    margin-top: -50px;
}

.milestone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.milestone-card {
    text-align: center;
    color: var(--white);
}

.milestone-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.milestone-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.milestone-text {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Section Styles */
section {
    /* padding: 80px 0; */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7F8C8D;
    /* margin-top: 20px; */
}

/* About Section */
.about {
    background: var(--light-color);
    /* margin-bottom: 50px; */
    padding: 30px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.video-container {
    position: relative;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Projects Section */
.projects,
.events,
.volunteers {
    /* margin-bottom: 50px; */
    padding: 30px 0 50px;
}


.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    
}

.project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 155, 55, 0.9), rgba(242, 140, 56, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay i {
    font-size: 4rem;
    color: var(--white);
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.project-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
}

.project-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Events Section */
.events {
    background: var(--light-color);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background: var(--white);
    padding: 10px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 10px;
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.event-date {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.date-day {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.date-month {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-details h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.event-details p {
    color: #666;
    margin-bottom: 8px;
}

.event-details i {
    color: var(--primary-color);
    margin-right: 4px;
}

/* Volunteers Section */
.volunteers-carousel {
    position: relative;
    padding: 0 60px;
}

.carousel-container {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.volunteer-card {
    min-width: calc((100% - 90px) / 4);
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    margin-bottom: 20px;
}

.volunteer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.volunteer-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.volunteer-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.volunteer-card h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin: 20px 0 10px;
}

.volunteer-card p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.volunteer-cta {
    text-align: center;
    margin-top: 50px;
}

.view-more-btn {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.view-more-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Donation CTA */
.donation-cta {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-btn-large {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.cta-btn-large i {
    margin-right: 10px;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 30px 0 10px;
}

.footer-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 10px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-col p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--white);
    margin: 5% auto;
    padding:10px 20px;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    position: relative;
    animation: slideDown 0.3s ease;
    max-height: 85vh;
    overflow-y: auto;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: 700;
    color: #999;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--dark-color);
}

.modal-content h2 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 2rem;
}

.modal-subtitle {
    color: #666;
    margin-bottom: 30px;
}

.donation-info {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.bank-details h3,
.qr-code h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.bank-info-card {
    background: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.bank-info-card p {
    margin-bottom: 12px;
    color: var(--dark-color);
}

.bank-info-card strong {
    color: var(--primary-color);
}

.qr-placeholder {
    text-align: center;
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
}

.qr-placeholder img {
    width: 220px;
    height: 220px;
    /* margin-bottom: 5px; */
}

.qr-placeholder p {
    color: #666;
}

.donation-note {
    background: #FFF3CD;
    border-left: 4px solid var(--secondary-color);
    padding: 20px;
    border-radius: 5px;
    display: flex;
    gap: 15px;
}

.donation-note i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.donation-note p {
    color: var(--dark-color);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 30px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-text {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .donation-info {
        grid-template-columns: 1fr;
    }

    .volunteer-card {
        min-width: calc((100% - 30px) / 2);
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .footer-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .slide-title {
        font-size: 2rem;
    }

    .milestone-grid {
        grid-template-columns: 1fr 1fr;
    }

    .volunteer-card {
        min-width: 100%;
    }

    .carousel-btn {
        display: none;
    }

    .volunteers-carousel {
        padding: 0;
    }

    .event-card {
        flex-direction: column;
    }

    .footer-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }
}

/* //////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////
//                                CONTACT PAGE                         /////////// 
//////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////// */


/* Contact Page Specific Styles */
        .contact-hero {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            padding: 150px 0 100px;
            text-align: center;
            color: var(--white);
            /* margin-top: 90px; */
        }

        .contact-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .contact-hero p {
            font-size: 1.3rem;
            opacity: 0.9;
        }

        .contact-main {
            padding: 80px 0;
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 50px;
            margin-bottom: 60px;
        }

        .contact-info-section {
            background: var(--white);
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }

        .contact-info-section h2 {
            color: var(--dark-color);
            margin-bottom: 30px;
            font-size: 1.8rem;
        }

        .contact-info-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            align-items: flex-start;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .contact-info-item-content h3 {
            color: var(--dark-color);
            margin-bottom: 8px;
            font-size: 1.2rem;
        }

        .contact-info-item-content p {
            color: #666;
            line-height: 1.6;
        }

        .contact-info-item-content a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }

        .contact-info-item-content a:hover {
            color: var(--secondary-color);
        }

        .contact-form-section {
            background: var(--white);
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }

        .contact-form-section h2 {
            color: var(--dark-color);
            margin-bottom: 30px;
            font-size: 1.8rem;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--dark-color);
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #E0E0E0;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 5px 20px rgba(107, 155, 55, 0.3);
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(107, 155, 55, 0.4);
        }

        .map-section {
            background: var(--light-color);
            padding: 30px 0;
        }

        .map-container {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 450px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .success-message {
            display: none;
            background: #D4EDDA;
            color: #155724;
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            border-left: 4px solid #28A745;
        }

        .success-message.show {
            display: block;
            animation: slideDown 0.3s ease;
        }

        @media (max-width: 968px) {
            .contact-hero h1 {
                font-size: 2rem;
            }

            .contact-wrapper {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }



/* //////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////
//                                ABOUT US PAGE                         /////////// 
//////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////// */

/* About Page Specific Styles */
        .about-hero {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('img/slider/slider1.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 180px 0 120px;
            text-align: center;
            color: var(--white);
            margin-top: 90px;
        }

        .about-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }

        .about-hero p {
            font-size: 1.4rem;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto;
        }

        .about-story {
            padding: 60px 0 0;
        }

        .story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 60px;
        }

        .story-text h2 {
            color: var(--dark-color);
            font-size: 2.5rem;
            margin-bottom: 25px;
        }

        .story-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }

        .story-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 400px;
            background-size: cover;
            background-position: center;
        }

        .mission-vision {
            background: var(--light-color);
            padding: 80px 0;
        }

        .mv-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 50px;
        }

        .mv-card {
            background: var(--white);
            padding: 50px 40px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
        }

        .mv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .mv-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 2rem;
            color: var(--white);
        }

        .mv-card h3 {
            font-size: 1.8rem;
            color: var(--dark-color);
            margin-bottom: 20px;
        }

        .mv-card p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #666;
        }

        .values-section {
            padding: 80px 0;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .value-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            border-top: 4px solid transparent;
        }

        .value-card:hover {
            border-top-color: var(--primary-color);
            transform: translateY(-5px);
        }

        .value-card i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .value-card h3 {
            font-size: 1.4rem;
            color: var(--dark-color);
            margin-bottom: 15px;
        }

        .value-card p {
            color: #666;
            line-height: 1.6;
        }

        .team-section {
            background: var(--light-color);
            padding: 80px 0;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 50px;
        }

        .team-member {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .team-photo {
            height: 400px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .team-photo::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40%;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
        }

        .team-info {
            padding: 25px;
            text-align: center;
        }

        .team-info h3 {
            font-size: 1.3rem;
            color: var(--dark-color);
            margin-bottom: 8px;
        }

        .team-info p {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 15px;
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .team-social a {
            width: 35px;
            height: 35px;
            background: var(--light-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-color);
            transition: var(--transition);
        }

        .team-social a:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        .impact-section {
            padding: 80px 0;
        }

        .impact-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .impact-stat {
            text-align: center;
            padding: 40px 20px;
            background: var(--white);
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .impact-stat:hover {
            transform: translateY(-5px);
        }

        .impact-stat i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .impact-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 10px;
        }

        .impact-label {
            color: #666;
            font-size: 1.1rem;
        }

        .timeline-section {
            background: var(--light-color);
            padding: 80px 0;
        }

        .timeline {
            position: relative;
            max-width: 900px;
            margin: 50px auto 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: var(--primary-color);
        }

        .timeline-item {
            margin-bottom: 50px;
            position: relative;
        }

        .timeline-content {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            width: calc(50% - 40px);
            position: relative;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: auto;
        }

        .timeline-year {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 1.2rem;
            z-index: 2;
            box-shadow: 0 0 0 10px var(--light-color);
        }

        .timeline-content h3 {
            color: var(--dark-color);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .timeline-content p {
            color: #666;
            line-height: 1.6;
        }

        .cta-section {
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
            padding: 80px 0;
            text-align: center;
            color: var(--white);
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .cta-button-primary {
            background: var(--white);
            color: var(--primary-color);
            border: none;
        }

        .cta-button-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }

        .cta-button-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .cta-button-secondary:hover {
            background: var(--white);
            color: var(--primary-color);
        }

        @media (max-width: 968px) {
            .about-hero h1 {
                font-size: 2.5rem;
            }

            .story-content {
                grid-template-columns: 1fr;
            }

            .mv-grid {
                grid-template-columns: 1fr;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .impact-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .timeline::before {
                left: 30px;
            }

            .timeline-content {
                width: calc(100% - 80px);
                margin-left: 80px !important;
            }

            .timeline-year {
                left: 30px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-button {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }

        @media (max-width: 640px) {
            .about-hero h1 {
                font-size: 2rem;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .impact-stats {
                grid-template-columns: 1fr;
            }
        }



        /* //////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////
//                                ABOUT US PAGE                         /////////// 
//////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////// */

/* Projects Page Specific Styles */
        .projects-hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('img/projects/back-2-school.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 180px 0 120px;
            text-align: center;
            color: var(--white);
            margin-top: 90px;
        }

        .projects-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }

        .projects-hero p {
            font-size: 1.4rem;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto;
        }

        .projects-intro {
            padding: 80px 0 60px;
            text-align: center;
        }

        .intro-text {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.2rem;
            line-height: 1.8;
            color: #555;
        }

        .project-detail-section {
            padding: 80px 0;
        }

        .project-detail-section:nth-child(even) {
            background: var(--light-color);
        }

        .project-detail {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 60px;
        }

        .project-detail:nth-child(even) .project-detail-image {
            order: 2;
        }

        .project-detail-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 750px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .project-detail-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40%;
            background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
        }

        .project-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            z-index: 2;
        }

        .project-detail-content h2 {
            color: var(--dark-color);
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .project-detail-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }

        .project-features {
            margin: 30px 0;
        }

        .project-features h3 {
            color: var(--dark-color);
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .features-list {
            list-style: none;
        }

        .features-list li {
            padding: 12px 0;
            color: #666;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .features-list li i {
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        .project-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 30px 0;
        }

        .stat-box {
            background: var(--white);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .project-detail-section:nth-child(even) .stat-box {
            background: var(--light-color);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
            margin-bottom: 5px;
        }

        .stat-label {
            color: #666;
            font-size: 0.9rem;
        }

        .project-cta-btn {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 5px 20px rgba(107, 155, 55, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .project-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(107, 155, 55, 0.4);
        }

        .impact-showcase {
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
            padding: 80px 0;
            color: var(--white);
        }

        .impact-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-top: 50px;
        }

        .impact-card {
            text-align: center;
        }

        .impact-card i {
            font-size: 3.5rem;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .impact-card h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .impact-card p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .testimonials-section {
            padding: 80px 0;
            background: var(--light-color);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .testimonial-card {
            background: var(--white);
            padding: 35px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            position: relative;
        }

        .quote-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 3rem;
            color: var(--primary-color);
            opacity: 0.2;
        }

        .testimonial-text {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #555;
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.3rem;
            font-weight: 700;
        }

        .author-info h4 {
            color: var(--dark-color);
            font-size: 1.1rem;
            margin-bottom: 3px;
        }

        .author-info p {
            color: #999;
            font-size: 0.9rem;
        }

        .get-involved-section {
            padding: 80px 0;
            text-align: center;
        }

        .involvement-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 50px;
        }

        .involvement-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .involvement-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .involvement-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: var(--white);
        }

        .involvement-card h3 {
            color: var(--dark-color);
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .involvement-card p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .involvement-btn {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            padding: 12px 30px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
        }

        .involvement-btn:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        @media (max-width: 968px) {
            .projects-hero h1 {
                font-size: 2.5rem;
            }

            .project-detail {
                grid-template-columns: 1fr;
            }

            .project-detail:nth-child(even) .project-detail-image {
                order: 0;
            }

            .project-stats {
                grid-template-columns: 1fr;
            }

            .impact-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .involvement-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            .projects-hero h1 {
                font-size: 2rem;
            }

            .impact-grid {
                grid-template-columns: 1fr;
            }
        }


/* ///////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////
//                                EVENTS PAGE                           ////////// 
//////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////// */
 /* Events Page Specific Styles */
        .events-hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('img/slider/slider3.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 180px 0 120px;
            text-align: center;
            color: var(--white);
            margin-top: 90px;
        }

        .events-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }

        .events-hero p {
            font-size: 1.4rem;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto;
        }

        .events-filter {
            background: var(--white);
            padding: 30px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 90px;
            z-index: 100;
        }

        .filter-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 12px 30px;
            border: 2px solid var(--primary-color);
            background: transparent;
            color: var(--primary-color);
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        .upcoming-events {
            padding: 80px 0;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .event-card-detailed {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .event-card-detailed:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .event-image {
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .event-date-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 15px 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .event-date-badge .day {
            font-size: 2rem;
            font-weight: 700;
            display: block;
            line-height: 1;
        }

        .event-date-badge .month {
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            margin-top: 5px;
        }

        .event-category {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.95);
            color: var(--dark-color);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .event-content {
            padding: 30px;
        }

        .event-content h3 {
            color: var(--dark-color);
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .event-meta {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 20px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #666;
            font-size: 0.95rem;
        }

        .meta-item i {
            color: var(--primary-color);
            width: 20px;
        }

        .event-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .event-actions {
            display: flex;
            gap: 10px;
        }

        .event-btn {
            flex: 1;
            padding: 12px 20px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            text-decoration: none;
            display: inline-block;
        }

        .event-btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            border: none;
        }

        .event-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(107, 155, 55, 0.3);
        }

        .event-btn-secondary {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .event-btn-secondary:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        .featured-event {
            background: var(--light-color);
            padding: 30px 0;
        }

        .featured-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .featured-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 500px;
            background-size: cover;
            background-position: center;
        }

        .featured-details h2 {
            color: var(--dark-color);
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .featured-details p {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .featured-meta {
            background: var(--white);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .featured-meta-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }

        .featured-meta-item:last-child {
            border-bottom: none;
        }

        .featured-meta-item i {
            color: var(--primary-color);
            font-size: 1.3rem;
            width: 30px;
        }

        .past-events {
            padding: 80px 0;
        }

        .past-events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .past-event-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .past-event-card:hover {
            transform: translateY(-5px);
        }

        .past-event-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .past-event-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 15px;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: var(--white);
        }

        .past-event-overlay h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .past-event-overlay p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .past-event-info {
            padding: 20px;
            text-align: center;
        }

        .past-event-stats {
            display: flex;
            justify-content: space-around;
            margin-top: 15px;
        }

        .past-stat {
            text-align: center;
        }

        .past-stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
        }

        .past-stat-label {
            font-size: 0.85rem;
            color: #666;
        }

        .calendar-section {
            background: var(--light-color);
            padding: 80px 0;
        }

        .calendar-container {
            background: var(--white);
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--shadow);
            max-width: 900px;
            margin: 50px auto 0;
        }

        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .calendar-header h3 {
            color: var(--dark-color);
            font-size: 1.8rem;
        }

        .calendar-nav {
            display: flex;
            gap: 10px;
        }

        .calendar-nav button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid var(--primary-color);
            background: transparent;
            color: var(--primary-color);
            cursor: pointer;
            transition: var(--transition);
        }

        .calendar-nav button:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 10px;
        }

        .calendar-day-header {
            text-align: center;
            font-weight: 600;
            color: var(--dark-color);
            padding: 10px;
        }

        .calendar-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
        }

        .calendar-day:hover {
            background: var(--light-color);
        }

        .calendar-day.has-event {
            background: var(--primary-color);
            color: var(--white);
            font-weight: 600;
        }

        .calendar-day.has-event::after {
            content: '';
            position: absolute;
            bottom: 5px;
            width: 6px;
            height: 6px;
            background: var(--secondary-color);
            border-radius: 50%;
        }

        .newsletter-section {
            padding: 80px 0;
            text-align: center;
        }

        .newsletter-form {
            max-width: 600px;
            margin: 40px auto 0;
            display: flex;
            gap: 15px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px 25px;
            border: 2px solid #E0E0E0;
            border-radius: 30px;
            font-size: 1rem;
            transition: var(--transition);
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .newsletter-form button {
            padding: 15px 35px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(107, 155, 55, 0.3);
        }

        /* Registration Modal */
        .register-modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
        }

        .register-modal-content {
            background: var(--white);
            margin: 5% auto;
            padding: 40px;
            border-radius: 20px;
            width: 90%;
            max-width: 600px;
            position: relative;
            max-height: 85vh;
            overflow-y: auto;
        }

        .register-modal-close {
            position: absolute;
            right: 20px;
            top: 20px;
            font-size: 2rem;
            font-weight: 700;
            color: #999;
            cursor: pointer;
            transition: var(--transition);
        }

        .register-modal-close:hover {
            color: var(--dark-color);
        }

        .register-modal h2 {
            color: var(--dark-color);
            margin-bottom: 10px;
            font-size: 2rem;
        }

        .register-modal-subtitle {
            color: #666;
            margin-bottom: 30px;
        }

        .register-form-group {
            margin-bottom: 20px;
        }

        .register-form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--dark-color);
            font-weight: 600;
        }

        .register-form-group input,
        .register-form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #E0E0E0;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }

        .register-form-group input:focus,
        .register-form-group select:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .register-submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .register-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(107, 155, 55, 0.3);
        }

        .register-success {
            display: none;
            background: #D4EDDA;
            color: #155724;
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            border-left: 4px solid #28A745;
        }

        @media (max-width: 968px) {
            .events-hero h1 {
                font-size: 2.5rem;
            }

            .events-grid {
                grid-template-columns: 1fr;
            }

            .featured-content {
                grid-template-columns: 1fr;
            }

            .past-events-grid {
                grid-template-columns: 1fr;
            }

            .newsletter-form {
                flex-direction: column;
            }
        }

        @media (max-width: 640px) {
            .events-hero h1 {
                font-size: 2rem;
            }

            .filter-buttons {
                flex-direction: column;
            }

            .filter-btn {
                width: 100%;
            }

            .event-actions {
                flex-direction: column;
            }
        }


        .nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}



/* //////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////
////////////////////////          GALLERY            ////////////////////
/////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////*/
.gallery-hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('img/slider/slider1.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 180px 0 120px;
            text-align: center;
            color: var(--white);
            margin-top: 90px;
        }

        .gallery-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }

        .gallery-hero p {
            font-size: 1.4rem;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto;
        }

        .gallery-filters {
            background: var(--white);
            padding: 30px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 90px;
            z-index: 100;
        }

        .filter-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 12px 30px;
            border: 2px solid var(--primary-color);
            background: transparent;
            color: var(--primary-color);
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        .gallery-section {
            padding: 20px 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 50px;
        }

        .gallery-item {
            position: relative;
            height: 300px;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .gallery-item.hidden {
            display: none;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 25px;
            opacity: 0;
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay h3 {
            color: var(--white);
            font-size: 1.2rem;
            margin-bottom: 8px;
        }

        .gallery-overlay p {
            color: var(--white);
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .gallery-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 1.5rem;
            opacity: 0;
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-icon {
            opacity: 1;
        }

        .load-more-container {
            text-align: center;
            margin-top: 50px;
        }

        .load-more-btn {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            border: none;
            padding: 15px 50px;
            font-size: 1.1rem;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 5px 20px rgba(107, 155, 55, 0.3);
        }

        .load-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(107, 155, 55, 0.4);
        }

        .load-more-btn.hidden {
            display: none;
        }

        /* Modal Styles */
        .modal-gallery {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(5px);
        }

        .modal-gallery-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            margin: auto;
            top: 50%;
            transform: translateY(-50%);
        }

        .modal-gallery-image {
            width: 100%;
            height: auto;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 10px;
        }

        .modal-gallery-close {
            position: absolute;
            top: -50px;
            right: 0;
            font-size: 3rem;
            font-weight: 700;
            color: var(--white);
            cursor: pointer;
            transition: var(--transition);
        }

        .modal-gallery-close:hover {
            color: var(--secondary-color);
        }

        .modal-gallery-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }

        .modal-gallery-nav:hover {
            background: rgba(255, 255, 255, 0.4);
        }

        .modal-prev {
            left: -80px;
        }

        .modal-next {
            right: -80px;
        }

        .modal-caption {
            background: rgba(0, 0, 0, 0.8);
            color: var(--white);
            padding: 20px;
            text-align: center;
            border-radius: 10px;
            margin-top: 20px;
        }

        .modal-caption h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .modal-caption p {
            opacity: 0.9;
        }

        .modal-counter {
            position: absolute;
            top: -50px;
            left: 0;
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 600;
        }

        @media (max-width: 968px) {
            .gallery-hero h1 {
                font-size: 2.5rem;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .gallery-item {
                height: 250px;
            }

            .modal-gallery-nav {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .modal-prev {
                left: 10px;
            }

            .modal-next {
                right: 10px;
            }
        }

        @media (max-width: 640px) {
            .gallery-hero h1 {
                font-size: 2rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .gallery-item {
                height: 300px;
            }

            .filter-buttons {
                flex-direction: column;
            }

            .filter-btn {
                width: 100%;
            }
        }

        /* ///////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////
////////////////////////          BLOG PAGE            //////////////////////////
//////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////// */

.blog-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('img/slider/slider1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 180px 0 120px;
    text-align: center;
    color: var(--white);
    margin-top: 90px;
}

.blog-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.blog-hero p {
    font-size: 1.4rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.blog-filters {
    background: var(--white);
    padding: 30px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 90px;
    z-index: 100;
}

.featured-post {
    padding: 80px 0;
    background: var(--light-color);
}

.featured-post-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-post-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.featured-post-details {
    position: relative;
}

.post-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.post-meta span {
    color: #666;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-meta i {
    color: var(--primary-color);
}

.featured-post-details h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-post-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(107, 155, 55, 0.3);
}

.read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(107, 155, 55, 0.4);
}

.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card.hidden {
    display: none;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-content {
    padding: 30px;
}

.blog-category {
    display: inline-block;
    background: var(--light-color);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.blog-meta span {
    color: #999;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.blog-content h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.blog-link:hover {
    gap: 12px;
}

.blog-link i {
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .blog-hero h1 {
        font-size: 2.5rem;
    }

    .featured-post-content {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .blog-hero h1 {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }
}


/* ///////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////
////////////////////    BLOG DETAIL PAGE STYLES    ///////////////////////////////
//////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////// */

.breadcrumb-section {
    background: var(--light-color);
    padding: 15px 0;
    margin-top: 90px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb .separator {
    color: #999;
}

.breadcrumb .current {
    color: #666;
}

.post-header {
    padding: 60px 0 40px;
}

.post-header-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.post-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.post-header h1 {
    font-size: 2.1rem;
    color: var(--dark-color);
    line-height: 1.3;
    margin-bottom: 30px;
}

.post-meta-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.author-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.author-name {
    font-weight: 600;
    color: var(--dark-color);
}

.post-date {
    color: #666;
    font-size: 0.9rem;
}

.post-stats {
    display: flex;
    gap: 20px;
}

.post-stats span {
    color: #666;
    font-size: 0.95rem;
}

.post-stats i {
    color: var(--primary-color);
    margin-right: 5px;
}

.post-featured-image {
    padding: 0 0 60px;
}

.featured-img {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.post-content-section {
    padding: 0 0 80px;
}

.post-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.post-main-content {
    background: var(--white);
}

.post-intro {
    margin-bottom: 40px;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    font-weight: 400;
}

.post-body h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin: 40px 0 20px;
}

.post-body p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.post-quote {
    background: var(--light-color);
    border-left: 5px solid var(--primary-color);
    padding: 30px 40px;
    margin: 40px 0;
    position: relative;
}

.post-quote i {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 20px;
}

.post-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark-color);
    margin: 0 0 15px 30px;
}

.post-quote cite {
    font-style: normal;
    color: var(--primary-color);
    font-weight: 600;
    margin-left: 30px;
}

.content-list {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.content-list li {
    padding: 12px 0;
    color: #666;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.6;
}

.content-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.post-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.grid-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stats-highlight {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
    padding: 40px;
    background: var(--light-color);
    border-radius: 15px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1rem;
}

.story-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.story-card h3 {
    color: var(--dark-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.story-card p {
    color: #666;
    line-height: 1.8;
}

.callout-box {
    background: linear-gradient(135deg, rgba(107, 155, 55, 0.1), rgba(242, 140, 56, 0.1));
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    margin: 40px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.callout-box i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.callout-box h3 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.callout-box p {
    color: #666;
    line-height: 1.7;
}

.impact-quote {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 15px;
    margin: 50px 0;
}

.impact-quote h3 {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.5;
}

.impact-quote p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    margin-top: 50px;
    border-top: 2px solid var(--light-color);
    border-bottom: 2px solid var(--light-color);
    flex-wrap: wrap;
    gap: 20px;
}

.post-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tag-label {
    font-weight: 600;
    color: var(--dark-color);
}

.post-tag {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.post-tag:hover {
    background: var(--primary-color);
    color: var(--white);
}

.post-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-label {
    font-weight: 600;
    color: var(--dark-color);
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    color: var(--white);
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.post-cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    margin: 50px 0;
}

.post-cta-box h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.post-cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.author-bio {
    display: flex;
    gap: 25px;
    background: var(--light-color);
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
}

.author-bio-avatar {
    flex-shrink: 0;
}

.author-bio-avatar i {
    font-size: 5rem;
    color: var(--primary-color);
}

.author-bio-content h4 {
    color: #999;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.author-bio-content h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.author-bio-content p {
    color: #666;
    line-height: 1.8;
}

/* Sidebar Styles */
.post-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.widget-title {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-color);
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.search-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-form button {
    width: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.search-form button:hover {
    background: var(--secondary-color);
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    color: #666;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    transition: var(--transition);
}

.category-list li a:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.category-list li a span {
    color: #999;
    font-size: 0.9rem;
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
}

.recent-post-img {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.recent-post-content h4 {
    margin-bottom: 8px;
}

.recent-post-content h4 a {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: var(--transition);
}

.recent-post-content h4 a:hover {
    color: var(--primary-color);
}

.recent-date {
    color: #999;
    font-size: 0.85rem;
}

.recent-date i {
    margin-right: 5px;
}

.newsletter-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
}

.newsletter-widget .widget-title {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.newsletter-widget p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 20px;
}

.sidebar-newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 10px;
}

.sidebar-newsletter-form button {
    width: 100%;
    padding: 12px;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-newsletter-form button:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.tag-cloud a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Responsive Styles for Blog Detail */
@media (max-width: 968px) {
    .post-layout {
        grid-template-columns: 1fr;
    }

    .post-sidebar {
        position: static;
    }

    .post-meta-info {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .stats-highlight {
        grid-template-columns: repeat(2, 1fr);
    }

    .post-image-grid {
        grid-template-columns: 1fr;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .author-bio-avatar {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .post-header h1 {
        font-size: 1.8rem;
    }

    .stats-highlight {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .post-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .callout-box {
        flex-direction: column;
    }

    .post-cta-box {
        padding: 30px 20px;
    }
}