
/* Popup Modal */
    /*.popup {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
    }

    .popup-content {
      position: relative;
      max-width: 90%;
      max-height: 80%;
    }

    .popup-content img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }

    .close-btn {
      position: absolute;
      top: -10px;
      right: -10px;
      background: #fff;
      color: #333;
      border: none;
      border-radius: 50%;
      font-size: 18px;
      width: 35px;
      height: 35px;
      cursor: pointer;
      font-weight: bold;
      box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }

    .close-btn:hover {
      background: #333;
      color: #fff;
    } */
	
	.gallery {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 15px;
      margin-top: 30px;
    }

    .gallery img {
      width: 100%;
      border-radius: 10px;
      cursor: pointer;
      transition: 0.3s;
    }

    .gallery img:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }

    /* Popup */
    .popup {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.85);
      z-index: 1000;
      justify-content: center;
      align-items: center;
    }

    .popup-content {
      position: relative;
      max-width: 90%;
      max-height: 80%;
      text-align: center;
    }

    .popup-content img {
      width: 100%;
      max-height: 80vh;
      border-radius: 10px;
    }

    .close-btn {
      position: absolute;
      top: -10px;
      right: -10px;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      border: none;
      font-size: 18px;
      cursor: pointer;
      background: #fff;
      font-weight: bold;
    }

    /* Navigation buttons */
    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.8);
      border: none;
      font-size: 28px;
      padding: 10px 15px;
      cursor: pointer;
      border-radius: 50%;
    }

    .prev {
      left: 0px;
	  margin-top: 30px;
	  
    }

    .next {
      right: -60px;
	  margin-top: 29px;
    }
	


    @media(max-width: 600px) {
      .prev { left: 5px; }
      .next { right: 5px; }
    }


