/* ///////////////Header////////////////////// */
body{
    padding: 0;
    margin: 0;
    font-family: 'Inter';
}
/* ============ HEADER BASE ============ */
.dcc-header {
  background-color: #392A4A;
  padding: 15px 80px;
  position: relative;
  z-index: 100;
}

.dcc-container {
  max-width: 1700px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.dcc-logo img {
  height: 70px !important;
  display: block;
}

/* Navigation (Desktop) */
.dcc-nav {
  display: flex;
  align-items: center;
}

.dcc-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.dcc-nav a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  transition: color 0.3s;
}

.dcc-nav a:hover {
  color: #ff7033;
}

/* Contact Button */
.btn-contact {
  background-color: #ff7033;
  color: #fff !important;
  padding: 12px 30px;
  border-radius: 20px;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-contact:hover {
  background-color: #ff8450;
}

/* ============ HAMBURGER / CROSS ICON ============ */
.dcc-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2000;
  padding: 0px !important;
}

.menu-icon {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #fff;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.menu-icon::before {
  top: -8px;
}

.menu-icon::after {
  top: 8px;
}

/* Change icon to CROSS when active */
.dcc-menu-toggle.active .menu-icon {
  background-color: transparent;
}

.dcc-menu-toggle.active .menu-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.dcc-menu-toggle.active .menu-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
  .dcc-header {
    padding: 15px 30px;
  }
a.btn-contact {
    font-size: 16px !important;
    width: 140px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 14px 20px;
}
  .dcc-menu-toggle {
    display: block;
    background-color: transparent !important;
  }

  /* Hide nav initially */
  .dcc-nav {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: #392A4A;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
  }

  /* Show nav when active */
  .dcc-nav.active {
    max-height: 400px;
    opacity: 1;
    padding: 20px 0;
  }

  .dcc-nav ul {
    flex-direction: column;
    gap: 20px;
  }

  .dcc-nav a {
    font-size: 18px;
    display: block;
    padding: 10px 0;
  }

  .btn-contact {
    padding: 12px 30px;
    border-radius: 25px;
    margin-top: 10px;
  }
      .dcc-container {
        flex-direction: row !important;
        gap: 15px;
    }
}

@media (max-width: 600px) {
  .dcc-logo img {
    height: 55px !important;
  }
  .dcc-header {
    padding: 10px 20px;
  }
      .dcc-container {
        flex-direction: row !important;
        
    }
}



/*//////////////////// Join the Community Section ////////////////*/

.dcc-community {
  position: relative;
  background-color: #322441;
  padding: 120px 80px;
  font-family: 'Inter', sans-serif;
  color: #fff;
  overflow: hidden;
}

/* Content container (left aligned within max width) */
.dcc-community-container {
  max-width: 1700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Heading */
.dcc-community h2 {
  font-size: 60px;
  font-weight: 600;
  margin: 0;
}

/* Decorative right image */
.dcc-community-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: auto !important;
  max-width: 450px !important;
  z-index: 1;
}



/* //////////form section start////////// */

/* Layout */
.dcc-onboard {
  display: flex;
  justify-content: center;
  padding: 80px 80px;
}

.dcc-onboard-container {
  display: flex;
  gap: 40px;
  max-width: 1700px;
  width: 100%;
}

/* Sidebar */
.dcc-onboard-sidebar {
    flex: 0 0 330px;
    padding-top: 60px;
}

.dcc-onboard-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.dcc-onboard-steps li {
  padding: 20px 10px 18px 50px;
  font-size: 18px;
  color: #777;
  line-height: 26px;
  position: relative;
}

.dcc-onboard-steps li::before {
 content: "";
    position: absolute;
    left: 2px;
    top: 18px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 10px solid #F2F4F7;
    background-color: #fff;
}

.dcc-onboard-steps li.active {
  color: #ff7033;
  font-weight: 600;
}

.dcc-onboard-steps li.active::before {
  border-color: #ff7033;
  /* background-color: #ff7033; */
}

.dcc-onboard-steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 17px;
    top: 34px;
    width: 2px;
    height: 75px;
    background: #e4e4e4;
    z-index: -1;
}

/* Main content */
.dcc-onboard-content {
  flex: 1;
}

.dcc-onboard-box {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0px 27px 62px 5px #00000005;

}

.dcc-onboard-box h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.dcc-onboard-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #667085;
}

.dcc-onboard-info {
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 10px;
}

.dcc-onboard-checklist {
  list-style: none;
  margin: 20px 0 20px 0;
  padding: 0;
}

.dcc-onboard-checklist li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 6px;
  color: #667085;
}

.dcc-onboard-checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff7033;
    font-size: 12px;
    background-color: #FFF5EB;
    width: 24px;
    height: 24px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    top: 2px;
}
p.dcc-onboard-info strong {
    color: #101828;
}
.dcc-onboard-note {
    font-size: 18px;
    color: #667085;
    margin-top: 15px;
}
.dcc-onboard-subtitle strong{
   color: #101828;
}
/* Form */
.dcc-onboard-form h4 {
  margin-top: 30px;
  font-size: 15px;
  color: #101828;
  font-weight: 600;
}

.dcc-form-row {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.dcc-form-row input,
.dcc-onboard-form input {
    flex: 1;
    padding:0px 12px;
    border: 1px solid #E8E8E8 !important;
    border-radius: 6px;
    font-size: 14px;
    color: #505050;
    background: #F9F9F9;
    height: 57px;
    border-radius: 8px !important;
}
.StreetAddress input[type="text"] {
    width: 100%;
}
.dcc-onboard-form input:focus {
  border-color: #ff7033;
  outline: none;
}

/* Button */
.dcc-form-actions {
  text-align: right;
  margin-top: 30px;
}

.dcc-btn-next {
    background-color: #322441 !important;
    color: #fff !important;
    padding: 15px 35px !important;
    border: none !important;
    border-radius: 25px !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 28px;
}

.dcc-btn-next:hover {
  background-color: #ff7033;
}

/* form second css */
.confirm-container {
  background-color: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  font-family: "Inter", sans-serif;
}

.confirm-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.confirm-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.confirm-subtitle {
    color: #667085;
    font-size: 20px;
    margin-bottom: 30px;
    font-style: italic;
    margin-top: 20px;
}

.confirm-section {
  margin-bottom: 1.8rem;
}

.confirm-section-title {
    font-size: 18px;
    margin-bottom: 0.7rem;
    color: #101828;
    font-weight: 700;
}

.confirm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem 2rem;
}

.confirm-field {
  display: flex;
  flex-direction: column;
}

.confirm-label {
    font-size: 14px;
    color: #505050;
    font-family: 'Inter';
}

.confirm-value {
    font-size: 16px;
    color: #101828;
    margin-top: 0.2rem;
    font-weight: 700;
}

.confirm-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}

.confirm-btn-outline {
    border: 1px solid #322441;
    background: none;
    color: #322441;
    padding: 15px 30px;
    border-radius: 25px;
    transition: 0.2s;
    font-size: 16px;
    line-height: 24px;
}

.confirm-btn-outline:hover {
  background: #f2f2f2;
}

.confirm-btn-primary {
 border: none;
    background: #322441;
    color: #fff;
    padding: 1rem 1.6rem;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.2s;
}

.confirm-btn-primary:hover {
  background: #000;
}
/* Hide the confirm section by default */
.confirm-card {
  display: none;
}


/* form second end css */

/* third form */
/* Final Welcome Screen */
.dcc-welcome-card {
  margin: 40px auto;
  background: #fff;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  font-family: "Inter", sans-serif;
  display: none; /* hidden by default */
}

.dcc-welcome-card h2 {
  font-size: 1.6rem;
  color: #1a1a1a;
  margin-bottom: 0.3rem;
}

.dcc-subtitle {
    color: #667085;
    font-size: 20px;
    margin-bottom: 30px;
}

.dcc-welcome-box {
    background: #FFF5EB;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 20px;
}

.dcc-welcome-box strong {
  color: #222;
}

.dcc-next-step {
    font-size: 18px;
    color: #667085;
    margin-bottom: 1.5rem;
}
p.dcc-next-step strong {
    color: #101828;
}
.dcc-disclaimer {
    color: #101828;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}

.dcc-btn-start {
    background: #322441;
    color: #fff;
    border: none;
    padding: 1rem 1.6rem;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.2s;
    font-size: 18px;
    line-height: 28px;
    margin-top: 20px;
}
.btn_dcc_survey{
    width: 100%;
    text-align: end;
}

.dcc-btn-start:hover {
 background: #F56D38;
}


/* end third */

/* Responsive */
@media (max-width: 900px) {
  .dcc-onboard-container {
    flex-direction: column;
  }

  .dcc-onboard-sidebar {
    flex: 1;
    text-align: center;
    margin-bottom: 20px;
  }

  .dcc-onboard-steps li {
    display: inline-block;
    padding: 10px 15px;
  }

  .dcc-onboard-steps li::after,
  .dcc-onboard-steps li::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .dcc-onboard-box {
    padding: 25px 20px;
  }

  .dcc-form-row {
    flex-direction: column;
  }

  .dcc-btn-next {
    width: 100%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .dcc-community {
    text-align: center;
    padding: 25px 0px 60px 0px;
    display: flex;
    flex-direction: column-reverse;
    align-items: end;
    gap: 40px;
  }

  .dcc-community h2 {
    font-size: 28px;
  }

    .dcc-community-image {
        width: 100px;
        position: static;
        transform: none;
        max-width: 180px !important;
        display: flex;
        justify-content: end;
    }

  .dcc-container {
    flex-direction: column;
    gap: 15px;
  }

  .dcc-nav ul {
    flex-wrap: wrap;
        justify-content: left;
        gap: 0px;
        align-items: flex-start;
        width: 100%;
        padding: 0px 20px;
  }
}