 body{
    font-family: 'Poppins', sans-serif;
    font-size: var(--bs-body-font-size);
  }
  .custom-bgblue {
    background-color: #0f3054;
  }

  .custom-blue {
    color: #0f3054;
  }

  .section-header {
    font-weight: 700;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    background-color: #f2a41d;
    color: #fff;
  }

  .divider {
    width: 60px;
    height: 4px;
    background-color: #0f3054;
    margin: 9px auto 28px;
    border-radius: 3px;
  }
 .divider1{
    width: 60px;
    height: 4px;
    background-color: #0f3054;
    margin: 10px 21px 30px;
    border-radius: 3px;
  } 

  
  .gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer; /* Make gallery cards clickable */
  }

  .gallery-card img {
    transition: transform 0.3s ease;
  }

  .gallery-card:hover img {
    transform: scale(1.05);
  }

  .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(15, 48, 84, 0.5);
    color: #fff;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
  }

  .gallery-card:hover .gallery-overlay {
    opacity: 1;
  }