body {
      background: #f5f7fa;
      /* font-family: "poppins", sans-serif; */
    }

    /* Modern Card */
    .gallery-card {
      border: none;
      border-radius: 18px;
      overflow: hidden;
      background: rgba(255,255,255,0.6);
      backdrop-filter: blur(12px);
      transition: .3s ease;
      box-shadow: 0 8px 20px rgba(0,0,0,0.07);
    }
    .gallery-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.12);
    }

    /* Image Hover */
    .gallery-img {
      width: 100%;
      height: 230px;
      object-fit: cover;
      transition: .3s ease;
      cursor: pointer;
    }
    .gallery-img:hover {
      transform: scale(1.06);
    }

    /* Buttons */
    .btn-custom {
      border-radius: 25px;
      padding: 5px 16px;
    }

    /* Section Title */
    .section-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 30px;
      text-align: center;
    }

    /* Modal */
    #previewImg {
      width: 100%;
      border-radius: 10px;
    }