a {
    background-color: transparent;
    color: #28644c;
    text-decoration: none;
}

a:hover {
    background-color: #f0f0f0;
}

a:active {
    background-color: #e0e0e0;
}
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
}


Navbar 
.navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #28644c;
    padding: 8px 10px;
    gap: 10px;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    font-size: 15px;
    transition: background 0.3s;
}

.navbar a:hover {
    background-color: #1f4d3a;
    border-radius: 5px;
}

/* Main Content */
.main-content {
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Moving Text Animation */
.moving-text {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    animation: moveText 15s linear infinite;
    color: #28644c;
}

@keyframes moveText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
<!-- CSS -->
<style>
.vc-card-section {
    width: 100%;
    background-color: #f4f4f4;
    padding: 0;
    margin: 0;
}

.vc-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.vc-card-image {
    flex: 1 1 40%;
    text-align: center;
    padding: 0 20px;
}

.vc-card-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.vc-name {
    margin-top: 15px;
    color: #28644c;
}

.vc-name h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.vc-name p {
    margin: 5px 0 0;
    font-size: 16px;
    font-weight: 500;
}

.vc-card-message {
    flex: 1 1 60%;
    padding: 0 20px;
    text-align: left;
}

.vc-card-message h2 {
    font-size: 26px;
    color: #28644c;
    margin-bottom: 20px;
}

.vc-card-message p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more-btn {
    background-color: #28644c;
    color: white;
    padding: 10px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.read-more-btn:hover {
    background-color: #1f4d3a;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .vc-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 10px;
    }

    .vc-card-image,
    .vc-card-message {
        padding: 0 10px;
    }

    .vc-card-image img {
        max-width: 200px;
        margin-bottom: 15px;
    }

    .vc-card-message h2 {
        font-size: 22px;
    }

    .vc-card-message p {
        font-size: 15px;
        text-align: justify;
    }
}
</style>
<!-- CSS -->
<style>
.news-events-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.news-events-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-column {
    flex: 1 1 500px;
    min-width: 300px;
}

.section-title {
    font-size: 22px;
    font-weight: bold;
    color: #f57c00;
    border-bottom: 2px solid #eee;
    margin-bottom: 25px;
}

/* News Cards */
.news-card {
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.news-meta {
    font-size: 13px;
    color: #888;
    font-weight: bold;
    margin-bottom: 5px;
}

.news-title {
    font-size: 16px;
    font-weight: bold;
    color: #222;
}

/* Event Cards */
.event-card {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 20px;
    margin-bottom: 20px;
}

.event-date {
    width: 60px;
    text-align: center;
    margin-right: 15px;
}

.event-date .day {
    font-size: 22px;
    font-weight: bold;
    color: #f57c00;
    line-height: 1;
}

.event-date .month {
    font-size: 12px;
    text-transform: uppercase;
    color: #555;
}

.event-details {
    flex: 1;
}

.event-title {
    font-weight: bold;
    font-size: 16px;
    color: #222;
    margin-bottom: 10px;
}

.event-meta p {
    font-size: 14px;
    color: #666;
    margin: 3px 0;
}

.event-meta i {
    color: #4caf50;
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .news-events-container {
        flex-direction: column;
        gap: 20px;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
    }

    .event-date {
        margin: 0 auto 10px;
    }

    .event-meta p {
        font-size: 13px;
    }
}
</style>
<!-- CSS -->
<style>
/* Programs Section */
.programs-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.programs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.center-title {
    text-align: center;
    margin-bottom: 40px;
    color: #28644c;
    font-size: 28px;
    font-weight: bold;
}

/* Grid Layout */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* Program Card */
.program-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.program-item:hover {
    transform: translateY(-5px);
}

.program-item i {
    font-size: 36px;
    color: #28644c;
    margin-bottom: 15px;
}

.program-item p {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Enhanced Mobile Responsive Styling */
@media (max-width: 768px) {
    .center-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .program-item {
        padding: 20px 15px;
    }

    .program-item i {
        font-size: 30px;
    }

    .program-item p {
        font-size: 15px;
    }
}
</style>
<style>
.amv-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.amv-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.amv-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex: 1 1 330px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: transform 0.3s ease;
    max-width: 100%;
}

.amv-card:hover {
    transform: translateY(-5px);
}

.amv-image {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.amv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.amv-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    padding: 10px 8px;
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
}

.amv-title.mission {
    background: rgba(245, 124, 0, 0.85);
}

.amv-title.vision {
    background: rgba(40, 100, 76, 0.85);
}

.amv-content {
    padding: 20px 18px;
    text-align: justify;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.amv-content p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

.read-more-btn {
    margin-top: 15px;
    align-self: center;
    background-color: #28644c;
    color: white;
    padding: 10px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background-color: #1f4d3a;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .amv-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .amv-card {
        width: 100%;
        max-width: 95%;
    }

    .amv-image {
        height: 200px;
    }

    .amv-title {
        font-size: 13px;
        padding: 8px;
    }

    .amv-content p {
        font-size: 14px;
    }

    .read-more-btn {
        font-size: 13px;
        padding: 8px 16px;
    }
}
</style>

<!-- CSS -->
<style>
/* Background image section */
.stats-wrapper {
    background-image: url('your-background-image.jpg'); /* Replace with your actual image */
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    position: relative;
    color: #fff;
}

/* Semi-transparent dark overlay */
.stats-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 60px 20px;
}

/* Flex container */
.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

/* Each stat box */
.stat-box {
    text-align: center;
    flex: 1 1 200px;
    min-width: 160px;
    transition: transform 0.3s;
}

.stat-box:hover {
    transform: scale(1.05);
}

.stat-box i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
    color: #fff;
}

.stat-box h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 8px;
}

.stat-box p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #dddddd;
}

.no-stats {
    color: #ccc;
    font-size: 18px;
    text-align: center;
    width: 100%;
}

/* Responsive styles */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 30px;
    }

    .stat-box h2 {
        font-size: 32px;
    }

    .stat-box i {
        font-size: 36px;
    }

    .stat-box p {
        font-size: 13px;
    }
}
</style>
/* Add spacing between sections */
.stats-section {
    margin-bottom: 60px;
}

/* Gallery Section */
.gallery-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading with green color */
.gallery-title {
    font-size: 32px;
    font-weight: bold;
    color: #28a745; /* Green */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Simple paragraph styling */
.gallery-description {
    font-size: 16px;
    color: #333;
    max-width: 850px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Image slider */
.gallery-slider {
    overflow: hidden;
    position: relative;
}

.slide-track {
    display: flex;
    width: calc(250px * 20);
    animation: scroll 40s linear infinite;
}

.slide {
    width: 250px;
    height: 160px;
    flex-shrink: 0;
    margin: 0 10px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Scroll animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .gallery-title {
        font-size: 24px;
    }

    .gallery-description {
        font-size: 14px;
        padding: 0 10px;
    }

    .slide {
        width: 180px;
        height: 120px;
    }

    .slide-track {
        width: calc(180px * 20);
        animation-duration: 60s;
    }
}
/* Section spacing & layout */
.mou-slider-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px; /* Space above, if following another section */
}

.mou-slider-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading style */
.mou-slider-title {
    font-size: 32px;
    font-weight: bold;
    color: #28a745; /* Green color */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Description style */
.mou-slider-description {
    font-size: 16px;
    color: #333;
    max-width: 850px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Slider wrapper */
.mou-slider {
    overflow: hidden;
    position: relative;
}

/* Slide track animation */
.mou-slide-track {
    display: flex;
    width: calc(220px * 20); /* Adjust depending on number of logos */
    animation: mou-scroll 45s linear infinite;
    gap: 20px;
    align-items: center;
    padding: 10px 0;
}

/* Each logo image */
.mou-slide-track img {
    width: 220px;
    height: 120px;
    object-fit: contain;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.mou-slide-track img:hover {
    transform: scale(1.05);
}

/* Animation */
@keyframes mou-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .mou-slider-title {
        font-size: 24px;
    }

    .mou-slider-description {
        font-size: 14px;
        padding: 0 10px;
    }

    .mou-slide-track {
        width: calc(160px * 20);
        animation-duration: 60s;
        gap: 15px;
    }

    .mou-slide-track img {
        width: 160px;
        height: 100px;
    }
}
</style>

/* Location Map Section */
/* Add space below the location section */
.location-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;

    /* Add space between map and footer */
    margin-bottom: 40px; /* You can increase if needed */
}
.location-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
}

.location-title {
    font-size: 28px;
    color: #28644c;
    margin-bottom: 30px;
}

.map-frame {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border: none;
    position: relative;
}

/* ✅ Add this to control the iframe inside */
.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .location-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .map-frame {
        height: 300px;
    }
}
/* About Us Dropdown Styling */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    font-size: 15px;
    transition: background 0.3s;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 999;
    border-radius: 4px;
    overflow: hidden;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: #28644c;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.2s;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
    color: #1f4d3a;
}

.dropdown:hover .dropdown-content {
    display: block;
}
/* About Us Dropdown Styling */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    font-size: 15px;
    transition: background 0.3s;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 999;
    border-radius: 4px;
    overflow: hidden;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: #28644c;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.2s;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
    color: #1f4d3a;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .map-frame {
    height: 300px;
  }
}

/* Full Width Slider */
.slider-container {
    width: 100vw;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slides {
    display: flex;
    transition: transform 1s ease-in-out;
    width: 400vw;
}

.slides img {
    width: 100vw;
    height: 600px;
    object-fit: cover;
}

/* Footer */
.site-footer {
    background-color: #0d1b16;
    color: #ffffff;
    padding: 50px 20px 20px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-column {
    flex: 1 1 220px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #d9d9d9;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #a8e6cf;
}

.footer-column p {
    font-size: 15px;
    color: #d9d9d9;
    margin: 8px 0;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: #ffffff;
    margin-right: 10px;
    font-size: 18px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #a8e6cf;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: #cccccc;
}
/* Mobile View */
@media (max-width: 768px) {
    .vc-card {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }

    .vc-card-image img {
        max-width: 200px;
        margin-bottom: 20px;
    }

    .vc-card-message h2 {
        font-size: 22px;
    }

    .vc-card-message p {
        font-size: 15px;
    }

    

----------- Mobile Styles (default) -----------

.top-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-container {
    justify-content: center;
    margin-bottom: 10px;
}

.top-links {
    justify-content: center;
    margin-top: 10px;
}

.navbar {
    flex-direction: column;
}

.navbar a {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.navbar a:first-child {
    border-top: none;
}

.slides img {
    height: 300px;
}

.home-title {
    font-size: 18px;
    margin: 15px 10px;
}

.footer-container {
    flex-direction: column;
    align-items: flex-start;
}

.footer-column {
    width: 100%;
    margin-bottom: 30px;
}

.social-icons {
    text-align: left;
}

----------- Tablet Styles -----------

@media (min-width: 768px) and (max-width: 1024px) {
    .top-bar {
        flex-direction: row;
        align-items: center;
    }

    .top-links {
        justify-content: flex-end;
    }

    .navbar {
        justify-content: center;
        gap: 8px;
    }
}

----------- Desktop Styles -----------

@media (min-width: 1024px) {
    .navbar {
        justify-content: center;
        gap: 15px;
        padding: 10px 20px;
    }
}

*/