  /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #FF7F00;
            --secondary: #4CAF50;
            --accent: #FF4500;
            --dark: #333;
            --light: #fff;
            --gray: #f5f5f5;
            --dark-bg: #2c3e50;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        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;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--light);
            border: 2px solid var(--primary);
        }

        .btn-primary:hover {
            background-color: var(--accent);
            border-color: var(--accent);
            transform: scale(0.95);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background-color: var(--primary);
            color: var(--light);
        }

        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            color: var(--dark);
        }

        .section-title span {
            color: var(--primary);
        }

        /* Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }

        .logo span {
            color: var(--secondary);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .enroll-btn {
            padding: 10px 25px;
        }

        .hamburger {
            display: none;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            padding: 150px 0 100px;
            background: linear-gradient(135deg, #ffd199 0%, #b6ff9e 100%);
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .hero-text {
            flex: 1;
            padding-right: 30px;
        }

        .hero-heading {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .hero-heading span {
            color: var(--primary);
        }

        .hero-subheading {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #555;
        }

        .hero-image {
            flex: 1;
            text-align: center;
        }

        .flame-animation {
            width: 300px;
            height: 400px;
            margin: 0 auto;
            position: relative;
            background: radial-gradient(ellipse at center, rgba(255, 126, 95, 0.8) 0%, rgba(255, 126, 95, 0.4) 40%, rgba(255, 126, 95, 0) 70%);
            border-radius: 150px 150px 0 0;
            transform-origin: center bottom;
            animation: flicker 4s infinite alternate;
        }

        @keyframes flicker {
            0%, 100% {
                transform: scaleY(1) scaleX(1);
                opacity: 0.8;
            }
            50% {
                transform: scaleY(1.1) scaleX(0.9);
                opacity: 1;
            }
        }

        /* What We Do Section */
        .services {
            background-color: var(--light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--light);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .service-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .service-desc {
            color: #666;
        }

        /* Photo Activities Section */
        .photo-activities {
            background-color: var(--gray);
        }

        .activities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .activity-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .activity-item:hover {
            transform: translateY(-5px);
        }

        .activity-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .activity-item:hover .activity-image {
            transform: scale(1.05);
        }

        .activity-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            padding: 20px;
            color: var(--light);
        }

        .activity-title {
            font-size: 1.4rem;
            margin-bottom: 5px;
        }

        .activity-date {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Modal for Activity Preview */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            overflow: auto;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
            padding: 20px;
        }

        .modal-image {
            max-width: 90%;
            max-height: 70vh;
            object-fit: contain;
            border-radius: 10px;
            margin-bottom: 20px;
            transform: scale(0.9);
            opacity: 0;
            transition: all 0.5s ease;
        }

        .modal.open .modal-image {
            transform: scale(1);
            opacity: 1;
        }

        .modal-title {
            color: var(--light);
            font-size: 2rem;
            text-align: center;
            margin-bottom: 10px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease 0.2s;
        }

        .modal.open .modal-title {
            opacity: 1;
            transform: translateY(0);
        }

        .modal-description {
            color: var(--light);
            text-align: center;
            max-width: 600px;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease 0.3s;
        }

        .modal.open .modal-description {
            opacity: 1;
            transform: translateY(0);
        }

        .close-modal {
            position: absolute;
            top: 30px;
            right: 30px;
            color: var(--light);
            font-size: 2.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close-modal:hover {
            color: var(--primary);
        }

        /* Testimonial Section */
        .testimonials {
            background-color: var(--gray);
        }

        .testimonial-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial {
            min-width: 100%;
            padding: 30px;
            background: var(--light);
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            text-align: center;
        }

        .testimonial-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            background-color: #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #888;
            font-size: 1.5rem;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #555;
        }

        .testimonial-name {
            font-weight: 600;
            color: var(--dark);
        }

        .stars {
            color: gold;
            margin-bottom: 15px;
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .slider-dot.active {
            background: var(--primary);
        }

        /* Health Talk Section */
        .health-talks {
            background-color: var(--light);
        }

        .talk-card {
            background: linear-gradient(135deg, var(--secondary) 0%, #8BC34A 100%);
            border-radius: 15px;
            padding: 40px;
            color: var(--light);
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .talk-title {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .talk-details {
            margin-bottom: 25px;
            font-size: 1.1rem;
        }

        .talk-speaker {
            font-weight: 600;
            margin-bottom: 30px;
        }

        /* Quotes Section */
        .quotes {
            background-color: var(--dark-bg);
            color: var(--light);
            text-align: center;
            padding: 60px 0;
        }

        .quote-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .quote {
            font-size: 1.8rem;
            font-style: italic;
            margin-bottom: 20px;
            opacity: 0;
            position: absolute;
            transition: opacity 0.5s ease;
            width: 100%;
        }

        .quote.active {
            opacity: 1;
            position: relative;
        }

        .quote-author {
            font-weight: 600;
            color: var(--primary);
        }

        /* Contact/About Section */
        .contact-about {
            background-color: var(--light);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-form h3, .about-us h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: 'Open Sans', sans-serif;
        }

        .form-group textarea {
            min-height: 150px;
        }

        .about-text {
            color: #666;
            margin-bottom: 20px;
        }

        /* Social Media Section */
        .social-media {
            background-color: var(--gray);
            text-align: center;
            padding: 40px 0;
        }

        .social-title {
            margin-bottom: 30px;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .social-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary);
            color: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            transform: translateY(-5px);
            background: var(--accent);
        }

        /* Sidebar */
        .social-sidebar {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--light);
            border-radius: 10px;
            padding: 20px 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .sidebar-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .sidebar-icon {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

        .sidebar-count {
            font-weight: 600;
            color: var(--primary);
        }

        .sidebar-platform {
            font-size: 0.8rem;
            color: #888;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 40px 0 20px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--light);
            margin-bottom: 15px;
        }

        .footer-links {
            display: flex;
            gap: 30px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #ccc;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-heading {
                font-size: 2.8rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .social-sidebar {
                display: none;
            }
            
            .activities-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hamburger {
                display: block;
            }
            
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-text {
                padding-right: 0;
                margin-bottom: 40px;
            }
            
            .hero-heading {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 15px;
            }
            
            .modal-title {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero-heading {
                font-size: 2rem;
            }
            
            .flame-animation {
                width: 200px;
                height: 300px;
            }
            
            .talk-title {
                font-size: 1.5rem;
            }
            
            .quote {
                font-size: 1.4rem;
            }
            
            .activities-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        
        
        




/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Header */
header {
    background: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
    position: relative;
}

/* UPDATED LOGO STYLES */
.logo .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    margin-right: 10px; /* Add space between logo and text */
}

.logo .site-name {
    font-size: 1.5rem; /* Adjust size as needed */
    font-weight: bold;
    color: #551A8B; /* Match link color */
    white-space: nowrap;
}

.main-nav .nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.main-nav .nav-links li {
    margin-left: 20px;
}

.main-nav .nav-links a {
    text-decoration: none;
    color: #551A8B;
    font-weight: bold;
    padding: 5px 10px;
    transition: color 0.3s;
}

.main-nav .nav-links a:hover {
    color: #333;
}

.hamburger {
    display: none; /* Hidden on desktop */
    cursor: pointer;
    font-size: 24px;
    color: #551A8B;
}

/* --- SLIDER STYLES --- */
.slider-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.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::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

.slide-content {
    position: relative;
    color: white;
    text-align: center;
    padding: 20px;
    z-index: 2;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 3;
}

.slider-nav.prev { left: 10px; }
.slider-nav.next { right: 10px; }


/* --- UPDATED BUTTON STYLES --- */
.btn {
    display: inline-block;
    background: #FFD700; /* Yellow button */
    color: #333;
    padding: 12px 25px;
    text-decoration: none;
    border: none;
    border-radius: 50px; /* Rounded pill shape */
    margin-top: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: #ffca00; /* Slightly darker yellow on hover */
}

.btn-secondary {
    display: inline-block;
    background: #fff;
    color: #551A8B;
    padding: 10px 25px;
    text-decoration: none;
    border: 2px solid #551A8B;
    border-radius: 50px; /* Rounded pill shape */
    margin-top: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #551A8B;
    color: #fff;
    transform: translateY(-3px);
}

/* --- Other styles remain the same --- */
.intro-section { background: #551A8B; color: white; text-align: center; padding: 40px 0; }
.intro-section p { font-size: 1.2rem; max-width: 800px; margin: auto; }
.latest-news { padding: 40px 0; text-align: center; }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 20px; }
.news-item { background: #f4f4f4; border: 1px solid #ddd; }
.news-item img { width: 100%; height: auto; }
.news-content { padding: 15px; text-align: left; }
.services-cta .container { display: flex; gap: 20px; }
.cta-box { padding: 30px; flex: 1; color: white; }
.consulting-cta { background: #008080; }
.careers-cta { background: #551A8B; }
.pact-in-numbers { padding: 40px 0; text-align: center; background-color: #f9f9f9; }
.numbers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
.number-item i { color: #008080; }
.number-item h3 { font-size: 2rem; color: #551A8B; margin: 10px 0; }
.pact-in-numbers.bg-dark { color: #fff; text-shadow: 1px 1px 3px rgba(0,0,0,0.7); }
.pact-in-numbers.bg-dark h2 { color: #fff; }
.pact-in-numbers.bg-dark .number-item i, .pact-in-numbers.bg-dark .number-item h3 { color: #fff; }
.where-we-work { padding: 40px 0; text-align: center; }
.promises-kept { padding: 80px 0; color: white; text-align: center; }
footer { background: #551A8B; color: white; padding: 40px 0; }
.footer-container { display: flex; justify-content: space-between; flex-wrap: wrap; width: 90%; margin: auto; }
.footer-column { flex: 1; min-width: 200px; margin: 10px; }
.footer-column h4 { border-bottom: 2px solid #FFD700; padding-bottom: 10px; margin-bottom: 15px; }
.newsletter-form input { width: 70%; padding: 10px; border: none; border-radius: 5px 0 0 5px; }
.newsletter-form button { padding: 10px; background: #FFD700; border: none; cursor: pointer; border-radius: 0 5px 5px 0; }
.footer-links { list-style: none; padding: 0; }
.footer-links a { color: white; text-decoration: none; display: block; margin-bottom: 10px; }
.social-icons a { color: white; margin-right: 15px; font-size: 1.5rem; }
.footer-logo { max-width: 250px; }
.copyright { margin-top: 20px; font-size: 0.9rem; }
.page-content { padding: 40px 0; }
.contact-form { margin-top: 20px; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; }
.form-group input, .form-group textarea { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 5px; }
.alert { padding: 15px; margin-bottom: 20px; border: 1px solid transparent; border-radius: 4px; }
.alert-success { color: #155724; background-color: #d4edda; border-color: #c3e6cb; }
.alert-danger { color: #721c24; background-color: #f8d7da; border-color: #f5c6cb; }
.news-listing-container { margin-top: 30px; }
.news-grid-full { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.news-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 8px rgba(0,0,0,0.05); display: flex; flex-direction: column; transition: transform 0.3s, box-shadow 0.3s; }
.news-card:hover { transform: translateY(-5px); box-shadow: 0 8px 16px rgba(0,0,0,0.1); }
.news-card img { width: 100%; height: 200px; object-fit: cover; }
.news-card-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.news-card-content h2 { font-size: 1.25rem; margin-top: 0; color: #333; }
.news-card-content .news-date { font-size: 0.85rem; color: #888; margin-bottom: 15px; }
.news-card-content p { flex-grow: 1; color: #555; }
.btn-read-more { display: inline-block; background: #551A8B; color: #fff; padding: 8px 15px; text-decoration: none; border-radius: 50px; margin-top: 15px; align-self: flex-start; font-weight: bold; transition: all 0.3s ease; border: 2px solid transparent; }
.btn-read-more:hover { background: #fff; color: #551A8B; border: 2px solid #551A8B; }
.article-container { max-width: 800px; margin: 40px auto; }
.article-header { text-align: center; margin-bottom: 30px; }
.article-header h1 { font-size: 2.5rem; color: #2c3e50; }
.article-meta { color: #7f8c8d; font-style: italic; }
.article-image { width: 100%; height: auto; max-height: 400px; object-fit: cover; border-radius: 8px; margin-bottom: 30px; }
.article-content { font-size: 1.1rem; line-height: 1.8; color: #34495e; }
.back-to-news { display: inline-block; margin-top: 40px; color: #551A8B; text-decoration: none; font-weight: bold; }
.back-to-news:hover { text-decoration: underline; }
.about-hero { height: 40vh; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; color: white; text-align: center; position: relative; }
.about-hero-content { background: rgba(85, 26, 139, 0.7); padding: 2rem 4rem; }
.about-hero-content h1 { font-size: 3rem; margin: 0; }
.purple-banner { background: #551A8B; color: white; padding: 2rem 0; text-align: center; }
.purple-banner p { max-width: 800px; margin: 0 auto; font-size: 1.1rem; }
.about-section { padding: 40px 0; }
.about-section h2 { font-size: 2.2rem; margin-bottom: 20px; color: #333; }
.two-column-layout { display: flex; gap: 40px; align-items: center; margin-bottom: 40px; }
.two-column-layout.reverse { flex-direction: row-reverse; }
.column-text { flex: 1; }
.column-image { flex: 1; }
.column-image img { width: 100%; height: auto; border-radius: 8px; }
.reverse-background { background-color: #f9f9f9; border-radius: 8px; }
.aims-section { padding: 60px 0; background-color: #f9f9f9; border-radius: 8px; }
.aims-list { list-style-type: decimal; padding-left: 20px; max-width: 800px; margin: 0 auto; }
.aims-list li { font-size: 1.1rem; margin-bottom: 15px; padding-left: 10px; }
.core-values-section { padding: 60px 0; }
.core-values-section h3 { font-size: 1.5rem; color: #551A8B; border-bottom: 2px solid #551A8B; padding-bottom: 10px; margin-bottom: 20px; }
.core-values-section ul { list-style: none; padding: 0; }
.core-values-section ul li { font-size: 1.1rem; margin-bottom: 10px; display: flex; align-items: flex-start; }
.core-values-section ul li i { color: #008080; margin-right: 10px; margin-top: 5px; }
.trustees-section { padding: 60px 0; background-color: #f9f9f9; border-radius: 8px; }
.trustees-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; text-align: center; }
.trustee-member { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.trustee-member i { font-size: 2.5rem; color: #551A8B; margin-bottom: 15px; }
.trustee-member h4 { font-size: 1.1rem; margin: 0; color: #333; }
.what-we-do-title { font-size: 4rem; text-align: center; color: #f0f0f0; position: relative; margin-bottom: -2.5rem; }
.what-we-do-title span { font-weight: bold; color: #e0e0e0; }
.section-title h2 { position: relative; z-index: 2; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.service-card { position: relative; color: white; min-height: 300px; background-size: cover; background-position: center; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 25px; box-shadow: 0 10px 20px rgba(0,0,0,0.2); transition: transform 0.3s; }
.service-card:hover { transform: translateY(-10px); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.85) 20%, rgba(0,0,0,0) 100%); z-index: 1; }
.service-card-content { position: relative; z-index: 2; }
.service-card h3 { font-size: 1.8rem; margin-bottom: 10px; text-shadow: 1px 1px 3px rgba(0,0,0,0.7); }
.service-card p { font-size: 1rem; line-height: 1.5; }
.gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; margin-top: 30px; }
.gallery-item { border-radius: 8px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.1); aspect-ratio: 1 / 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.gallery-item a:hover img { transform: scale(1.05); }
.lightbox-overlay { position: fixed; z-index: 2000; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.85); display: none; justify-content: center; align-items: center; }
.lightbox-content { max-width: 90%; max-height: 80%; border-radius: 5px; }
.lightbox-close { position: absolute; top: 20px; right: 35px; color: #fff; font-size: 40px; font-weight: bold; cursor: pointer; }
#lightbox-caption { margin-top: 15px; color: #ccc; text-align: center; font-size: 1.1rem; }
.program-hero { height: 50vh; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; color: white; text-align: center; }
.program-hero-content { background: rgba(0,0,0,0.5); padding: 2rem 4rem; border-radius: 8px; }
.program-hero h1 { font-size: 3rem; }
.procedure-list { list-style: none; padding: 0; }
.procedure-list li { font-size: 1.2rem; margin-bottom: 10px; display: flex; align-items: center; }
.procedure-list i { color: #008080; margin-right: 10px; }
.program-description { padding: 40px; background: #f9f9f9; border-radius: 8px; margin: 40px 0; }
.learning-outcomes { padding: 60px 0; background-size: cover; background-position: center; color: white; }
.learning-outcomes .container { background: rgba(0,0,0,0.6); padding: 30px; border-radius: 8px; }
.learning-outcomes h2 { text-align: center; }
.learning-outcomes ul { list-style: disc; padding-left: 20px; }
.program-details-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin: 40px 0; }
.detail-card { display: flex; align-items: center; background: #f9f9f9; padding: 20px; border-radius: 8px; border-left: 5px solid #551A8B; }
.detail-card i { font-size: 2.5rem; color: #551A8B; margin-right: 20px; }
.detail-card h4 { margin: 0 0 5px 0; }
.admission-info { padding: 60px 0; background-size: cover; background-position: center; color: white; text-align: center; }
.admission-info .container { background: rgba(0,0,0,0.6); padding: 40px; border-radius: 8px; }
.facilitators-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.facilitator-card { text-align: center; }
.facilitator-card img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; margin-bottom: 15px; }
.facilitator-card h4 { margin-bottom: 5px; }
.facilitator-card p { font-size: 0.9rem; color: #777; }
.payment-details { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 8px; padding: 20px; margin: 30px auto; max-width: 500px; }
.payment-details h4 { margin-top: 0; font-size: 1.2rem; color: #FFD700; }
.payment-details p { margin: 5px 0; font-size: 1.1rem; }

@media (max-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .hamburger { display: block; }
    .main-nav { position: static; }
    .main-nav .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background-color: white; flex-direction: column; box-shadow: 0 8px 16px rgba(0,0,0,0.1); z-index: 999; border-top: 1px solid #eee; }
    .main-nav .nav-links.active { display: flex; }
    .main-nav .nav-links li { margin: 0; width: 100%; }
    .main-nav .nav-links li a { display: block; padding: 1rem; text-align: center; width: 100%; border-bottom: 1px solid #f0f0f0; }
    .hero-content { max-width: 90%; }
    .services-cta .container, .numbers-grid { flex-direction: column; }
    .footer-container { flex-direction: column; align-items: center; text-align: center; }
    .about-hero-content h1 { font-size: 2rem; }
    .about-hero-content { padding: 1.5rem 2rem; }
    .two-column-layout, .two-column-layout.reverse { flex-direction: column; }
    .approach-content { max-width: 100%; }
    .info-box { flex-basis: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
    .services-grid { grid-template-columns: 1fr; }
    .facilitators-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .info-box { flex-basis: 100%; }
}



.newsletter-message {
    padding: 10px;
    margin-top: 10px;
    border-radius: 4px;
    font-weight: bold;
}

.newsletter-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.newsletter-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


