.disabled{
    pointer-events: none;
    cursor: not-allowed;
}

  /* Hamburger Menu Start */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    width: 25px;
    cursor: pointer;
  }
  
  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #0a2540;
    transition: all 0.6s ease;
  }
  
  /* Mobile View */
  @media (max-width: 900px) {
    .nav-bar{
      justify-content: space-between !important;
      padding-inline: 30px;
    }
    .nav-link {
        display: none; /* Hide navigation links by default */
        position: absolute;
        top: 110px;
        left: 0;
        width: 100%;
        flex-direction: column;
        padding: 10px 0;
        background-color: #fafafa;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }
      
      .nav-link ul {
        flex-direction: column; /* Stack links vertically */
        gap: 1rem;
        align-items: center;
    }
  
    .nav-link ul li {
        width: 100%; /* Full width for each item */
        text-align: center;
    }
  
    .button {
      display: none;
      margin: 10px auto;
    }
  
    .hamburger {
        display: flex; /* Show hamburger menu */
    }
  
    /* Toggle Hamburger Menu */
    .nav-bar.active .nav-link{
        display: flex; /* Show navigation links when active */
        z-index: 100;
    }
  }
  
  /* Hamburger Menu End */
  .nav-bar{
      background-color: #fafafa;
      height: 120px;
      display: flex;
      align-items: center;
      justify-content: space-around;
      flex-wrap: wrap;
  }
  
  .nav-link ul{
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 2.4rem;
  }
  
  .nav-link ul li{
      list-style: none;
      position: relative;
  }
  
  .nav-link ul li a{
      text-decoration: none;
      color: #0a2540;
  }
  
  .nav-link ul li:after {
      content: "";
      position: absolute;
      background-color: #0a2540;
      height: 3px;
      width: 0;
      left: 0;
      top: 22px;
      transition: all ease-in-out .3s;
   }
   
   .nav-link ul li:hover:after{
      width: 100%;
   }
  
  .nav-link ul li a:hover{
      color: #084179;
  }
  
  .button{
      padding-inline: 20px;
      padding-block: 6px;
      border: 2px solid #0a2540;
      border-radius: 18px;
      background-color: transparent;
      color: #0a2540;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
  }
  
  .button:hover{
      background-color: #0a2540;
      color: #fafafa;
  }


  /* Footer Styling */
  footer {
    background-color: #0a2540;
    width: 100%;
    bottom: 0;
    left: 0;
  }
  footer .content {
    max-width: 1250px;
    margin: auto;
    padding: 30px 40px 40px 40px;
  }
  footer .content .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 50px;
  }
  .content .top .logo-details {
    color: #fff;
    font-size: 30px;
  }
  .content .top .media-icons {
    display: flex;
  }
  .content .top .media-icons a {
    height: 40px;
    width: 40px;
    margin: 0 8px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s ease;
  }
  .top .media-icons a:nth-child(1) {
    background: #4267b2;
  }
  .top .media-icons a:nth-child(1):hover {
    color: #4267b2;
    background: #fff;
  }
  .top .media-icons a:nth-child(2) {
    background: #e1306c;
  }
  .top .media-icons a:nth-child(2):hover {
    color: #e1306c;
    background: #fff;
  }
  .top .media-icons a:nth-child(3) {
    background: #0077b5;
  }
  .top .media-icons a:nth-child(3):hover {
    color: #0077b5;
    background: #fff;
  }
  
  .top .media-icons a:nth-child(4) {
    background: #1DA1F2;
  }
  .top .media-icons a:nth-child(4):hover {
    color: #1DA1F2;
    background: #fff;
  }
  
  footer .content {
    border-bottom: 1px solid white;
  }
  footer .content .link-boxes {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
  }
  
  footer .content .link-boxes .box {
    width: calc(100% / 5 - 10px);
  }
  
  .content .link-boxes .box .link_name {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    position: relative;
  }
  .link-boxes .box .link_name::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 35px;
    background: #fff;
  }
  .content .link-boxes .box li {
    margin: 6px 0;
    list-style: none;
    width: fit-content;
  }
  .content .link-boxes .box li a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.4s ease;
  }

  .MBO{
    color: #fff;
  }

  .content .link-boxes .box li a:hover {
    opacity: 1;
    text-decoration: underline;
  }
  .content .link-boxes .input-box {
    margin-right: 55px;
  }

  .location{
    display: grid;
    place-items: center;
    gap: 1.4rem;
    margin-top: 2rem;
    max-width: 100%;
    display: none;
  }
  
  .location h1{
    font-size: 2rem;
    color: #003366;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .location iframe{
    /* mask-image: linear-gradient(to top, transparent, #252525 10% 90%, transparent); */
    width: 100%;
  }

  .map{
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1/1;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-radius: 16px;
  }

  .map iframe{
    width: 100%;
  }
  
  footer .bottom-details {
    width: 100%;
    background: #0a2540;
  }
  footer .bottom-details .bottom_text {
    max-width: 1250px;
    margin: auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
  }
  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
  }
  .bottom-details .bottom_text a:hover {
    opacity: 1;
    text-decoration: underline;
  }
  .bottom-details .bottom_text a {
    margin-right: 10px;
  }
  @media (max-width: 900px) {
    footer .content .link-boxes {
      flex-wrap: wrap;
    }
    footer .content .link-boxes .input-box {
      width: 40%;
      margin-top: 10px;
    }
    .map{
      display: none !important;
    }
    .location{
      display: grid;
    }
  }
  @media (max-width: 700px) {
    footer {
      position: relative;
    }
    .content .top .logo-details {
      font-size: 26px;
    }
    .content .top .media-icons a {
      height: 35px;
      width: 35px;
      font-size: 14px;
      line-height: 35px;
    }
    footer .content .link-boxes .box {
      width: calc(100% / 3 - 10px);
    }
    footer .content .link-boxes .input-box {
      width: 60%;
    }
    .bottom-details .bottom_text span,
    .bottom-details .bottom_text a {
      font-size: 12px;
    }
  }
  @media (max-width: 520px) {
    footer::before {
      top: 145px;
    }
    footer .content .top {
      flex-direction: column;
    }
    .content .top .media-icons {
      margin-top: 16px;
    }
    footer .content .link-boxes .box {
      width: calc(100% / 2 - 10px);
    }
    footer .content .link-boxes .input-box {
      width: 100%;
    }
    .text-wrapper{
        padding: 1rem !important;
    }
    .awesome{
        max-width: 250px !important;
    }
  }
