@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: #333;

}

body {
  font-family: "Lato", sans-serif;
  background: #FFF;
}
/* Basic content styling for demo */
.navbar-main.header-sticky {
    background: #FFF;
    padding: 0px;
    transition: 0.6s;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}
.header-sticky.sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 0px;
  transition: 0.6s;
  border-bottom: 3px solid #A0E4CB;
  box-shadow: 9px 10px 10px 0px rgba(0, 0, 0, 0.1);
}
.logo img {
  max-width: 200px;
}
.content {
    max-width: 1200px;
    margin: 100px auto 0;
    padding: 0 20px;
    text-align: center;
  }
  
  .content h1 {
    margin-bottom: 20px;
    color: #333;
  }
  
  /* Navbar Styles */
  .navbar {
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    /* background-color: #2c3e50; */
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    /* padding: 0 2rem; */
    /* height: 70px; */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    z-index: 1000;
}
  
  /* Logo Styles */
  .logo a {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .logo a:hover {
    color: #3498db;
  }
  
  /* Navigation Menu Styles */
  .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li {
    margin-left: 2rem;
  }
  
.nav-links a {
    color: #FFF;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 20px;
    transition: all 0.3s ease;
    position: relative;
    background: #0d4c92;
    border-radius: 10px;
    letter-spacing: 1px;
}
  
  .nav-links a:hover {
    background: #0e3e73;
    color: #FFF;
  }
  
  /* Active link indicator */
  .nav-links a.active {
    color: #004f8f;
  }
  
  .nav-links a.active::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #004f8f;
  }
  
  /* Hamburger Menu */
  .hamburger {
    display: none;
    cursor: pointer;
  }
  
  .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #004f8f;
    transition: all 0.3s ease;
  }
  
  /* Mobile Responsive Styles */
  @media only screen and (max-width: 991px) {
    /* Show hamburger menu on mobile */
    .hamburger {
      display: block;
    }
    .nav-links li a {
      color: #FFF;
  }
  
    /* Animate hamburger to X when menu is active */
    .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
  
    .hamburger.active .bar:nth-child(2) {
      opacity: 0;
    }
  
    .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  
    /* Position the nav menu for mobile */
    .nav-menu {
      position: fixed;
      top: 100px; /* Height of the navbar */
      left: -100%;
      width: 100%;
      background-color:#FFF;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }
  
    /* Show nav menu when active class is added */
    .nav-menu.active {
      left: 0;
    }
  
    /* Stack nav links vertically */
    .nav-links {
      flex-direction: column;
      padding: 20px 0;
    }
  
    .nav-links li {
      margin: 10px 0;
    }
  }
  