        /* Global Styles */
        :root {
            --primary-red: #c1272d;
            --primary-green: #006b3c;
            --primary-white: #ffffff;
            --light-gray: #f5f5f5;
            --dark-gray: #333333;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light-gray);
            color: var(--dark-gray);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--primary-white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 100px;
            margin-right: 15px;
        }
        
        .logo-text h1 {
            color: var(--primary-red);
            font-size: 28px;
            margin-bottom: 5px;
        }
        
        .logo-text p {
            color: var(--primary-green);
            font-size: 14px;
            font-weight: 500;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark-gray);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--primary-red);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--primary-green);
            bottom: -5px;
            left: 0;
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/homepage.jpeg');
            background-size: cover;
            background-position: center;
            height: 80vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--primary-white);
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h2 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-red);
            color: var(--primary-white);
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid var(--primary-red);
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--primary-white);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary-white);
            margin-left: 15px;
        }
        
        .btn-outline:hover {
            background-color: var(--primary-white);
            color: var(--primary-red);
        }
        
        /* About Section */
        .about {
            padding: 80px 0;
            background-color: var(--primary-white);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--primary-green);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--primary-red);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 28px;
            color: var(--primary-green);
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 20px;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Services Section */
        .services {
            padding: 80px 0;
            background-color: var(--light-gray);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .service-card {
            background-color: var(--primary-white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-image {
            height: 200px;
            overflow: hidden;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            color: var(--primary-green);
            margin-bottom: 15px;
            font-size: 22px;
        }
        
        .service-content p {
            margin-bottom: 20px;
        }
        
        .service-time {
            display: flex;
            align-items: center;
            color: var(--primary-red);
            font-weight: 600;
        }
        
        .service-time i {
            margin-right: 10px;
        }
        
        /* Events Section */
        .events {
            padding: 80px 0;
            background-color: var(--primary-white);
        }
        
        .events-list {
            margin-top: 50px;
        }
        
        .event-item {
            display: flex;
            margin-bottom: 30px;
            background-color: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .event-date {
            background-color: var(--primary-green);
            color: var(--primary-white);
            padding: 20px;
            text-align: center;
            min-width: 100px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .event-date .day {
            font-size: 36px;
            font-weight: 700;
            line-height: 1;
        }
        
        .event-date .month {
            font-size: 14px;
            text-transform: uppercase;
        }
        
        .event-details {
            padding: 20px;
            flex: 1;
        }
        
        .event-details h3 {
            color: var(--primary-green);
            margin-bottom: 10px;
        }
        
        .event-meta {
            display: flex;
            margin-bottom: 15px;
            color: var(--primary-red);
        }
        
        .event-meta span {
            display: flex;
            align-items: center;
            margin-right: 20px;
            font-size: 14px;
        }
        
        .event-meta i {
            margin-right: 5px;
        }
        
        /* Contact Section */
        .contact {
            padding: 80px 0;
            background-color: var(--light-gray);
        }
        
        .contact-container {
            display: flex;
            gap: 50px;
            margin-top: 50px;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-card {
            background-color: var(--primary-white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }
        
        .contact-card h3 {
            color: var(--primary-green);
            margin-bottom: 20px;
            font-size: 22px;
        }
        
        .contact-detail {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .contact-detail i {
            color: var(--primary-red);
            font-size: 20px;
            margin-right: 15px;
            margin-top: 3px;
        }
        
        .contact-form {
            flex: 1;
            background-color: var(--primary-white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .contact-form h3 {
            color: var(--primary-green);
            margin-bottom: 20px;
            font-size: 22px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: var(--primary-green);
            color: var(--primary-white);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        
        .submit-btn:hover {
            background-color: var(--primary-red);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-green);
            color: var(--primary-white);
            padding: 50px 0 20px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--primary-red);
            bottom: 0;
            left: 0;
        }
        
        .footer-col p {
            margin-bottom: 15px;
        }
        
        .footer-links li {
            list-style: none;
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--primary-white);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary-red);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--primary-white);
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--primary-red);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .contact-container {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            nav {
                position: fixed;
                top: 90px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 90px);
                background-color: var(--primary-white);
                transition: all 0.5s;
                padding: 30px;
            }
            
            nav.active {
                left: 0;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .hero h2 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .btn {
                display: block;
                margin-bottom: 15px;
                width: 100%;
            }
            
            .btn-outline {
                margin-left: 0;
            }
        }

	 .gallery {
            padding: 80px 0;
            background-color: var(--primary-white);
        }

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

        .gallery-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            height: 250px;
        }

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

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 107, 60, 0.8);
            color: white;
            padding: 15px;
            transform: translateY(100%);
            transition: transform 0.3s;
        }

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

        /* News Section */
        .news {
            padding: 80px 0;
            background-color: var(--light-gray);
        }

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

        .news-card {
            background-color: var(--primary-white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

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

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

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

        .news-content {
            padding: 20px;
        }

        .news-date {
            color: var(--primary-red);
            font-size: 14px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .news-date i {
            margin-right: 8px;
        }

        .news-content h3 {
            color: var(--primary-green);
            margin-bottom: 15px;
            font-size: 20px;
        }

        .news-content p {
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .read-more {
            color: var(--primary-red);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }

        .read-more i {
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .read-more:hover i {
            transform: translateX(5px);
        }

        /* View All Button */
        .view-all {
            text-align: center;
            margin-top: 40px;
        }




	.leadership {
            padding: 80px 0;
            background-color: var(--primary-white);
        }

        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .leader-card {
            background-color: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s;
        }

        .leader-card:hover {
            transform: translateY(-10px);
        }

        .leader-image {
            height: 300px;
            overflow: hidden;
        }

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

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

        .leader-content {
            padding: 25px;
        }

        .leader-content h3 {
            color: var(--primary-green);
            margin-bottom: 5px;
            font-size: 22px;
        }

        .leader-position {
            color: var(--primary-red);
            font-weight: 600;
            margin-bottom: 15px;
            display: block;
        }

        .leader-bio {
            margin-bottom: 20px;
        }

        .leader-contact {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .leader-contact a {
            color: var(--primary-green);
            font-size: 18px;
            transition: color 0.3s;
        }

        .leader-contact a:hover {
            color: var(--primary-red);
        }

        .leadership-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
        }

	.history {
            padding: 80px 0;
            background-color: var(--primary-white);
        }

        .history-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .history-intro {
            text-align: center;
            margin-bottom: 50px;
        }

        .timeline {
            position: relative;
            padding-left: 50px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 0;
            bottom: 0;
            width: 4px;
            background-color: var(--primary-green);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(0, 107, 60, 0.1);
        }

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

        .timeline-year {
            position: absolute;
            left: -50px;
            top: 0;
            width: 40px;
            height: 40px;
            background-color: var(--primary-red);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            box-shadow: 0 0 0 5px rgba(193, 39, 45, 0.2);
        }

        .timeline-content {
            padding: 20px;
            background-color: var(--light-gray);
            border-radius: 8px;
            position: relative;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            left: -15px;
            top: 20px;
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-right: 15px solid var(--light-gray);
        }

        .timeline-content h3 {
            color: var(--primary-green);
            margin-bottom: 10px;
        }

        .founders-section {
            background-color: var(--light-gray);
            padding: 50px 0;
            margin: 50px 0;
            border-radius: 10px;
        }

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

        .founder-card {
            background-color: var(--primary-white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .founder-image {
            height: 250px;
            overflow: hidden;
        }

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

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

        .founder-info {
            padding: 20px;
        }

        .founder-info h3 {
            color: var(--primary-green);
            margin-bottom: 5px;
        }

        .founder-role {
            color: var(--primary-red);
            font-weight: 600;
            margin-bottom: 15px;
            display: block;
        }

        .beliefs-section {
            margin-top: 60px;
        }

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

        .belief-card {
            background-color: var(--primary-white);
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-top: 4px solid var(--primary-green);
        }

        .belief-card h3 {
            color: var(--primary-green);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .belief-card h3 i {
            margin-right: 10px;
            color: var(--primary-red);
        }


               /* Dropdown Menu Styles */
        nav ul li {
            position: relative;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--primary-white);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 0 0 8px 8px;
            width: 200px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 1000;
        }
        
        nav ul li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
        }
        
        .dropdown-menu li {
            display: block;
            margin: 0;
            padding: 0;
            border-bottom: 1px solid rgba(0, 107, 60, 0.1);
        }
        
        .dropdown-menu li:last-child {
            border-bottom: none;
        }
        
        .dropdown-menu li a {
            color: var(--dark-gray);
            padding: 12px 20px;
            display: block;
            transition: all 0.3s;
        }
        
        .dropdown-menu li a:hover {
            background-color: var(--primary-green);
            color: var(--primary-white);
        }
        
        .dropdown-menu li a::after {
            display: none;
        }
        
        .has-dropdown > a::after {
            content: '\f078';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            margin-left: 8px;
            font-size: 12px;
        }
        
        /* Mobile Dropdown Styles */
        @media (max-width: 768px) {
            .dropdown-menu {
                position: static;
                width: 100%;
                box-shadow: none;
                display: none;
                opacity: 1;
                visibility: visible;
                padding-left: 20px;
                background-color: rgba(0, 107, 60, 0.05);
            }
            
            nav.active .dropdown-menu {
                display: block;
            }
            
            .has-dropdown > a::after {
                content: '\f077';
                float: right;
                transition: transform 0.3s;
            }
            
            .has-dropdown.active > a::after {
                transform: rotate(180deg);
            }
        }
