  .service-card {
      transform: translateY(50px);
      opacity: 0;
      transition: all 0.5s ease;
    }

    .card-hover-effect:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 25px rgba(168, 85, 247, 0.15);
    }

    .tab-content {
      display: none;
    }

    .tab-content.active {
      display: block;
    }

    .tab-button {
      transition: all 0.3s ease;
    }

    .tab-button.active {
      background: rgba(168, 85, 247, 0.2);
      border-color: #a855f7;
      color: white;
    }

    #scheduleModal {
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    #scheduleModal.active {
      opacity: 1;
      pointer-events: auto;
    }

    .modal-container {
      max-height: 90vh;
      overflow-y: auto;
    }

    body.modal-open {
      overflow: hidden;
    }

    .process-model-container {
      width: 100%;
      height: 300px;
      position: relative;
    }

    .process-model {
      width: 100%;
      height: 80vh;
    }

    @media (min-width: 768px) {
      .process-model-container {
        height: 400px;
      }
    }

    @keyframes borderMove {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    .animated-border {
      position: relative;
      display: inline-block;
      padding: 1rem 2rem;
      border-radius: 0.5rem;
      background: transparent;
      z-index: 0;
    }

    .animated-border::before {
      content: "";
      position: absolute;
      inset: 0;
      padding: 3px;
      border-radius: inherit;
      background: linear-gradient(90deg, #a855f7, #ec4899, #a855f7);
      background-size: 200% 200%;
      animation: borderMove 3s linear infinite;
      -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      z-index: -1;
    }
    .card-glass-2 , .card-glass{
      background: none !important;
    }