.floating-iconss,
.social-floating-right {
  position: fixed;
  top: 70%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
 
  z-index: 1060 !important;
  opacity: 1;
}

.floating-iconss {
  left: 10px;
}

.social-floating-right {
  right: 10px;
}

.social-iconss {
  width: 40px;
  height: 40px;
  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;
  overflow: hidden;
  cursor: pointer;
  padding: 8px;
  background-color: #fff;
}

.social-iconss:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.social-iconss img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.floating-iconss img{
   width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Floating Action Icons (Left Side) */
.floating-iconss {
  left: 0;
}

.floating-iconss a {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 152px;
  transform: translateX(-98px);
  padding: 10px;
  text-decoration: none;
  color: #fff;
  border-radius: 0 30px 30px 0;
  transition: transform 0.4s ease;
      z-index: 102;
}

.floating-iconss a img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  padding: 8px;
  transition: transform 0.5s ease;
}

.floating-iconss a:hover {
  transform: translateX(0);
}

.floating-iconss a:hover img {
  transform: rotate(360deg);
}

/* Background colors left */
.mail-icons {
  background: #d93025;
}

.whatsapp-icons {
  background: #25d366;
}

.call-icons {
  background: #4285f4;
}

/* ---------------- Modal Styling ---------------- */
.modal-content {
  border-radius: 15px;
  overflow: hidden;
  animation: fadeInUp 0.5s ease;
}

.modal-header {
  background: linear-gradient(45deg, #fba661, #70f0fc); /* Email */
  color: white;
}

#whatsappModal .modal-header {
  background: linear-gradient(45deg, #d6a241, #128C7E); /* WhatsApp */
}

.modal-title {
  font-weight: 600;
}

.modal-body button {
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
  padding: 10px;
}

.modal-body button:hover {
  transform: translateY(-2px);
}

/* Fade Animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ---------------- Form Styling ---------------- */
.modal-body .form-control,
.modal-body .custom-select,
.modal-body .custom-file .custom-file-label {
  width: 100%;
  border-radius: .25rem;
  border: 1px solid #ced4da;
  padding: .375rem .75rem;
  font-size: 1rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.modal-body .form-control:focus,
.modal-body .custom-select:focus,
.modal-body .custom-file .custom-file-label:focus {
  border-color: #e4ebea;
  box-shadow: 0 0 0 .2rem rgba(135, 166, 199, 0.25);
  outline: none;
}

.modal-body .form-control.is-valid,
.modal-body .custom-select.is-valid {
  border-color: #eebd4b;
  background-image: url("data:image/svg+xml,..."); /* Valid check icon */
}

.modal-body .form-control.is-invalid,
.modal-body .custom-select.is-invalid {
  border-color: #ec9c52;
  background-image: url("data:image/svg+xml,..."); /* Invalid cross icon */
}

.modal-body textarea.form-control {
  resize: vertical;
}

/* Custom file input */
.modal-body .custom-file {
  position: relative;
  width: 100%;
}

.modal-body .custom-file-input {
  opacity: 0;
  width: 100%;
  z-index: 2;
}

.modal-body .custom-file-label {
  position: absolute;
  top: 0;
  left: 0;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  line-height: 1.5;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: .25rem;
}

/* Select inside modal */
.modal-body .custom-select {
  appearance: none;
  background: url("data:image/svg+xml,...") no-repeat right .75rem center/8px 10px #fff;
  border: 1px solid #ced4da;
  border-radius: .25rem;
}

/* Switch, checkbox, radio (custom-control) inside modal */
.modal-body .custom-control-label:before {
  border-radius: .25rem;
  border: 1px solid #adb5bd;
  background-color: #fff;
  transition: all .15s ease-in-out;
}

.modal-body .custom-control-input:checked ~ .custom-control-label:before {
  background-color: #f3f1ef;
  border-color: #eef0f2;
}

.modal-body .form-group {
  margin-bottom: 1rem;
}
.modal-body .mb-3 {
  margin-bottom: 1rem !important;
}

.loader-circle {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
