/* Global Styles */
:root {
    --primary-color: #0056b3;
    --secondary-color: #003366;
    --accent-color: #e67e22;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --text-color: #333;
    --text-light: #6c757d;
}

* {
    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-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

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

.section {
    padding: 80px 0;
}

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

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

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

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 20px auto;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
}

.logo-text {
    margin-left: 10px;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

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

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1521791055366-0d553872125f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

/* About Section */
.about {
    background-color: var(--light-color);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 100px;
    height: 100px;
    background: url('logo-watermark.png') no-repeat;
    background-size: contain;
    opacity: 0.2;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.about-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

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

/* Stats Section */
.stats {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

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

.stat-box {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.stat-box i {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.stat-box h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 1.1rem;
}

/* Homepage Leadership Section */
.leadership {
    background-color: var(--light-color);
}

.leadership-section {
    margin-top: 40px;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}
/* Ensure leadership section stays visible */

.section.leadership {
    position: relative;
    overflow: visible; 
    z-index: 1;
    min-height: 300px; /* Ensure space even if content disappears */
}

/* Leadership container fixes */

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  width: 100%;
  position: relative;
  transform: translateZ(0);
}

.leader-card {
  background-color: var(--light-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: 100%;
}

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

.leader-image {
  position: relative;
  height: 500px;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

.leader-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  left: 0;
  top: 0;
}

.leader-info {
  padding: 20px;
  text-align: center;
}

.leader-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--secondary-color);
}

.leader-info p {
  color: var(--primary-color);
  font-weight: 500;se
  margin-bottom: 15px;
}

.view-all {
  clear: both;
  position: relative;
   text-align: center;
  z-index: 2;
  margin-top: 40px;
  margin-bottom: 20px;
  display: block;
  width: 100%;
}

/* Projects Section */
/* Business Projects Section */
.business-projects {
    background-color: #f9f9f9;
    padding: 40px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.project-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

.project-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.project-status.ongoing {
    background: #4CAF50; /* Green */
}

.project-status.completed {
    background: #2196F3; /* Blue */
}

.project-status.upcoming {
    background: #FF9800; /* Orange */
}

.project-content {
    padding: 25px;
}

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

.project-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.project-category {
    background: var(--accent-color);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.project-year {
    color: var(--text-light);
}

.project-excerpt {
    margin-bottom: 15px;
    color: var(--text-color);
}

.project-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}


/* Benefits Section */
.benefits {
    background-color: white;
     padding: 40px 0;
}

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

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

/* News Section */
.news {
    background-color: white;
    padding: 40px 0;
}

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

.news-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.news-image {
    height: 200px;
    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);
}

.news-content {
    padding: 20px;
}

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

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

.news-content p {
    margin-bottom: 15px;
}

/* Events Section */
.events {
    background-color: var(--light-color);
    padding: 40px 0;
}

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

.event-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

.event-date .day {
    font-size: 2rem;
    font-weight: bold;
}

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

.event-content {
    padding: 20px;
}

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

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

.event-content .location i {
    margin-right: 5px;
}

/* Gallery Section */
.gallery {
    background-color: white;
    padding: 40px 0;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

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

.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;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

.section.gallery {
    padding: 50px 0;
    background-color: white;
}

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


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

.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;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

.view-all {
    text-align: center;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .gallery-item {
        height: 200px;
    }
}

/* Gallery Scroller */
.gallery-scroller {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    position: relative;
}

.gallery-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
}

.gallery-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

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

.scroll-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.scroll-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* Full Gallery Page */
.full-gallery {
    padding: 80px 0;
}

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

/* Lightbox styles */
.gallery-lightbox {
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 200px;
        height: 200px;
    }
    
    .scroll-btn {
        display: none;
    }
    
    .gallery-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Lightbox Overrides */
.mfp-image-holder .mfp-content {
    max-width: 90%;
}

.mfp-img {
    padding: 0;
}

.mfp-figure:after {
    box-shadow: none;
    background: transparent;
}

/* Gallery overlay adjustments */
.gallery-item a {
    display: block;
    position: relative;
    height: 100%;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1.2);
}


/* Constitution Section */
.constitution {
    background-color: var(--light-color);
    text-align: center;
    padding: 40px 0;
}

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

.constitution-container p {
    margin-bottom: 30px;
}

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

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

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

/*
.testimonial-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
} */

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}


.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

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

.testimonial-author img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

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

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


.testimonial-content {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
   /* padding-left: 10px; */
   /* border-left: 3px solid var(--accent-color);*/
    flex-grow: 1; /* Makes content fill available space */
}


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

.testimonial-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    /*border: 3px solid var(--primary-color);*/
}

.author-info {
    flex: 1;
}

.author-name {
    margin: 0 0 5px;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.author-details {
    margin: 0 0 5px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.member-since {
    margin: 0;
    color: var(--text-light);
    font-size: 0.8rem;
}

.no-testimonials {
    text-align: center;
    grid-column: 1 / -1;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}

/* Testimonials Grid Layout */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns by default */
    gap: 30px;
    margin-top: 40px;
}

.testimonial-column {
    display: flex;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

/* Keep all your existing testimonial card styles */
.testimonial-title {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: auto; /* Pushes author to bottom */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
    
    .testimonial-card {
        padding: 20px;
    }
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1521791055366-0d553872125f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 0;
}

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

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Contact Section */
.contact-preview {
    background-color: var(--light-color);
    text-align: center;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
}

.footer-about p {
    margin-bottom: 20px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

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

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

.footer-links ul li a {
    color: #adb5bd;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #adb5bd;
    font-size: 0.9rem;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 15px;
        justify-content: center;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 15px 10px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    nav ul {
        display: none;
        width: 100%;
        flex-direction: column;
        margin-top: 20px;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 5px 0;
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
}

/* Identity Section Layout */
.section.identity {
    background-color: #f9fbfd;
    padding: 80px 0;
}

.identity-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.identity-top-row {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 50px;
    align-items: start;
}

/* Image Styling */
.identity-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.identity-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.identity-image:hover .identity-img {
    transform: scale(1.03);
}

/* Content Styling */
.identity-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.highlight {
    color: #0056b3;
    font-weight: 700;
}

.emphasize {
    font-weight: 600;
    color: #e67e22;
}

.identity-features {
    margin: 25px 0;
    padding-left: 0;
}

.identity-features li {
    margin-bottom: 12px;
    position: relative;
    list-style: none;
    padding-left: 25px;
}

.identity-features li:before {
    content: "✓";
    color: #0056b3;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Facts Section */
.identity-facts {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.fact-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
}

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

.fact-label {
    font-weight: 600;
    color: #333;
    min-width: 120px;
}

.fact-value {
    font-weight: 500;
}

/* Responsive Behavior */
@media (max-width: 992px) {
    .identity-top-row {
        grid-template-columns: 45% 55%;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .identity-top-row {
        grid-template-columns: 1fr;
    }
    
    .identity-image {
        margin-bottom: 30px;
    }
    
    .identity-facts {
        grid-template-columns: 1fr;
    }
}

/* Mission & Vision Section */
.section.mission-vision {
    padding: 60px 0;
    background-color: #f9fbfd;
}

.mv-container {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 50px;
    align-items: center;
}

.mv-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mission-card, 
.vision-card, 
.values-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.mission-card h3 {
    color: #0056b3;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.mission-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #e67e22;
}

.vision-card h3 {
    color: #0056b3;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.vision-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ffc107;
}

.values-card h3 {
    color: #0056b3;
    margin-bottom: 15px;
}

.values-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.values-list li {
    padding-left: 25px;
    position: relative;
}

.value-icon {
    color: #0056b3;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Image Column */
.mv-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.mv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .mv-container {
        grid-template-columns: 55% 45%;
        gap: 30px;
    }
    
    .values-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mv-container {
        grid-template-columns: 1fr;
    }
    
    .mv-image {
        min-height: 300px;
        grid-row: 1;
    }
}


/* ======================
   About Page Styling
   ====================== */
.about-page {
    padding: 0;
    margin: 0;
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* ===== Hero Section ===== */
.about-page .about-hero {
    background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 86, 179, 0.8)), 
                url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.about-page .about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.about-page .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-page .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.about-page .btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.about-page .btn-primary {
    background: #ffc107;
    color: #0056b3;
    border: 2px solid #ffc107;
}

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

/* ===== Section Styling ===== */
.about-page .about-section {
    padding: 80px 0;
    position: relative;
}

.about-page .about-section:nth-child(odd) {
    background-color: #f9fbfd;
}

.about-page .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-page .section-title {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
    position: relative;
}

.about-page .section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #ffc107;
    margin: 15px auto 30px;
}

.about-page .section-subtitle {
    font-size: 1.25rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Grid Layouts ===== */
.about-page .grid-2-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* ===== Identity Section ===== */
.about-page .identity-facts {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-page .fact-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.about-page .fact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.about-page .fact-label {
    font-weight: 700;
    color: #0056b3;
    display: block;
    margin-bottom: 5px;
}

.about-page .fact-value {
    font-size: 1.1rem;
}

/* ===== Mission/Vision Section ===== */
.about-page .value-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.about-page .value-card:hover {
    transform: translateY(-5px);
}

.about-page .value-card h3 {
    color: #0056b3;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-page .value-card h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ffc107;
}

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

.about-page .values-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    list-style: none;
}

.about-page .values-list li {
    background: #f0f7ff;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.about-page .values-list li:before {
    content: '✓';
    color: #0056b3;
    margin-right: 10px;
    font-weight: bold;
}

/* ===== History Section ===== */
.about-page .history-timeline {
    position: relative;
    padding-left: 50px;
    margin-top: 40px;
}

.about-page .history-timeline:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #0056b3;
}

.about-page .timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.about-page .timeline-item:last-child {
    margin-bottom: 0;
}

.about-page .timeline-year {
    position: absolute;
    left: -50px;
    top: 0;
    width: 40px;
    height: 40px;
    background: #0056b3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.about-page .timeline-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* ===== Leadership Section ===== */
.about-page .leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-page .leader-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.about-page .leader-card:hover {
    transform: translateY(-5px);
}

.about-page .leader-image {
    height: 250px;
    overflow: hidden;
}

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

.about-page .leader-card:hover .leader-image img {
    transform: scale(1.05);
}

.about-page .leader-info {
    padding: 25px;
}

.about-page .leader-info h3 {
    color: #0056b3;
    margin-bottom: 5px;
}

.about-page .position {
    font-weight: 600;
    color: #555;
    margin-bottom: 5px;
}

.about-page .term {
    color: #777;
    font-size: 0.9rem;
}

/* ===== Structure Section ===== */
.about-page .structure-map {
    margin-top: 40px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-page .zone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.about-page .zone-card {
    background: #f0f7ff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.about-page .zone-card h4 {
    color: #0056b3;
    margin-bottom: 10px;
}

/* ===== Functions Section ===== */
.about-page .functions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.about-page .function-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-page .function-icon {
    color: #0056b3;
    font-size: 1.5rem;
    flex-shrink: 0;
}


/* ===== Achievements Section ===== */
.about-page .achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-page .achievement-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-page .achievement-year {
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 10px;
}

/* ===== Gallery Section ===== */
.about-page .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

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

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

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

/* ===== CTA Section ===== */
.about-page .about-cta {
    background: #0056b3;
    color: white;
    text-align: center;
    padding: 80px 0;
}

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

/* ===== Responsive Adjustments ===== */
@media (max-width: 992px) {
    .about-page .grid-2-columns {
        grid-template-columns: 1fr;
    }
    
    .about-page .values-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-page .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-page .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-page .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-page .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-page .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-page .section-title {
        font-size: 1.8rem;
    }
}

/* ===== Single.php for Posts ===== */

.single-post {
  padding: 40px;
  max-width: 800px;
  margin: auto;
}
.single-post h1 {
  font-size: 2em;
}
.single-post .post-meta {
  color: #777;
  font-size: 0.9em;
  margin-bottom: 20px;
}
.single-post .post-content {
  font-size: 1.1em;
  line-height: 1.6;
}

/* ======================
   News Listing Styles
   ====================== */

.news-list-section {
  padding: 60px 0;
  background-color: var(--light-color);
}

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

.news-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.news-image {
  height: 200px;
  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.05);
}

.news-content {
  padding: 20px;
}

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

.news-title {
  font-size: 1.4rem;
  margin: 0 0 15px;
  color: var(--secondary-color);
}

.news-title a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.news-pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.news-pagination .page-numbers {
  padding: 8px 16px;
  margin: 0 5px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.news-pagination .page-numbers.current {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.news-pagination .page-numbers:hover:not(.current) {
  background: #f5f5f5;
}

.no-news {
  text-align: center;
  padding: 40px;
  color: var(--text-light);
}

/* Button styles (reusing existing) */
.btn-sm {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .news-list-section {
    padding: 40px 0;
  }
}


/* ======================
   News Listing Styles
   ====================== */

.news-list-section {
  padding: 60px 0;
  background-color: var(--light-color);
}

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

.news-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.news-image {
  height: 200px;
  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.05);
}

.news-content {
  padding: 20px;
}

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

.news-title {
  font-size: 1.4rem;
  margin: 0 0 15px;
  color: var(--secondary-color);
}

.news-title a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.news-pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.news-pagination .page-numbers {
  padding: 8px 16px;
  margin: 0 5px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.news-pagination .page-numbers.current {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.news-pagination .page-numbers:hover:not(.current) {
  background: #f5f5f5;
}

.no-news {
  text-align: center;
  padding: 40px;
  color: var(--text-light);
}

/* Button styles (reusing existing) */
.btn-sm {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .news-list-section {
    padding: 40px 0;
  }
}

