@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:300,400,700|Roboto:300,400,700');
body {
	font-family: 'Roboto', Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 14px;
	line-height: 21px;
	color: #000;
}
img {
	max-width: 100%;
}
iframe {
	width: 100%;
}
h1, h2, h3, h4, h5 {
	font-family: 'Roboto Slab', sans-serif;
	font-weight: 400;
}
.navbar {
    background-color: #363636 !important;
	font-family: 'Roboto Slab', sans-serif;
	text-transform: uppercase;
	line-height: 55px;
	color: #7f8385;
}
.bg-secondary {
  background-color: #363636 !important;
}

/* Bootstrap Icons sizing */
.bi {
    font-size: 1.5rem;
    vertical-align: middle;
}

.icon-xs {
    font-size: 3.5rem !important;
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    border-radius: 50%;
    background-color: #4a4a4a;
    color: #7f8385 !important;
    margin-right: 1.5rem;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Footer layout - icon on left of text */
footer .container .row > div {
    display: flex;
    text-align: left;
}

footer .footer-text {
    display: flex;
    flex-direction: column;
}

footer h3 {
    margin: 0 0 0.5rem 0;
}

footer p {
    margin: 0;
}

/* Dropdown positioning - lowered */
.dropdown-menu {
    margin-top: 10px !important;
}

/* Mobile styles */
@media (max-width: 1199.98px) {
    .navbar {
        line-height: 30px;
    }
    
    .navbar-nav {
        text-align: left !important;
    }
    
    .navbar-nav .nav-link {
        text-align: left !important;
    }
    
    /* Keep dropdowns visible on mobile */
    .navbar-nav .dropdown-menu {
        float: none !important;
        width: auto !important;
        margin-top: 0 !important;
        background-color: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }
    
    .navbar-nav .dropdown-item {
        padding: 0.5rem 1rem !important;
        color: #7f8385 !important;
        text-align: left !important;
    }
    
    .navbar-nav .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.05) !important;
        color: #fff !important;
    }
}

.bg-blue {
    background-color: #09236E !important;
}

/* Card images: grayscale to color on hover with smooth fade */
.card .img-fluid {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}
.card:hover .img-fluid {
    filter: grayscale(0%);
}

/* Card title: black to blue on hover with smooth fade */
.card .card-footer .card-title a {
    color: #000;
    transition: color 0.3s ease;
}
.card:hover .card-footer .card-title a {
    color: #0d6efd; /* Bootstrap 5 link blue */
}