.floating-iconss {
    position: fixed;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
  }
  .social-icons {
    background-color: #ffffff;
  }
  .icons {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: bounce 2s infinite;
    overflow: hidden;
    padding: 10px;
    border: 1px solid #e0e0e0;
    cursor: pointer;
  }
  
  .icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .icons:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }
  
  @keyframes bounce {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  
  .floating-iconss,
  .social-floating-right {
    position: fixed;
    top: 80%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1050;
  }
  
  .floating-iconss {
    left: 10px;
  }
  
  .social-floating-right {
    right: 10px;
  }
  
  .social-icons {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: bounce 2s infinite;
    overflow: hidden;
    cursor: pointer;
    padding: 8px;
  }
  
  .social-icons:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  }
  
  .social-icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  @keyframes floatBounce {
    0%,
    100% {
      transform: translateY(0);
    }
  
    50% {
      transform: translateY(-6px);
    }
  }
  

        /* Modal Animation & Form Styling */
        .modal-content {
            border-radius: 15px;
            overflow: hidden;
            animation: fadeInUp 0.5s ease;
        }

        .modal-header {
            background: linear-gradient(45deg, #6a11cb, #2575fc);
            color: white;
        }

        .modal-title {
            font-weight: 600;
        }

        .modal-body input,
        .modal-body textarea {
            border-radius: 8px;
            border: 1px solid #ccc;
            transition: border 0.3s ease;
        }

        .modal-body input:focus,
        .modal-body textarea:focus {
            border-color: #6a11cb;
            box-shadow: 0 0 5px rgba(106, 17, 203, 0.3);
            outline: none;
        }

        .modal-body button {
            border-radius: 8px;
            font-weight: bold;
            transition: background 0.3s ease;
        }

        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }