/* Basic reset for margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Apply flexbox to the body to ensure all components are centered */
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: white; /* Dark background for the entire page */
    color: white; /* White text color for the entire page */
    font-family: Arial, sans-serif; /* Optional: Set a default font */
}

/* Style for the header */
header {
    width: 100%;
    padding: 20px;
    background-color: white; /* Dark color for the header */
    text-align: center;
    margin-bottom: 20px; /* Margin to create space below the header */
}

/* Style for the main section */
section {
    width: 100%;
    padding: 20px;
    background-color: #695C85; /* Dark color for the section */
    text-align: center;
    color: white;
    flex-grow: 1; /* Make the section grow to fill available space */
    margin-bottom: 20px; /* Margin to create space below the section */
}

/* Style for the footer */
footer {
    width: 100%;
    padding: 20px;
    background-color: #333; /* Dark color for the footer */
    text-align: center;
    color: white;
}

footer > a {
    color: white;
}

.navbar-nav {
    flex: 1;
    display: flex;
    justify-content: center; /* Center align the nav-links */
    margin-right: 250px;
}

.navbar-brand {
    margin-right: auto; /* Keep the brand on the left */
}

#home {
    background-color: white;
    color: #222;
    height: 50%;
    font-size: xx-large;

}

#home > h3 {
    font-size: 50px;
}

#home-pic {
    border: 0;
    background-color: white;
}

#home-pic > img {
    width: 100%;
    height: auto;
}

.head-tab > button {
    margin: 20px;
    border-radius: 0;
}

.head-tab > a {
    font-size: large;
    margin: 20px;
}

.head-tab {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.award {
    width: 30%;
    height: auto;
    margin-bottom: 20px;
}

.cards-container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping of cards */
    justify-content: center;
    gap: 10px; /* Space between cards */
}

/* Style for individual cards */
.card {
    width: 400px;
    height: 100px;
    background-color: #555; /* Darker color for the cards */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px; /* Optional: Add some rounding to the corners */
    color: white; /* Ensure text is white */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.card-img {
    filter: brightness(70%);
}

#services {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.services-header {
    width: 100%;
    text-align: center;
    margin-bottom: 20px; /* Adjust as needed */
  }


.map-embed > iframe {
    height: 100px;
    width: 200px;
}

.team-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.team-member {
    border-radius: 8px;
    width: 300px;
    margin: 10px;
    text-align: left; /* Ensure left alignment of text within each card */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.team-member > img {
    height: auto;
    width: 100%;
    padding: 5px;
}

#contact > iframe {
    width: 100%;
    height: 80rem;
}