:root {
  /* Neutral Colors (Zinc) */
  --color-neutral-50: #fafafa;
  --color-neutral-75: #f8f8f9;
  --color-neutral-100: #f4f4f5;
  --color-neutral-200: #e4e4e7;
  --color-neutral-300: #d4d4d8;
  --color-neutral-400: #9f9fa9;
  --color-neutral-500: #71717b;
  --color-neutral-600: #52525c;
  --color-neutral-700: #3f3f46;
  --color-neutral-800: #27272a;
  --color-neutral-900: #18181b;
  --color-neutral-950: #09090b;
  --color-white: #ffffff;
}

.form-select-container_2:focus {
  outline: none;
  border-color: var(--color-blue-500);
  box-shadow: 0 0 0 0.2rem rgba(43, 127, 255, 0.1);
}

.form-select-container_2 {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-line);
  border-radius: 8px;
  padding: 0rem 0.34rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-select-container_2 .form-control:focus {
  box-shadow: none;

}

.form-select-container_2 .form-control {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  background-color: var(--color-white);
  border: 0;
  border-radius: 0;
  padding: 0.75rem 1rem;
  transition: all 0.2s ease-in-out;
  width: 100%;
}

.form-select-container_2 .divider-left {
  position: absolute;
  top: 30%;
  left: 72px;
  font-size: 14px;
  color: #d7dfe9;
}

.form-select-container_2 .form-select {
  background-position: left 2.3rem center;
  width: 70px;
  /* position: absolute; */
  border: 0;
  box-shadow: none;
  border-radius: 8px 0 0 8px;
  margin: 0;
  height: 45px;
}

.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3Csvg width='18' height='10' viewBox='0 0 18 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.5 0.892609L9 8.39261L1.5 0.892609' stroke='%235E718D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img),
    var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 35px 10.5px !important;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-gray-placeholder);
  background-color: var(--color-white);
  border: 1px solid var(--border-line);
  border-radius: var(--border-radius-lg);
  padding: 0.75rem 1rem;
  transition: all 0.2s ease-in-out;
  width: 100%;
}

.divider-left {
  position: absolute;
  top: 58%;
  left: 71px;
  font-size: 14px;
  color: #d7dfe9;
}

.divider-select {
  position: absolute;
  top: 14px;
  right: 52px;
  font-size: 14px;
  color: #d7dfe9;
}

.form-select {
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-lg);
  color: var(--color-gray-placeholder);
  border: 1px solid var(--border-line);
}

.custom-select {
  position: relative;
}

.drop_file {
  border-style: dashed;
  background-color: #fff;
}

.component-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.component-card.docs {
  padding: 8px 15px;
  height: 44px;
}

.component-card {
  background: var(--color-white);
  border: 1px solid var(--color-neutral-200);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-Black);
  position: relative;
}

.docs i {
  color: #858c94;
  font-size: 18px;
}

.doc img {
  height: 23px;
  object-fit: contain;
}

.custom-select-wrapper {
  position: relative;
  width: 100%;

}

.custom-select-wrapper .custom-select {
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.custom-select-wrapper .select-options {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  border: 1px solid #e1e6ea;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(33, 40, 50, 0.08);
  z-index: 9999;
  max-height: 220px;
  overflow: auto;
}

.custom-select-wrapper .select-options>div {
  padding: 10px 12px;
  cursor: pointer;
  white-space: nowrap;
}

.custom-select-wrapper .select-options>div:hover {
  background: var(--hover);
}

/* show when wrapper has .open */
.custom-select-wrapper.open .select-options {
  display: block;
}

/* small responsive */
@media (max-width:420px) {
  :root {
    --w: 100%;
  }

  .custom-select-wrapper {
    width: 100%;
  }
}



/*
    .custom-select:after {
       content: "⌄";

      font-size: 12px;
      margin-left: 10px;
      transition: transform 0.2s;
    } */

/* .custom-select.open:after {
      transform: rotate(-180deg);
    } */
/* Divider */
.custom-select-wrapper .custom-select::after {
  content: "|";
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  color: #D7DFE9;
  pointer-events: none;
}


/* Arrow */
/* .custom-select::before {
      content: "⌄";
      font-size: 14px;
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: #6c757d;
      pointer-events: none;
    } */
.custom-select-wrapper .custom-select::before {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.5 9L12 16.5L4.5 9' stroke='%235E718D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") no-repeat right 12px center;
  background-size: 20px 20px;
  /* adjust arrow size */
  padding-right: 40px;
  /* space for arrow */
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  pointer-events: none;

}

.custom-select-wrapper .custom-select {
  /* Hide default arrow */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* Add custom arrow */
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M19.5 9L12 16.5L4.5 9' stroke='%235E718D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center;

  background-size: 24px 24px;
  /* adjust size of arrow */
  padding-right: 40px;
  /* add space so text doesn't overlap */
}



.custom-select-wrapper .select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  margin-top: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 99;
  max-width: 507px;
}

.custom-select-wrapper .select-options.active {
  display: block;
}

.custom-select-wrapper .select-options div {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 15px;
}

.custom-select-wrapper .select-options div:hover {
  background-color: #f1f1f1;
}


/* check-box */
.architect-list {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  /* max-width: 500px; */
}

.architect-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #f0f0f0;
}

.architect-item:last-child {
  border-bottom: none;
}

.architect-item input[type="checkbox"] {
  margin-right: 10px;
}

.architect-item .circle-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
  object-fit: contain;
}



.modal-dialog.width-modal-792 {
  max-width: 792px !important;
}

.modal-dialog.width-modal-695 {
  max-width: 695px !important;
}

#quoteModal .modal-dialog,
#rquoteModal .modal-dialog {
  max-width: 530px;
}

.btn-228-blue {
  min-width: 228px !important;
}

#quoteModal .modal-title,
#rquoteModal .modal-title {
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
}

.gray-color-bg {
  background-color: #dadada;
}

:root {
  --main-page-width-cdc: 760px;
  --reset-form-width: 460px;

}

#contactus-formsection .form-area .btn {
  background: #18284c;
}

#contactus-formsection h3 {
  font-weight: 500;
}

#contactus-banner .paragraph-lg {
  font-weight: 500 !important;
}

.content {
  max-width: var(--main-page-width-cdc);
  margin: 9rem auto;
  width: 100%;
}

.contact-us-buttons {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

#contactus-formsection {
  background: var(--color-white);
}

.form-main-section {
  max-width: var(--main-page-width-cdc);
  margin: 0rem auto;
  padding: 3.7rem 0;
  width: 100%;
}

.form-area {
  background: var(--color-white);
  border-radius: 12px;
  margin-top: 2rem;
  padding: 1.5rem 1.5rem;
}

/* Media Quries */
@media (max-width: 480px) {
  .contact-us-buttons {
    flex-direction: column;
    gap: 1rem;
    /* align-items: center; */
  }

  .contact-us-buttons .btn-lg {
    width: 75%;
  }

  .form-main-section .component-grid {
    grid-template-columns: 1fr;
  }
}
