 .work-step-content ul, li{
            padding: 8px 0;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 16px;
        }

        .contact-item .icon i {
            background: linear-gradient(to right, #4d52ab 0%, #5191c8 50%, #53b4d8 100%);
            padding: 12px;
            border-radius: 50%;
            color: #fff;
            width: 40px;
            height: 40px;
        }

        .ftrlink{
            color: #fff;
            transition: 0.40s;
        }

        .ftrlink:hover{
            color: #010535;
            transition: 0.40s;
        }

        .text-right{
            text-align: right;
        }

        .lbl{
            padding: 12px 0;
        }

        .brb{
            border-bottom-style: dashed;
            border-width: 1px;
            border-color: #d7d7d7;
        }

        .benefit-body-item {
            display: flex;
            flex-direction: column;
        }

        .ep-area{
            padding: 1.2rem;  
            background: radial-gradient(at top right, rgb(245, 249, 255), rgb(116 171 255 / 13%));
            border-radius: 10px;
            transition: 0.4s;
        }


        .rn-area{
            padding: 1.2rem;  
            background: radial-gradient(at top right, rgb(255 246 246 / 52%), rgb(255 246 246));
            border-radius: 10px;
        }

        .icon-gradient {
            background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text; /* for Firefox */
            color: transparent;
            display: inline-block;
            }

            
        .service-feature-content p{
            margin-bottom: 0;
            font-size: 15px;;
        }
        



        
    .digicert-seal-wrapper {
      position: relative;
      display: inline-block;
      padding: 7px;
      border-radius: 6rem;
      overflow: visible;
      z-index: 1;
    }

    .ripple-box {
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
    }

    .wave {
        position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 6rem;
    border: 3px solid rgb(191 226 255);
    transform: translate(-50%, -50%) scale(1);
    animation: pulse 2.8s infinite ease-out;
    opacity: 0;
    filter: blur(0.9px);
    z-index: 3;
    }

    .wave:nth-child(2) {
      animation-delay: 0.6s;
    }

    .wave:nth-child(3) {
      animation-delay: 1.2s;
    }

    .wave:nth-child(4) {
      animation-delay: 1.8s;
    }

    .wave:nth-child(5) {
      animation-delay: 2.4s;
    }

    @keyframes pulse {
      0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
      }
      50% {
        opacity: 0.25;
      }
      100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
      }
    }

    object {
      transition: transform 0.3s ease-in-out;
      display: block;
      margin: 0 auto;
    }

    .digicert-seal-wrapper:hover object {
      transform: scale(1.05);
    }





  /* Overlay */
    .overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(6px);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .overlay.active {
      display: flex;
      opacity: 1;
    }

    /* Popup */
    .popup {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
      display: flex;
      max-width: 1000px;
      width: 90%;
      overflow: hidden;
      position: relative;
      animation-duration: 0.4s;
      animation-fill-mode: both;
    }

    .popup.popup-fade-in {
      animation-name: popupFadeIn;
    }

    .popup.popup-fade-out {
      animation-name: popupFadeOut;
    }

    @keyframes popupFadeIn {
      0% {
        transform: scale(0.7);
        opacity: 0;
      }
      100% {
        transform: scale(1);
        opacity: 1;
      }
    }

    @keyframes popupFadeOut {
      0% {
        transform: scale(1);
        opacity: 1;
      }
      100% {
        transform: scale(0.7);
        opacity: 0;
      }
    }

    .popup-image {
      flex: 1;
      background: #eff2f7;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      max-width: 388px;

    }

    .popup-image img {
      width: 100%;

    }

    .popup-content {
      flex: 1;
      padding: 30px;
    }

    .popup-content h2 {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .popup-content p {
      font-size: 14px;
      color: #555;
      margin-bottom: 20px;
    }

    /*.popup-content input,
    .popup-content button {
      width: 100%;
      padding: 12px;
      margin-bottom: 15px;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 14px;
    } */

    .popup-content button {
      background: #007BFF;
      color: white;
      border: none;
      cursor: pointer;
    }

    .popup-content button:hover {
      background: #0056b3;
    }

    .close-btn {
      position: absolute;
      top: 12px;
      right: 16px;
      font-size: 22px;
      font-weight: bold;
      color: #444;
      cursor: pointer;
    }



    .floating-label-group {
  position: relative;
  margin-top: 1.5rem;
}

.floating-label-group input {
    border: 1px solid #e3e3e3;
    border-radius: 7px;
    padding: 11px 8px;
    width: 100%;
    font-size: 16px;
    background: transparent;
}

.floating-label-group label {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
  color: #999;
  font-size: 16px;
  pointer-events: none;
  transition: 0.3s ease all;
}

.floating-label-group input:focus + label,
.floating-label-group input:not(:placeholder-shown) + label {
  top:-0.1rem;
  left: 0.65rem;
  font-size: 12px;
  color: #007bff;
  background: white;
  padding: 0 0.2rem;
}


.free-trial-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #f2f2f5;
  border-radius: 80px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.free-trial-box::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: 50%;
  left: 50%;
  background: radial-gradient(circle, #d0d0ff 10%, transparent 40%);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  border-radius: 50%;
  z-index: 0;
}

.free-trial-box:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.free-trial-box a {
    position: relative;
    z-index: 1;
    font-weight: 600;
    text-decoration: none;
    background: #5c67f2;
    color: #fff;
    padding: 12px 20px;
    border-radius: 32px;
    transition: background 0.3s ease;
    width: 100%;
    text-align:center;
}

.free-trial-box a:hover {
  background: #4a54e1;
}

.free-trial-icon {
  position: relative;
  z-index: 1;
  background: #fff;
  color: #5c67f2;
  padding: 0.7rem;
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(92, 103, 242, 0.3);
  transition: transform 0.3s ease;
}

.free-trial-box:hover .free-trial-icon {
  transform: scale(1.1);
}

.free-trial-icon-wrapper {
  position: relative;
  width: auto;
  height: auto;
}

/* Icon stays the same — no changes needed */
.free-trial-icon-wrapper::before,
.free-trial-icon-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(92, 103, 242, 0.25);
  transform: translate(-50%, -50%) scale(1);
  z-index: 0;
  animation: ripple 2.5s infinite ease-out;
}

.free-trial-icon-wrapper::after {
  animation-delay: 1.25s;
}

/* Ripple keyframes */
@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  70% {
    opacity: 0.1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

    @media (max-width: 600px) {
      .popup {
        flex-direction: column;
      }
      .popup-image {
        display: none;
      }
    }

