body {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
}

h1 {
    font-weight: 700;
}

.main-header {
    background: transparent;
    position: absolute;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
}

.navbar-brand .logo {
    height: 100px;
}

.banner {
    background: url('assets/img/banner.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    top: 0;
    width: 100%;
    height: 500px; /* Ensure there's enough height to display the background image */
    z-index: 0;
}

.content img {
    border-radius:30px ;
}

.gallery img {
    padding: 10px 0px;
    border-radius: 30px;
}

.nav-tabs .nav-link {
    border: none;
    color: #dd2209;
}

.nav-tabs .nav-link.active {
    border: none;
    border-bottom: 2px solid #dd2209;
    color: #dd2209;
    font-weight: bold;
}

.tab-content .row {
    margin-top: 20px;
}

.footer img {
    border-radius: 50%; /* Circular logo in the footer */
    height: 80px; /* Adjust the height of the footer logo */
}

.footer {
    background-color: #f1f1f1;
    color: #333;
    padding: 20px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer-logo {
    width: 80px; /* Adjust the size of the footer logo */
}

.social-media a {
    color: #da0000;
    text-decoration: none;
    margin: 0 10px;
    font-size: 24px; /* Increase the size of social media icons */
}

.social-media a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .social-media {
        text-align: center;
        margin-top: 20px;
    }
}