    .floating-icons {
            position: fixed;
            bottom: 120px;
            left: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 1000;
        }

        .floating-icons a {
            border: dashed white;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background-color: #1cba9f;
            color: white;
            border-radius: 50%;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            text-decoration: none;
            font-size: 24px;
            position: relative;
        }

        .floating-icons a svg {
            opacity: 0;
            position: absolute;
        }

        .floating-icons a:nth-child(1)::before {
            content: "\f0e0";
            /* envelope */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
        }

        .floating-icons a:nth-child(2)::before {
            content: "\f232";
            /* whatsapp */
            font-family: "Font Awesome 6 Brands";
            font-weight: 400;
        }

        .floating-icons a:nth-child(3)::before {
            content: "\f095";
            /* phone */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
        }

        .floating-icons a:hover {
            background-color: #17a589;
        }

        .call-icon {
            background-color: blue !important;
        }

        .mail-icon {
            background-color: red !important;
        }

        .whatsapp-icon {
            background-color: green !important;
        }
/* Common Styling for Both Forms */
.email-form,
.whatsapp-form {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

/* Inputs and Textareas */
.email-form input,
.email-form textarea,
.email-form button,
.whatsapp-form input,
.whatsapp-form button {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* Focus Effects */
.email-form input:focus,
.email-form textarea:focus,
.whatsapp-form input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.25);
}

/* Email Form Button */
.email-form button {
  background-color: #007bff;
  color: #fff;
  border: none;
}

.email-form button:hover {
  background-color: #0056b3;
}

/* WhatsApp Form Button */
.whatsapp-form button {
  background-color: #25D366;
  color: #fff;
  border: none;
}

.whatsapp-form button:hover {
  background-color: #1ebe5c;
}

/* Placeholder Color */
input::placeholder,
textarea::placeholder {
  color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .email-form,
  .whatsapp-form {
    padding: 20px;
  }

  .email-form input,
  .email-form textarea,
  .email-form button,
  .whatsapp-form input,
  .whatsapp-form button {
    font-size: 14px;
  }
}
