.services-item {
    cursor: pointer;
}
.scrollContent{
    margin: 90px 0px 0px;
    position: absolute;
}



  .puja-icon-box {
    cursor: pointer;
    text-align: center;
    background: #fff;
    padding: 40px 30px;
    width: 100%;
    height: 100%;
    transition: 0.3s;
  }
  
  .puja-icon-box i {
    color: var(--color-primary);
    margin-bottom: 30px;
    font-size: 32px;
    margin-bottom: 30px;
    background: rgba(206, 18, 18, 0.1);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
  }
  
  .overlay{
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color: rgba(0,0,0,0.8);
    z-index: 1000;
    transition: all 0.5s ease-in-out;
  }

  .overlay-content{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
  }
  .close-btn{
    position: absolute;
    top:10px;
    right:20px;
    font-size: 30px;
    cursor: pointer;
  }

  @keyframes circleShrink {
    0% {
      width: 100%;
      height: 100%;
      top:0;
      left:0;
      border-radius: 0;
      background-color: rgba(0,0,0,0.8);
    }
    25%{
      border-radius: 25%;
      transform: rotate(90deg);
    }
    50%{
      border-radius: 50%;
      transform: rotate(180deg);
    }
    75%{
      border-radius: 75%;
      transform: rotate(270deg);
    }
    100%{
      width:0;
      height:0;
      top:50%;
      left:50%;
      border-radius:50%;
      transform: rotate(360deg);
      background-color: rgba(0,0,0,0);
    }
  }

  .overlay.closing{
    animation: circleShrink 0.5s forwards;
  }

  @media(max-width: 768px){
    .overlay-content{
      width: 90%;
      height: auto;
      max-width: 90%;
      max-width: 90%;
    }
  }