* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* Header */
header {
  background-color: #ff5722;
  color: white;
  padding: 15px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 15px 0;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  background: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  color: #ff5722;
  font-weight: bold;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

nav a:hover {
  background-color: #ffece4;
}

/* Section Titles */
h2 {
  margin: 20px 0 10px;
  font-size: 1.2rem;
  color: #ff5722;
}

/* Login/Register */
.auth-section {
  max-width: 400px;
  margin: auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.auth-section h2 {
  margin-bottom: 15px;
  font-size: 28px;
  color: #333;
}

.auth-section p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #555;
}

.auth-section button {
  padding: 12px 20px;
  font-size: 16px;
  background-color: #ff5e00;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.auth-section button:hover {
  background-color: #e94e00;
}


/* KYC Steps */
.kyc-section {
  background: #fff8f3;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.kyc-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.kyc-step::before {
  content: attr(data-step);
  background-color: #ff5722;
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  text-align: center;
  line-height: 22px;
  font-size: 0.9rem;
  position: absolute;
  left: 0;
  top: 0;
}

.kyc-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 10px;
  top: 22px;
  width: 2px;
  height: calc(100% - 22px);
  background-color: #ff5722;
}

/* Proceed button */
.proceed-btn {
  display: block;
  width: 100%;
  background-color: #ff5722;
  color: white;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.proceed-btn:hover {
  background-color: #e64a19;
}

/* Footer */
footer {
  margin-top: 40px;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}

.call-button {
  position: fixed;
  bottom: 10px;
  right: 20px;
  background-color: #28a745; /* Bootstrap green */
  color: white;
  padding: 12px 15px;
  border-radius: 60px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: background 0.3s;
}

.call-button:hover {
  background-color: #218838;
}

