/* @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Display:ital,wght@0,100..900;1,100..900&display=swap'); */


.noto-serif-display-bold {
    font-family: "Noto Serif Display", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

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

/* General Styling */
body {
    margin: 0;
    font-family: 'Noto Serif Display', sans-serif;
    overflow-x: hidden;
}

/* PARTNER */
/* @import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap"); */




section {
    display: grid;
    place-items: center;
}

h1 {
    font-size: 2.5rem;
    padding: 20px;
    margin: 20px 0px;
}

/* .slider {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 80%;
    overflow: hidden;
    background: rgb(255, 255, 255);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7.4px);
    -webkit-backdrop-filter: blur(7.4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.slider-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    animation: scrolling 20s linear infinite;

}

@keyframes scrolling {

    0% {
        transform: translateX(80%);
    }

    100% {
        transform: translateX(-20%);
    }
}

.slider-items img {
    width: 12%;
    margin: 20px;

} */
/*-- Tooltip Social Media --*/
.tooltip-social {
    background: #262626;
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    padding: 0.5rem 0.4rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -90%);
    transition: all 0.2s ease;
    z-index: 1;
}

.tooltip-social:after {
    content: " ";
    position: absolute;
    bottom: 1px;
    left: 50%;
    border: solid;
    border-width: 10px 10px 0 10px;
    border-color: transparent;
    transform: translate(-50%, 100%);
}

.social-media a .tooltip-social:after {
    border-top-color: #262626;
}

.social-media a:hover .tooltip-social {
    opacity: 1;
    transform: translate(-50%, -130%);
}

/* Header Section Styling */
header {

    background-color: #a0a1a1;
    /* padding: 30px 20px; */
    /* text-align: center; */
    /* color: white; */

}

.header-section {
    /* background: url('img/banner5.jpg') no-repeat center top/cover; */
    position: relative;
    z-index: 2;
}

.header-section .navbar {
    background-color: rgba(0, 77, 64, 0.7);

}

.navbar a {
    /* font-size: 900; */
    color: #e2dfdf;
}

.navbar-brand img {
    height: 80px;
    padding-top: 20px;
    margin-right: 10px;
}

.nav-link {
    font-size: 1.25rem;
    margin: 10px;

    color: #e2dfdf !important;
    transition: all 0.3s ease-in-out;
}


.nav-link:hover {
    color: #ffd700 !important;
    border-bottom: .85px solid white;
    transform: scale(1.1);

}

.navbar ul {
    align-items: center;

}

.navbar ul li {
    margin-right: 15px;
}


/* Hero Section Styling */
.hero-section {
    background: url('img/banner5.jpg') no-repeat center top/cover;
    height: 700px;
    position: relative;
    color: white;
    text-align: center;
    padding: 150px 0;
    margin-top: -100px;
    /* Adjust based on navbar height */
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 77, 64, 0.7);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h5 {
    font-size: 3rem;
    font-weight: bold;
    padding-top: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-section h5 {
    font-size: 2rem;
    font-weight: bold;
    padding-top: 100px;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.hero-section .btn {
    background-color: #ffd700;
    color: #004d40;
    padding: .5rem 1rem;
    text-decoration: none;
    display: inline-block;
    margin-left: 15px;
    border: none;
    font-size: 1.25rem;
    transition: background-color 0.3s ease;
}

.hero-section .btn:hover {
    background-color: #ffc107;
    background-position: left bottom;
    color: #004d40;
}

/* Slide effect btn */
#slide-btn {
    padding: 10px 20px;
    font-size: 16px;
    color: #ffc107;
    background: linear-gradient(90deg, #ffc107 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    border: 1px solid #ffc107;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

#slide-btn:hover {
    background-position: left bottom;
    color: rgb(0, 0, 0);
    transition: all 0.5s ease-in-out
}

@media (max-width: 768px) {
    .hero-section {
        height: 500px;
        padding: 100px 0;
    }

    .hero-section h5 {
        font-size: 1rem;
    }

    h1.display-4 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .hero-section .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}



/* Our Social Initiatives Section */
.our-social-initiatives {
    padding: 40px 0;
}

.our-social-initiatives h2 {
    color: #467d72;

}

/* Card Styles */

.card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #467d72;
    /* Title color */
}

.card-text {
    font-size: 0.875rem;
    color: #555;
    text-align: justify;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Media Queries */

/* Tablets (portrait and landscape) */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 20px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .hero-section .btn-primary {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Smartphones (portrait) */
@media (max-width: 576px) {

    .hero-section {
        padding: 60px 10px;
    }

    .hero-section h1 {
        font-size: 1.5rem;
    }

    .hero-section p {
        font-size: 0.9rem;
    }

    .hero-section .btn-primary {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .our-social-initiatives {
        padding: 20px;
    }

    .our-social-initiatives .card {
        margin-bottom: 20px;
    }

    .our-social-initiatives .card img {
        height: 200px;
    }
}

/* Who We Are Section Styling */
.who-we-are-section {
    /* background-color: #ff0000; */
    padding: 20px 10;
}

.who-we-are-section h2 {
    color: #004d40;
    margin-bottom: 20px;
}

.who-we-are-section p {
    color: #555555;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
}

.who-we-are-section img {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
}

.drop-cap::first-letter {
    -webkit-initial-letter: 2;
    initial-letter: 2;
    color: orange;
    font-weight: bold;
    margin-right: .75em;
}

/* Our Partners Section */
.partners-section {
    margin: 0 auto;
    padding: 60px 0;
    /* background-color: #f8f9fa; */
    text-align: center;
    overflow-x: hidden;
}

.partners-section h2 {
    color: #2EADBD;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.partners-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #9FDB11;
}

.partner-slider {
    width: 100%;
    max-width: 1200px;
    margin: 0;
    padding: 30px 0;
    position: relative;

}

.partner-slider::before,
.partner-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
}

.partner-slider::before {
    left: 0;
    background: linear-gradient(90deg, rgba(248, 249, 250, 1) 0%, rgba(248, 249, 250, 0) 100%);
}

.partner-slider::after {
    right: 0;
    background: linear-gradient(270deg, rgba(248, 249, 250, 1) 0%, rgba(248, 249, 250, 0) 100%);
}

.partner-slider-container {
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 20px 0;
}

.partner-slider-track {
    display: flex;
    align-items: center;
    animation: scroll 30s linear infinite;
    will-change: transform;
}

.partner-slider-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    width: 180px;
    height: 120px;
    margin: 0 40px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-180px * 6 - 40px * 12));
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .partner-logo {
        width: 150px;
        height: 100px;
        margin: 0 30px;
    }
}

@media (max-width: 768px) {
    .partners-section h1 {
        font-size: 2rem;
    }

    .partner-logo {
        width: 120px;
        height: 80px;
        margin: 0 20px;
        padding: 15px;
    }

    .partner-slider::before,
    .partner-slider::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    body {
        max-width: 100%;
        overflow-x: hidden;

    }
}

@media (max-width: 576px) {
    .partners-section {
        padding: 40px 0;
    }

    .partners-section h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .partner-logo {
        width: 100px;
        height: 70px;
        margin: 0 15px;
        padding: 10px;
    }

    @keyframes scroll {
        100% {
            transform: translateX(calc(-100px * 6 - 15px * 12));
        }
    }
}

/* Footer Styling */
.footer-section {
    background: linear-gradient(135deg, #343a40, #212529);
    color: #ffffff;
    padding: 60px 0;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;

}

.footer-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% 20%, 0 10%);
}

.footer-section h5 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-section p {
    color: #dcdcdc;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-section a {
    color: #dcdcdc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-section .footer-logo {
    max-width: 150px;
    align-items: start;
    /* margin-bottom: 20px; */
}

.footer-section .social-icons {
    text-align: left;
}

.footer-section .social-icons a {
    font-size: 1.5rem;
    margin: 0 10px;
    color: #dcdcdc;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-section .social-icons a:hover {
    color: #ffffff;
    transform: scale(1.2);
}

.footer-section .row:last-child {
    margin-top: 20px;
    /* border-top: 1px solid #dcdcdc; */
    padding-top: 20px;
}

.footer-section p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Media Queries for Footer */
@media (max-width: 992px) {

    footer .col-md-6,
    footer .col-md-4 {
        flex: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    footer .col-md-4 {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    footer .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }

    footer .scroll-to-top img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 30px 15px;
        font-size: 0.875rem;
    }

    footer h5 {
        font-size: 1.125rem;
    }

    footer p {
        font-size: 0.75rem;
    }

    .footer-section .footer-logo {
        max-width: 100px;
        margin-bottom: 20px;
    }
}

/* Scroll to Top Button Styling */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #467d72;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top img {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    footer .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }

    footer .scroll-to-top img {
        width: 20px;
        height: 20px;
    }
}

/* Media Query for Small Screens */
@media (max-width: 576px) {
    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }

    .scroll-to-top img {
        width: 20px;
        height: 20px;
    }
}


/* General Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Testimonials Section */
.what-we-do-services {

    background-color: #f8f9fa;
    padding: 50px 0;
    text-align: center;

}

.what-we-do-services h2 {
    font-size: 2.5rem;
    color: #467d72;
    margin-bottom: 20px;
}

.what-we-do-services q {
    font-size: 1.5rem;
    color: #2e3332;
    margin-bottom: 20px;

}

.what-we-do {
    height: 450px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 40px 0 40px 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.what-we-do h2 {
    height: 100px;
    font-size: 1.5rem;
    text-align: justify;
    padding: 1rem;
    margin-bottom: 0.8rem;
}

.what-we-do p {
    font-size: 1.1rem;
    color: #555;
    /* padding: 1rem 0  ; */
    text-align: justify;
}

/* .what-we-do h5 {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #467d72;
} */
@media (max-width: 576px) {
    .what-we-do-services h2 {
        font-size: 1.5rem;
    }
}

/* Gallery Section */
.gallery {
    width: 100%;
    
    background-color: #f8f9fa;
    padding: 40px 0;
    /* margin-bottom: 30px; */
}

.gallery h2 {
    font-size: 2.5rem;
    color: #467d72;
    margin-bottom: 40px;
}

.gallery img {
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

img.img-fluid{
    width: 100%;
    height: 200px !important;
}
/* Media Queries */
@media (max-width: 768px) {
    .gallery img {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .gallery {
        padding: 10px 0;
    }

    .gallery img {
        margin-bottom: 15px;
    }
}


/* Events Section */
.events {
    background-color: #fff;
    padding: 40px 0;
    text-align: center;
}

.events h2 {
    font-size: 2.5rem;
    color: #467d72;
    margin-bottom: 40px;
}

.event {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.event h5 {
    font-size: 1.2rem;
    color: #467d72;
    margin-bottom: 15px;
}

.event p {
    font-size: 1rem;
    color: #555;
}

/* Volunteer Section */
.volunteer {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.volunteer h2 {
    font-size: 2.5rem;
    color: #467d72;
    margin-bottom: 40px;
}

.volunteer p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.volunteer .btn-primary {
    background-color: #467d72;
    border-color: #467d72;
    font-size: 1rem;
    padding: 10px 20px;
    transition: background-color 0.3s, border-color 0.3s;
}

.volunteer .btn-primary:hover {
    background-color: #355d5b;
    border-color: #355d5b;
}

/* Newsletter Signup Section */
.newsletter {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    color: #467d72;
    margin-bottom: 40px;
}

.newsletter p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.newsletter .form-control {
    width: 50%;
    margin: 0 auto 20px;
}

.newsletter .btn-primary {
    background-color: #467d72;
    border-color: #467d72;
    font-size: 1rem;
    padding: 10px 20px;
    transition: background-color 0.3s, border-color 0.3s;
}

.newsletter .btn-primary:hover {
    background-color: #355d5b;
    border-color: #355d5b;
}

/* Donation Section */
.donate {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.donate h2 {
    font-size: 2.5rem;
    color: #467d72;
    margin-bottom: 40px;
}

.donate p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.donate .btn-primary {
    background-color: #467d72;
    border-color: #467d72;
    font-size: 1rem;
    padding: 10px 20px;
    transition: background-color 0.3s, border-color 0.3s;
}

.donate .btn-primary:hover {
    background-color: #355d5b;
    border-color: #355d5b;
}

/* Media Queries */
@media (max-width: 768px) {
    .newsletter .form-control {
        width: 80%;
    }
}

@media (max-width: 576px) {

    .volunteer .btn-primary,
    .newsletter .btn-primary,
    .donate .btn-primary {
        width: 100%;
        padding: 10px;
    }

    .testimonials,
    .events,
    .volunteer,
    .newsletter,
    .donate {
        padding: 30px 0;
    }
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slideInUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    100% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }

    100% {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}





/* Media Queries */
@media (max-width: 768px) {
    .footer-section .col-md-6 {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-section .col-md-6.text-right {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-section {
        text-align: center;
    }

    .footer-section ul li {
        display: inline-block;
        margin: 0 10px;
    }
}



@media (min-width: 1440px) {

    /* Header Section */
    .header-section .navbar {
        padding: 1.5rem 2rem;
    }

    .navbar-brand img {
        height: 60px;
    }

    .nav-link {
        font-size: 1.3rem;
        margin: 15px;
    }

    /* Hero Section */
    .hero-section {
        height: 800px;
        padding: 200px 0;
    }

    .hero-section h1 {
        font-size: 3.5rem;
        padding-top: 200px;
    }

    .hero-section p {
        font-size: 1.5rem;
    }

    .hero-section .btn {
        font-size: 1.5rem;
        padding: 0.75rem 1.5rem;
    }

    #slide-btn {
        padding: 15px 30px;
        font-size: 18px;
    }

    /* Our Social Initiatives Section */
    .our-social-initiatives {
        margin: 0 100px;
        padding: 40px 0;
    }

    .our-social-initiatives h2 {
        font-size: 2.5rem;
    }

    /* Card Styles */
    .card {

        border-radius: 12px;
    }

    .card-body {

        padding: 25px;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .card-text {
        font-size: 1rem;
    }

    /* Who We Are Section */
    .who-we-are-section {
        margin: 0 100px;
        padding: 40px 0;
    }

    .who-we-are-section h2 {
        font-size: 2.5rem;
    }

    .who-we-are-section p {
        font-size: 1.25rem;
    }

    /* Footer Section */
    .footer-section {
        padding: 80px 0;
    }

    .footer-section h5 {
        font-size: 1.75rem;
    }

    .footer-section p {
        font-size: 1.1rem;
    }

    .footer-section .social-icons a {
        font-size: 1.75rem;
    }

    /* Scroll to Top Button */
    .scroll-to-top {
        width: 60px;
        height: 60px;
    }

    .scroll-to-top img {
        width: 30px;
        height: 30px;
    }

    /* What do we do Section */
    .what-we-do-services {
        margin: 0 50px;
        padding: 40px 0;
    }

    .what-we-do-services h2 {
        font-size: 2.5rem;
    }

    .what-we-do {
        padding: 25px;
        margin-bottom: 35px;
    }

    .what-we-do h2 {
        font-size: 1.25rem;
    }

    /* Gallery Section */
    .gallery {
        margin: 0 50px;
        padding: 80px 0;
    }

    .gallery h2 {
        font-size: 2.5rem;
    }

    /* Events Section */
    .events {
        margin: 0 50px;
        padding: 40px 0;
    }

    .events h2 {
        font-size: 2.5rem;
    }

    .event {
        padding: 25px;
        margin-bottom: 35px;
    }

    .event h5 {
        font-size: 1.4rem;
    }

    /* Volunteer Section */
    .volunteer {
        margin: 0 50px;
        padding: 80px 0;
    }

    .volunteer h2 {
        font-size: 2.5rem;
    }

    .volunteer p {
        font-size: 1.25rem;
    }

    .volunteer .btn-primary {
        font-size: 1.25rem;
        padding: 15px 25px;
    }

    /* Newsletter Signup Section */
    .newsletter {
        margin: 0 50px;
        padding: 80px 0;
    }

    .newsletter h2 {
        font-size: 2.5rem;
    }

    .newsletter p {
        font-size: 1.25rem;
    }

    .newsletter .form-control {
        width: 40%;
    }

    .newsletter .btn-primary {
        font-size: 1.25rem;
        padding: 15px 25px;
    }

    /* Donation Section */
    .donate {
        margin: 0 50px;
        padding: 80px 0;
    }

    .donate h2 {
        font-size: 2.5rem;
    }

    .donate p {
        font-size: 1.25rem;
    }

    .donate .btn-primary {
        font-size: 1.25rem;
        padding: 15px 25px;
    }
}

/* Donate button styles */
.donate-btn {
    background-color: #ffd700 !important;
    color: #004d40 !important;
    padding: .5rem 1rem;
    text-decoration: none;
    display: inline-block;
    margin-left: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.25rem;
    transition: background-color 0.3s ease;
}

.donate-btn:hover {
    background-color: #ffc107 !important;
    background-position: left bottom;
    color: #004d40 !important;
    text-decoration: none;
}

/* Dropdown styles */
.navbar-nav {
    position: relative;
}



.tagline {
    font-size: .8rem;
    margin-left: 70px;
    margin-top: -30px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: rgba(0, 77, 64, 0.7);
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;

}

.nav-item:hover .dropdown-menu {
    display: block;
    padding: 10px;
    background-color: rgba(0, 77, 64, 0.7);
    color: #212529;
}

.dropdown-item {
    display: block;
    padding: 8px 16px;
    color: #212529;
    text-decoration: none;
}

/* .dropdown-item:hover {
    background-color: #004d40;
    
} */

.dropdown-toggle::after {
    content: "▾";
    font-size: 1rem;
}


.header-container {
    display: flex;
    align-items: center;
    /* vertically align items */
    justify-content: space-between;
    /* space out logo and nav */
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    /* space between logo and tagline */
}



.site-description {
    margin-top: 5px;
    /* fine-tune vertical alignment */
}

.section-title {
    border-bottom: 3px solid #28a745;
    padding-bottom: 5px;
    font-weight: bold;
}

.info-card {

    background: white;

    border-radius: 10px;

    padding: 25px;

    box-sizing: border-box;

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);

    transition: transform 0.3s ease, box-shadow 0.3s ease;

    border-top: 5px solid #27ae60;

    position: relative;

    flex: 1 1 auto;

    min-width: 300px;

    overflow: hidden;

}

.info-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);

}

.info-card h5 {

    margin-top: 0;

    color: #2c3e50;

    font-size: 1.4em;

    padding-right: 60px;

}

.info-card p {

    margin: 8px 0;

    color: #555;

}

.info-card .highlight {

    font-weight: bold;

    color: #2c3e50;

    background-color: #f8f9fa;

    padding: 2px 5px;

    border-radius: 3px;

    display: inline-block;

}

.icon-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    text-align: center;
    font-size: 12px;
    background: #f0f4f8;
    border-radius: 8px;
    padding: 4px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-tag img {
    display: block;
    margin-bottom: 3px;
}

.badge-secondary {
    font-size: 13px;
    background-color: #6c757d;
}

/* Extend existing styles if not already included */
.bg-light {
    background-color: #f8f9fa !important;
}

.btn-success {
    background-color: #28a745;
    border: none;
}

.btn-success:hover {
    background-color: #218838;
}

.info-card a.btn {
    margin-top: 10px;
}