#whatsapp-icon {
    position: fixed;
    bottom: 50px;
    right: 25px;
    width: 85px;
    height: 85px;
    background: url('../images/whatsApp.png') no-repeat center center / cover;
    cursor: pointer;
    animation: pulse 2s infinite;
    z-index: 9999;
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
  }

  /* Chat Box Container */
  #chat-box {
    display: none;
    position: fixed;
    bottom: 150px;
    right: 25px;
    width: 300px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 9999;
    animation: fadeInUp 0.3s ease;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Chat Header */
  #chat-box header {
    background-color: #25D366;
    color: white;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
  }

  /* Chat Messages Area (dummy for now) */
  .messages {
    height: 120px;
    padding: 15px;
    background: #f9f9f9;
    overflow-y: auto;
    font-size: 14px;
    color: #555;
  }

  /* Input Area */
  .input-area {
    display: flex;
    border-top: 1px solid #ddd;
    background: #fff;
  }

  .input-area input {
    flex: 1;
    border: none;
    padding: 12px;
    font-size: 14px;
    outline: none;
  }

  .input-area button {
    background: #25D366;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    font-size: 22px;
    color: white;
    transition: background 0.3s ease;
  }

  .input-area button:hover {
    background: #20b858;
  }
  
  
  /*Menu add extra*/
  .menu-links {
  z-index: 9999;
  position: relative;
  }

/*Client area*/

    .client-logo {
      padding: 20px;
      border: 1px solid #eee;
      border-radius: 10px;
      background-color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100px;
      transition: box-shadow 0.3s ease;
    }
    
    .client-logo:hover {
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    
    .client-logo img {
      max-height: 60px;
      max-width: 100%;
      object-fit: contain;
    }