body {
      font-family: 'Roboto', sans-serif;
      margin: 0;
      padding: 0;
      background: #f7f7f7;
    }

    .gallery-header {
      padding: 100px 10px 5px;
      text-align: center;
      /* background: #05395b; */
      color: white;
      margin-top: 20px;
    }

    .gallery-header h2 {
      font-size: 40px;
      font-weight: 700;
    }

    .gallery-section-title {
      text-align: center;
      font-size: 30px;
      font-weight: 600;
      margin: 30px 0;
      color: #05395b;
    }

    .gallery-container {
      padding: 20px 15px 60px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      margin-bottom: 30px;
    }

    .gallery-item img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      transition: transform 0.5s ease, filter 0.5s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.1);
      filter: brightness(1.2);
    }

    .overlay-bx {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity 0.4s ease;
      border-radius: 12px;
    }

    .gallery-item:hover .overlay-bx {
      opacity: 1;
    }

    .overlay-icon::before {
      /* content: "View"; */
      color: white;
      font-size: 22px;
      font-weight: 600;
      background: rgba(0, 0, 0, 0.5);
      padding: 10px 25px;
      border-radius: 25px;
    }

    @media (max-width: 767px) {
      .gallery-header h2 {
        font-size: 28px;
      }

      .gallery-section-title {
        font-size: 22px;
      }

      .gallery-item img {
        height: 220px;
      }
    }