.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);
  }
}



.floating-iconss {
  position: fixed;
  top: auto;
  bottom: 28px;
  left: 10px;
  transform: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.social-icons {
  background-color: #ffffff;
}

#emailModal,
#whatsappModal {
  z-index: 99999;
}

.icons {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: bounce 2s infinite;
  overflow: hidden;
  padding: 10px;
  border: 1px solid #e0e0e0;
  cursor: pointer;
}

.icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.icons:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}



.floating-iconss,
.social-floating-right {
  position: fixed;
  top: auto;
  bottom: 28px;
  transform: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1050;
}

.floating-iconss {
  left: 10px;
}

.social-floating-right {
  right: 10px;
}

.social-icons {
  width: 45px;
  height: 45px;
  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;
  animation: bounce 2s infinite;
  overflow: hidden;
  cursor: pointer;
  padding: 8px;
}

.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: contain;
}

@keyframes floatBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}


/* Modal Animation & Form Styling */
#emailModal .modal-dialog,
#whatsappModal .modal-dialog {
  max-width: 560px;
  margin: 24px auto;
}

#emailModal .modal-content,
#whatsappModal .modal-content {
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  animation: fadeInUp 0.35s ease;
  height: auto !important;
  min-height: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

#emailModal .modal-header,
#whatsappModal .modal-header {
  align-items: center;
  background: #2F3192;
  border-bottom: 0;
  color: #fff;
  padding: 14px 18px;
}

#emailModal .modal-header h5,
#whatsappModal .modal-header h5 {
  color: #fff !important;
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
}

#emailModal .btn-close,
#whatsappModal .btn-close {
  width: 18px;
  height: 18px;
  padding: 0;
  background-size: 18px;
  box-shadow: none;
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: 1;
}

#emailModal .modal-body,
#whatsappModal .modal-body {
  padding: 12px;
  background: #fff;
}

#emailModal .modal-body input,
#emailModal .modal-body select,
#emailModal .modal-body textarea,
#whatsappModal .modal-body input {
  width: 100%;
  min-height: 48px;
  border-radius: 6px;
  border: 1px solid #d8dbe3;
  color: #1f2937;
  font-size: 15px;
  line-height: 1.4;
  padding: 10px 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

#emailModal .modal-body textarea {
  min-height: 86px;
  resize: vertical;
}

#emailModal .modal-body select {
  background-color: #fff;
  cursor: pointer;
}

#emailModal .modal-body input:focus,
#emailModal .modal-body select:focus,
#emailModal .modal-body textarea:focus,
#whatsappModal .modal-body input:focus {
  border-color: #2F3192;
  box-shadow: 0 0 0 3px rgba(47, 49, 146, 0.12);
  outline: none;
}

#emailModal .modal-body .mb-3,
#whatsappModal .modal-body .mb-3 {
  margin-bottom: 12px !important;
}

#emailModal .modal-body button,
#whatsappModal .modal-body button {
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  background: #2F3192;
  color: #fff;
  font-weight: 700;
  transition: background 0.25s ease, transform 0.25s ease;
}

#emailModal .modal-body button:hover,
#whatsappModal .modal-body button:hover {
  background: #20226f;
  transform: translateY(-1px);
}

#emailModal .g-recaptcha,
#whatsappModal .g-recaptcha {
  overflow: hidden;
}

@media (max-width: 575px) {

  #emailModal .modal-dialog,
  #whatsappModal .modal-dialog {
    max-width: calc(100% - 24px);
    margin: 12px auto;
  }

  #emailModal .modal-header,
  #whatsappModal .modal-header {
    padding: 12px 14px;
  }

  #emailModal .modal-header h5,
  #whatsappModal .modal-header h5 {
    font-size: 19px;
  }

  #emailModal .modal-body,
  #whatsappModal .modal-body {
    padding: 10px;
  }

  #emailModal .modal-body input,
  #emailModal .modal-body select,
  #emailModal .modal-body textarea,
  #whatsappModal .modal-body input {
    min-height: 44px;
    font-size: 14px;
  }

  .floating-iconss,
  .social-floating-right {
    gap: 9px;
    bottom: 18px;
  }

  .icons,
  .social-icons {
    width: 40px;
    height: 40px;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}