        /* Base Styles */
        :root {
            --primary: #D32F2F; /* Red */
            --primary-light: #FFCDD2;
            --secondary: #F5F5F5; /* Light gray */
            --accent: #FF5252; /* Bright red */
            --light: #FFFFFF;
            --dark: #333333;
            --text: #424242;
            --text-light: #757575;
            --shadow: 0 2px 10px rgba(0,0,0,0.05);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--light);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1, h2, h3, h4 {
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        h2 {
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 2.5rem;
            color: var(--dark);
        }

        p {
            margin-bottom: 1.5rem;
            color: var(--text);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--primary);
            color: var(--light);
            border-radius: 4px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            text-align: center;
        }

        .btn:hover {
            background: var(--accent);
            transform: translateY(-2px);
        }

        .btn-red:hover{
          background: transparent !important;
          border: 0.5px solid var(--primary) !important;
          color: var(--primary) !important;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: var(--light);
        }

        section {
            padding: 80px 0;
        }

        /* Header Styles */
        header {
            background: var(--light);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo a {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
        }

        .logo span {
            color: var(--dark);
        }

        nav {
            display: flex;
            align-items: center;
        }

        nav a {
            margin-left: 25px;
            font-weight: 500;
            position: relative;
            transition: var(--transition);
        }

        nav a:hover {
            color: var(--primary);
        }

        nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary);
            bottom: -5px;
            left: 0;
            transition: var(--transition);
        }

        nav a:hover:after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
            z-index: 1001;
        }
        .close-menu{display: none;}

        /* Mobile Navigation */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            nav {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: var(--light);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transform: translateX(-100%);
                transition: transform 0.3s ease-in-out;
                z-index: 999;
            }

            nav.active {
                transform: translateX(0);
            }

            nav a {
                margin: 15px 0;
                font-size: 1.2rem;
            }

            /* Close button for mobile menu */
            .close-menu {
                position: absolute;
                top: 20px;
                right: 20px;
                background: none;
                border: none;
                font-size: 1.5rem;
                color: var(--dark);
                cursor: pointer;
            }
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            background: linear-gradient(rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.9)), url('../images/bg.jpg');
            background-size: cover;
            background-position: fill;
            padding: 100px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            color: var(--text);
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        /* About Section */
        .about {
            background: var(--secondary);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .stats {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary);
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* Projects Section */
.projects {
    padding: 80px 0;
}

.project-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    height: 600px; /* Adjust height as needed */
}

.project-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.project-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card.large {
    height: 100%;
}

.project-card.small {
    height: calc(50% - 15px);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--light);
    padding: 30px 20px 20px;
    transition: var(--transition);
}

.project-card.large .project-overlay {
    padding: 40px 30px 30px;
}

.project-overlay h3 {
    color: var(--light);
    margin-bottom: 0;
    font-size: 1.5rem;
}

.project-card.large .project-overlay h3 {
    font-size: 2rem;
}

.btn-overlay {
    background: var(--primary);
    color: var(--light);
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    margin-top: 10px;
    display: inline-block;
}

.project-card:hover .btn-overlay {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .project-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .project-column {
        flex-direction: row;
    }
    
    .project-card.small {
        width: 50%;
        height: 300px;
    }
}

@media (max-width: 576px) {
    .project-column {
        flex-direction: column;
    }
    
    .project-card.small {
        width: 100%;
        height: 250px;
    }
    
    .project-overlay h3 {
        font-size: 1.2rem;
    }
    
    .project-card.large .project-overlay h3 {
        font-size: 1.5rem;
    }
}

        /* News Section */
        .news {
            background: var(--secondary);
        }

        .news-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .news-card {
            background: var(--light);
            border-radius: 8px;
            padding: 25px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .news-card:hover {
            transform: translateY(-3px);
        }

        .news-card h3 {
            color: var(--primary);
            margin-bottom: 10px;
        }

        .news-date {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        /* Governing Body */
        .gb-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .gb-card {
            text-align: center;
            background: var(--light);
            padding: 25px 20px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .gb-card:hover {
            transform: translateY(-3px);
        }

        .gb-card img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 15px;
            border: 3px solid var(--primary-light);
        }

        .gb-card h3 {
            color: var(--primary);
        }

        .gb-card p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .center {
            text-align: center;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--light);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            color: var(--light);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .footer-links a {
            display: block;
            margin-bottom: 10px;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary-light);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--primary);
        }
        .footer-content p{
            color: var(--light);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            .stats {
                flex-direction: column;
                gap: 20px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 60px 0;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
        }


        .page-hero {
    margin-top: 80px;
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('../images/bg.jpg');
    background-size: cover;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
}