.uc-ccards {
    background-image: url('https://static.tildacdn.com/tild3333-6563-4632-a439-396363396330/PATTERN-BG.jpg') !important;
    background-repeat: repeat !important;
    background-size: auto !important;
}

.uc-storyblock {
    background-image: url('https://static.tildacdn.com/tild3364-3332-4831-a638-663030346131/patbg3.jpg') !important;
    background-repeat: no-repeat !important;
    background-size: 1520px !important;
    background-position: center center !important;
}



.uc-work {
    background-image: url('https://static.tildacdn.com/tild6138-3937-4165-b163-663737366133/Patt-bg-blur.jpg') !important;
    background-repeat: no-repeat !important;
    background-size: 1620px !important;
    background-position: center center !important;
}



  /* block responsive 8 photo*/
  .uc-sv102-image-item {
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden;
  }
  
  .uc-sv102-image-item img {
    width: 100%;
    display: block;
  }
  
  /* wave */
  .circle-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background-color: #EDDDAD;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    
    
    animation: gentleWave 2s ease-in-out infinite;
    transition: transform 0.2s ease;
    
  
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* icon cricle */
  .circle-overlay::before {
    content: '';
    display: block;
    width: 55%;
    height: 55%;
    background-image: url('https://static.tildacdn.com/lib/icons/tilda/-/paint/ffffff--1-0-100/picture_album.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0) saturate(100%) invert(14%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(88%);
  }
  
  .circle-overlay:hover {
    transform: scale(1.15);
    animation-play-state: paused;
  }
  

  @keyframes gentleWave {
    0% {
      transform: scale(1);
      opacity: 0.85;
    }
    50% {
      transform: scale(1.12);
      opacity: 1;
    }
    100% {
      transform: scale(1);
      opacity: 0.85;
    }
  }
  
  /* modal style */
  .gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
  }
  
  .gallery-content {
    position: relative;
    width: 85%;
    max-width: 900px;
    text-align: center;
  }
  
  .gallery-slide {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
  }
  
  .close-gallery {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .close-gallery:hover {
    color: #EDDDAD;
  }
  
  /* gallery nav */
  .gallery-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
  }
  
  .prev, .next {
    background-color: rgba(0,0,0,0.6);
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    user-select: none;
    transition: all 0.3s ease;
    pointer-events: auto;
    margin: 0 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  }
  
  .prev:hover, .next:hover {
    background-color: #EDDDAD;
    color: #333;
    transform: scale(1.1);
  }
  
 
  .image-counter {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    color: white;
    text-align: center;
    font-size: 16px;
    font-family: Arial, sans-serif;
    background-color: rgba(0,0,0,0.5);
    padding: 5px 12px;
    border-radius: 20px;
    width: fit-content;
    margin: 0 auto;
  }
  

  .toggle-slideshow {
    position: absolute;
    bottom: -40px;
    right: 0;
    background-color: rgba(0,0,0,0.6);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
  }
  
  .toggle-slideshow:hover {
    background-color: #EDDDAD;
    color: #333;
  }