.progress-wrap {
    position: fixed;
    right: 50px;
    bottom: 50px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset  0 0 0 2px rgba(95, 58, 252,0.2);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
  }
  
  .progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .progress-wrap::after {
    position: absolute;
    content: '\f062';
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    text-align: center;
    line-height: 46px;
    font-size: 20px;
    color: #2371ff;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
  }


  
  .progress-wrap svg path { 
    fill: none; 
  }
  
  .progress-wrap svg.progress-circle path {
    stroke: #0e9745;
    stroke-width: 4;
    box-sizing:border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
  }

  /* Sticky Contact Icons */
  .sticky-contact-icons {
    position: fixed;
    left: 30px;
    bottom: 48px;
    z-index: 98;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .sticky-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
  }

  .phone-icon {
    background: #0e9745;
  }

  .phone-icon:hover {
    background: #0c7d38;
    transform: scale(1.1);
  }

  .whatsapp-icon {
    background: #25D366;
  }

  .whatsapp-icon:hover {
    background: #1fb855;
    transform: scale(1.1);
  }

  @keyframes pulse {
    0%, 100% {
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
      box-shadow: 0 4px 25px rgba(14, 151, 69, 0.5);
    }
  }

  /* Responsive */
  @media (max-width: 767px) {
    .sticky-contact-icons {
      left: 15px;
      bottom: 40px;
      gap: 10px;
    }
    
    .sticky-icon {
      width: 45px;
      height: 45px;
      font-size: 20px;
    }
  }
  