/* =========================
   Floating Icons - Left Side
========================= */
.floating-icons {
  position: fixed;
  top: 60%;
  left: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1050;
}

.icon {
  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;
  animation: bounce 2s infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  padding: 10px;
  border: 1px solid #e0e0e0;
  cursor: pointer;
}

.icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.icon:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* =========================
   Social Icons - Right Side
========================= */
.social-floating-right {
  position: fixed;
  top: 60%;
  right: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1050;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  padding: 8px;
  cursor: pointer;
}

.social-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* === Center Popup Form === */
.center-popup-form {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 400px;
  max-height: 90vh;
  background: #fff;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  display: none;
  border-radius: 10px;
  
}
.center-popup-form.active {
  display: block;
}


.center-popup-form.active {
  display: block;
}

/* === Close Button === */
.center-popup-form .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

/* === Form Inputs & Textarea === */
.center-popup-form input,
.center-popup-form textarea {
  width: 100%;
  margin-bottom: 14px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}

.center-popup-form textarea {
  resize: vertical;
}

/* === Submit Button === */
.center-popup-form button[type="submit"] {
  width: 100%;
  padding: 10px 0;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.center-popup-form button[type="submit"]:hover {
  background-color: #0056b3;
}

/* === Responsive Adjustments === */
@media (max-width: 600px) {
  .center-popup-form {
    width: 90%;
    max-height: 90vh;
    padding: 15px 18px;
  }

  .center-popup-form input,
  .center-popup-form textarea {
    font-size: 13px;
  }

  .center-popup-form button[type="submit"] {
    font-size: 14px;
  }
}
html, body {
  height: auto !important;
  min-height: 100% !important;
  overflow-x: hidden !important;
}
