/* Reset & Base */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica , sans-serif;
  background: #ffffff;
  color: #e0e0e0;
  overflow-x: hidden;

}
/* ✅ Toast Notification Styles */
#toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #fff;
  color: #00ff88;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #00ff88;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
  z-index: 9999;
}

/* When toast shows */
#toast.show {
  opacity: 1;
  transform: translateY(0);
}


/* Free Trial Modal */
.modal {
  display: none;                
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
  backdrop-filter: blur(2px);
  animation: fadeIn 0.3s ease forwards;
  
}

.modal-content {
  background-color: #1a1a1a;
  margin: 80px auto;
  padding: 30px 25px;
  border-radius: 15px;
  width: 400px;
  max-width: 90%;
  box-shadow: 0 10px 35px rgba(0,0,0,0.6);
  transform: scale(0.7);
  opacity: 0;
  animation: scaleIn 0.3s ease forwards;
  position: relative;
}
.modal-content h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #00ff88;
}

.modal .close {
  color: #fff;
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.modal .close:hover {
  color: #00ff88;
}

.modal form input,
.modal form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: none;
  background: #2a2a2a;
  color: #e0e0e0;
  font-size: 0.9rem;
}

.modal form button {
  width: 100%;
  padding: 12px;
  background-color: #00ff88;
  color: #000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s;
}

.modal form button:hover {
  background-color: #1abc9c;
}
/* Spinner styling */
.btn.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}

.btn.loading::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: translateY(-50%) rotate(360deg); }
}


/* Animations */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes scaleIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


