/* @import url('fonts/family=Roboto:wght@300;400;500;700&display=swap'); */

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

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.7;
    background-color: #ffffff;
    color: #333;
}

:root {
    --primary: #0c4a6e;
    --dark: #083450
}


.top-bar {
    background: var(--primary);
    color: #fff;
    font-size: 14px
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary) !important
}

.navbar nav {
    --bs-nav-link-padding-x: 41px;
}

#top-nav-bar .nav-item a {
    /* color: var(--primary); */
    margin: 15px 10px;
}

#top-nav-bar .nav-item:hover {
    background-color: rgb(179, 179, 179);
    border-radius: 3px;
    padding:1px 1px;
}
.navbar-nav>li>.dropdown-menu {
    background-color: #dadada;
}

#top-nav-bar .nav-item :hover {
    font-weight: 500;
    border-radius: 4px;
    transition-property: background-color;
    transition-duration: 0.5s;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.dropdown-item {
    display: block;
    width: 90%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: black;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    /* background-color: white; */
    border: 0;
}

.dropdown-item:hover {
    background-color: rgb(43, 43, 41);
    color:rgb(255, 255, 255);
}

.dropdown-menu {
    display: none;
}

.hero-carousel img {
    height: 65vh;
    object-fit: cover
        /* object-fit: contain; */
}

.carousel-caption h5 {
    color: rgb(249, 249, 249);
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 3rem;
}

.carousel-caption p {
    color: yellow;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 2rem;
}

.carousel-item img {
    filter: brightness(70%);
}


/* Hero-section */

.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("images/slide2.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* Ensures the image covers the entire section */
    position: relative;
    /* Needed for positioning text */
    height: 50vh;
    /* Sets a responsive height (50% of viewport height) */
    color: white;
    /* Ensures text is readable on a dark background */
    padding: 2rem 0;
    /* Adds some padding */
}

/* Place text in the middle of the image */
.hero-text {
    text-align: center;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.section-title {
    font-weight: 700;
    margin-bottom: 20px
}

.btn-brand {
    background: var(--primary);
    color: #fff
}

.btn-brand:hover {
    background: var(--dark);
    color: #fff
}

/* footer {
    background: var(--primary);
    color: #fff;
    position:fixed;
    bottom:0;
    width:100%;

} */

.footer {
    background: #0f3d2e;
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    font-size: 14px;
}

/* Filter in Gallery */


#filter-buttons button {
    border-radius: 3px;
    background: #fff;
    border-color: green;
}

#filter-buttons button:hover {
    background: green;
    color: #fff;
}

#filter-buttons button.active {
    color: #fff;
    background: green;
}

#filterable-cards .card {
    width: 15rem;
    border: 2px solid transparent;
}

#filterable-cards .card.hide {
    display: none;
}

@media (max-width: 600px) {
    #filterable-cards {
        justify-content: center;
    }

    #filterable-cards .card {
        width: calc(100% / 2 - 10px);
    }
}


/* Whatsapp icon */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    z-index: 999
}

.whatsapp-float img {
    width: 100%
}