body {
    font-family: Arial, sans-serif;
}

.navbar {
    background-color: #0b49ac;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar-brand, .nav-link {
    color: white !important;
}

.navbar-toggler {
    border-color: white;
}

.hero {
    background: linear-gradient(#0b5dac, #089dc6cc), url(/Images/Banner.png);
    background-size: cover;
    color: white;
    text-align: center;
    padding: 5rem 1rem;
}

.section-title {
    margin-bottom: 2rem;
    color: #0b49ac;
    font-weight: bold;
}

.testimonials {
    background-color: #f9f9f9;
}

.footer {
    background-color: #0b49ac;
}


.btn-primary {
    background-color: #385a87;
    border-color: #385a87;
}

    .btn-primary:hover {
        background-color: #2c476a;
    }

.floating-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #385a87;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

    .floating-chat i {
        margin-right: 5px;
    }

.map-container {
    margin-top: 2rem;
}

.event-card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

    .event-card h5 {
        color: #385a87;
    }

    .event-card p {
        margin-bottom: 0;
    }


.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: .25rem;
    transition: transform 0.3s ease-in-out;
}

.gallery-image {
    transition: transform 0.3s ease-in-out;
    border-radius: .25rem;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1.3);
}

.gallery-description {
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    color: #fff;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-description {
    opacity: 1;
}

#about {
    background-color: #f8f9fa;
}


.chart-card {
    transition: transform 0.3s ease;
}

    .chart-card:hover {
        transform: scale(1.05);
    }

.counter {
    font-size: 2.5rem;
    font-weight: bold;
    color:black;
}