.shape-arch-1 {
            border-radius: 40% 60% 70% 30% / 50% 50% 50% 50%;
        }
        .shape-arch-2 {
            border-radius: 60% 40% 30% 70% / 50% 50% 50% 50%;
        }
		
		.shape-arch-1 {
            border-radius: 40% 60% 70% 30% / 50% 50% 50% 50%;
        }
		.bg-white{background-color:white!important;}
		/* Fixed Positioned Phone Widget on Bottom-Right */
    .fixed-phone-widget {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 9999; /* Keeps it above other elements */
      background: #1e293b;
      padding: 12px 20px;
      border-radius: 50px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
      display: flex;
      align-items: center;
      gap: 14px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(8px);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* Animated Call Button */
    .call-btn-container {
      position: relative;
      width: 46px;
      height: 46px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .pulse-ring {
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: #22c55e;
      border-radius: 50%;
      opacity: 0.6;
      animation: pulse 2s infinite ease-out;
    }

    .pulse-ring:nth-child(2) {
      animation-delay: 0.6s;
    }

    .call-btn {
      position: relative;
      width: 44px;
      height: 44px;
      background-color: #22c55e;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #ffffff;
      font-size: 18px;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
      transition: transform 0.2s ease, background-color 0.2s ease;
      z-index: 2;
    }

    .call-btn i {
      animation: shake 2.5s infinite ease-in-out;
    }

    .call-btn:hover {
      background-color: #16a34a;
      transform: scale(1.08);
    }

    /* Phone Number Details */
    .phone-info {
      display: flex;
      flex-direction: column;
    }

    .phone-label {
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #94a3b8;
      margin-bottom: 2px;
      font-weight: 600;
    }

    .phone-number {
      font-size: 1rem;
      font-weight: 700;
      color: #f8fafc;
      text-decoration: none;
      transition: color 0.2s ease;
      white-space: nowrap;
    }

    .phone-number:hover {
      color: #4ade80;
    }

    /* Keyframe Animations */
    @keyframes pulse {
      0% {
        transform: scale(0.9);
        opacity: 0.7;
      }
      100% {
        transform: scale(1.6);
        opacity: 0;
      }
    }

    @keyframes shake {
      0%, 100% { transform: rotate(0deg); }
      10% { transform: rotate(15deg); }
      20% { transform: rotate(-15deg); }
      30% { transform: rotate(15deg); }
      40% { transform: rotate(0deg); }
    }

    /* Optional: Hide text on small screens and keep only the floating icon */
    @media (max-width: 480px) {
      .phone-info {
        display: none;
      }
      .fixed-phone-widget {
        padding: 6px;
        border-radius: 50%;
      }
    }
        
		