/* font-family */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* import files */
/* @import url("../css/auth.css");
@import url("../css/header_footer.css"); */
html{
  background: #010100;
}
 html, body{
    overscroll-behavior: none;
}
body{
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #424242;
  overflow-x: hidden;
  background: url(../images/home-bg.png)no-repeat;
  background-size: cover;
  width: 100%;
}
a:hover, :hover{
  color: #009eff;
}
a, a:hover{
  text-decoration: none;
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}
ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.hidden{
  display: none;
}
main{
  padding: 82px 0 0;
}
header {
  background: #FFFFFF0A;
  box-shadow: none;
  position: fixed;
  width: 100%;
  padding: 6px 0;
}
/* Header state when page is scrolled */
header.header {
	transition: background-color 200ms ease, box-shadow 200ms ease;
}
header.header.active-header {
	background-color: rgba(0, 0, 0, 1);
	box-shadow: 0 6px 20px rgba(0,0,0,0.45);

	z-index: 50;
}
header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .navbar .menu-item a {
  color: #f4f4f4;
}

header .navbar .menu-item a:hover {
  color: #ffd066 !important;
}

.header-cta {
  font-weight: 400;
  font-size: 20px;
  white-space: nowrap;
  color: #E9B34F;
}

.hero-section {
  position: relative;
  padding: 60px 0 60px;
  /* min-height: calc(100vh - 90px); */
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 208, 102, 0.14), transparent 25%), linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 40% 60%, rgba(255, 255, 255, 0.06));
  pointer-events: none;
}

.page-shell {
  position: relative;
  z-index: 1;
}

.hero-row {
  display: flex;
  /* grid-template-columns: minmax(300px, 1.4fr) minmax(320px, 1fr); */
  gap: 40px;
  align-items: center;
}
.hero-icon{
  display: flex;
  align-items: center;
  grid-gap:30px;
  margin-bottom: 15px;
}

/* .hero-icon {
  width: 88px;
  height: 88px;
  border-radius: 28px;
  background: rgba(255, 208, 102, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 30px 90px rgba(255, 174, 0, 0.08);
} */

.hero-left h1 {
  font-weight: 700;
  font-size: 58px;
  letter-spacing: 0.2px;
  color: #fff;
}
.hero-left h1 span {
  display: block;
  color: #E9B34F;
}

.hero-left p {
  font-weight: 300;
  font-size: 22px;
  line-height:34px;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;

}

.hero-right {
  width: 100%;
}

.wizard-card {
  background: #FFFFFF0A;
  border: 1px solid #E9B34F38;
  border-radius: 30px;
  box-shadow: 0px 4px 14px 0px #E9B34F1A;
  backdrop-filter: blur(44px);
  padding: 28px;
}

.wizard-progress {
  display: flex;
  gap: 12px;
  margin-bottom: 26px;
}

.step-dot {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  transition: background 0.25s ease;
}

.step-dot.completed {
  background: #34d174;
}

.step-dot.active {
  background: #ffd066;
}

.wizard-card h2 {
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.2px;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;

}

.wizard-form .form-group {
  margin-bottom: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wizard-form h3 {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 25px;
  text-align: center;
  margin-bottom: 25px;
}
.wizard-form .form-label{
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;

}
.wizard-form .form-group{
  position: relative;
}
.wiz-icon{
  position: absolute;
  top: 0;
  right: 0;
  margin: 48px 15px 0 0;
  opacity: 0.5;
}
.wizard-form .form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: #fff;
  padding: 18px 18px;
  font-size: 0.98rem;
  box-shadow: none;
}

.wizard-form .form-control::placeholder {
  color: #8f8f8f;
}
.wizard-form input[type="number"] {
  -moz-appearance: textfield;
}
.wizard-form input[type="number"]::-webkit-outer-spin-button,
.wizard-form input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.wizard-form select{
  -moz-appearance: window;
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: url(../images/downarrow.png) no-repeat 94% center !important;
  color: rgba(255, 255, 255, 0.4) !important;
}
.wizard-form .input-error {
  border-color: #e96f6f !important;
}

.wizard-note {
  color: #bdbdbd;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
  font-weight: 400;
}

.radio-grid {
  display: grid;
  gap: 14px;
}

.radio-option {
  position: relative;
  display: block;
  padding: 18px 20px 18px 20px;
  padding-right: 64px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
}

.radio-option:hover {
  border-color: rgba(255, 208, 102, 0.45);
  background: rgba(255, 255, 255, 0.07);
}

.radio-option::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: transparent;
  transition: all 0.25s ease;
}

.radio-option.selected::after {
  border-color: #ffd066;
  background: radial-gradient(circle at center, #ffd066 45%, transparent 46%);
}

.radio-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.radio-grid.invalid-choice {
  border: 1px solid #e96f6f;
  border-radius: 20px;
  padding: 8px;
}

.radio-option.selected {
  border-color: #ffd066;
  background: rgba(255, 208, 102, 0.12);
  box-shadow: 0 0 0 1px rgba(255, 208, 102, 0.16);
}

.radio-option span {
  display: block;
  font-size: 1rem;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.btn-primary {
  background: #C2902E;
  border-color: #C2902E;
  color: #ffffff;
  font-weight: 500;
  padding: 10px 28px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(209, 156, 47, 0.22);
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 12px;
  width: 100%;

}

.btn-primary:hover {
  background: transparent;
  border-color: #C2902E;
}

.btn-light {
  background: #FFFFFF0A;
  border: 1px solid #FFFFFF38;
  color: #ffffff;
  padding: 10px 28px;
  border-radius: 14px;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 12px;
  width: 100%;
}
.btn-light:hover{
  background: transparent;
  color: #fff;
}
.btn-light:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-footer {
  padding: 40px 0 50px;
  color: #b2b2b2;
  font-size: 0.92rem;
}

.footer-top {
  margin-bottom: 5px;
  color: #f2f2f2;
  font-weight: 600;
  font-size: 20px;
}
.footer-top span{
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);

}

.footer-subtext {
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: rgba(255, 255, 255, 0.7);

}

.footer-subtext a {
  color: #E9B34F;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #c7c7c7;
}

.footer-links a:hover {
  color: #ffd066;
}

/* Native select/option styling (limited cross-browser support)
   - Modern desktop browsers generally respect these rules.
   - Mobile browsers and some Windows combos may ignore option styles.
   For full control, use the `.custom-select` fallback below. */

select, .wizard-form select {
  color: #ffffff;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 12px 16px;
  border-radius: 12px;
}

/* Style native option backgrounds where supported */
select option {
  background: #111214; /* dark background for options */
  color: #ffffff;
}

/* Selected option styling (desktop browsers only) */
select option:checked {
  background: #34d174; /* green for selected */
  color: #04120a;
}

/* Custom select fallback for consistent styling across browsers */
.custom-select {
  position: relative;
  display: inline-block;
  width: 100%;
}
.custom-select select { /* hide native arrow but keep select for accessibility */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  color: inherit;
}
.custom-select .select-display {
  pointer-events: none;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.9);
}
/* ----------------FAQ [ START ]---------------- */
.faq-blog{
  padding: 80px 0;
}
.section-title{
  font-weight: 700;
  font-size: 60px;
  letter-spacing: 0.2px;
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}

.policy-card {
  background: #FFFFFF0A;
  border: 1px solid #E9B34F38;
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0px 4px 14px 0px #E9B34F1A;
  backdrop-filter: blur(44px);
  margin: 0 auto;
}

.policy-label {
  color: rgba(255, 255, 255, 1);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.policy-section + .policy-section {
  margin-top: 22px;
}

.policy-card h2 {
  font-size: 24px;
  color: #f6c14f;
  margin-bottom: 14px;
  line-height: 1.25;
}

.policy-card p,
.policy-card ul,
.policy-card li {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.policy-card p {
  font-size: 1rem;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}

.policy-card ul {
  list-style: disc inside;
  margin: 0;
  padding-left: 15px;
}

.policy-card li {
  margin-bottom: 12px;
}

.policy-card strong {
  font-weight: 500;
}

.policy-disclaimer {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  line-height: 1.8;
}


/* Accordion FAQ Styling */
.accordion-faq {
  border: none;
  gap: 16px;
  display: flex;
  flex-direction: column;
}

.accordion-faq .accordion-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  margin-bottom: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-faq .accordion-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 208, 102, 0.3);
}

.accordion-faq .accordion-header {
  margin-bottom: 0;
}

.accordion-faq .accordion-button {
  background: transparent;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  padding: 24px 28px;
  border: none;
  box-shadow: none;
  text-align: left;
  letter-spacing: 0.2px;
  position: relative;
}

.accordion-faq .accordion-button:not(.collapsed) {
  /* background: rgba(255, 208, 102, 0.08); */
  color: #ffffff;
  box-shadow: none;
}

.accordion-faq .accordion-button:focus {
  background: transparent;
  box-shadow: none;
  border-color: rgba(255, 208, 102, 0.3);
}

/* Accordion chevron/toggle icon styling */
.accordion-faq .accordion-button::after {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff' opacity='0.7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") no-repeat center;
  background-size: 18px;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: auto;
  transform: none;
  transition: transform 0.3s ease;
}

.accordion-faq .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
  opacity: 1;
}

.accordion-faq .accordion-body {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  padding: 0 28px 24px 28px;
  font-size: 16px;
  line-height: 1.8;
  border: none;
}




