/* Floating Icons - Transparent with Subtle Borders & Animations */
.floating-icons {
  position: fixed;
  bottom: 30px;
  left: 7px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
  
}

/* Base Floating Icon Style */
.floating-icons a {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 3px solid transparent;
  background: rgba(0, 0, 0, 0.25); /* Slight background for transparency */
  backdrop-filter: blur(6px); /* Blur effect for a smooth backdrop */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); /* Smooth shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* WhatsApp */
.floating-icons a.whatsapp {
  background: green;
  backdrop-filter: blur(5px);
  border: dashed white;
}

/* Facebook */
.floating-icons a.gmail {
  background: red;
  backdrop-filter: blur(5px);
  border: dashed white;
}

/* Call */
.floating-icons a.call {
  background: blue;
  backdrop-filter: blur(6px);
  border: dashed white;
}

/* Hover Effects */
.floating-icons a:hover {
  transform: scale(1.1); /* Slight scaling effect on hover */
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3); /* More intense shadow */
  border-color: #fff; /* Light border glow on hover */
}

/* Modal Content */
.modal-content {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  padding: 25px;
  border: 3px dashed rgba(200, 200, 200, 0.5);
  backdrop-filter: blur(6px);
}

/* Modal Header */
.modal-header {
  background: rgba(240, 240, 240, 0.85);
  border-bottom: 2px solid rgba(200, 200, 200, 0.5);
  border-radius: 18px 18px 0 0;
}

.modal-title {
  font-weight: bold;
  font-size: 24px;
  color: #444;
}

/* Close Button */
.btn-close {
  background-color: rgba(255, 77, 79, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  line-height: 32px;
  transition: background-color 0.3s, transform 0.3s;
}

.btn-close:hover {
  background-color: rgba(217, 54, 62, 0.8);
  transform: rotate(180deg);
}

/* Form Elements */
.form-control {
  border: 2px solid rgba(204, 204, 204, 0.7);
  border-radius: 12px;
  padding: 14px;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease-in-out;
  backdrop-filter: blur(5px);
}

.form-control:focus {
  border-color: rgba(111, 66, 193, 0.8);
  box-shadow: 0 0 10px rgba(111, 66, 193, 0.3);
  outline: none;
}


/* Submit Button with Gradient */
.button {
  background: linear-gradient(135deg, rgba(111, 66, 193, 0.7), rgba(156, 39, 176, 0.7));
  border: none;
  color: white;
  font-size: 18px;
  border-radius: 10px;
  padding: 12px;
  width: 100%;
  transition: background 0.4s ease, transform 0.3s ease;
}

.button:hover {
  background: linear-gradient(135deg, rgba(90, 50, 163, 0.8), rgba(123, 31, 162, 0.8));
  transform: translateY(-2px);
}
