.floating-iconss,
.social-floating-right {
  position: fixed;
  top: 80%;
  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-icons {
  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-icons:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.social-icons 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 ---------------- */
/* ---------- Responsive Fix for Modal Close Button ---------- */
.custom-close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 10;
}

.custom-close-btn::before,
.custom-close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background-color: #fff;
  transform-origin: center;
  transition: all 0.3s ease;
}

.custom-close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.custom-close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.custom-close-btn:hover::before,
.custom-close-btn:hover::after {
  background-color: #000;
}

/* --- Responsive Adjustments --- */
@media (max-width: 575px) {
  .custom-close-btn {
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
  }

  .custom-close-btn::before,
  .custom-close-btn::after {
    width: 12px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .custom-close-btn {
    top: 10px;
    right: 12px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .custom-close-btn {
    top: 12px;
    right: 15px;
  }
}

.modal-content {
  border-radius: 15px;
  overflow: hidden;
  animation: fadeInUp 0.5s ease;
}

.modal-header {
  background: linear-gradient(40deg, #fba661, #eb7724); /* Email */
  color: white;
}

#whatsappModal .modal-header {
  background: linear-gradient(40deg, #d6a241, #df7a07); /* 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;
}
.btnn {
   background-color: #f88f2c;
   color: white;
}

.btnn:hover{
   background-color: #f88f2c;
   color: rgb(11, 8, 8);
}

/* 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;
}




