/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #1C5A84;
    --teal-green: #14b8a6;
    --yellow: #FBF32F;
    --white: #ffffff;
    --light-gray: #f3f4f6;
    --dark-gray: #374151;
    --text-dark: #1f2937;
}

body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    color: #222222;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-image: url(../images/header-bg.png);
    background-size: cover;
    color: var(--white);
    padding: 15px 0;
    border-style: solid;
    border-width: 8px 0px 0px 0px;
    border-color: #FBF32F;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.top-bar-content {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text h1 {
    background: linear-gradient(to right, #1c5a84 20%, #419ace 30%, #419ace 70%, #1c5a84 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    background-size: 500% auto;
    animation: textShine 5s ease-in-out infinite alternate;
    text-align: center;
    font-family: "Bree Serif", Sans-serif;
    font-size: 38px;
    font-weight: 900;
    color: #0B74B2;
    line-height: 55px;
}

.logo-text .city {
    text-align: center;
    font-family: "Domine", Sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: #069671;
}

.logo-text .tagline {
    text-align: center;
    font-family: "Domine", Sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #222222;
}

/* Navigation Bar */
.navbar {
    background: var(--secondary-blue);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu>li {
    position: relative;
    border-right: 1px solid #DADADA;
}

.nav-menu>li>a {
    font-family: "Domine", Sans-serif;
    font-size: 15px;
    font-weight: 600;
    display: block;
    padding: 8px 20px;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s;
}

.nav-menu>li>a:hover,
.nav-menu>li>a.active {
    color: #1C5A84;
    background-color: #FBF32F;
}

.nav-menu>li>a i {
    font-size: 12px;
    margin-left: 5px;
}

/* Submenu Styles */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 245px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    list-style: none;
    z-index: 1001;
    background-color: #1C5A84;
    border-radius: 5px 5px 5px 5px;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    position: relative;
}

.submenu a {
    display: block;
    padding: 3px 20px;
    font-family: "Domine", Sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
    border-bottom: 1px solid #f2f2f2;
}

.submenu a:hover,
.submenu a.active {
    color: #1C5A84;
    background-color: #FBF32F;
}

.submenu-2 {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s;
    list-style: none;
}

.has-submenu-2:hover .submenu-2 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    color: #FBF32F;
    background-color: #1C5A84;
}

.submenu a i {
    float: right;
    font-size: 10px;
    margin-top: 5px;
}

/* Offcanvas Mobile Menu */
.offcanvas {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s;
    z-index: 2000;
    overflow-y: auto;
}

.offcanvas.active {
    left: 0;
}

.offcanvas-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offcanvas-header h3 {
    margin: 0;
}

.offcanvas-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offcanvas-body {
    padding: 20px 0;
}

.offcanvas-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offcanvas-menu>li>a {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--light-gray);
    font-weight: 500;
}

.offcanvas-menu>li>a.active {
    background: var(--light-gray);
    color: var(--primary-blue);
}

.offcanvas-menu>li>a i {
    float: right;
    font-size: 12px;
    margin-top: 3px;
}

.submenu-mobile {
    display: none;
    list-style: none;
    padding: 0;
    background: var(--light-gray);
}

.submenu-mobile.active {
    display: block;
}

.submenu-mobile li a {
    padding: 12px 20px 12px 40px;
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid #e5e7eb;
}

.submenu-mobile li a.active {
    color: var(--primary-blue);
    background-color: var(--light-gray);
    font-weight: 600;
}

.submenu-mobile-2 {
    display: none;
    list-style: none;
    padding: 0;
    background: #e5e7eb;
}

.submenu-mobile-2.active {
    display: block;
}

.submenu-mobile-2 li a {
    padding: 10px 20px 10px 60px;
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid #d1d5db;
}

.submenu-mobile-2 li a.active {
    color: var(--primary-blue);
    background-color: #d1d5db;
    /* Slightly darker than light-gray to distinguish depth */
    font-weight: 600;
}

.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1999;
}

.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    font-family: "Bree Serif", Sans-serif;
    margin-top: 20px;
}
.section-title-one {
    font-size: 28px;
    color: #aba63e;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    font-family: "Bree Serif", Sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--teal-green);
}

/* Overview Section */
.overview-section {
    background: var(--white);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.overview-left img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.overview-left p {
    margin-bottom: 15px;
    text-align: justify;
}

.info-box {
    background-color: #CDEBFF;
    padding: 0px 0px 0px 10px;
    border-style: solid;
    border-width: 0px 05px 0px 05px;
    border-color: #0C5383;
    border-radius: 16px 16px 16px 16px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.info-box h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box ul li i {
    font-size: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: center;
    margin-top: 20px;
}

.features-column .d-flex {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 20px;
    margin-bottom: 10px;
}

.read_more-white {
    color: #069671 !important;
    font-weight: 700;
    text-decoration: none;
}

.read_more-white:hover {
    color: #0b74b2 !important;
    font-weight: 700;
}

.feature-item {
    text-align: center;
    padding-left: 15px;
    background: var(--light-gray);
    border-radius: 8px;
}
.feature-item-one {
    text-align: center;
    padding-left: 15px;
    border-radius: 8px;
}
.feature-item i {
    font-size: 40px;
    color: var(--teal-green);
    margin-bottom: 15px;
}

/* Vision Mission Section */
.vision-mission-section {
    background-image: url(../images/mission-bg.jpg);
    background-position: 50%;
    background-size: cover;
    height: 100%;
    width: 100%;
    color: var(--white);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vision-box,
.mission-box {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.vision-box i,
.mission-box i {
    font-size: 60px;
    margin-bottom: 20px;
    fill: #F3FF28;
    color: #F3FF28;
    border-color: #F3FF28;
}

.vision-box h3,
.mission-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #F3FF28;
    font-family: "Bree Serif", Sans-serif;
}

.vision-box p,
.mission-box p {
    text-align: justify;
    line-height: 1.8;
}

/* Message Section */
.message-section {
    background: var(--white);
}

.message-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.director-message .message-content {
    grid-template-columns: 1fr 300px;
}

.message-image {
    text-align: center;
}

.message-image img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 1px 0px 10px 0px rgba(56.0763946533203, 52.66051190681319, 52.66051190681319, 0.5);
}

.message-image figcaption {
    text-align: center;
    color: #069671;
}

.message-image p {
    color: var(--dark-gray);
    font-size: 14px;
}

.message-text {
    text-align: justify;
}

.message-text p {
    margin-bottom: 15px;
}

/* Team Section */
.team-section {
    background: #1C5A84;
}

.team-section .section-title,
.event-section .section-title {
    color: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
    background-image: linear-gradient(180deg, #EAE171 47%, #eae171 100%);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-member h4 {
    color: var(--primary-blue);
}

.team-member p {
    color: var(--dark-gray);
    font-size: 14px;
}

/* News Section */
.news-section {
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background: var(--yellow);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-date {
    display: block;
    color: var(--dark-gray);
    font-size: 14px;
}

.news-content h4 {
    color: var(--primary-blue);
}

.news-content p {
    margin-bottom: 15px;
    font-size: 16px;
}

.read-more {
    display: inline-block;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--secondary-blue);
}

.btn-view-all {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-view-all:hover {
    background: var(--secondary-blue);
}

.text-center {
    text-align: center;
}

/* Calendar Section */
.calendar-section {
    background: var(--light-gray);
}

.calendar-list {
    max-width: 800px;
    margin: 0 auto;
}

.calendar-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.calendar-date {
    background: var(--teal-green);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
}

.calendar-date .day {
    display: block;
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
}

.calendar-date .month {
    display: block;
    font-size: 14px;
    margin-top: 5px;
}

.calendar-content h4 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.calendar-content p {
    color: var(--dark-gray);
    margin: 0;
}

/* Reach Section */
.reach-section {
    background: var(--white);
}

.reach-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-container img {
    width: 100%;
    border-radius: 8px;
}

.map-legend {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
}

.map-legend h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.map-legend ul {
    list-style: none;
    padding: 0;
}

.map-legend li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    display: inline-block;
}

/* Publications Section */
.publications-section {
    background: var(--light-gray);
}

.publications-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.publication-item {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.publication-item h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.pub-year {
    color: var(--dark-gray);
    font-size: 14px;
}

/* Donate Section */
.donate-section {
    background: var(--white);
}

.donate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.donate-form {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.btn-send {
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-send:hover {
    background: var(--secondary-blue);
}

.donate-image img {
    width: 100%;
    border-radius: 8px;
}

/* Collaborators Section */
.collaborators-section {
    background: var(--light-gray);
}

.collaborators-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
}

.collaborator-logo {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.collaborator-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.collaborator-logo:hover img {
    filter: grayscale(0%);
}

/* Gallery Preview Section */
.gallery-preview-section {
    background: var(--white);
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

/* Videos Section */
.videos-section {
    background: var(--light-gray);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: #2E2E2E;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}


.footer-column h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-column p {
    opacity: 0.9;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

.media-flex {
    display: flex;
    gap: 40px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.swiper {
    padding: 20px 0;
}

/* Left Column - Gallery */
.gallery-box {
    flex: 1;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    object-fit: cover;
}

/* Right Column - Video */
.video-box {
    flex: 1;
}

.video-container iframe {
    width: 100%;
    height: 300px;
    border-radius: 6px;
}

/* Button */
.btn-view-all {
    background: #063874;
    color: #fff;
    padding: 8px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-view-all:hover {
    background: #042758;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .overview-content,
    .vision-mission-grid,
    .message-content,
    .donate-content,
    .reach-content {
        grid-template-columns: 1fr;
    }

    .director-message .message-content {
        grid-template-columns: 1fr;
    }

    .director-message .message-image {
        order: 2;
    }

    .director-message .message-text {
        order: 1;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .collaborators-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-preview-grid {
        grid-template-columns: 1fr;
    }

    .publications-list {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .logo-text h1 {
        font-size: 15px;
        line-height: 27px;
    }

    .logo-text .city {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .collaborators-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 24px;
    }

    .hero {
        height: 300px;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, rgb(25 25 27 / 52%), rgb(9 9 9 / 33%)), url(../images/ab.png);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
    /* background-color: #E4DADA; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header h1 {
    font-size: 41px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

/* History Section Styles */
.history-section {
    background: var(--white);
    padding: 60px 0;
}

.history-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.history-timeline {
    position: relative;
    padding-left: 40px;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--teal-green);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--teal-green);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--teal-green);
}

.timeline-year {
    position: absolute;
    left: -120px;
    top: 0;
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    min-width: 80px;
    text-align: center;
}

.timeline-content h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 24px;
}

.timeline-content p {
    text-align: justify;
    line-height: 1.8;
    margin-bottom: 10px;
}

.history-stats {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.history-stats h2 {
    color: var(--primary-blue);
    margin-bottom: 30px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
}

.stat-item i {
    font-size: 32px;
    color: var(--teal-green);
    margin-bottom: 10px;
}

.stat-item h3 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--dark-gray);
    font-size: 14px;
    margin: 0;
}

/* Gallery Full Section Styles */
.gallery-full-section {
    background: var(--white);
    padding: 60px 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--light-gray);
    border: 2px solid var(--light-gray);
    border-radius: 25px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item-full {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s, opacity 0.3s;
}

.gallery-item-full img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item-full:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item-full:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* Contact Section Styles */
.contact-section {
    background: var(--white);
    padding: 60px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info h2 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.contact-info>p {
    margin-bottom: 30px;
    text-align: justify;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 24px;
    color: var(--teal-green);
    margin-top: 5px;
    min-width: 30px;
}

.contact-item h4 {
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin: 0;
}

.contact-form-wrapper {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
}

.contact-form-wrapper h2 {
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.map-section {
    margin-top: 40px;
}

.map-section h2 {
    color: var(--primary-blue);
    margin-bottom: 25px;
    text-align: center;
}

.map-section .map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* All News Section Styles */
.all-news-section {
    background: var(--white);
    padding: 60px 0;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.news-article {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    background: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.news-article-image {
    overflow: hidden;
    border-radius: 8px;
}

.news-article-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-article:hover .news-article-image img {
    transform: scale(1.1);
}

.news-article-content {
    display: flex;
    flex-direction: column;
}

.news-article-content .news-date {
    color: var(--teal-green);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.news-article-content h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 24px;
}

.news-article-content p {
    text-align: justify;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.news-article-content .read-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.news-article-content .read-more i {
    transition: transform 0.3s;
}

.news-article-content .read-more:hover i {
    transform: translateX(5px);
}

/* 08-12-2025 */
/* Layout for two columns */
.event-map-wrapper {
    display: flex;
    gap: 40px;
}

/* Left side events */
.events-left {
    flex: 1;
}

/* Right side map */
.map-right {
    flex: 1;
}

/* Event card style (from previous code) */
.event-card {
    display: flex;
    flex-direction: column;
    background: #e5e8eb;
    border-radius: 10px;
    overflow: hidden;
    gap: 15px;
    padding: 0;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.event-img {
    width: 100%;
}

.event-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.event-content {
    padding: 20px;
}

.event-title {
    font-size: 18px;
    font-weight: 700;
    color: #063874;
}

.event-date {
    font-size: 14px;
    color: #1e5ea8;
    margin: 5px 0;
}

.event-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 12px;
}

.read-more {
    border: 2px solid #1e5ea8;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 14px;
    color: #1e5ea8;
    text-decoration: none;
    transition: .3s;
}

.read-more:hover {
    background: #1e5ea8;
    color: #fff;
}

.view-all-btn {
    background: #fbf32f;
    color: #222;
    padding: 10px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.view-all-btn:hover {
    background: #fff;
}

.map-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.event-section {
    background-image: url(../images/map_bg.jpg);
    background-position: 100% 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.media-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Make columns equal width */
.gallery-box,
.video-box {
    flex: 1;
}

/* Make image fit nicely */
.gallery-preview-grid img,
.video-box img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

/* Button UI */
.btn-view-all {
    background: #063874;
    color: #fff;
    padding: 10px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
    display: inline-block;
}

.btn-view-all:hover {
    background: #042e6e;
}

.footer-address li {
    display: flex;
    /* align-items: center; */
    gap: 10px;
}

.footer-address li i {
    color: #fbf32f;
    font-size: 16px;
    margin-top: 5px;
}

a.footer-link {
    color: #fbf32f;
    text-decoration: none;
    transition: .3s;
}

a.footer-link:hover {
    color: #fff;
}

.footer-links li i {
    color: #fbf32f;
    font-size: 12px;
}

.hero {
    width: 100%;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    font-weight: 700;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: #063874;
}

.hero {
    padding: 0;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    font-size: 13px !important;
}

/* Better Arrow Style */
.swiper-button-next,
.swiper-button-prev {
    width: 45px !important;
    height: 45px !important;
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 50% !important;
    backdrop-filter: blur(6px) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    color: #063874;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #063874;
    color: #fff;
    transform: scale(1.13);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-weight: 900 !important;
}

.overview-right h3 {
    font-family: "Bree Serif", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    -webkit-text-stroke-color: #000;
    stroke: #000;
    color: #A5A02A;
}

/* Responsive Styles for Sub Pages */
@media(max-width:600px) {

    .gallery-preview-grid img,
    .video-box img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 18px;
    }

    .history-content {
        grid-template-columns: 1fr;
    }

    .history-stats {
        position: static;
    }

    .timeline-year {
        position: static;
        display: inline-block;
        margin-bottom: 15px;
    }

    .timeline-item {
        padding-left: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .news-article {
        grid-template-columns: 1fr;
    }

    .logo-img {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .gallery-grid-full {
        grid-template-columns: 1fr;
    }

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media(max-width:992px) {
    .media-flex {
        flex-direction: column;
    }

    .gallery-preview-grid img,
    .video-box img {
        height: 280px;
    }

    .event-map-wrapper {
        flex-direction: column;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
    }

    .event-img img {
        width: 100%;
        height: auto;
    }

    .map-right {
        margin-top: 30px;
    }

    .media-flex {
        flex-direction: column;
    }

    .gallery-preview-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
.subpage h3{
    font-size: 22px;
    font-weight: 800;
    color: #1C5A84;
    margin-top: 25px;
    margin-bottom: 25px;
}
.subpage ul li{
    margin-left: 20px;
}
.subpage h4{
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 15px;
}
p{
    margin-top: 15px;
    margin-bottom: 15px;
}
.footer-column h4 {
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
}
.footer-column ul li a:hover{
    color: #fbf32f;
}
.footer-color{
    color: #fbf32f;
}
.footer-bottom a:hover{
    color: #fff;
}
.footer-bottom a{
    color:#fbf32f;
    text-decoration: none;
}
a{
    text-decoration: none;
}
.post-content-section h1{
    font-size: 27px;
    font-weight: 600;
    color: #1c5a84;
    margin-bottom: -17px;
}
.media-section{
    background-color: transparent;
    background-image: radial-gradient(at bottom right, #066CB1 0%, #EAE337 100%);
}