* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  .logo{
    cursor: pointer;
    display: grid;
    place-items: center;
}

  /* 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: 8px;
      border: 2px solid #0a2540;
      border-radius: 18px;
      background-color: transparent;
      color: #0a2540;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
  }
  
  .button a{
    text-decoration: none;
    color: #0a2540;
  }
  
  .button:hover{
      background-color: #0a2540;
      color: #fafafa;
  }
  
  .hero {
    background: url(../about/images/aboutBackground.jpeg) center/cover no-repeat;
    padding: 100px 0;
    height: 50vh;
    display: grid;
    place-items: center;
    position: relative;
  }

  .blend-mode-about-overlay{
    height: 50dvh;
    width: 100%;
    background-color: #252525;
    mix-blend-mode: multiply;
    opacity: 0.5;
    position: absolute;
  }
  
  .hero h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #fafafa;
  }
  .services {
    padding: 50px 10%;
    text-align: center;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .services-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
    display: grid;
    place-items: center;
    border: 4px solid #2e78b8;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.3);
    /* width: fit-content; */
  }

  .service-wrapper{
    display: flex;
    flex-direction: column;
  }
  
  .strech{
    width: 100% !important;
  }

  .services-item img{
    max-height: 300px;
    height: auto; /* Maintain aspect ratio */
  }
  
  .services-item:hover{
    transform: translateY(-5px);
  }
  
  .service-text{
    padding-block: 8px;
    font-size: 0.8rem;
    color: #2e78b8;
    text-align: center;
  }

    /* 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 .logo-details img {
      width: 100%;
      max-width: fit-content;
      max-height: fit-content;
    }
    .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;
    }
    /* Twitter icon */
  .top .media-icons a:nth-child(4) {
    background: #1DA1F2; /* Twitter blue background */
  }
  
  .top .media-icons a:nth-child(4):hover {
    color: #1DA1F2; /* Twitter blue text on hover */
    background: #fff; /* White background on hover */
  }
  
    .top .media-icons a:nth-child(3) {
      background: #0077b5;
    }
    .top .media-icons a:nth-child(3):hover {
      color: #0077b5;
      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;
      text-align: justify;
    }
  
    .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;
      }
    }  
