body {
    font-family: 'Arial', sans-serif;
    text-align:center;
}

.header {
    background: #f8f9fa;
}

.hero {
    background: #007bff;
}

.logo {
    height: 50px;
}

.nav-link {
    color: #007bff;
}

.nav-link:hover {
    color: #0056b3;
}

footer {
    background: #343a40;
}
.carousel-item img {
    object-fit: cover;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img.logo {
    max-height: 50px; /* Adjust as needed */
}
h1, h2 {
    text-transform: uppercase;
    font-weight: bolder;
}
.hero h1,
.hero p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9); /* This adds a dark shadow to the text */
}
.hero {
    background-image: url('path-to-your/banner.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff; /* Ensures text is white */
}

@media (max-width: 991px) {


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.35); /* Adjust the last value to increase/decrease the darkness of the overlay */
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}
}