/* Upload circle styles */
.upload-circle {
  width: 180px;
  height: 180px;
  border: 2px dashed #3fb07f;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #3fb07f;
  background-color: #f6fff9;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.upload-circle .plus {
  font-size: 32px;
  line-height: 1;
}

.upload-circle .upload-text {
  font-size: 14px;
}

.upload-circle img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

/* Subtle red alert (Bootstrap-like) */
.alert-danger-subtle {
  color: #842029;
  background-color: #fff3f4;
}

.border-danger-subtle {
  border: 1px solid #f5c2c7;
}

/* Small visual polish */
body {
  background: linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
    url('../img/bg.jpeg') center center / cover no-repeat fixed;
}

.form-label {
  font-weight: 600;
}

/* Whatsapp Float Button */
.whatsapp-float {
  position: fixed !important;
  width: 80px;
  height: 80px;
  bottom: 40px;
  right: 40px;
  background-color: #198754;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 40px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #146c43;
  color: #fff;
  transform: scale(1.1);
}

.whatsapp-float i {
  margin-top: 0;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(25, 135, 84, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(25, 135, 84, 0);
  }
}