.six-three {
    margin-top: 20px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
  }
  
  .six-offer-img {
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(255, 165, 0, 0.4);
    transition: transform 0.3s;
  }
  
  .six-offer-img:hover {
    transform: scale(1.03);
  }
  
  /* @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  } */
  








  .call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: orange;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(255, 165, 0, 0.5);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
  }
  
  .call-button:hover {
    background-color: darkorange;
    transform: scale(1.1);
  }
  