* {
    margin:0;
    padding:0;
    list-style: none;
    border:none;
    font-family: "Rubik", sans-serif;
}

html {
    scroll-behavior: smooth;
}

header {
    background: #0f1827;
    padding:1.313rem 0;
}

.logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.banner img {
    max-width: 100%;
    height: auto;
    display: block;
}

.nav {
    color:#fff;
    display: flex;
    justify-content: flex-end;
    margin-top: 3.125rem;
}

.nav li { 
    font-weight: 600; 
    font-size: 1.125rem;
}
.nav li + li {
    margin-left: 1.563rem;
}

.nav a {
    color:#fff;
}
.nav a:hover {
    color:#007bff;
    text-decoration: none;
}
.nav-item {
    display: inline;
}
.navbar-nav {
    flex-direction: row;
}

/* Keep Bootstrap behavior */
.navbar-nav .nav-link {
    color: #fff;
    font-weight: 600;
    font-size: 1.125rem;
}



.backToTop {

  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: 1px solid #034271; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #034271; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 10px 15px 5px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
  text-decoration: none;
}

.backToTop:hover {
  background-color: #0d7e91; /* Add a dark-grey background on hover */
  text-decoration: none;
  color:#fff;
}

.about-us {
    padding: 1.875rem 0;
}

.about-us .item {
    text-align: center;
}

.core-values {
    background:#0651ae;
    padding: 1.875rem 0;
    color:#fff;
}



.services {
    background:#0651ae;
    padding:25px 0; 
}

.services h2, .services h4 {
    color:#fff;
    text-align: center;
    padding-bottom: 18px;
}

.services .item {
    border-radius: 6px;
    padding:10px 0;
    text-align: center;
}

.services .icon-large {
    font-size: 75px;
}

.services .box {
    background: #f8f9fa;   /* light gray */
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;   /* space below */
    min-height: 450px;
}

.services .box h4 {
    color:#303030;
}

.services img {
    max-width: 100%;
    height: auto;
    display: block;
}

.services .box ul {
    padding-left: 18px;
}

.services .box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0,0,0,0.05);
}

.services .box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0,0,0,0.05);
}

.services li {
  position: relative;
  padding-left: 24px; /* space for the icon */
}

.services li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  background-image: url('https://fonts.gstatic.com/s/i/materialiconsoutlined/done_all/v11/24px.svg');
  background-size: contain;
  background-repeat: no-repeat;

}

.services .row {
    flex-wrap: wrap !important;
}

.mission {
    padding: 1.875rem 0;
}

.mission .item {
    margin:60px 0 0;
}

.contact h2 {
    text-align: center;
    margin:20px 35px;
    text-transform: uppercase;
}

.contact p { 
    text-align: center;
}

.contact .box { 
    text-align: center;
    background-color: #ffffff;
}

.services p { 
    color:#fff;
}

footer {
    background:#0651ae;
    padding:15px 0;
    color:#fff;
}

footer p {
    text-align: center;
    margin-bottom:0;
    font-size:0.75rem;
}

.icon-style {
      font-size: 40px;
      /* color: #1976d2;  MUI primary blue */
}

/* spacing between items (desktop only) */
@media (min-width: 992px) {
    .navbar-nav .nav-item + .nav-item {
        margin-left: 1.563rem;
    }
}

/* Mobile-friendly */
@media (max-width: 767px) {

    .services [class*="col-"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .services .box {
        min-height: auto; /* Boxes shrink naturally */
    }

    header {
        padding: 1rem 0;
    }

    .nav {
        margin-top: 0 !important;
    }

    .services h2 {
        padding-bottom: 10px;
    }

    .services .box {
        padding: 15px;
    }
}