
  
  .pdesc{
    text-align: center !important;
    font-size: 16px !important;
    color: #757575 !important;
    font-weight: 500 !important;
    margin-top: 10px !important;
    font-family: 'Montserrat', sans-serif !important;
  }
  
    .pdtitle{
    text-align: center !important;
    color: #757575 !important;
    font-weight: 500 !important;
    margin-top: 10px !important;
    font-family: 'Montserrat', sans-serif !important;
  }
  
  
    .pitemdesc{
    color: #757575 !important;
    font-family: 'Montserrat', sans-serif !important;
  }
  
  .gallery-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }

  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 20px;
  }
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 50%;
  }
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
  }
  @media (max-width : 768px) {
  .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: opacity 0.5s ease;
  }
      
  }
  
  
    @media (min-width : 769px) {
  .modal-content {
      width:22%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: opacity 0.5s ease;
  }}
      
  
  
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #8b4513;
    font-size: 20px;
    transition: color 0.3s ease;
  }
  .close-btn:hover {
    color: #654321;
  }
  .arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #8b4513;
    font-size: 24px;
    background-color: transparent;
    border: none;
    outline: none;
    transition: color 0.3s ease;
  }
  .arrow-btn:hover {
    color: #654321;
  }
  .prev-btn {
    left: 10px;
  }
  .next-btn {
    right: 10px;
  }