.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);
    }
  }

  /* Custom Modal Styles */
  .custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
  }

  .custom-modal.active {
    display: flex;
  }

  .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
  }

  .modal-dialog {
    position: relative;
    z-index: 10001;
    width: 90%;
    max-width: 500px;
    animation: slideUp 0.3s ease;
  }

  .modal-content {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
  }

  .modal-header {
    background-color: #f8f9fa;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .modal-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
  }

  .modal-close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
  }

  .modal-close-btn:hover {
    color: #333;
  }

  .modal-body {
    padding: 30px;
  }

  .form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
  }

  .mb-3 {
    margin-bottom: 15px;
  }

  .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .btn-primary {
    background-color: #007bff;
    color: #fff;
  }

  .btn-primary:hover {
    background-color: #0056b3;
  }

  .btn-success {
    background-color: #28a745;
    color: #fff;
  }

  .btn-success:hover {
    background-color: #218838;
  }

  .w-100 {
    width: 100%;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes slideUp {
    from {
      transform: translateY(30px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @media (max-width: 768px) {
    .modal-dialog {
      width: 95%;
    }

    .modal-body {
      padding: 20px;
    }
  }
  
  .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, #ffffff, #eaebee);
            color: rgb(0, 0, 0);
        }

        .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);
            }
        }