.img-3d {
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    transform: perspective(500px) rotateY(10deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px; /* Add this for rounded corners */
  }

  .img-3d:hover {
    transform: perspective(500px) rotateY(0deg) scale(1.05);
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.5);
  }
  .paragraph {
    font-size: 14px !important;
  }

  @media screen and (max-width:676px) {
    .contact_us1 {
      display: block !important;
    }
  }

  .contact_us1 {
    background-color: #f8f9fa;
    border-top: 1px solid #ddd;
    padding: 2px 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
  }

  .contact_us1 .row {
    margin: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
  }

  .contact_us1 a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .contact_us1 .bi-envelope {
    color: #d44638;
  }

  .contact_us1 .bi-whatsapp {
    color: #25d366;
  }

  .contact_us1 .bi-telephone {
    color: #007bff;
  }

  .contact_us1 .bi-chat-dots {
    color: #ff9933;
  }

  .contact_us1 a i {
    font-size: 16px;
  }

  .contact_us1 a span {
    font-size: 0.75rem;
    color: #333;
    text-wrap: nowrap;
  }

  .contact_us1 a:hover .bi-envelope {
    color: #b02e2e;
  }

  .contact_us1 a:hover .bi-whatsapp {
    color: #128c7e;
  }

  .contact_us1 a:hover .bi-telephone {
    color: #0056b3;
  }

  .contact_us1 a:hover .bi-chat-dots {
    color: #e67e22;
  }

  .contact_us1 {
    transition: transform 0.3s ease-in-out;
  }

  .contact_us1.hide {
    transform: translateY(0);
  }

  .contact_us1.show {
    transform: translateY(100%);
  }