/* Custom Styles for the Landing Page Contrast */
.hero-section {
  padding: 160px 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}
.hero-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #032d16;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 40px;
}
.cta-button {
  background-color: #16a34a; /* Matches your green brand */
  color: white;
  padding: 18px 45px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(22, 163, 74, 0.2);
  text-decoration: none;
}
.cta-button:hover {
  background-color: #15803d;
  transform: translateY(-3px);
  color: white;
}
.feature-tag {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
}
/*////////////////////////////////////////////////////////////////*/
.registration-section {
  padding: 100px 0;
  background-color: #f8fafc;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.reg-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  max-width: 450px;
  margin: 0 auto;
}
.form-label {
  font-weight: 600;
  color: #032d16;
  margin-bottom: 8px;
}
.form-control-custom {
  height: 55px;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  padding: 0 20px;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.form-control-custom:focus {
  border-color: #16a34a;
  outline: none;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}
.btn-continue {
  background-color: #16a34a;
  color: white;
  width: 100%;
  height: 55px;
  border-radius: 10px;
  font-weight: 700;
  border: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.btn-continue:hover {
  background-color: #15803d;
  transform: translateY(-2px);
}
.otp-link {
  color: #16a34a;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}
#otpArea {
  display: none; /* Hidden until mobile is entered */
}
/*///////////////////////////////////////////////////////////////////////////// */
.profile-section {
  padding: 80px 0;
  background-color: #f8fafc;
  min-height: 75vh;
}
.profile-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  max-width: 500px;
  margin: 0 auto;
}
.step-indicator {
  font-size: 0.85rem;
  color: #16a34a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}
.form-label {
  font-weight: 600;
  color: #032d16;
  margin-bottom: 8px;
  display: block;
}
.form-select-custom,
.form-control-custom {
  height: 55px;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  padding: 0 15px;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 25px;
  appearance: none;
  background-color: white;
  transition: all 0.3s ease;
}
.form-select-custom:focus {
  border-color: #16a34a;
  outline: none;
}
/* Styling for the Radio Buttons (Purpose) */
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}
.purpose-item input {
  display: none;
}
.purpose-label {
  display: block;
  padding: 12px 5px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
  color: #64748b;
}
.purpose-item input:checked + .purpose-label {
  border-color: #16a34a;
  background-color: rgba(22, 163, 74, 0.05);
  color: #16a34a;
}
.btn-proceed {
  background-color: #16a34a;
  color: white;
  width: 100%;
  height: 55px;
  border-radius: 10px;
  font-weight: 700;
  border: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.btn-proceed:hover {
  background-color: #15803d;
  transform: translateY(-2px);
  color: white;
}
/*///////////////////////////////////////////////////////////////////////////// */
.kyc-section {
  padding: 80px 0;
  background-color: #f8fafc;
  min-height: 80vh;
}
.kyc-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid #edf2f7;
}
.step-indicator {
  font-size: 0.85rem;
  color: #16a34a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}
.security-banner {
  background-color: #f0fdf4;
  border: 1px solid #dcfce7;
  padding: 12px 15px;
  border-radius: 12px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.security-banner i {
  color: #16a34a;
  font-size: 1.2rem;
}
.security-banner span {
  font-size: 0.9rem;
  color: #166534;
  font-weight: 500;
}
.form-label {
  font-weight: 600;
  color: #032d16;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
.form-control-custom {
  height: 58px;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  padding: 0 18px;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}
.form-control-custom:focus {
  border-color: #16a34a;
  outline: none;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.08);
}
.btn-verify {
  background-color: #16a34a;
  color: white;
  width: 100%;
  height: 58px;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  font-size: 1.15rem;
  transition: all 0.3s ease;
  margin-top: 10px;
}
.btn-verify:hover {
  background-color: #15803d;
  transform: translateY(-2px);
  color: white;
}
.kyc-note {
  font-size: 0.8rem;
  color: #94a3b8;
  text-align: center;
  margin-top: 20px;
  line-height: 1.4;
}

/*///////////////////////////////////////////////////////////////////////////// */
.plan-section {
  padding: 80px 0;
  background-color: #f0fdf4; /* Light green tint for trust */
  min-height: 85vh;
}
.plan-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(3, 45, 22, 0.08);
  max-width: 420px;
  margin: 0 auto;
  border: 2px solid #16a34a;
  position: relative;
}
.plan-header {
  background-color: #032d16;
  color: white;
  padding: 30px 20px;
  text-align: center;
}
.plan-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
}
.plan-body {
  padding: 40px 30px;
}
.plan-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px dashed #e2e8f0;
}
.plan-detail-row:last-of-type {
  border-bottom: none;
  margin-bottom: 20px;
}
.detail-label {
  color: #64748b;
  font-weight: 500;
  font-size: 0.95rem;
}
.detail-value {
  color: #032d16;
  font-weight: 700;
  font-size: 1.05rem;
}
.total-box {
  background: #f8fafc;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  margin-bottom: 30px;
}
.total-label {
  font-size: 0.85rem;
  color: #16a34a;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}
.total-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: #032d16;
}
.btn-select-plan {
  background-color: #16a34a;
  color: white;
  width: 100%;
  height: 65px;
  border-radius: 15px;
  font-weight: 700;
  border: none;
  font-size: 1.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}
.btn-select-plan:hover {
  background-color: #15803d;
  transform: scale(1.02);
  color: white;
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.2);
}
.badge-verified {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ffffff;
  color: #16a34a;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/*///////////////////////////////////////////////////////////////////////////// */
.agreement-section {
  padding: 60px 0;
  background-color: #f8fafc;
  min-height: 85vh;
}
.agreement-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid #e2e8f0;
}
.doc-header {
  text-align: center;
  margin-bottom: 30px;
}
.doc-header i {
  font-size: 2.5rem;
  color: #16a34a;
  margin-bottom: 15px;
}
.agreement-text-box {
  background: #f1f5f9;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 25px;
  border-left: 4px solid #16a34a;
}
.agreement-text-box p {
  margin: 0;
  font-size: 0.95rem;
  color: #334155;
  font-weight: 600;
  line-height: 1.5;
}
.check-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: #032d16;
  user-select: none;
}
.check-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #e2e8f0;
  border-radius: 6px;
  transition: all 0.2s;
}
.check-container:hover input ~ .checkmark {
  background-color: #cbd5e1;
}
.check-container input:checked ~ .checkmark {
  background-color: #16a34a;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.check-container input:checked ~ .checkmark:after {
  display: block;
}
.check-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.btn-activate {
  background-color: #032d16;
  color: white;
  width: 100%;
  height: 60px;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(3, 45, 22, 0.2);
}
.btn-activate:hover {
  background-color: #054d26;
  transform: translateY(-2px);
  color: white;
}
.btn-activate:disabled {
  background-color: #94a3b8;
  cursor: not-allowed;
  transform: none;
}

/*///////////////////////////////////////////////////////////////////////////// */
.payment-section {
  padding: 80px 0;
  background-color: #f8fafc;
  min-height: 85vh;
}
.payment-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid #e2e8f0;
}
.method-option {
  border: 2px solid #e2e8f0;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 15px;
}
.method-option:hover {
  border-color: #16a34a;
  background-color: #f0fdf4;
}
.method-option input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: #16a34a;
}
.method-option.active {
  border-color: #16a34a;
  background-color: #f0fdf4;
}
.method-icon {
  font-size: 1.5rem;
  color: #64748b;
}
.method-option.active .method-icon {
  color: #16a34a;
}
.method-text b {
  display: block;
  color: #032d16;
  margin-bottom: 2px;
}
.method-text span {
  font-size: 0.85rem;
  color: #64748b;
}
.btn-activate {
  background-color: #16a34a;
  color: white;
  width: 100%;
  height: 65px;
  border-radius: 15px;
  font-weight: 700;
  border: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-activate:hover {
  background-color: #15803d;
  transform: translateY(-2px);
  color: white;
}
.cashfree-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
  font-size: 0.8rem;
  color: #94a3b8;
}
.cashfree-badge img {
  height: 14px;
  filter: grayscale(1);
  opacity: 0.6;
}

/*///////////////////////////////////////////////////////////////////////////// */
.success-section {
  padding: 100px 0;
  background-color: #ffffff;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.success-card {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.confetti-icon {
  font-size: 5rem;
  margin-bottom: 25px;
  display: inline-block;
}
.status-badge {
  background-color: #dcfce7;
  color: #16a34a;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 20px;
}
.summary-box {
  background: #f8fafc;
  border-radius: 20px;
  padding: 30px;
  margin: 30px 0;
  text-align: left;
  border: 1px solid #e2e8f0;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #edf2f7;
}
.summary-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.label {
  color: #64748b;
  font-weight: 500;
}
.value {
  color: #032d16;
  font-weight: 700;
}
.btn-dashboard {
  background-color: #16a34a;
  color: white;
  padding: 18px 40px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  width: 100%;
}
.btn-dashboard:hover {
  background-color: #15803d;
  transform: translateY(-2px);
  color: white;
}
.support-contact {
  margin-top: 30px;
  font-size: 0.9rem;
  color: #94a3b8;
}

/*///////////////////////////////////////////////////////////////////////////// */
