
        /* 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 {
            color: #ffffff;
            font-size: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: grid;
            place-items: center;
             border: thick double #eef2f3;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
            position: relative;
            animation: bounce 2s infinite;
        }

        .floating-icons .icon:hover {
            transform: scale(1.2) rotate(10deg);
            color: #fff;
        }

        .mail-icon:hover {
            background-color: #e74c3c;
        }

        .whatsapp-icon:hover {
            background-color: #25D366;
        }

        .call-icon:hover {
            background-color: #2980b9;
        }
        .call-icon {
            background-color: blue !important;
        }

        .mail-icon {
            background-color: red !important;
        }

        .whatsapp-icon {
            background-color: green !important;
        }
        /* 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);
            }
        }