/* style.css */

/* Body */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
}

/* Navbar */
.navbar-brand {
    font-weight: bold;
}

.navbar-nav .nav-link {
    margin-right: 1rem;
}

.navbar-nav .dropdown-menu {
    border-radius: 0;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 150px 0;
    color: #fff;
}

.hero-section::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

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

.hero-section h1, .hero-section p {
    color: #fff;
}

/* Cards */
.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Footer */
footer a {
    text-decoration: none;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
}

/* Responsive Map */
.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/* Team Member Images */
.card-img-top.rounded-circle {
    border: 2px solid #007bff;
}

/* Additional Styles */
/* Show back-to-top button on scroll */
body {
    scroll-behavior: smooth;
}
