/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2f65a7;
    --primary-dark: #3A0066;
    --primary-light: #7B52AB;
    --secondary-color: #FFD700;
    --accent-color: #228B22;
    --text-dark: #2D3748;
    --text-light: #718096;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
}

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

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.social-links a {
    color: white;
    margin-left: 15px;
    font-size: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Main Navigation */
.main-nav {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-icon {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
}

.logo-text h1 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.logo-text p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    padding: 10px 15px;
    display: block;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 4px;
}

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

.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--bg-white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    border-radius: 8px;
    overflow: hidden;
    top: 100%;
    left: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

.dropdown-content a {
    padding: 12px 20px;
    border-bottom: 1px solid var(--bg-light);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Buttons */
.donate-btn, .membership-btn {
    padding: 10px 25px !important;
    border-radius: 30px;
    margin-left: 10px;
    font-weight: 600;
}

.donate-btn {
    background-color: var(--accent-color);
    color: white !important;
}

.donate-btn:hover {
    background-color: #1C7A1C;
    color: white !important;
}

.membership-btn {
    background-color: var(--secondary-color);
    color: var(--text-dark) !important;
}

.membership-btn:hover {
    background-color: #E6C300;
    color: var(--text-dark) !important;
}

/* Mobile Menu Button (Hidden on Desktop) */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 21, 128), rgba(58, 0, 102, 0.9)), 
                url('../images/hero-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.theme-statement {
    font-style: italic;
    font-size: 1.1rem;
    margin: 30px 0;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Stats Section */
.stats-section {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.stat-card {
    text-align: center;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Featured Programs */
.programs-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.program-image {
    height: 200px;
    overflow: hidden;
}

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

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

.program-content {
    padding: 25px;
}

.program-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.program-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.program-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.program-link:hover {
    gap: 10px;
}

/* Upcoming Events */
.events-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.event-card {
    border: 1px solid var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.event-card:hover {
    box-shadow: var(--shadow-lg);
}

.event-date {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: center;
}

.event-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    font-size: 1rem;
    text-transform: uppercase;
}

.event-content {
    padding: 20px;
}

.event-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.event-location {
    color: var(--text-light);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-excerpt {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.event-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Gallery Preview */
.gallery-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(75, 0, 130, 0.8));
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
}

.newsletter-form button {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border: none;
    border-radius: 30px;
    padding: 0 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: white;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-column h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #CBD5E0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid #4A5568;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal a {
    color: #CBD5E0;
    text-decoration: none;
    margin: 0 10px;
}

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

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* Home Slider Styles */
.home-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
    margin-bottom: 50px;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(173, 216, 230, 0.85) 0%, rgba(173, 216, 230, 0.7) 50%, rgba(173, 216, 230, 0.3) 100%);
    display: flex;
    align-items: center;
}

.slide-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    color: white;
    width: 100%;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 1s ease-out;
}

.slide-subtitle {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-weight: 500;
    animation: slideInLeft 1.2s ease-out;
}

.slide-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: slideInLeft 1.4s ease-out;
}

.slide-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: slideInLeft 1.6s ease-out;
    border: 2px solid var(--secondary-color);
}

.slide-button:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--secondary-color);
    transform: scale(1.3);
}

.slider-arrows {
    display: flex;
    gap: 20px;
    position: absolute;
    top: 50%;
    width: 100%;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-arrow {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.slider-arrow:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Programs Cards Section */
.programs-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.program-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(75, 0, 130, 0.15);
}

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

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

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

.program-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.program-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.program-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.program-description {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.program-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--bg-light);
}

.program-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-active {
    background-color: #d4edda;
    color: #155724;
}

.status-upcoming {
    background-color: #fff3cd;
    color: #856404;
}

.program-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.program-link:hover {
    gap: 12px;
}

/* Featured Programs Section */
.featured-programs {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.featured-programs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') center/cover;
    opacity: 0.1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-header.white {
    color: white;
}

.section-header.white p {
    color: rgba(255, 255, 255, 0.9);
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: white;
}

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

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    margin: 20px;
    position: relative;
    border: 1px solid var(--bg-light);
}

.testimonial-quote {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-light);
}

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

.author-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.star-rating {
    color: var(--secondary-color);
    margin-top: 5px;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

.partner-logo {
    background: white;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: all 0.3s ease;
    border: 1px solid var(--bg-light);
}

.partner-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 21, 128), rgba(0, 21, 128)), url('../images/cta-bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.btn-cta-primary:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: pulse 1s infinite;
}

.btn-cta-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Quick Stats */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}


/* Prevent body scrolling when menu is open */
.no-scroll {
    overflow: hidden !important;
    height: 100vh;
    position: fixed;
    width: 100%;
}

/* Gallery Modal Styles */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gallery-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.close-modal:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.modal-image {
    width: 100%;
    height: 60vh;
    object-fit: cover;
}

.image-info {
    padding: 20px;
}

.image-title {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.image-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Mobile Menu Button - Always hidden on desktop, shown on mobile via media query */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 10px;
    margin-left: 15px;
    transition: var(--transition);
    z-index: 100;
}

.mobile-menu-btn:hover {
    color: var(--primary-dark);
    transform: scale(1.1);
}

/* No Scroll class for when menu is open */
.no-scroll {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}



/* About Page Specific Styles */

/* Page Hero */
.page-hero {
    background: linear-gradient(rgba(0, 21, 128), rgba(58, 0, 102, 0.9)), 
                url('../images/about/hero-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-hero-subtitle {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: 500;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: white;
    text-decoration: underline;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* Section Padding */
.section-padding {
    padding: 100px 0;
}

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

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 20px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* Mission Grid */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.mission-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-statement {
    margin-bottom: 40px;
}

.mission-statement p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Strategic Framework */
.framework-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.framework-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.framework-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.framework-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.framework-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(75, 0, 130, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.value-item:hover {
    background: rgba(75, 0, 130, 0.1);
    transform: translateX(5px);
}

.value-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.value-item span {
    font-weight: 500;
    color: var(--primary-color);
}

/* Mission Image */
.mission-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

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

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 21, 128));
    padding: 25px;
    color: white;
}

.image-caption p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Governance */
.governance-content {
    display: grid;
    gap: 60px;
}

.governance-model h3,
.leadership-structure h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.governance-model p,
.leadership-structure p {
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 700px;
}

.governance-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.governance-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

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

.card-header {
    padding: 25px;
    color: white;
}

.card-header.category-a {
    background: linear-gradient(135deg, var(--primary-color), #5a2d91);
}

.card-header.category-b {
    background: linear-gradient(135deg, var(--accent-color), #34a853);
}

.card-header h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.category-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.card-body {
    padding: 25px;
}

.card-body p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Leadership Support */
.leadership-support {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.support-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.support-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.support-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.support-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

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

.team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(75, 0, 130, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.team-role {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.team-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-bio {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.partner-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.partner-logo {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: var(--bg-light);
}

.partner-logo img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

.partner-placeholder {
    text-align: center;
    color: var(--primary-color);
}

.partner-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.partner-placeholder h4 {
    font-size: 1.2rem;
    margin: 0;
}

.partner-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.partner-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.partner-type {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.partner-description {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.partner-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.partner-link:hover {
    gap: 12px;
    color: var(--primary-color);
}

.partner-cta {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

/* Impact Stats */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    text-align: center;
}

.impact-stat {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.impact-stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Impact Testimonials */
.impact-testimonials {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
}

.testimonial-item {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.author-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.author-role {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 21, 128), rgba(0, 21, 128)), 
                url('../images/cta-bg-2.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.btn-cta-primary {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.btn-cta-primary:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-50 {
    margin-top: 50px;
}




/* About Page Mobile Styles */
@media (max-width: 1024px) {
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .governance-cards {
        grid-template-columns: 1fr;
    }
    
    .leadership-support {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .mission-grid {
        gap: 30px;
    }
    
    .framework-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .framework-icon {
        margin: 0 auto;
    }
    
    .values-list {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-image {
        height: 250px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .impact-stat {
        padding: 25px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .testimonial-item {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .page-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .governance-cards {
        gap: 20px;
    }
    
    .governance-card {
        margin-bottom: 20px;
    }
    
    .card-header,
    .card-body {
        padding: 20px;
    }
    
    .support-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .support-icon {
        margin: 0 auto;
    }
    
    .team-info h4 {
        font-size: 1.2rem;
    }
    
    .partner-info {
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}




/* PROGRAMS PAGE STYLES */

/* Programs Hero */
.programs-hero {
    background: linear-gradient(rgba(0, 21, 128), rgba(58, 0, 102, 0.9)), 
                url('../images/programs/hero-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.programs-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.programs-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.programs-hero .hero-subtitle {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: 500;
}

.programs-hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 50px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.hero-stats .stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Featured Programs Grid */
.featured-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.featured-program-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
}

.featured-program-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(75, 0, 130, 0.15);
}

.program-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

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

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

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

.program-category {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.category-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-business { background: #E3F2FD; color: #1565C0; }
.category-settlement { background: #E8F5E9; color: #2E7D32; }
.category-culture { background: #FFF3E0; color: #EF6C00; }
.category-wellness { background: #FCE4EC; color: #C2185B; }
.category-youth { background: #F3E5F5; color: #7B1FA2; }
.category-education { background: #E0F2F1; color: #00695C; }
.category-community { background: #FFF8E1; color: #FF8F00; }

.program-content {
    padding: 30px;
}

.program-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.program-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.program-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.program-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--primary-color);
}

.program-cta {
    display: flex;
    gap: 15px;
}

.btn-program, .btn-program-secondary {
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-program {
    background: var(--primary-color);
    color: white;
}

.btn-program:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-program-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-program-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Category Filters */
.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 12px 30px;
    background: white;
    border: 2px solid var(--primary-light);
    border-radius: 30px;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.program-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 10px;
}

.program-card-content {
    padding: 0 20px 20px;
    flex-grow: 1;
}

.program-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.detail-item i {
    color: var(--primary-color);
    width: 16px;
}

.program-progress {
    margin-top: 20px;
}

.progress-bar {
    height: 8px;
    background: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #4CAF50);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: right;
}

.program-card-footer {
    padding: 20px;
    border-top: 1px solid var(--bg-light);
    display: flex;
    gap: 15px;
}

.btn-program-details, .btn-program-join {
    flex: 1;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-program-details {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-program-details:hover {
    background: var(--primary-color);
    color: white;
}

.btn-program-join {
    background: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
}

.btn-program-join:hover {
    background: #1C7A1C;
    border-color: #1C7A1C;
    transform: translateY(-3px);
}

/* Program Detail Modal */
.program-detail-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
}

.program-detail-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 10px 10px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.modal-body {
    background: white;
    max-width: 1000px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 0 0 10px 10px;
}

.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 40px;
}

.detail-main h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.detail-main p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 30px;
}

.detail-image {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.program-objectives h5 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.program-objectives ul {
    list-style: none;
    padding: 0;
}

.program-objectives li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.program-objectives li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-card {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 25px;
}

.detail-card h5 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.detail-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    color: var(--primary-color);
    margin-top: 2px;
    font-size: 1.1rem;
}

.info-label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.info-value {
    display: block;
    color: var(--text-dark);
    font-weight: 500;
}

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

.eligibility-list li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: var(--text-dark);
    line-height: 1.5;
}

.eligibility-list li i {
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.detail-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-program-primary, .btn-program-secondary {
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    text-align: center;
}

.btn-program-primary {
    background: var(--primary-color);
    color: white;
}

.btn-program-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Program Areas Grid */
.program-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.area-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    gap: 20px;
}

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

.area-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.area-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.area-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.area-programs {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.area-programs li {
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.area-programs li:before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Upcoming Programs */
.upcoming-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.upcoming-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--secondary-color);
    position: relative;
    transition: var(--transition);
}

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

.upcoming-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.upcoming-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.upcoming-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.upcoming-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.upcoming-details .detail {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.upcoming-details .detail i {
    color: var(--primary-color);
}

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

.btn-upcoming {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--text-dark);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-upcoming:hover {
    background: #E6C300;
    transform: translateY(-3px);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Programs CTA */
.programs-cta {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 21, 128), rgba(0, 21, 128)), 
                url('../images/programs/cta-bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
}

.programs-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.programs-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.programs-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary, .btn-cta-secondary, .btn-cta-tertiary {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.btn-cta-primary {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.btn-cta-primary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-cta-tertiary {
    background: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
}

.btn-cta-tertiary:hover {
    background: #1C7A1C;
    border-color: #1C7A1C;
    transform: translateY(-3px);
}

/* Utility Classes */
.mt-50 { margin-top: 50px; }
.text-center { text-align: center; }


/* CATEGORY STYLES */

/* Category Navigation */
.category-navigation {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid var(--bg-light);
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-scroll::-webkit-scrollbar {
    display: none;
}

.category-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--text-dark);
    border-radius: 15px;
    transition: var(--transition);
    flex-shrink: 0;
    min-width: 100px;
}

.category-link:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
}

.category-link.active {
    background: var(--primary-color);
    color: white;
}

.category-link.active .category-icon {
    background: white !important;
}

.category-link.active .category-icon i {
    color: var(--primary-color) !important;
}

.category-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
}

.category-link span {
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

/* Category Sections */
.category-sections {
    padding: 60px 0;
}

.category-section {
    margin-bottom: 80px;
}

.category-section:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 25px;
}

.category-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.category-title h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 2.2rem;
}

.category-description {
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.6;
}

.view-all-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
}

.view-all-link:hover {
    background: var(--primary-color);
    color: white;
    gap: 12px;
}

/* Category Programs Grid */
.category-programs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.category-program-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.category-program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.program-category-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-program-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
    padding-right: 100px;
}

.program-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.program-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--primary-color);
    width: 16px;
}

.program-actions {
    display: flex;
    gap: 15px;
}

.btn-details, .btn-join {
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-details {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-join {
    background: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
}

.btn-join:hover {
    background: #1C7A1C;
    border-color: #1C7A1C;
    transform: translateY(-3px);
}

/* Programs Filters */
.programs-filters {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.filter-group {
    flex: 1;
    min-width: 250px;
}

.filter-group label {
    display: block;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1rem;
}

.filter-select {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid var(--bg-light);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-dark);
    background: white;
    cursor: pointer;
    transition: var(--transition);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(75, 0, 130, 0.1);
}

/* Category Tree Sidebar */
.category-tree {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.category-tree h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}

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

.tree-item {
    margin-bottom: 15px;
}

.tree-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 10px;
    transition: var(--transition);
}

.tree-link:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 20px;
}

.tree-link.active {
    background: var(--primary-color);
    color: white;
}

.tree-link.active .tree-icon {
    background: white;
    color: var(--primary-color);
}

.tree-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.tree-text {
    flex-grow: 1;
    font-weight: 500;
}

.tree-count {
    background: var(--bg-light);
    color: var(--text-light);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.tree-children {
    list-style: none;
    padding-left: 30px;
    margin-top: 10px;
}

.tree-child-link {
    display: block;
    padding: 8px 15px;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.tree-child-link:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 20px;
}

.tree-child-link.active {
    background: var(--primary-light);
    color: white;
}







/* NEWS PAGE STYLES */

/* News Hero */
.news-hero {
    background: linear-gradient(rgba(0, 21, 128), rgba(58, 0, 102, 0.9)), 
                url('../images/news/hero-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.news-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.news-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.news-hero .hero-subtitle {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-weight: 500;
}

.news-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.news-stats .stat-item {
    text-align: center;
}

.news-stats .stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.news-stats .stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Featured News Section */
.featured-news-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.featured-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.featured-news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.featured-news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.featured-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

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

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

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.category-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.featured-content {
    padding: 30px;
}

.featured-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.featured-title a:hover {
    color: var(--primary-dark);
}

.featured-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.featured-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--primary-color);
}

.read-more-btn {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.read-more-btn:hover {
    gap: 12px;
    color: var(--primary-color);
}

/* News Content Section */
.news-content-section {
    padding: 80px 0;
}

.news-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.news-header {
    margin-bottom: 40px;
}

.news-header h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.active-filters {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.active-filters span {
    color: var(--text-light);
}

.filter-tag {
    background: var(--primary-light);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.remove-filter {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 1;
    transition: var(--transition);
}

.remove-filter:hover {
    transform: scale(1.2);
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

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

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

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

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

.category-label {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    z-index: 2;
}

.news-body {
    padding: 25px;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.news-meta .date,
.news-meta .author {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-meta i {
    color: var(--primary-color);
}

.news-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.news-title a:hover {
    color: var(--primary-dark);
}

.news-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--bg-light);
}

.news-stats {
    display: flex;
    gap: 20px;
}

.news-stats .stat {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.news-stats i {
    color: var(--primary-color);
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.read-more:hover {
    gap: 12px;
    color: var(--primary-color);
}

/* Pagination */
.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 40px 0;
}

.page-link {
    padding: 10px 20px;
    border: 2px solid var(--bg-light);
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.page-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.page-link.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-numbers {
    display: flex;
    gap: 10px;
}

.no-news {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.no-news i {
    font-size: 4rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.no-news h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.no-news p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Sidebar */
.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.widget-title {
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
    font-size: 1.3rem;
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 12px;
}

.categories-list li:last-child {
    margin-bottom: 0;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 10px;
    transition: var(--transition);
}

.categories-list a:hover,
.categories-list a.active {
    background: var(--primary-color);
    color: white;
    padding-left: 20px;
}

.categories-list a.active .count {
    background: white;
    color: var(--primary-color);
}

.count {
    background: var(--bg-light);
    color: var(--text-light);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
    transition: var(--transition);
}

/* Tags Widget */
.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.tag:hover,
.tag.active {
    background: var(--primary-color);
    color: white;
}

.tag-count {
    background: rgba(255, 255, 255, 0.2);
    color: inherit;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

/* Recent Widget */
.recent-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--bg-light);
}

.recent-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.recent-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

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

.recent-content h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.recent-content h4 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.recent-content h4 a:hover {
    color: var(--primary-dark);
}

.recent-date {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Newsletter Widget */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.newsletter-form input {
    padding: 12px 20px;
    border: 2px solid var(--bg-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-subscribe {
    padding: 12px 25px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-subscribe:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.form-message {
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Single News Article Styles */
.article-header {
    padding: 60px 0 40px;
}

.article-breadcrumb {
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.article-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.article-breadcrumb a:hover {
    text-decoration: underline;
}

.article-breadcrumb span {
    color: var(--text-light);
}

.single-news {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.article-title-section {
    margin-bottom: 40px;
}

.article-category {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-decoration: none;
}

.article-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.meta-left, .meta-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

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

.author-avatar.default {
    background: var(--primary-light);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

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

.publish-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.article-stats {
    display: flex;
    gap: 20px;
}

.article-stats .stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-buttons span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.email { background: var(--primary-color); }

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-featured-image {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    padding: 15px;
    background: var(--bg-light);
    color: var(--text-light);
    font-style: italic;
    font-size: 0.95rem;
    text-align: center;
}

.article-content {
    line-height: 1.8;
    color: var(--text-dark);
}

.content-wrapper {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.content-wrapper h2,
.content-wrapper h3,
.content-wrapper h4 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-wrapper p {
    margin-bottom: 20px;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-wrapper li {
    margin-bottom: 10px;
}

.article-tags {
    padding: 30px 0;
    border-top: 1px solid var(--bg-light);
    border-bottom: 1px solid var(--bg-light);
    margin-bottom: 40px;
}

.article-tags h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.article-actions {
    margin-bottom: 40px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.like-btn,
.share-btn-expand,
.comment-btn {
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.like-btn {
    background: var(--bg-light);
    color: var(--text-dark);
}

.like-btn:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

.share-btn-expand {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.share-btn-expand:hover {
    background: var(--primary-color);
    color: white;
}

.comment-btn {
    background: var(--accent-color);
    color: white;
    text-decoration: none;
}

.comment-btn:hover {
    background: #1C7A1C;
    transform: translateY(-3px);
}

/* Related News */
.related-news-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.related-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.related-news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.related-news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.related-image {
    height: 200px;
    overflow: hidden;
}

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

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

.related-content {
    padding: 25px;
}

.related-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.related-content h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.related-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.related-content h3 a:hover {
    color: var(--primary-dark);
}

.related-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Comments Section */
.comments-section {
    padding: 80px 0;
}

.comments-header {
    text-align: center;
    margin-bottom: 50px;
}

.comments-header h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.comments-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.comments-container {
    max-width: 800px;
    margin: 0 auto;
}

.comments-list {
    margin-bottom: 50px;
}

.comment {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.comment-avatar.default {
    background: var(--primary-light);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.comment-author h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.comment-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.comment-body {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.comment-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.reply-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    padding: 5px 0;
}

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

.comment-likes {
    color: var(--text-light);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.no-comments {
    text-align: center;
    padding: 50px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}

.no-comments i {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.no-comments p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Comment Form */
.comment-form-container {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.comment-form-container h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.comment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid var(--bg-light);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.form-note {
    color: var(--text-light);
    font-size: 0.9rem;
    flex: 1;
    min-width: 250px;
}

.submit-comment {
    padding: 15px 35px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.submit-comment:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .news-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .meta-left, .meta-right {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .news-hero h1 {
        font-size: 2.5rem;
    }
    
    .news-stats {
        gap: 30px;
    }
    
    .news-stats .stat-number {
        font-size: 2.2rem;
    }
    
    .featured-news-grid,
    .news-grid,
    .related-news-grid {
        grid-template-columns: 1fr;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .single-news {
        padding: 30px 20px;
    }
    
    .comment-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-footer {
        flex-direction: column;
        text-align: center;
    }
}








/* Program Dropdown Styling */
.dropdown-content .dropdown-section {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-content .dropdown-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.dropdown-content .dropdown-section h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4A5568;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    padding: 0 16px;
}

.dropdown-content .dropdown-section a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    color: #2D3748;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 4px;
    margin: 2px 0;
}

.dropdown-content .dropdown-section a:hover {
    background: #4299E1;
    color: white;
}

.dropdown-content .dropdown-section a i {
    width: 16px;
    text-align: center;
}

.dropdown-content .dropdown-section a.program-link {
    font-size: 0.9rem;
    padding-left: 28px;
}

/* Mobile dropdown sections */
.mobile-dropdown-content .dropdown-section {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-content .dropdown-section:last-child {
    border-bottom: none;
}

.mobile-dropdown-content .dropdown-section h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 0 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.mobile-dropdown-content .dropdown-section a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-dropdown-content .dropdown-section a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding-left: 24px;
}

.mobile-dropdown-content .dropdown-section a.program-link {
    padding-left: 32px;
}