
    /* Floating Icons */
.floating-icons {
    position: fixed;
    top: 70%;
    left: 7px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1050;
}

.floating-icons .icon {
    background-color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* Image inside icon */
.floating-icons .icon img {
    width: 30px;
    height: 30px;
    transition: transform 0.4s ease;
}

/* Hover effect on icon container */
.floating-icons .icon:hover {
    transform: scale(1.2) rotate(10deg);
}


/* Bounce Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

        /* 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);
            }
        }