* {
      margin: 0;
      padding: 0;

    }

    /* .gallery-section {
      padding: 60px 20px;
      text-align: center;
    }

    .gallery-section h2 {
      font-weight: 700;
      font-size: 32px;
      margin-bottom: 40px;
    }

    .gallery-card {
      position: relative;
      overflow: hidden;
      border-radius: 4px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .gallery-card:hover {
      transform: scale(1.02);
    }

    .gallery-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    .gallery-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: rgba(255, 255, 255, 0.95);
      padding: 15px;
      text-align: left;
      font-weight: 600;
      font-size: 16px;
      color: #000;
      transition: all 0.3s ease;
    }

    .gallery-card:hover .gallery-caption {
      background-color: rgba(0, 123, 255, 0.95);
      color: #fff;
    }

    @media (max-width: 768px) {
      .gallery-caption {
        font-size: 14px;
        padding: 12px;
      }
    } */
      .gallery-section {
      padding: 60px 20px;
      text-align: center;
    }

    .gallery-section h2 {
      font-weight: 700;
      font-size: 32px;
      margin-bottom: 40px;
    }

    .gallery-card {
      position: relative;
      overflow: hidden;
      border-radius: 4px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      height: 100%;
    }

    .gallery-card:hover {
      transform: scale(1.02);
    }

    .gallery-card img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      display: block;
    }

    .gallery-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: rgba(255, 255, 255, 0.95);
      padding: 15px;
      text-align: left;
      font-weight: 600;
      font-size: 16px;
      color: #000;
      transition: all 0.3s ease;
    }

    .gallery-card:hover .gallery-caption {
      background-color: rgba(0, 123, 255, 0.95);
      color: #fff;
    }

    @media (max-width: 767px) {
      .gallery-caption {
        font-size: 14px;
        padding: 12px;
      }
    }