
body {
	font-family: 'Poppins', sans-serif;
	background: #f8f9fb;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 100px 20px;
	position: relative;
}
body::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 400px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	z-index: 0;
}

.form-header {
	text-align: center;
	margin-bottom: 48px;
}
.form-title {
	font-size: 36px;
	font-weight: 800;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 12px;
	margin-top: 12px;
	line-height: 1.2;
}
.form-subtitle {
	font-size: 16px;
	color: #64748b;
	line-height: 1.6;
	font-weight: 400;
}
.hidden-text {
    display: none;
}

.toggle-link {
    color: #1a5276;
    cursor: pointer;
    text-decoration: underline;
    font-weight: bold;
}

.toggle-link:hover {
    color: #154360;
}
.form-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin-bottom: 40px;
}

.form-card {
	background: white;
	border-radius: 28px;
	padding: 36px;
	box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
	position: relative;
	overflow: hidden;
  z-index: 1;
}

.section-title {
  border-left: 5px solid #3498db;
  padding-left: 10px;
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 18px;
  color: #34495e;
}
.bootstrap-select .dropdown-toggle, .form-control, .form-select, textarea {
	width: 100%;
	padding: 12px 15px !important;
	font-size: 15px;
	font-family: 'Inter', sans-serif;
	border: 2px solid #e2e8f0 !important;
	border-radius: 8px !important;
	transition: all 0.3s ease;
	background: #fafbfc;
	color: #1e293b;
}
.form-control:hover, .form-select:hover, textarea:hover {
	border-color: #cbd5e1;
	background: white;
}
.form-control:focus,
.form-select:focus {
  border-color: #9c9c9c;
  box-shadow: 0 0 0 0.2px rgba(52, 152, 219, 0.25);
}

.radio-group {
	display: grid;
  grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}
.radio-option {
	position: relative;
}
.radio-option input[type="radio"] {
	position: absolute;
	opacity: 0;
}
.radio-label {
	display: flex;
	align-items: center;
	padding: 12px 15px;
	border: 2px solid #e2e8f0;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
	color: #475569;
	background: #fafbfc;
	position: relative;
}
.radio-label::before {
	content: '';
	width: 20px;
	height: 20px;
	border: 2px solid #cbd5e1;
	border-radius: 50%;
	margin-right: 14px;
	transition: all 0.3s ease;
	flex-shrink: 0;
}
.radio-option input[type="radio"]:checked + .radio-label {
	border-color: #667eea;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
	color: #667eea;
	font-weight: 600;
}
.radio-option input[type="radio"]:checked + .radio-label::before {
	border-color: #667eea;
	background: #667eea;
	box-shadow: inset 0 0 0 4px white;
}
.card{
  border: 2px solid #e2e8f0;
  border-radius: 14px;
}
.card-header{
  background:#e2e8f0 !important;
  color: #212529;
  padding: 16px 18px;
  border-radius: 10px 10px 0 0 !important;
  border-bottom: 0;
}
.card-header h5{
  font-size: 18px;
  font-weight: 500;
}



















.btn-submit {
  background-color: #3498db;
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 40px;
  transition: 0.3s;
}

.btn-submit:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
}

.required {
  color: red;
}

.alert {
  border-radius: 6px;
}

/* Tab Styles */
.nav-tabs-custom {
  border-bottom: 0px;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
	overflow-y: hidden;
}



.nav-tabs-custom .nav-link {
  border: none;
  color: #7f8c8d;
  padding: 8px 16px;
  font-weight: 600;
  position: relative;
  transition: all 0.3s;
  font-size: 14px;
}

.nav-tabs-custom .nav-link:hover {
  color: #3498db;
}

.nav-tabs-custom .nav-link.active {
  color: #3498db;
  font-weight: 600;
  background: transparent;
}

/* .nav-tabs-custom .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #3498db;
} */

.nav-tabs-custom .nav-link i {
  margin-right: 8px;
}
.nav-tabs-custom .nav-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.nav-tabs-custom .nav-link .number {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f1f5f9;
}
.nav-tabs-custom .nav-link.active .number {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}
.nav-tabs-custom .nav-link .completed_icon {
  background: #10b981;
  color: #ffffff;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  display: none;
}
.nav-tabs-custom .nav-link.completed .completed_icon {
  display: inline-flex;
}
.nav-tabs-custom .nav-link.completed .number {
  display: none;
}
.nav-tabs-custom .nav-link .completed_icon i{
  margin-right: 0 !important;
}
.nav-tabs-custom .nav-link .tab_name{
  white-space: nowrap;
}
/* .nav-tabs-custom .nav-link.completed i::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 10px;
  position: absolute;
  top: -5px;
  right: -5px;
  color: #27ae60;
} */


.btn-primary {

}

.btn-next,
.btn-prev {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: -0.01em;
  min-width: 170px;
}


.btn-next {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	box-shadow: 0 8px 24px rgba(102, 126, 234, 0.35);
	position: relative;
	overflow: hidden;
}
.btn-next::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}
.btn-next:hover::before {
	left: 100%;
  color: white;
}

.btn-next:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.45);
  color: #ffffff;
}

.btn-prev {
  background: #f1f5f9;
  color: #475569;
  border: 2px solid #e2e8f0;
}

.btn-prev:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}




.tab-pane {
  min-height: 400px;
}

.progress-bar-container {
  margin-bottom: 30px;
}

.progress {
  height: 8px;
  border-radius: 10px;
}

.progress-bar {
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transition: width 0.3s;
  border-radius: 10px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.progress-bar::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
	animation: shimmer 2s infinite;
}
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.form-check-input:checked {
  background-color: #3498db;
  border-color: #3498db;
}

.image-preview-container {
  margin-top: 15px;
  text-align: center;
}

.image-preview-container img {
  max-width: 200px;
  max-height: 200px;
  border: 3px solid #3498db;
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Address Type Toggle */
.btn-check:checked+.btn-outline-primary {
  background-color: #3498db;
  border-color: #3498db;
  color: white;
}

.btn-outline-primary {
  color: #3498db;
  border-color: #3498db;
  font-weight: 500;
  padding: 12px;
}

.btn-outline-primary:hover {
  background-color: #3498db;
  border-color: #3498db;
  color: white;
}

/* Multi-select styling */
select[multiple] {
  border: 2px solid #3498db;
  border-radius: 8px;
  padding: 10px;
  min-height: 200px !important;
}

select[multiple]:focus {
  border-color: #2980b9;
  box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

select[multiple] option {
  padding: 8px 12px;
  margin: 2px 0;
  border-radius: 4px;
  cursor: pointer;
}

select[multiple] option:hover {
  background-color: #e8f4f8;
}

select[multiple] option:checked {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  font-weight: 500;
}

.multi-select-label {
  /* font-weight: 600; */
  /* color: #2c3e50; */
  margin-bottom: 10px;
  display: block;
}

.multi-select-hint {
  background-color: #e8f4f8;
  border-left: 4px solid #3498db;
  padding: 10px 15px;
  margin-top: 10px;
  border-radius: 4px;
  font-size: 13px;
  color: #555;
}

.multi-select-hint i {
  color: #3498db;
  margin-right: 8px;
}

/* Bootstrap Select Customization */
.bootstrap-select {
  width: 100% !important;
}

.bootstrap-select .dropdown-toggle {
  width: 100%;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 12px 15px;
  font-size: 14px;
  text-align: left;
  background-color: white;
  color: #495057;
}

.bootstrap-select .dropdown-toggle:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
  outline: 0;
}

.bootstrap-select .dropdown-toggle::after {
  margin-left: auto;
}

.bootstrap-select .dropdown-menu {
  width: 100%;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 2px;
}

.bootstrap-select .dropdown-menu li a {
  padding: 8px 15px;
  color: #212529;
}

.bootstrap-select .dropdown-menu li.selected a {
  background-color: #3498db !important;
  color: white !important;
}

.bootstrap-select .dropdown-menu li.selected a span.text {
  color: white !important;
}

.bootstrap-select .dropdown-menu li a:hover {
  background-color: #e8f4f8;
}

.bootstrap-select .dropdown-menu li.active:not(.selected) a {
  background-color: #e8f4f8;
  color: #212529;
}

.bootstrap-select .bs-searchbox input {
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 8px 12px;
  width: 100%;
}

.bootstrap-select .bs-searchbox input:focus {
  border-color: #3498db;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.bootstrap-select .bs-actionsbox {
  padding: 8px 12px;
  border-bottom: 1px solid #dee2e6;
  background-color: #f8f9fa;
}

.bootstrap-select .bs-actionsbox .btn-group button {
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 4px;
  border: 1px solid #dee2e6;
  background-color: white;
  color: #495057;
}

.bootstrap-select .bs-actionsbox .btn-group button:hover {
  background-color: #e8f4f8;
  border-color: #3498db;
}

.bootstrap-select .dropdown-menu li a span.check-mark {
  display: none !important;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.bootstrap-select .filter-option-inner-inner {
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
}


.dashboard-btn{
  color: #ffffff !important;
  text-decoration: none; 
  display: inline-block;
  min-width: auto !important;
}

@media all and (max-width:500px) {

}
@media all and (max-width:575px) {
  .form-card {
    padding: 24px;
  }
 
  .bootstrap-select .dropdown-toggle,
  .form-control, .form-select, textarea {
    padding: 8px 12px !important;
    font-size: 14px;
    border-radius: 8px !important;
  }
  .radio-group {
    grid-template-columns: repeat(1, 1fr);
  }
  .radio-label {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
  }

  .btn-next, .btn-prev {
    padding: 10px 15px;
    font-size: 13px;
    border-radius: 8px;
    cursor: pointer;
    min-width: 115px;
  }
  .form-title {
    font-size: 26px;
  }
  .form-subtitle {
    font-size: 14px;
    line-height: 1.4;
  }
  body {
    padding: 70px 0px;
  }
}
