

  /* CSS for the fancy card */
  .card {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff !important;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    opacity: 0; /* Initially hidden */
    transform: translateY(20px); /* Initially translated down */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Transition effect */
  }
  
  .card.show {
    opacity: 1; /* Show the card */
    transform: translateY(0); /* Move the card up */
  }
  
  .card-content {
    padding: 20px;
  }
  
  .card-text {
    font-size: 18px;
    line-height: 1.6;
  }



  /* CSS for the "Schedule a Call" button */
  .schedule-call {
    position: fixed;
    top: 80%;
    right: 0; /* Position on the extreme right */
    background-color: #ff5c35;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    z-index: 1000;
  }
  
  .schedule-call:hover {
    background-color: #004d84; /* Darker shade on hover */
    color: #fff;
  }




  
 