@font-face {
    font-family: 'Oswald';
    src: url(assets/fonts/Oswald/static/Oswald-SemiBold.ttf);
}
@font-face {
    font-family: 'Arvo';
    src: url(assets/fonts/Arvo/Arvo-Regular.ttf);
}
body{
    background-color: white;
    box-sizing: border-box;
    margin: 0;
    display: flex;
    flex-direction: column;
    height:100vh;
}
nav .logo img{
  width:100px;
  margin-left: 20px;
}

nav a{
  font-family: 'Arvo', serif;
  color: #165A84;
}
.nav-item a{
  color: #165A84;
}
nav .btn{
  font-family: 'Oswald',sans-serif;
  border-radius: 0;
  background-color: #165A84;
  color: white;
  padding: 10px;
  font-size: 0.8rem;
  border: none;
  width: 100%;
}
nav .btn:hover{
  background-color: #176ba0;
  color: white;
  border: 2px black solid;
}
nav .dropdown-menu{
  border: none;
  border-radius: 0;
}
nav .dropdown-menu a{
  border-bottom: 1px solid rgb(22, 90, 132, 0.2);
  color: black;
}
h2, h3 {
    color: #165A84;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
}
h1{
    font-family: 'Oswald', sans-serif;
}
.hero p{
    color: white;
}
p, li {
  font-family: 'Arvo',serif;
  color: #484f52;
  line-height: 35px;
}
.image img{
  border-left: 10px solid #6a7980;
}
.hero {
    background: url('assets/images/cleaning-image8.jpg') center/cover no-repeat;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(22,90,132,0.75);
}
.hero-content {
    position: relative;
    z-index: 2;
}
.stat-box {
    background: #165A84;
    color: white;
    padding: 2rem;
    text-align: center;
    height: 100%;
}
.section-light {
    background-color: #f8f9fa;
}
.why-card {
    background-color: #165A84;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.1);
    height: 100%;
}

.why-card h5 {
    color: white;
}
.why-card p {
    color: white;
}
.why-card i {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}
footer .logo img{
    width: 150px;
}

footer h5{
    font-family: 'arvo',serif;
    color: black;
    font-size: 1rem;
}
footer a{
    font-family: 'arvo',serif;
    color: black;
}
footer small{
    font-family: 'Arvo',serif;
    color: black;
}
 @media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
      display: block;
      margin-top: 0; /* remove the gap */
    }
    nav .btn {
      width: 10%;
    }
    nav .dropdown-menu{
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      border: none;
    }
    nav .dropdown-menu a{
      border-bottom: none;
    }
    .image img{
      width: 80%;
    }
    nav .logo img{
     width:150px;
    }


  }






