/* ===============================
   LOADER CIRCLE
================================*/
.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 ICONS (LEFT SIDE)
================================*/
.floating-iconss {
  position: fixed;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* ===============================
   ICON STYLING
================================*/
.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);
}

/* ===============================
   FLOATING ICONS (RIGHT SIDE - OPTIONAL)
================================*/
.social-floating-right {
  position: fixed;
  top: 80%;
  right: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1050;
}

.social-icons {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #ffffff;
  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 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-icons:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* ===============================
   ANIMATIONS
================================*/
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===============================
   MODAL STYLING
================================*/
.modal {
  z-index: 9999;
}

.modal-content {
  border-radius: 15px;
  animation: fadeInUp 0.5s ease;
  height: 100% !important;
  position: relative;
  z-index: 998;
}

.modal-header {
  background: linear-gradient(45deg, #c71212, #e21a1a);
  color: white;
}

.modal-header h5 {
  color: #fff !important;
}

.modal-title {
  font-weight: 600;
}

.modal-body input,
.modal-body textarea {
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: border 0.3s ease;
}

.modal-body input:focus,
.modal-body textarea:focus {
  border-color: #469696;
  box-shadow: 0 0 5px rgba(87, 163, 171, 0.3);
  outline: none;
}

.modal-body button {
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   RESPONSIVE ADJUSTMENTS
================================*/
@media (max-width: 768px) {
  .floating-iconss {
    top: 75%;
    left: 5px;
    transform: translateY(-50%);
  }

  .social-floating-right {
    top: 85%;
    right: 5px;
  }

  .icons, .social-icons {
    width: 40px;
    height: 40px;
  }
}
