* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Lato';
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.list {
      color: #555 !important;
    font-family: 'Inter' !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 21px !important;
    text-decoration: none !important;
}

.list:hover {
    color: #003362;
}

.container {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.top-bar {
    background: #07569E;
    color: white;
    padding: 8px 0;
    font-size: 15px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.accessibility-icons {
    display: flex;
    gap: 2px;
}

.accessibility-icons span {
    padding: 4px 8px;
    /* border: 1px solid white; */
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s;
}

.accessibility-icons span:hover {
    background: white;
    color: #1e4a72;
}

.main-header {
    padding: 20px 0;
    background: white;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.logo {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.title-section h1 {
    font-size: 25px;
    font-weight: 700;
    font-family: 'Inter';
    color: #1e4a72;
    margin-bottom: 8px;

}

.title-section p {
    font-size: 13px;
    font-family: 'Inter';
    color: #AC4343;
    line-height: 20px;
    max-width: 402px;
    text-transform: uppercase;
    font-weight: 700;
}

.header-logos {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-logo {
    height: 60px;
    width: auto;
}

/* Navigation */
.navigation {
    background: #07569E;
    display: flex;
    justify-content: center;

}


.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    display: block;
    color: white;
    text-decoration: none;
    /* padding: 9px 20px; */
        padding: 9px 18px;
    font-family: 'Lato';
    font-weight: 600;
    font-size: 12px;
    line-height: 30px;
    text-transform: uppercase;

}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: rgba(255, 255, 255, 0.1);
}

.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    width: 230px;
    list-style: none;
    top: 100%;
    left: 0;
    margin-bottom: .3rem;
}

.nav-menu .dropdown-menu li a {
    font-family: 'Lato';
    color: #00549f !important;
}

.nav-menu .dropdown-menu li a:hover {
    background-color: #f0f0f0;
    /* Change to your desired color */
}

.nav-menu .dropdown:hover .dropdown-menu {
    display: block;
}


.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.hero .carousel-inner img {
    height: 600px;
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 200px;
    width: 100%;
    /* background: linear-gradient(to bottom, transparent, white); */
    z-index: 5;
}


.services {
    margin-top: -70px;
    position: relative;
    z-index: 10;
}

/* .service-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
} */

/* Services
.services {
    background: #f8f9fa;
    padding: 60px 0;
} */

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 30px; */
}

.service-card {
    color: white;
    padding: 40px 30px;
    text-align: center;
    /* border-radius: 8px; */
    transition: transform 0.3s;
}

.card1 {
    background: #07569E;
    border-radius: 0px 0px 0px 30px;
}

.card2 {
    background: #003362;
}

.card3 {
    background: #07569E;
    border-radius: 0px 0px 30px 0px;
}

.service-card img {
    width: 70px;
    height: 70px;
}

.service-card:hover {
    transform: translateY(-5px);
    background-color: #8E3939;
}

.service-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.service-card h3 {
    margin-bottom: 15px;
    font-family: 'Inter';
    font-weight: 700;
    font-size: 25px;
    line-height: 35px;
    letter-spacing: 0%;
    vertical-align: middle;

}

.service-card p {
    font-family: Inter;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;

}

.service-link {
    color: white;
    text-decoration: none;
    border: 2px solid white;
    padding: 5px 15px;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 500;
    display: inline-block;
}

.service-link:hover {
    background: white;
    color: #1e4a72;
}

/* Content Sections */
.content-sections {
    padding: 100px 0;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.content-column h2 {
    color: #07569E;
    margin-bottom: 25px;
    font-family: 'Inter';
    font-weight: 700;
    font-size: 25px;
    line-height: 35px;
    letter-spacing: 0%;
    vertical-align: middle;

}

.content-items {
    margin-bottom: 20px;
}

.content-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.content-item:last-child {
    border-bottom: none;
}

.content-item p {

    color: #555;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0%;
    vertical-align: middle;

}


.content-item a {

    color: #555 !important;
    font-family: 'Inter' !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 21px !important;
    letter-spacing: 0% !important;
    vertical-align: middle !important;
    

}



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

.links-list li {
    margin-bottom: 12px;
}

.links-list a {
    color: #1e4a72;
    text-decoration: none;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0%;
    vertical-align: middle;

}

.links-list a:hover {
    color: #2d5a8a;
    text-decoration: underline;
}

.see-all {
    color: #1e4a72;
    text-decoration: none;
    margin-top: 10px;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    vertical-align: middle;

}

.see-all:hover {
    text-decoration: underline;
}


.content-items-wrapper {
    max-height: 320px;
    overflow: hidden;
    position: relative;
}

.content-items {
    display: flex;
    flex-direction: column;
    animation: scrollUp 10s linear infinite;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* About Section */
.about-section {
    background: #F3F9FF;
    padding: 60px 0;
}

.about-content {
    padding: 31px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 535px;
    height: 398px;
    top: 1838px;
    left: 100px;
    border-radius: 3px;
}

.video_block video {
    width: 100%;
    object-fit: cover;
    position: relative;
    border-radius: 8px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background: rgba(30, 74, 114, 0.8); */
    background: white;
    color: #1e4a72;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.play-button:hover {
    background: rgba(30, 74, 114, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.about-text h2 {
    color: #1e4a72;
    font-family: 'Inter';
    font-weight: 700;
    font-size: 25px;
    line-height: 35px;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-bottom: 1rem;

}

.about-text p {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    line-height: 35px;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-bottom: 2rem;
}

.learn-more-btn {
    background: #1e4a72;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    font-weight: 500;
    display: inline-block;
}

.learn-more-btn:hover {
    background: #2d5a8a;
}

/* Statistics and Slider */
/* .statistics-section {
    padding: 60px 0;
    background: white;
}

.stats-slider-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: white;
    transition: box-shadow 0.3s;
}

.stat-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #1e4a72;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.slider-section {
    background: #1e4a72;
    color: white;
    padding: 80px 40px;
    text-align: center;
    border-radius: 8px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-section h3 {
    font-size: 28px;
    font-weight: bold;
} */

.statistics-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.stats-slider-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    flex: 1;
    min-width: 300px;
}

.stat-card {
    width: 295px;
    height: 193px;
    top: 2525px;
    left: 100px;
    border-width: 1px;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #07569E;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

.stat-icon {
    width: 74px;
    height: 74px;

    margin-bottom: 0.5rem;
}

.stat-text {
    font-family: 'Inter';
    font-weight: 700;
    font-size: 25px;
    line-height: 35px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #07569E;

}

.stat-number {
    font-size: 1.75rem;
    font-weight: bold;
    color: #1e4a72;
}

.stat-label {
    font-size: 16px;
    font-weight: 700;
}

.slider-section {
    flex: 1;
    min-width: 300px;
    text-align: center;
    /* background: white; */
    padding: 2rem;
    border-radius: 12px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */


}

.slider-section img {
    width: 630px;
    height: 404px;
    top: 2522px;
    left: 749px;
    border-radius: 8px;
}


/* Activities */
.activities {

    padding: 60px 0;
    font-family: 'Inter';
}

.activities h2 {
    color: #1e4a72;
    text-align: center;
    margin-bottom: 50px;
    font-size: 28px;
    font-weight: bold;
}

.swiper {
    padding: 6rem 3rem !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 21px !important;
    /* background: #ffffff !important; */
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
    padding: 9px !important;
    border-radius: 27px !important;
    font-weight: 800 !important;
}

.activity-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
    background-color: #F3F9FF;
    padding: 5rem 3rem;
}

.activity-image img {
    width: 100%;
    height: 350px;
    /* object-fit: cover; */
    border-radius: 8px;
}

.activity-text {
    padding-top: .4rem;
}

.activity-text h3 {
    color: #1e4a72;
    margin-bottom: 25px;
    font-size: 25px;
    font-weight: bold;
    margin-left: 2rem;
}

.activity-text ul {
    list-style: none;
}

.activity-text li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.activity-text li:before {
    content: "•";
    color: #1e4a72;
    position: absolute;
    left: 0;
    font-weight: bold;
}


/* Remove outer padding on the Swiper container */
.swiper.activity-content {
    padding: 0 !important;
    overflow: hidden;
}

/* Keep padding INSIDE each slide */
.swiper-slide>.row {
    padding: 6rem 3rem;
    background-color: #F3F9FF;
    border-radius: 12px;
    margin: 0;
}

/* Ensure slide takes full width */
.swiper-slide {
    width: 100% !important;
    box-sizing: border-box;
}

/* .activity-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.activity-text ul {
    padding-left: 1rem;
    list-style: disc;
} */

.see-all-center {
    text-align: center;
}

.see-all-btn {
    background: #1e4a72;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    font-weight: 500;
    display: inline-block;
}

.see-all-btn:hover {
    background: #2d5a8a;
}

/* Photo Gallery */
.photo-gallery {
    padding: 60px 0;
    background: white;
}

.photo-gallery h2 {
    color: #1e4a72;
    text-align: center;
    margin-bottom: 50px;
    font-size: 28px;
    font-weight: bold;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #003362;
    color: white;
    padding: 20px 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 11px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* .footer-bottom {
    text-align: center;
    padding-top: 12px;
    border-top: 1px solid rgb(255 255 255);
}

.footer-bottom p {
    font-size: 12px;
    margin-bottom: 5px;
    opacity: 0.9;
} */

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 12px;
    border-top: 1px solid rgb(255 255 255);
    font-size: 14px;
}

/* Center the copyright text */
.footer-bottom .copyright-text {
    margin: 0 auto;
    text-align: center;
}

/* Push visitor count to the right */
.footer-bottom .visitor-count {
    position: absolute;
    right: 20px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-slider-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .slider-section {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {

    .top-bar {
        font-size: 13px;
        text-align: center;
    }

    .top-bar-content {
        flex-direction: column;
        /* align-items: flex-start; */
        /* or center, based on design */
        gap: 8px;
    }

    .top-right {
        flex-direction: row;
        align-items: center;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
        /* text-align: center; */
    }

    .title-section h1 {
        font-size: 13px;
    }

    .logo {
        width: 68px;
        height: 68px;
        flex-shrink: 0;
    }

    .logo-section {
        display: flex;
        align-items: center;
        gap: 9px;
        flex: 1;
    }

    .header-logo {
        height: 36px;
        width: auto;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 59%;
        left: 0;
        width: 100%;
        background: #1e4a72;
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-image {
        height: 300px;
    }

    .service-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .activity-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-grid {
        /* grid-template-columns: 2fr; */
        justify-items: center;
    }

    .stat-card {
        width: 100%;
        max-width: 230px;
        height: 120px;
    }


    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .footer-links {
        flex-direction: none;
        align-items: center;
        gap: 15px;
    }


    .footer-links a {
        color: white;
        text-decoration: none;
        font-size: 9px;
        transition: opacity 0.3s;
    }

    .footer-bottom {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        padding-top: 7px;
        border-top: 1px solid rgb(255 255 255);
        font-size: 8px;
    }

    .footer-bottom .visitor-count {
        position: absolute;
        right: 20px;
        top: 21px;
    }

    .slider-section img {
        width: 100%;
        height: 100%;
    }

    .hero .carousel-inner img {
        height: 320px;
        object-fit: cover;
    }

    .service-card img {
        width: 47px;
        height: 43px;
    }

    .service-card h3 {
        font-size: 19px;
    }

    .service-card p {
        font-size: 12px;
    }

    .content-item {
        padding: 6px 0;
        border-bottom: 1px solid #eee;
    }

    /* Hide all dropdown menus by default */
    .nav-menu .dropdown-menu {
        display: none;
    }

    /* Show submenu when parent <li> has class 'open' */
    .nav-menu .dropdown.open .dropdown-menu {
        display: block;
    }

    .hero-title {
        font-size: 19px !important;
    }



    .content-column h2 {
        color: #07569E;
        margin-bottom: 17px;
        font-family: 'Inter';
        font-weight: 700;
        font-size: 22px;
        line-height: 6px;
        letter-spacing: 0%;
        vertical-align: middle;
    }

    .links-list a {
        color: #1e4a72;
        text-decoration: none;
        font-family: 'Inter';
        font-weight: 400;
        font-size: 14px;
        line-height: 14px;
        letter-spacing: 0%;
        vertical-align: middle;
    }

    .content-item p {
        color: #555;
        font-family: 'Inter';
        font-weight: 400;
        font-size: 12px;
        line-height: 15px;
        letter-spacing: 0%;
        vertical-align: middle;
    }

     .content-item a {
        color: #555;
        font-family: 'Inter';
        font-weight: 400;
        font-size: 12px;
        line-height: 15px;
        letter-spacing: 0%;
        vertical-align: middle;
    }

    .about-text p {
        font-size: 14px;
        line-height: 23px;
    }

    .about-text h2 {
        font-size: 21px;
        line-height: 31px;
    }

    .activity-text {
        padding-top: 2.4rem;
    }

    .activity-image img {
        width: 100%;
        height: 218px;
    }

    .activity-text h3 {
        margin-bottom: 22px;
        font-size: 21px;
    }

    .activity-text li {
        font-size: 12px;
    }

    .stat-icon img, svg {
        width: 52px;
        vertical-align: middle;
        height: 55px;
    }

    .slider-section img {
        width: 323px;
        height: 239px;
    }
    
    .bulb-icon
    {
        right: -121px !important;
        z-index: 12;
        width: 298px !important;
    }

    .right-icon {
        right: -3px;
        width: 108px !important;;
    }

    .left-icon {
        left: 13px;
        width: 70px !important;;
    }
}


@media (max-width: 480px) {
    .hero .carousel-inner img {
        height: 320px;
        object-fit: cover;
    }

    .logo {
        width: 68px;
        height: 68px;
        flex-shrink: 0;
    }

    .header-logo {
        height: 36px;
        width: auto;
    }

    .container {
        padding: 0 15px;
    }

    .stats-grid {
        /* grid-template-columns: 2fr; */
        gap: 15px;
    }

    .gallery-grid {
        /* grid-template-columns: 1fr; */
        gap: 15px;
    }

    .service-card {
        padding: 19px 20px;
    }

    .slider-section {
        padding: 40px 20px;
    }

    .title-section h1 {
        font-size: 13px;
    }

    .title-section p {
        font-size: 10px;
    }

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

    .content-item {
        padding: 6px 0;
        border-bottom: 1px solid #eee;
    }

    .hero-title {
        font-size: 19px !important;
    }

    .slider-section img {
        width: 323px;
        height: 239px;
    }

    .bulb-icon {
        right: -121px !important;
        z-index: 12;
        width: 298px !important;
    }

    .right-icon {
        right: -3px;
        width: 108px !important;;
    }

    .left-icon {
        left: 13px;
        width: 70px !important;;
    }
}


.subpage-hero {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.hero-item {
    position: relative;
    height: 100%;
}

.hero-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 27px;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    font-family: 'Inter';
}

.subpage-content {
    padding: 60px 0;
}

/*
.custom-card {
    display: flex;
    background-color: #fff;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 100%;
}

.card-image {
    width: 200px;
    height: auto;
    object-fit: cover;
}

.card-content {
    padding: 20px 24px;
    flex: 1;
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    color: #0d5aa7;
    margin-bottom: 8px;
}

.card-date {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 16px;
}

.card-description {
    font-size: 14px;
    color: #495057;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .custom-card {
        flex-direction: column;
    }

    .card-image {
        width: 100%;
    }
}

.eye-button {
    position: absolute;
    right: 60px;
} */

.custom-card {
    display: flex;
    /* background-color: #fff; */
    /* border-radius: 10px; */
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); */
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 20px;
    border: 1px solid #d8d7d799;
}

.card-image {
    width: 139px;
    /* object-fit: contain; */
    height: 149px;
}


.card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 20px;
    flex: 1;
}

.card-text {
    flex: 1;
}

.card-title {

    font-family: 'Inter' !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    line-height: 35px;
    vertical-align: middle;
    color: #07569E !important;
}

.card-date {
    font-family: 'Inter' !important;
    font-weight: 400;
    font-size: 14px;
    color: #555353;
    margin-bottom: 16px;
}

.card-description {
    font-family: 'Inter' !important;
    font-weight: 400;
    font-size: 14px;
    color: #555353;
    margin-bottom: 16px;
}

.eye-button img {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.event-card {
    max-width: 400px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    background-color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.event-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.event-content {
    padding: 20px;
}

.event-title {
    font-family: 'Inter';
    font-size: 22px;
    font-weight: 700;
    color: #00549f;
    margin-bottom: 0.5rem;
}

.event-date {
    font-family: 'Inter';
    font-size: 13px;
    color: #666;
    margin-bottom: 1rem;
}

.event-description {
    font-family: 'Inter';
    font-size: 13px;
    color: #444;
    line-height: 1.5;
}

.eye-icon {
    display: flex;
    justify-content: flex-end;
}


.eye-icon img {
    width: 22px;
    height: 22px;
    opacity: 0.8;
    transition: opacity 0.2s;
    color: #003362;
}

.eye-icon:hover img {
    opacity: 1;
}

.pagination {
    display: flex !important;
    justify-content: center !important;
    margin-top: 20px !important;
}

.pagination li {
    margin: 0 5px !important;
}

.pagination li a,
.pagination li span {
    padding: 8px 12px !important;
    border-radius: 4px !important;
    border: 1px solid #ddd !important;
    color: #007bff !important;
    text-decoration: none !important;
}

.pagination li.active span {
    background-color: #007bff !important;
    color: white !important;
    border-color: #007bff !important;
}


@media (max-width: 1020px) {
    .nav-menu li a {
        padding: 6px 9px;
    }
}
/* 
@media (max-width: 1230px) {
    .stat-card {
        width: 219px !important;
        height: 168px !important;
    }

    .slider-section img {
        width: 583px;
        height: 348px;
    }
}


@media (max-width: 1020px) {
    .slider-section img {
        width: 466px;
        height: 358px;
    }
} */



@media (min-width: 1021px) and (max-width: 1230px) {
    .stat-card {
        width: 219px !important;
        height: 168px !important;
    }

    .slider-section img {
        width: 583px;
        height: 348px;
    }
}


@media (min-width: 769px) and (max-width: 1020px) {
    .slider-section img {
        width: 466px;
        height: 358px;
    }
}


@media (max-width: 768px) {
    .slider-section img {
        width: 100%; 
        height: auto;
    }

    .stat-card {
        width: 100%;    
        height: auto;
    }
}





@media (min-width: 1231px) and (max-width: 1440px) {
    .stat-card {
        width: 261px;
         height: 193px;
    }

    .slider-section img {
        width: 612px;
        height: 397px;
    }
}



@media( max-width: 960px) {
    .stat-card {
        width: 167px !important;
        height: 136px !important;
    }
}



/* stamps in the sections */
.content-sections {
    position: relative;
    overflow: hidden;
}

.bulb-icon {
    position: absolute;
    bottom: 69px;
    right: -180px;
    z-index: 12;    
    /* opacity: 0.08; */
    width: 502px;
    pointer-events: none;
}

.bulb-icon img {
    width: 100%;
    height: auto;
    display: block;
}



.about-section {
    position: relative;
    overflow: hidden;
}

.about-bg-icon {
    position: absolute;
    bottom: 12px;
    z-index: 0;
    /* opacity: 0.08; */
   
    pointer-events: none;
}

.about-bg-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.left-icon {
    left: 13px;
    width:95px;
}

.right-icon {
   right: -19px;
    width: 158px;
}


.photo-gallery {
    position: relative;
    overflow: hidden;
}

.photo-bg-icon {
    position: absolute;
    z-index: 12;
    width: 200px;
    pointer-events: none;
}

.photo-bg-icon img {
    position: absolute;
    z-index: 12;
    width: 207px;
}

.l-icon {
    top: -7px;
    left: 0;
}