/* main.css */
/* -- Primary Colors -- */
:root {
  --primary-orange: #ff4e00;
  --primary-orange-dark: #d95533;
  
  /* -- Default -- */
  --white: #fff;
  --black: #000;
  
}
a,
svg rect,
svg path,
.group-btns button span {
  text-decoration: none;
  transition: all 0.3s;
}
a.link-text {
  color: var(--primary-orange) !important;
}
a.link-text:hover {
  color: var(--primary-orange-dark) !important;
}
.text-orange {
  color: var(--primary-orange);
}
.page-right .mid-info > .mid-info {
  padding: 0 !important;
}
.page-right .mid-section > .mid-info {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* ================================ Global Typography ============== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}
h1 {
  font-size: 1.875rem;
}
h2 {
  font-size: 1.75rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}
h5 {
  font-size: 1.125rem;
}
h6 {
  font-size: 1rem;
}
/* ================================ Global Styling ================= */
body {
  --bs-body-bg: var(--white);
  --bs-body-color: #333;
  font-size: 16px;
}
#app .size-sm {
  font-size: 0.875rem;
  line-height: 1.5;
}
.cursor-pointer {
  cursor: pointer;
}

/* -- BTN -- */
#app .btn {
  --bs-btn-padding-x: 15px;
  --bs-body-bg: var(--bs-gray-200);
  --bs-body-color: #333;
  border: 0 !important;
  padding: 14px 16px;
  line-height: 1;
  font-weight: 400 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: var(--primary-orange) !important;
  min-width: 100px;
}
.btn-primary:hover {
  background-color: var(--primary-orange-dark) !important;
}
.btn-primary:disabled,
.btn-primary.disabled {
  --bs-btn-disabled-bg: var(--primary-orange) !important;
}
#app .btn-secondary {
  min-width: 100px;
  border: 0;
}
#app .btn-secondary.bordered {
  border: 1px solid #ccc !important;
}
#app .btn-secondary.bordered:hover {
  color: var(--primary-orange);
  border-color: var(--primary-orange) !important;
}
/* -- Form Elements -- */
.form-wrap {
  max-width: 500px;
}
.form {
  border-radius: 28px !important;
  padding: 32px;
}
label {
  font-weight: 500;
}
.form-control,
.form-select,
input[type="submit"] {
  --bs-body-bg: #fff;
  height: 46px;
  font-size: inherit;
}
.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  cursor: no-drop;
}
.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 78, 0, 0.25);
  border-color: rgba(225, 78, 0, 0.5);
}
/* -- Modal -- */
.modal {
  display: flex;
  background: rgba(0, 0, 0, 0.35);
}

.modal.modal-lg .modal-dialog {
  min-width: unset;
  max-width: 1100px;
}
.modal .modal-dialog .modal-content {
  max-height: calc(100vh - 200px);
  overflow: auto;
}
.modal.modal-lg .modal-content {
  max-height: unset;
  overflow: unset;
}
.modal.modal-lg .modal-content .modal-body {
  max-height: calc(100vh - 200px);
  overflow: auto;
}

@media (max-width: 575px) {
  .modal .modal-dialog {
    min-width: 95%;
    margin: 0 15px;
  }
}
.modal .btn-close,
.modal .btn-close:active {
  border: 0;
  opacity: 0.5;
  transition: all 0.3s;
  margin-right: 0;
  width: 12px !important;
  min-width: auto !important;
}
.modal .btn-close:hover {
  opacity: 1;
}
.btn-secondary {
  background: var(--gray-300);
  color: var(--gray-800);
}
.email-wrap .multiselect__single {
  margin: 0 !important;
  line-height: 1.7;
  padding: 0;
}
/* -- Media Breakpoints -- */
@media (max-width: 991.99px) {
  h1 {
    font-size: 1.375rem;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 1.625rem;
  }
}
/* for disabling scroll while Modal is open */
body:has(.modal.show) {
  overflow: hidden;
}
/* custom scrollbar */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 0 10px 10px 0;
}
::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Custom Checkbox styling */
.custom-checkbox-wrap input {
  appearance: none;
  width: 17px;
  height: 17px;
  position: relative;
  outline: none;
  cursor: pointer;
  border-radius: 2px;
}
.custom-checkbox-wrap label {
  font-size: 11px;
}
/* Background when checked */
.custom-checkbox-wrap input[type="checkbox"]:checked {
  background-color: var(--primary-orange);
  border: 1px solid var(--primary-orange);
}
/* Default background color */
.custom-checkbox-wrap input[type="checkbox"] {
  background-color: #ffffff;
  outline: 1px solid #beb8b8;
}
.custom-checkbox-wrap input[type="checkbox"]:checked::before {
  opacity: 1;
}
.custom-checkbox-wrap input::before {
  content: "\f00c";
  font-family: "FontAwesome";
  background: var(--primary-orange);
  color: #fff;
  position: absolute;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}
@media (max-width: 575px) {
  header h1,
  .mid-section h3 {
    font-size: 18px;
  }
  .mid-section h4 {
    font-size: 17px;
  }
  #app .btn {
    font-size: 14px;
  }
}

/* Redesign Styling*/

.form .rounded.bg-secondary-subtle.active {
  border-color: var(--primary-orange);
  background-color: #fff3ee !important;
}

.form .rounded.bg-secondary-subtle {
  border: 1px solid transparent;
}

.box-shadow {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.service-badge {
  padding: 4px 10px;
  line-height: normal;
  background-color: #095985;
  color: var(--white);
  font-weight: 500;
  min-width: 70px;
}

.service-icon-lg {
  width: 60px;
  height: 60px;
}
.service-icon-md {
  width: 40px;
  height: 40px;
}
.service-icon-sm {
  width: 30px;
  height: 30px;
}

.card-services {
  a {
    color: #095985;
  }
}

.text-light-blue {
  color: #095985 !important;
}

.modal-header:has(.spec-modal-header) {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: var(--white);
  z-index: 10;
}

/* Redesign styling ends */

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #f5f7fa;
  color: #333;
}
.container {
  /* max-width: 1000px; */
  margin: auto;
  padding: 2rem;
}
.header {
  text-align: center;
  padding: 1rem 0;
  background: #0a2540;
  color: white;
}
.form-section {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.form-group {
  margin-bottom: 1.5rem;
}
input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 0.75rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.checkbox {
  display: flex;
  align-items: flex-start;
}
.checkbox input {
  margin-top: 3px;
  margin-right: 0.5rem;
}
.btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 0.75rem;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
}
.badge {
  display: inline-block;
  background: #095985 !important;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
}
.btn-close {
  margin-top: 1rem;
  background: #6c757d;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}
.error-message {
  color: red;
  font-size: 0.8rem;
  height: 1rem;
}
.btn {
  display: inline-block;
}

@media (min-width: 992px) {
  .button-wrapper {
    border-right: 5px solid #eee;
  }
}

.text-primary {
  color: #095985 !important;
}

.modal {
  z-index: 9999;
  .modal-content {
    padding: 0 !important;
    max-width: unset;
  }
}

.modal-header {
  position: sticky;
  top: 0;
  left: 0;
  background-color: var(--white);
  z-index: 10;
}
.zoom-in img {
  transform: scale(2);
  transition: transform 0.3s ease-in-out;
}

.zoom-icon-wrap {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 24px;
  height: 24px;
}

.btn-close {
  background: none;
  border: none;
  color: #333;
  font-size: 1.2rem;
  cursor: pointer;
}

.img-container {
  overflow: hidden;
}

.img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

table, th, td {
  border: 1px solid #ddd;
  border-collapse: collapse;
}