header {
    background-color: #002244;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 80px;
  }
  
  header h1 {
    margin: 0;
    font-size: 25px;
    color: #FFA500;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .logo img {
    width: 60px;
    height: 40px;
  
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    margin-top: 60px;
  }
  
  nav ul li {
    margin: 0 10px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
  }
  
  nav ul li a:hover {
    color: #FFA500;
  }
  
  .dropdown1 {
    position: relative;
    display: inline-block;
    color: white;
  }
  
  .dropdown1-content {
    display: none;
    position: absolute;
    background-color: #002244;
    min-width: 300px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 10px 10px;
    z-index: 1000;
    font-size: 20px;
    margin-top: 40px;
  
  }
  #overview p{
    margin-top: 10px;
  }
  #about p{
    margin-top: 10px;
  }
  .dropdown1-content li {
    margin-top: 10px;
  }
  
  .dropdown1-content li a {
    color: rgb(247, 247, 247);
  
  }
  
  .dropdown1:hover .dropdown1-content {
    display: block;
  }
  
  .dropdown {
    display: none;
    position: absolute;
    top: 80%;
    right: 0;
    width: 98.7vw;
    max-height: 100vh;
    background-color: #002244;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: white;
    z-index: 1000;
  
  }
  .dropdown-hover{
    width:100px;
    height: 80px;
  
  }
   .dropdown-hover:hover .dropdown {
    display: flex;
  }
  
  .dropdown .left,
  .dropdown .right {
    padding: 20px;
  }
  
  .dropdown .left {
    flex: 1;
    background-color: #002244;
    border-right: 1px solid #ddd;
    margin-top: 30px;
  }
  
  .dropdown .right {
    flex: 3;
    background-color: #002244;
  }
  
  .dropdown .left a {
    display: block;
    padding: 10px;
  
    color: white;
    text-decoration: none;
  }
  
  .dropdown .left a:hover {
    background-color: #ddd;
    color: #333;
  }
  
  .dropdown-content {
    display: none;
    padding: 20px;
  }
  
  .dropdown-content.active {
    display: block;
  }
  
  .dropdown {
    display: none;
    position: absolute;
    left: 0;
    flex-direction: row;
  }
  
  .dropdown-content #more{
    display: none;
  }
  
  
  .readmore{
       display: inline-block;
      margin-top: 15px;
      padding: 10px 20px;
      background-color: rgb(28, 28, 31);
      color: white;
      text-decoration: none;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
      border: none;
  
  }
  .readmore:hover{
    background-color: rgb(241, 241, 241);
    transform: scale(1.05);
    color: rgb(23, 22, 22);
  }
  
  
  
  .fixed-container{
    position: fixed;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background-color: rgb(255, 255, 255);
    bottom: 0px;
    height: 50px;
    z-index: 1000;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 8px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  }
  .fixed-container div {
    font-size: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    border-left: 1px solid black;
    font-weight: 500;
  }
  .fixed-container div a{
    color: rgb(50, 45, 45) !important;
    text-decoration: none;
  }
  .fixed-container div a i{
    margin-right: 6px;
  }
  
  @media (max-width:768px){
    .fixed-container div a{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1px;
        padding-top: 3px;
    }
  }
  
  
  
  
  
  /* Hamburger menu */
  .hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #FFA500;
  }
  
  
 

  
  @media(max-width:768px){
    .nav-links {
      display: none;
    }
  
    .hamburger {
      display: block;
      position: absolute;
      right: 20px;
   
    }
    nav ul {
        display: none; 
        flex-direction: column;
        width: 90%;
        margin-top: 60px;
    }
  

    .logo h1 {
      font-size: 20px;
    }

    .nav-links.mobile.active li {
      padding: 10px;
    }
    .dropdown-hover{
      width: 100%;
    }
  
    .nav-links.mobile.active li a {
      padding: 0px 10px;
  
    }
  
    .dropdown1-content {
        margin-top: 10px;
      background-color: rgb(42, 38, 38);
    }
  
    .dropdown {
      width: 98.5%;
      background-color: rgb(42, 38, 38);
      top: 100%;
      text-align: justify;
    }
    .dropdown-hover:hover .dropdown {
        flex-direction: column;
      }
    
  
    .dropdown .left {
      margin-top: 0;
      background-color: rgb(42, 38, 38);
    }
  
    .dropdown .right {
      background-color: rgb(42, 38, 38);
    }
  
    .dropdown .left a {
      margin-top: 20px;
    }
    .copyright p {
      margin-left: 550px;
      font-size: 22px;
  }
  
    .hero{
      width: 250%;
    }
  }

  @media (max-width: 768px) {
    .dropdown1:hover .dropdown1-content {
        display: block;
        position: relative;
        margin-top: 0;
    }
    .dropdown1 {
        width: 90%;
        text-align: left;
        margin-left: 16px;
    }

    .dropdown1-content {
        width: 90%;
        background-color: rgb(42, 38, 38); 
        display: none; 
        position: relative; 
        margin-top: 10px; 
    }

   
    .dropdown1:hover .dropdown1-content {
        display: block;
    }

   
    .nav-links.mobile.active {
        display: flex;
        flex-direction: column;
        gap: 14px;
        position: absolute;
        right: 6px;
        background-color: rgb(42, 38, 38);
        z-index: 12;
        color: black;
        width: 100%;
        font-size: 30px;
    }

    .dropdown .left,
    .dropdown .right {
        background-color: rgb(42, 38, 38);
        padding: 15px;
    }

    .dropdown .left a,
    .dropdown .right a {
        color: white;
        padding: 10px;
        text-decoration: none;
    }

    .dropdown .left a:hover,
    .dropdown .right a:hover {
        background-color: #ddd;
    }
}

  