/*
--- 01 TYPOGRAPHY SYSTEM

- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Font weights
Default: 400
Medium: 500
Semi-bold: 600
Bold: 700

- Line heights
Default: 1
Small: 1.05
Medium: 1.2
Paragraph default: 1.6
Large: 1.8

- Letter spacing
-0.5px
0.75px

--- 02 COLORS



- Accents:
- Greys

#888
#767676 (lightest grey allowed on #fff)
#6f6f6f (lightest grey allowed on #fdf2e9)
#555
#333

--- 05 SHADOWS

0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);

--- 06 BORDER-RADIUS

Default: 9px
Medium: 11px

--- 07 WHITESPACE

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/

@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap");

body {
  font-family: "Lato", sans-serif;
}

:root {
  /* Colors */
  --primary-color: #e8712b;
  --secondary-color: #333333;
  --secondary-soft-color: rgba(51, 51, 51, 0.6);
  --tertiary-color: #263238;
  --foreground-color: #f5f5f5;
  --background-color: #ffffff;
  --focus-color: rgba(232, 113, 43, 0.25);
  /* Font sizes */
  --section-heading: 32px;
  --section-sub-heading: 28px;
  --secondary-heading: 24px;
  --tertiary-heading: 20px;
  --imp-para-text: 18px;
  --para-text: 16px;
  --small-text: 14px;
  /* padding & matrgin */
  --card-padding: 16px 24px;
  --margin-bottom-1: 20px;
}

html,
body {
  /* max-width: 100vw; */
  width: 100%;
  /* overflow-x: hidden; */
}

body {
  font-size: 16px;
  color: var(--secondary-color);
  line-height: normal;
  font-style: normal;
  /* font-family: 'Lato', sans-serif; */
  /* padding: 0 !important; */
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/* ################################################# */
/* ############# Reset Styles ################# */
/* ################################################# */

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  text-decoration: underline;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

p {
  margin-bottom: 0;
}

button.disabled,
button[disabled] {
  opacity: 0.2 !important;
}

.text-green {
  color: var(--primary-color) !important;
}
.error-text {
  color: #ff3b30;
  font-size: var(--para-text);
  margin-bottom: var(--margin-bottom-1);
}

.errormsg {
  color: #ff3b30;
  font-size: var(--para-text);
  margin-bottom: 10px;
  text-align: start;
  margin-left: 16px;
  margin-top: 2px;
}

.danger-text {
  color: #ef3a4c !important;
}

.badge-green {
  color: #4f6b18;
  font-size: var(--para-text);
  display: inline-block;
  line-height: 1;
  border-radius: 5px;
  padding: 5px 10px;
  background-color: rgba(114, 139, 65, 0.1);
}

.no-data {
  text-align: center;
  font-size: var(--secondary-heading);
  padding: var(--card-padding);
  margin: var(--margin-bottom-1);
}

.cursor-pointer {
  cursor: pointer;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.rg-20 {
  row-gap: 20px;
}

.input-group:has(.form-control:disabled) .input-group-text {
  background-color: #e9ecef; /* typical disabled color */
  color: #6c757d; /* muted text */
  /* cursor: not-allowed; */
  cursor: default;
}

.form-select:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.25rem var(--focus-color) !important;
}

.form-check .form-check-input {
  cursor: pointer;
}

.form-check-input:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.25rem var(--focus-color) !important;
}

.form-check-input:checked {
  background-color: #333333;
  border-color: #333333;
  box-shadow: 0 0 0 0.25rem rgba(232, 113, 43, 0.25) !important;
}

input[type="radio"] {
  width: 20px;
  height: 20px;
  border: 1px solid var(--secondary-color);
  border-radius: 50%;
  outline: none;
  accent-color: var(--secondary-color);
  cursor: pointer;
}

.form-check-input:checked[type="radio"] {
  background: var(--secondary-color);
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 1px inset !important;
}

.form-check-label {
  margin-bottom: 0;
  cursor: pointer;
}

.input-group input {
  border-right: none;
}
.input-group .input-group-text {
  background-color: #fff;
  border-radius: 0 108px 108px 0;
  cursor: pointer;
}

.close-sidebar,
.close-mega-menu {
  border: 0;
  top: 16px;
  right: 36px;

  border-radius: 50%;
  padding: 5px;
}

.close-mega-menu {
  position: absolute;
  height: 36px;
  width: 36px;
}

.close-sidebar {
  height: 48px;
  width: 48px;
  background: #0000;
  position: fixed;
  display: none;
}

.close-sidebar:hover,
.close-mega-menu:hover {
  background-color: #fff;
}

/*  */

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background: rgba(242, 238, 226, 0.45); /* optional blur effect */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus{

} */
/* ########################################## */
/* ########### Modal Style ################ */
/* ########################################## */

.modal {
  --bs-modal-width: 670px;
}

.modal-backdrop {
  background: rgba(0, 0, 0, 0.2);
}

.modal-body {
  padding: 32px 36px;
}

form .form-row {
  margin-bottom: var(--margin-bottom-1);
}

.mob_num_dropdown {
  max-width: 110px;
}

.veritical-bar {
  position: relative;
}

.veritical-bar select {
  border-right: none;
}
.veritical-bar input {
  border-left: none;
}

/* .veritical-bar input:before {
  content: url("/assets/images/verticle-bar.svg");
  position: absolute;
  left: 0;
  top: 2px;
  width: 2px;
  height: 8px;
  background-color: var(--secondary-color);
} */

.veritical-bar input {
  /* background: url("/assets/images/verticle-bar.svg") no-repeat left center; */
  background:
    url(/assets/images/verticle-bar.svg) 0 center no-repeat,
    #fff;
  background-size: 4px 30px;
  padding-left: 16px; /* Adjust to avoid overlapping text */
}

.section-login .veritical-bar input {
  background:
    url(/assets/images/verticle-bar.svg) 0 center no-repeat,
    #f5f5f5;
}

.modal-title {
  color: var(--secondary-color);
  font-size: var(--section-heading);
  font-weight: 700;
  line-height: 130%; /* 41.6px */
  letter-spacing: -0.64px;
  margin-bottom: var(--margin-bottom-1);
}
.modal-sub-title {
  color: var(--secondary-color);
  font-size: var(--secondary-heading);
  font-weight: 600;
  line-height: 35px; /* 145.833% */
  margin-bottom: var(--margin-bottom-1);
}

/* header{
  z-index: 999;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;

} */

.header {
  background: #fff;
  z-index: 999;
  transition: all 0.3s ease;
}

.header-section {
  background-color: #fff;
  transition: all 0.3s ease;
}

.sticky-header .header-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 799;
  box-shadow: 0px 6px 10px -6px rgba(0, 0, 0, 0.25);
}

.main-content {
}

.sticky-header .main-content {
  padding-top: 124px;
}

.header-nav-second {
  position: relative;
}

/* Basic nav list styling */
.nav-links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 2rem;
  background: white; /* optional background */
}

.links-dropdown-button {
  padding: 1rem 1.5rem;
  cursor: pointer;
  display: inline-block;
}

/* Mega menu full width with transparent top area */
.mega-menu-fixed {
  position: absolute;
  top: 154px;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0px 6px 10px -6px rgba(0, 0, 0, 0.25);
  z-index: 399;

  height: calc(100vh - 122px);
  overflow: auto;
}

.sticky-header .mega-menu-fixed {
  top: 122px;
}

.mega-menu-fixed .container {
  background: white;
}

.mega-menu-fixed .menu-content {
  padding: 32px 0 0;
}
.menu-content {
  padding: 32px 0;
}

.mega-menu-fixed .menu-heading {
  font-size: var(--secondary-heading);
  cursor: pointer;
}
.mega-menu-fixed .menu-content .menu-content-para,
.mega-menu-fixed .menu-content h5 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ########################################## */
/* ########### Chat Box Style ################ */
/* ########################################## */

.chat-interface {
  position: fixed;
  right: 100px;
  bottom: 64px;
  z-index: 999;
}

.chat-btn {
  width: 64px;
  height: 64px;
  border: 1px solid var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  position: relative;
  /*  */
  /* margin-top: 50px;
  margin-left: auto; */
}

.chat-card {
  position: absolute;
  bottom: 100px;
  right: 0;
  width: 675px;
  height: 500px;
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  background: #fff;
  box-shadow: 0 4px 15px #00000040;
  z-index: 999;
}

.chat-card .card-header {
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  background: #f5f5f5;
  padding: var(--card-padding);
}

.chat-card .card-header h5 {
  color: #333333;
  font-size: var(--para-text);
  font-weight: 400;
}

.chat-card .card-body {
  padding: 14px 32px;
  overflow: auto;
  flex-grow: 1;
}

.chat-card .card-body .chat-row,
.help-desk-chat .chat-row {
  display: flex;
  margin-bottom: 15px;
  gap: 16px;
  color: var(--secondary-color);
}
.chat-card .card-body .chat-row .chat-img,
.help-desk-chat .chat-row .chat-img {
  display: inline-block;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.chat-card .chat-content .chat-msg img,
.help-desk-chat .chat-content .chat-msg img {
  margin-bottom: 9px;
}
.chat-card .card-body .chat-content .chat-msg,
.help-desk-chat .chat-content .chat-msg {
  display: inline-block;
  border-radius: 10px;
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  overflow: hidden;
  padding: 16px 20px;
  font-size: var(--imp-para-text);
  font-weight: 400;
  line-height: 1.4;
  text-align: left;

  margin-bottom: 9px;
}

.chat-card .card-body .chat-content .chat-msg img {
  width: 300px;
  display: block;
}
.help-desk-chat .chat-content .chat-msg img {
  width: 400px;
  display: block;
}
.chat-card .card-body .chat-content .chat-msg.customer,
.help-desk-chat .chat-content .chat-msg.customer {
  background: #fff;
  border: 1px solid #d6d6d6;
}
.chat-card .card-body .chat-content .chat-msg.customer img,
.help-desk-chat .chat-content .chat-msg.customer img {
  margin-left: auto;
}

.chat-card .card-body .chat-row .chat-content,
.help-desk-chat .chat-row .chat-content {
  font-size: var(--para-text);
  font-weight: 700;
  max-width: 80%;
}
.chat-card .chat-row .sender-name,
.help-desk-chat .chat-row .sender-name {
  font-size: var(--para-text);
  font-weight: 700;
  margin-bottom: 9px;
}
.chat-card .chat-row .send-time,
.help-desk-chat .chat-row .send-time {
  font-size: var(--para-text);
  font-weight: 400;
}
.chat-card .card-footer {
  border-radius: 0px 0px 20px 20px;
  background: #ffffff;
  padding: var(--card-padding);
  border-top: 0;
}
.chat-card .card-footer .chat-input.input-group,
.help-desk-chat .chat-input.input-group {
  border-radius: 108px;
  border: 1px solid #d6d6d6;
  align-items: center;
  background: #fff;
  overflow: hidden;
}

.help-desk-chat .chat-input.input-group {
  margin-bottom: 30px;
}

.chat-card .card-footer .chat-input .btn,
.help-desk-chat .chat-input .btn {
  border-radius: 108px 0 0 108px;
  background-color: #fff;
  height: 44px;
  width: 64px;
  margin: 5px;
}
.chat-card .card-footer .chat-input .btn:focus,
.help-desk-chat .chat-input .btn:focus {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  outline: 0px;
  box-shadow: var(--focus-color) 0px 0px 0px 0.25rem;
}
.chat-card .card-footer .chat-input .btn.btn-send {
  border-radius: 0 108px 108px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-card .card-footer .chat-input .btn.btn-attachment img,
.help-desk-chat .chat-input .btn.btn-attachment img {
  width: 24px;
}

.help-desk-chat .chat-input textarea {
  border-radius: 0 108px 108px 0;
  margin-right: 5px;
}

.chat-card .card-footer .chat-input textarea.form-control,
.help-desk-chat .chat-input textarea.form-control {
  border: none;
}
.chat-card .card-footer .chat-input textarea.form-control:focus,
.help-desk-chat .chat-input textarea.form-control:focus {
  border: 1px solid var(--secondary-color);
}

.help-desk-chat {
  border-radius: 10px;
  border: 1px solid #ffffff;
}

.help-desk-chat-body {
  padding: var(--card-padding);
  height: 400px;
  overflow-y: scroll;
}

.help-desk-chat-footer {
  padding: var(--card-padding);
  border-radius: 0px 0px 10px 10px;
  background: #ffffff;
}

.help-desk-chat-footer .btn-serve {
  min-width: 215px;
}

.view-attachment-wrapper .slick-slide img {
  height: 72vh;
}

.chat-selected-img-box {
  position: relative;
  width: 100px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid var(--secondary-color);
}
.chat-selected-img {
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.chat-selected-img-box .chat-selected-img-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-color: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.image-viewer-modal .modal-content {
  position: relative;
}

.image-viewer-modal .slick-arrow {
  position: absolute;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  background: var(--secondary-color);
}
.image-viewer-modal .slick-arrow:hover,
.image-viewer-modal .slick-arrow:focus {
  background: var(--secondary-color);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.image-viewer-modal .slick-prev {
  left: -100px;
}
.image-viewer-modal .slick-next {
  right: -100px;
}
.image-viewer-modal .slick-prev:before {
  content: url("/assets/images/left-chevron-Icon.svg");
  opacity: 1;
}
.image-viewer-modal .slick-next:before {
  content: url("/assets/images/right-chevron-Icon.svg");
  opacity: 1;
}

/* Call Button */

.call-interface {
  position: fixed;
  right: 100px;
  bottom: 144px;
  z-index: 99;
}

.call-btn {
  width: 64px;
  height: 64px;
  border: 1px solid var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  position: relative;
}

/* ########################################## */
/* ########### Input Form Style ################ */
/* ########################################## */
::placeholder {
  color: rgba(51, 51, 51, 0.6);
  opacity: 1; /* Firefox */
}

.form-control::placeholder {
  color: rgba(51, 51, 51, 0.6);
  opacity: 1;
  font-weight: 400;
}

.form-control option:hover {
  background-color: var(--primary-color); /* May work in Firefox */
}

.form-control,
.form-select,
.custom-input,
.basic-multi-select .select__control {
  border-radius: 108px;
  border: 1px solid #d6d6d6;
  padding: 10px 16px;
  color: var(--secondary-color);
  font-size: var(--para-text);
  font-style: normal;
  font-weight: 600;
  line-height: 1.417;
  background-color: #fff;
}

.section-login .form-control,
.section-login .form-select,
.section-login .custom-input,
.section-login .input-group-text,
.section-login .basic-multi-select .select__control {
  background-color: #f5f5f5;
}

.basic-multi-select .select__control .select__placeholder {
  color: rgba(51, 51, 51, 0.6);
  opacity: 1;
  font-weight: 400;
}

.basic-multi-select .select__control {
  padding: 4px 8px;
}
.basic-multi-select .select__control:hover,
.basic-multi-select .select__control--is-focused {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.25rem var(--focus-color) !important;
}
.basic-multi-select .select__control:focus {
  box-shadow: 0 0 0 0.25rem var(--focus-color) !important;
}
.basic-multi-select .select__control .select__input,
.basic-multi-select .select__control .select__multi-value__label {
  color: var(--secondary-color) !important;
}

.form-select {
  font-weight: 400;
  color: rgba(51, 51, 51, 0.6);
}

.form-select option,
select option {
  color: var(--secondary-color);
}

.form-select.selected {
  font-weight: 700;
  color: var(--secondary-color);
}

.form-control.fontActive,
.form-select.fontActive,
.custom-input.fontActive {
  color: var(--secondary-color);
  font-weight: 600;
}

.form-select {
  --bs-form-select-bg-img: url("/assets/images/chevron-down.svg");
  background-size: 20px 16px;
}

select.font-bold.form-select {
  font-weight: 600;
}
textarea.form-control {
  border-radius: 10px;
}

.form-control:focus {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  outline: 0px;
  box-shadow: var(--focus-color) 0px 0px 0px 0.25rem;
}

.react-datepicker__day--keyboard-selected,
.react-datepicker__month-text--keyboard-selected,
.react-datepicker__quarter-text--keyboard-selected,
.react-datepicker__year-text--keyboard-selected {
  background-color: var(--focus-color) !important;
}

.react-datepicker__day--keyboard-selected:not([aria-disabled="true"]):hover,
.react-datepicker__month-text--keyboard-selected:not(
    [aria-disabled="true"]
  ):hover,
.react-datepicker__quarter-text--keyboard-selected:not(
    [aria-disabled="true"]
  ):hover,
.react-datepicker__year-text--keyboard-selected:not(
    [aria-disabled="true"]
  ):hover {
  background-color: var(--primary-color) !important;
}

.react-datepicker-wrapper {
  display: block !important;
  width: 100%;
}

.react-datepicker-popper {
  z-index: 9 !important;
}

.calendar-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.custom-calendar {
  font-family: Arial, sans-serif;
  border-radius: 16px;
  padding: 10px;
  border: 1px solid #ccc;
}
.custom-calendar .react-datepicker__header {
  background-color: #fff;
  border-bottom: none;
}
.custom-calendar .react-datepicker__current-month,
.custom-calendar .react-datepicker__day-name {
  color: var(--secondary-color);
  font-weight: bold;
  margin-bottom: 12px;
}
.custom-calendar select {
  border: 1px solid var(--secondary-color);
  border-radius: 5px;
  padding: 2px;
}
.custom-calendar .react-datepicker__day--selected {
  background-color: #7ca934;
  color: #fff;
  border-radius: 50%;
}

.custom-calendar
  .react-datepicker__day--selected:not([aria-disabled="true"]):hover,
.custom-calendar
  .react-datepicker__day--in-selecting-range:not([aria-disabled="true"]):hover,
.custom-calendar
  .react-datepicker__day--in-range:not([aria-disabled="true"]):hover,
.custom-calendar
  .react-datepicker__month-text--selected:not([aria-disabled="true"]):hover,
.custom-calendar
  .react-datepicker__month-text--in-selecting-range:not(
    [aria-disabled="true"]
  ):hover,
.custom-calendar
  .react-datepicker__month-text--in-range:not([aria-disabled="true"]):hover,
.custom-calendar
  .react-datepicker__quarter-text--selected:not([aria-disabled="true"]):hover,
.custom-calendar
  .react-datepicker__quarter-text--in-selecting-range:not(
    [aria-disabled="true"]
  ):hover,
.custom-calendar
  .react-datepicker__quarter-text--in-range:not([aria-disabled="true"]):hover,
.custom-calendar
  .react-datepicker__year-text--selected:not([aria-disabled="true"]):hover,
.custom-calendar
  .react-datepicker__year-text--in-selecting-range:not(
    [aria-disabled="true"]
  ):hover,
.custom-calendar
  .react-datepicker__year-text--in-range:not([aria-disabled="true"]):hover {
  background-color: #7ca934;
  color: #fff;
  border-radius: 50%;
}
.custom-calendar .react-datepicker__day--keyboard-selected,
.custom-calendar .react-datepicker__month-text--keyboard-selected,
.custom-calendar .react-datepicker__quarter-text--keyboard-selected,
.custom-calendar .react-datepicker__year-text--keyboard-selected {
  border-radius: 50%;
}

.custom-calendar .react-datepicker__day:hover {
  background-color: #e5e5e5;
  border-radius: 50%;
}

/* ----------------------------- */

.button-outline {
  border: 1px solid var(--secondary-color);
  width: 44px;
  height: 44px;
  color: var(--secondary-color);
  background-color: transparent;
  /* padding: 3px 6px 6px; */
  padding: 10px;
  border-radius: 50%;
  transition:
    background-color.3s ease,
    color.3s ease;
  position: relative;
}

.button-outline .badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 23px;
  height: 23px;
  background-color: var(--primary-color);
  border-radius: 50%;
  font-size: var(--para-text);
  color: #fff;
  display: flex;
  font-weight: 400;
  align-items: center;
  justify-content: center;
}
.button-outline:hover {
  background-color: var(--foreground-color);
}

.btn-serve {
  background-color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  border-radius: 108px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  font-size: var(--para-text);
  font-weight: 700;
  padding: 12px 30px;
  line-height: 1.25;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}

.btn-serve-outline {
  border: 2px solid var(--secondary-color);
  border-radius: 108px;
  background-color: #0000;
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 700;
  font-size: var(--para-text);
  font-weight: 700;
  padding: 10px 30px;
  line-height: 1.25;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}
.btn-serve-outline:hover {
  background-color: var(--secondary-color);
  color: #fff;
  box-shadow: 0 4px 4px #00000040;
}

.btn:hover {
  border-color: var(--secondary-color);
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  color: var(--bs-btn-active-color);
  background-color: #634219;
  border-color: #634219;
}

.btn-check:checked + .btn:focus-visible,
.btn.active:focus-visible,
.btn.show:focus-visible,
.btn:first-child:active:focus-visible,
:not(.btn-check) + .btn:active:focus-visible {
  box-shadow: var(--focus-color);
}

.btn-serve:hover {
  background-color: #634219;
  box-shadow: 0 4px 4px #00000040;
  border-color: var(--secondary-color);
}

.btn-icon img {
  width: 18px;
  height: 21px;
}

.cta-btn {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  line-height: 1.333;
  background-repeat: no-repeat;

  min-width: 212px;
  padding: 8px 24px;
  display: inline-block;
  position: relative;

  transition: all 0.15s ease-in-out;
}

.cta-btn::after {
  content: "";
  background-image: url(/assets/images/right-Icon.svg);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 24px 16px;
  position: absolute;
  right: 0.75rem;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 16px;
  opacity: 0;
  transition: all 0.15s ease-in-out;
}

.cta-btn:hover {
  text-align: start;
}

.cta-btn:hover::after {
  transform: translate(30%, -50%);
  opacity: 1;
}

.section {
  padding: 60px 0;
}

.section-heading {
  text-align: center;
  font-size: var(--section-heading);
  font-weight: 700;
  line-height: 100%; /* 32px */
  letter-spacing: -0.64px;
  margin-bottom: 24px;
}
.section-sub-heading {
  text-align: center;
  color: var(--tertiary-color);
  font-size: var(--section-sub-heading);
  margin-bottom: 50px;
}

/* ################################################# */
/* ############# Top Bar Styles ################# */
/* ################################################# */

.top-bar-section {
  background-color: var(--foreground-color);
}

.top-bar {
  display: flex;
  padding: 2px;
  align-items: center;
  justify-content: space-between;
}

.top-bar .top-banner .slick-vertical .slick-slide {
  width: 100% !important;
}

.top-bar .top-banner .banner-text:hover {
  text-decoration: none;
}

.top-bar p {
  color: #8c9b7c;
  font-size: var(--para-text);
  font-style: normal;
  width: 100%;
  text-align: left;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.16px;
}
.top-bar p strong {
  color: #333333;
}

.top-bar-options {
  display: flex;
  gap: 5px;
}
.top-bar-options .form-select {
  background-color: #0000;
  border: 0;
  padding: 4px 36px 4px 8px;
  font-size: var(--para-text);
  line-height: 1.25;

  font-weight: 500;
}

header .bottom-shadow {
  position: relative;
  box-shadow: 0px 6px 10px -6px rgba(0, 0, 0, 0.25);
  z-index: 499;
}

.header-nav-first {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 16px 0;
}

/* .search-box-wrapper{
  position: relative;
  display: flex;
  justify-content: center;
  flex: 1;
} */

.search-dropdown {
  position: absolute;
  border-radius: 0 0 16px 16px;
  background: #f5f5f5;
  top: 30px;
  left: 0;
  width: 100%;
  margin-top: 10px;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

  max-height: 464px;
  overflow-y: auto;
}

.search-dropdown .list-group-item-action {
  padding: 10px 16px !important;
  color: var(--secondary-color) !important;
}

.search-box {
  border-radius: 108px;
  border: 1px solid #d6d6d6;
  background: #f5f5f5;
  display: flex;
  gap: 24px;
  width: 100%;
  max-width: 720px;
  padding: 8px 12px;

  position: relative;
}
.search-box.open-dropdown {
  border-radius: 16px 16px 0 0;
}

.search-box .icon {
  width: 25px;
  height: 24px;
}

.search-box input {
  border: none;
  background-color: #0000;
  flex: 1;
  font-weight: 400;
  padding: 0.81px 2px;
}

.search-box input:focus {
  outline: var(--focus-color) auto 1px;
  outline: none;
  background-color: #0000;
}

.sidebar-menu-btn {
  display: none;
  padding: 3px;
}

.main-logo {
  object-fit: cover;
  height: 44px;
  width: 163px;
}
.main-logo img {
  object-fit: cover;
  max-width: 164px;
}

.user-options {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-options .btn-bell {
  padding: 9px 10px 10px;
}

.user-detail {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
  padding: 8px 0;
  border-bottom: 2px solid var(--background-color);
}

.user-detail .img-box {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.user-detail .img-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
}

.user-detail .user {
  flex-grow: 1;
}
.user-detail .user h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
}
.user-detail .user p {
  font-size: 14px;
}

.common-dropdown {
  position: relative;
  display: inline-block;
}

.common-dropdown-button {
  padding: 8px 12px;
  border-radius: 108px;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  background-color: #fff;
  min-width: 175px;
  font-weight: 700;
}
.common-dropdown-button:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

/* .common-dropdown-menu {
  margin-top: 8px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
} */

.lang-drodown {
  min-width: 332px;
}
.lang-drodown .dropdown-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.lang-drodown .flag-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border-radius: 4px;
}

.lang-drodown .country-name {
  font-weight: bold;
  font-size: var(--para-text);
}

.lang-drodown .cities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-height: 399px;
  overflow-y: auto;
}

.lang-drodown .city-button {
  padding: 8px 16px;
  font-size: var(--small-text);
  border: 2px solid var(--secondary-color);
  border-radius: 24px;
  background: white;
  color: var(--secondary-color);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-drodown .city-button.selected {
  background: var(--secondary-color);
  color: white;
}

.lang-drodown .city-button:hover {
  background: var(--secondary-color);
  color: white;
}

.custom-dropdown {
  position: relative;
  width: 100%;
}

.lang-drodown .custom-dropdown-selected {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px;
  border: 2px solid var(--secondary-color);
  border-radius: 9999px;
  background: white;
  color: var(--secondary-color);
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  background-repeat: no-repeat;
  background-image:
    var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-position: right 0.75rem center;
  --bs-form-select-bg-img: url(/assets/images/chevron-down.svg);
  background-size: 20px 16px;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

.custom-dropdown-menu {
  position: absolute;
  margin-top: 8px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 12px;
  width: 100%;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-dropdown-option {
  padding: 10px 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.custom-dropdown-option:hover {
  background: #f5f5f5;
}

.arrow {
  margin-left: auto;
}

.arwDropBtn {
  display: block;
  width: 100%;
  padding: 4px 36px 4px 8px;
  font-size: var(--para-text);
  line-height: 1.25;
  font-weight: 400;
  border-radius: 108px;
  background-color: #0000;
  border: 0;
  color: var(--secondary-color);
  white-space: nowrap;
  background-repeat: no-repeat;
  background-image:
    var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-position: right 0.75rem center;
  --bs-form-select-bg-img: url(/assets/images/chevron-down.svg);
  background-size: 20px 16px;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

.common-dropdown-menu {
  position: absolute;
  right: 0;
  margin-top: 16px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 12px;

  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

.common-dropdown-menu li {
  margin-bottom: 8px;
}

ul.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  scroll-behavior: smooth;
  width: 100%;
}

.links-dropdown-container {
  position: relative;
  padding-bottom: 10px;
}

ul.nav-links .links-dropdown-link {
  font-weight: 700;
  padding: 6px 6px 6px 0;
  transition:
    all 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

/*

ul.nav-links .links-dropdown-button {
  background-image: url(/assets/images/chevron-down.svg);
  display: block;
  width: 100%;
  padding: 6px 36px 6px 0;
  font-size: var(--para-text);
  font-weight: 700;
  line-height: 1.5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  transition: all 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

ul.nav-links .links-dropdown-button.active {
  background-image: url(/assets/images/chevron-up.svg);
} 
  
*/

ul.nav-links .links-dropdown-button {
  padding: 6px;
  display: block;
  width: 100%;
  font-size: var(--para-text);
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 5px;
  transition:
    all 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
ul.nav-links .links-dropdown-button .dropdown-text-label {
  flex: 1;
}

ul.nav-links .links-dropdown-button .dropdown-trigger {
  background-image: url(/assets/images/chevron-down.svg);
  width: 20px;
  height: 20px;
  margin-top: 3px;
  display: block;
  font-size: var(--para-text);
  font-weight: 700;
  line-height: 1.5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px;
  transition:
    all 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

ul.nav-links .links-dropdown-button.active .dropdown-trigger {
  background-image: url(/assets/images/chevron-up.svg);
}

ul.nav-links .links-dropdown-menu {
  position: absolute;
  left: 0;
  margin-top: 8px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 12px 16px;
  min-width: 200px;
}

.common-dropdown-link-items {
}

.common-dropdown-link {
  display: flex;
  min-width: 175px;
  gap: 20px;
  margin-bottom: 16px;
}

.common-dropdown-link {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;

  font-size: var(--para-text);
}

.common-dropdown-link img {
  width: 20px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ################################################# */
/* ############# Footer Styles ################# */
/* ################################################# */

.footer {
  background: #e8712b;
  color: #fff;
  padding: 70px 0 6px;
}

.footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  border-bottom: 1px solid #fff;
}

.footer .payment-logos {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.payment-logo {
  width: 50px;
  height: 30px;
}
.footer-columns h6 {
  margin-bottom: 16px;

  font-size: 18px;

  font-weight: 700;
  line-height: normal;
  border-bottom: 1px solid #fff;
  display: inline-block;
}
.footer-columns li {
  font-size: var(--para-text);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 16px;
}

.footer .copyright-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  flex-wrap: wrap;
  gap: 16px;
}
/* .footer-links a:hover {
  text-decoration: underline;
} */

.footer .social-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.social-link {
  width: 24px;
  height: 24px;
}
.social-link:hover {
  border-radius: 8px;
  background-color: var(--secondary-color);
}

/* ########################################## */
/* ########### Hero Section################ */
/* ########################################## */

.hero-section {
  overflow: hidden;
}

.hero-section .hero-bg {
  background: left center / 100% 100% no-repeat;
  padding: 50px 0;
  background-color: #fff; /* Fallback color */
  background-position: center;
  background-size: 100%;
  height: Calc(80vh - 158px);
  min-height: 500px;
}

.hero-section .slick-slider .slick-dots {
  bottom: 25px;
}

.hero-section .slick-dots li button:before {
  opacity: 0.7;
  /* border: 1px solid #fff;
  background: var(--secondary-color); */
  border: 1px solid var(--secondary-color);
  background: #fff;
}

.hero-section .slick-dots li.slick-active button:before {
  opacity: 1;
  background: var(--secondary-color);
  border: 1px solid #fff;
}

.hero-section h1 {
  font-size: 44px;
  margin-bottom: 36px;
  letter-spacing: -0.88px;
}
.hero-section em {
  font-size: 20px;
  display: block;
  margin-bottom: 36px;
  line-height: normal;
  letter-spacing: -0.48px;
}

/* ########################################## */
/* ########### Services Section ################ */
/* ########################################## */

.services-section {
  background-color: var(--background-color);
}

.services-section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.services-section h5 {
  color: #333333;
  font-size: 24px;
  font-weight: 700;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.48px;
  margin-bottom: 18px;
}

.services-slider .slick-track {
  margin-left: 0;
  margin-right: auto;
  display: flex !important;
  align-items: stretch;
}

.services-slider .slick-track .slick-slide {
  height: auto !important;
  display: flex !important;
}

.services-slider .slick-slide > div {
  width: 100%;
  height: 100%;
  flex-grow: 1;
  width: 100%;
  display: flex;
}

.services-slider .slick-slide {
  height: 100%;
  display: flex !important; /* Make slide a flex container */
  align-items: stretch; /* Ensure content stretches */
}

/* .services-slider .slick-slide > div {
height: 100%;
} */

.slick-slider,
.slick-list,
.slick-track {
  height: 100%;
}

.services-slider:not(:last-child) {
  margin-bottom: 32px;
}

.services-slider .slick-slider .slick-list {
  margin: 0 -15px;
}

.services-slider .slick-prev:before,
.services-slider .slick-next:before {
  display: none;
}

.services-slider .slider-nav-btn {
  border-radius: 108px;
  background: #4f6b18;
  box-shadow: 0 4px 4px #00000040;
  color: #fff;
  font-size: 24px;
  z-index: 5;
  padding: 16px;
  display: flex;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.services-slider .slider-nav-btn:hover,
.services-slider .slider-nav-btn:focus {
  background: #4f6b18;
  opacity: 0.9;
}

/* .services-slider .slider-nav-btn img{
  width: 14px;
  height: 7px;
} */

.services-slider .slick-next {
  right: -20px;
}
.services-slider .slick-prev {
  left: -20px;
}

.services-cards {
  padding: 0 16px;
  margin: 16px 0;
}

.service-card {
  border-radius: 10px;
  border: 3px solid var(--primary-color);
  background: var(--background-color);
  padding: 18px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  margin-right: auto;
}

.service-card:not(:last-child) {
  margin-right: 0;
}

.service-card:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.service-card .service-card-icon {
  margin-bottom: 12px;
  position: relative;
}
.service-card .service-card-icon img {
  width: 196px;
  height: 195px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: contain;
  border: 1px solid #ddd;
}

.service-card .service-card-icon .aed-offer {
  position: absolute;
  top: 0;
  left: 0;
  top: -12px;
  left: -10%;
  max-width: 120px;
  z-index: 2;
  border-radius: 28px;
  background: #ff3b30;
  padding: 7px 12px;
  min-width: 98px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 9px;
  padding: 6px 12px;
}

/* .service-card .service-card-icon img {
  width: 100%;
  height: auto;
  object-fit: cover;
} */

.service-card .service-card-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 130%; /* 23.4px */
  letter-spacing: -0.36px;
  text-align: center;
  margin-bottom: 10px;
}
.service-card .service-card-amount {
  color: #333333;
  font-size: var(--para-text);
  font-weight: 700;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.32px;
  margin-bottom: 10px;
}
.service-card .price-line-through {
  color: #4f6b18;
  text-decoration: line-through;
}
.service-card .btn-serve {
  width: 100%;
}

/* ########################################## */
/* ########### Categories Section ################ */
/* ########################################## */

.categories-section {
  background: linear-gradient(
    var(--background-color) 0%,
    var(--background-color) 72%,
    white 72%,
    white 100%
  );
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.categories-grid .categorie-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}

.categories-section .section-heading {
  color: var(--primary-color);
}

.categorie-card .categorie-card-icon {
  /* max-width: 196px;
  height: 196px; */
  width: 100%;
  height: auto;
  aspect-ratio: 1;

  border-radius: 15px;
  overflow: hidden;

  margin-bottom: 18px;
}

.categorie-card .categorie-card-icon:hover {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.5);
}

.categorie-card .categorie-card-icon img {
  aspect-ratio: 1;
  transition: all 0.3s ease-in-out;
}

.categorie-card .categorie-card-icon:hover img {
  transform: scale(1.1);
}

.categorie-card .categorie-card-name {
  color: #4f6b18;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 130%; /* 23.4px */
  letter-spacing: -0.36px;
}

.categorie-card.see-all .see-all-card {
  width: 100%;
  border-radius: 15px;
  border: 1px solid #4f6b18;
  background: #4f6b18;
  aspect-ratio: 1;
  border-radius: 15px;
  overflow: hidden;

  margin-bottom: 18px;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}

.categorie-card.see-all .see-all-card:hover {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.5);
}

.categorie-card.see-all .see-all-card p {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 130%; /* 23.4px */
  letter-spacing: -0.36px;
  padding: 16px;
  text-align: center;
}

.categorie-card.see-all .see-all-card img {
  width: 25px;
  height: auto;
}

/* ########################################## */
/* ########### How Section ################ */
/* ########################################## */

.how-section .how-section-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-width: 580px;
}

.how-section .how-section-img .mobile-how-img {
  display: none;
}

.how-section .how-section-img img {
  object-fit: contain;
}

.progress-svg-container {
  display: flex;
  align-items: center;
  height: 100%;
}
/* .progress-svg-container svg {
  margin: 0 100px;
} */

/* .progress-svg-textbar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%; 
  height: 80vh;
} */

/* .progress-svg-container {
  display: flex;
  gap: 2rem; 
} */

.progress-svg-container .progress-svg-textbar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
}

.progress-svg-wrapper {
  height: 75vh;
  min-height: 100%;
  width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-svg-wrapper svg {
  height: 100%;
  width: auto; /* Or 'auto' if you want it to scale proportionally */
  display: block;
}

.progress-svg-text h4 {
  font-weight: 700;
  color: var(--secondary-color);
}
.progress-svg-text p {
  color: var(--tertiary-color);
  font-size: var(--para-text);
}
.progress-svg-text {
  opacity: 0.6;
}
.progress-svg-text.active-text {
  opacity: 1;
}

/* ########################################## */
/* ########### Apart Section ################ */
/* ########################################## */

.apart-section .section-heading {
  color: var(--primary-color);
}

/* .apart-section  .apart-wrap{
padding: 0 50px;
} */

.apart-section .apart-section-img {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 469px;
  min-height: 587px;
  border-radius: 10px;
  overflow: hidden;
}

.apart-accordion {
  height: 100%;
}

.apart-accordion .apart-item-wrap {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  border-bottom: 1px solid #4f6b1833;
  /* box-shadow: 0 4px 10px #00000040; */
  margin: 16px 24px;
}
.apart-accordion .apart-item-wrap.apart-item-open {
  /* box-shadow: 0 4px 10px #00000040; */
  box-shadow: rgba(0, 0, 0, 0.45) 0px 12px 20px -20px;
}
.apart-accordion .apart-item {
  margin-bottom: 8px;
}

.apart-accordion .apart-header {
  color: var(--primary-color);
  background: transparent;

  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px;
  font-size: 20px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.apart-accordion .apart-header h5 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  text-align: left;
}
.apart-accordion .apart-header:hover {
}

.apart-accordion .apart-icon {
  margin-right: 10px;
  font-size: 20px;
}
.apart-content-wrap {
  padding-left: 32px;
}

.apart-accordion .apart-content {
  color: var(--tertiary-color);
  font-size: 18px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.3s ease-in-out,
    padding 0.3s,
    opacity 0.3s;
}

.apart-accordion .apart-open {
  max-height: 100%;
  padding: 8px 0 19px;
  opacity: 1;
}

/* ########################################## */
/* ########### Talk Section ################ */
/* ########################################## */

.talk-section {
  background-color: var(--primary-color);
  color: #fff;
}

/* .talk-section .talk-wrap{
  padding: 0 100px;
} */

.talk-section h3 {
  font-size: var(--section-heading);
  font-weight: 700;
  line-height: 64px;
  letter-spacing: -0.64px;
}

.talk-section p {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 32px;
}

.talk-section .talk-text-area {
  padding: 10px 0;
}

.talk-section .talk-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.talk-section button.btn-serve {
  min-width: 378px;
  min-height: 56px;
}

.talk-section button.btn-serve:hover {
  box-shadow: 0px 21px 36px 0px rgba(0, 0, 0, 0.14);
}

/* ########################################## */
/* ########### Testimonial Section ################ */
/* ########################################## */

/* .testimonial-section .testimonial-cards{
  padding: 0 100px;
} */

.testimonial-section .testimonial-card {
  border-radius: 10px;
  border: 1px solid rgba(51, 51, 51, 0.6);
  background: #fff;
  padding: 30px 50px;
  margin: 30px auto;
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
  transform: scale(0.85);
  width: auto;
  max-width: 464px;
}

.testimonial-section .testimonial-card.active {
  transform: scale(1);
  opacity: 1;

  border-radius: 10px;
  border: 1px solid rgba(51, 51, 51, 0.6);
  background: #fff;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
}

.slick-dots li button:before {
  line-height: 20px;
  color: #0000 !important;
  content: "";
  opacity: 1;
  height: 15px;
  width: 15px;
  background: rgba(51, 51, 51, 0.6);
  border-radius: 50%;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  background: var(--secondary-color);
}

.testimonial-section .testimonial-card-body {
  color: var(--tertiary-color);
  text-align: center;
  font-size: 18px;
  margin-bottom: 36px;
}

.testimonial-section .testimonial-card.active .testimonial-card-body {
  color: var(--secondary-color);
}

.testimonial-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;

  color: #263238;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
}

.testimonial-profile img {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  width: 40px;
  object-fit: cover;
  border-radius: 50%;
}

/* ########################################## */
/* ########### Testimonial Section ################ */
/* ########################################## */

.partners-section .section-heading {
  color: var(--primary-color);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  /* padding: 0 100px; */
}

.partners-grid .partners-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-grid .partner-card {
  width: 226px;
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.partners-grid .partner-card:hover {
  border: 1px solid #e8712b;
  background: #fff;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
}

/* ########################################## */
/* ########### FAQ Section ################ */
/* ########################################## */

.faq-section .section-heading {
  color: var(--primary-color);
}
.faq-section .btn-serve {
  background-color: #4f6b18;
  border-color: #4f6b18;
  margin: 0 auto;
  min-width: 215px;
  line-height: 1.25;
}
.faq-section .btn-serve:hover {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.faq-accordion {
  height: 100%;
  margin-bottom: 42px;
}

.faq-accordion .faq-item-wrap {
  overflow: hidden;
  padding: var(--card-padding);
  border-radius: 10px;
  border: 1px solid rgba(79, 107, 24, 0.2);
  background: #fff;
  margin-bottom: 15px;

  cursor: pointer;
  transition: background 0.3s;
}

.faq-accordion .faq-item {
  /* margin-bottom: 8px; */
}
.faq-accordion .faq-item-wrap.faq-item-open {
  border: 1px solid #4f6b18;
}

.faq-accordion .faq-header {
  color: var(--primary-color);
  background: transparent;

  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  font-size: 20px;
  font-weight: 600;
  border: none;
}
.faq-accordion .faq-header h5 {
  margin-bottom: 0;
  font-size: var(--tertiary-heading);
  font-weight: 600;
  letter-spacing: -0.4px;
  text-align: left;
}
.faq-accordion .faq-header:hover {
}

.faq-accordion .faq-icon {
  margin-right: 10px;
  font-size: 20px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.faq-accordion .faq-content {
  color: var(--tertiary-color);
  font-size: var(--imp-para-text);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.3s ease-in-out,
    padding 0.3s,
    opacity 0.3s;
}

.faq-accordion .faq-open {
  max-height: 100%;
  padding: 18px 0 8px;
  opacity: 1;
}

/* ########################################## */
/* ########### Collaborate Section ################ */
/* ########################################## */

.collaborate-section {
  position: relative;
  height: 500px;
  background-image: url("/assets/images/Handshaking_doctor.png");
  background-size: cover;
  background-position: center;
}

.right-bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  overflow: hidden;
  /* background-image: url("/assets/images/Handshaking_doctor_fog.png");
  background-size: cover;
  background-position: center; */
}

.right-bg img {
  height: 100%;
}

.collaborate-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* height: 100%; */
  height: 500px;
  overflow: hidden;
}

.collaborate-text {
  position: relative; /* Stay above both backgrounds */
  color: #fff;
  padding: 50px;
  width: 50%;
  color: var(--secondary-color);
}

.collaborate-text h4 {
  font-size: var(--section-heading);
  font-weight: 600;
  line-height: 64px; /* 200% */
  letter-spacing: -0.64px;
}
.collaborate-text p {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 40px;
}

.collaborate-text .btn-serve {
  padding: 14px 59px;
  line-height: 1.5;
}
.collaborate-text .btn-serve:hover {
  box-shadow: 0px 21px 36px 0px rgba(0, 0, 0, 0.14);
}

/* ########################################## */
/* ########### Collaborate Section ################ */
/* ########################################## */

.healthcare-section {
  /* background: var(--primary-color); */
  background: #dce1d1;
  color: var(--primary-color);
  min-height: 628px;
}

.healthcare-section .healthcare-img-area {
  min-height: 628px;
  display: flex;
  align-items: flex-end;
  /* align-items: center; */
}

.healthcare-text-area {
  display: flex;
  height: 100%;
  align-items: center;
  color: #4f6b18;
}

.healthcare-text-area h4 {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.88px;
  margin-bottom: 60px;
}

.healthcare-text-area p {
  font-size: 28px;
  /* font-style: italic; */
  letter-spacing: -0.56px;
  margin-bottom: 45px;
}

.healthcare-text-area .btn-serve {
  background-color: #4f6b18;
  border-color: #4f6b18;
  display: inline-block;
  font-size: 18px;
  text-align: center;
  min-width: 212px;
  color: #fff;
  padding: 10px 32px;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  transition: all 0.15s ease-in-out;
}

.healthcare-text-area .btn-serve::after {
  content: "";
  background-image: url(/assets/images/right-Icon.svg);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 24px 16px;
  position: absolute;
  right: 0.75rem;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 16px;
  opacity: 0;
  transition: all 0.15s ease-in-out;
}

.healthcare-text-area .btn-serve:hover {
  box-shadow: 0 4px 4px #00000040;
  text-align: start;
}

.healthcare-text-area .btn-serve:hover::after {
  transform: translate(20%, -50%);
  opacity: 1;
}

.floating-contact {
  position: fixed;
  top: 75%;
  right: 0;
  transform: translateY(-50%);
  background: #fff;
  padding: 5px 7px 5px 9px;
  z-index: 1000;

  border-radius: 10px 0px 0px 10px;
  background: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}

.floating-contact a {
  display: inline-block;
  width: 40px;
  height: 40px;
  padding: 8px 10px 10px;

  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 20px;
  transition: all 0.3s ease-in-out;
  background-color: var(--secondary-color);
}

.floating-contact a:hover {
  background-color: var(--primary-color);
}

/* ########################################## */
/* ########################################## */
/* ########### Pages CSS ################ */
/* ########################################## */
/* ########################################## */

/* ########################################## */
/* ########### Categories Page ################ */
/* ########################################## */

.categories-section.categories-page {
  background: var(--foreground-color) 0%;
}

.categories-page .categories-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 27px;
  margin-bottom: 30px;
}

.categories-section .section-heading {
  color: var(--secondary-color);
}

.categorie-card .categorie-card-icon {
  /* max-width: 268px;
  height: 268px; */
  width: 100%;
  height: auto;
  margin-bottom: var(--margin-bottom-1);
}

.categories-page .categorie-card .categorie-card-name {
  /* color: var(--primary-color); */
  color: var(--secondary-color);
  padding: 0 5px;

  font-size: 24px;
  font-weight: 700;
  line-height: 130%; /* 23.4px */
  letter-spacing: -0.56px;
  margin-bottom: 28px;
}

/* ########################################## */
/* ########### Menu Dropdown ################ */
/* ########################################## */

.menu-page .menu-container {
  margin-bottom: 30px;
}
.menu-page .menu-heading {
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  margin-bottom: var(--margin-bottom-1);
}

.menu-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
  padding: 32px 0 0;
}

.menu-box:hover {
  color: inherit;
  text-decoration: none;
}

.menu-profile {
  height: 85px;
  width: 85px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.menu-profile img {
  object-fit: cover;
  aspect-ratio: 1;
}

.menu-box .menu-content {
  padding-top: 0;
}
.menu-content {
  line-height: normal;
}
.menu-content h5 {
  font-size: var(--imp-para-text);
  font-weight: 600;
}
.menu-content p {
  color: rgba(38, 50, 56, 0.8);
  font-size: var(--para-text);
  font-weight: 500;
}

/* ########################################## */
/* ########### Page Search filter Dropdown ################ */
/* ########################################## */

.page-search-section {
  background: #ffffff;
  margin-bottom: 32px;
}

.search-filter-box .search-box {
  background-color: #fff;
  gap: 5px;
}

.page-search-section h4 {
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 600;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.48px;
  margin-bottom: var(--margin-bottom-1);
}

.search-filter-box {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.common-checkbox-dropdown {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.common-checkbox-btn {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%238f5e24' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  display: block;
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  text-align: left;
  border-radius: 50px;
  border: 1px solid #d6d6d6;
  color: rgba(51, 51, 51, 0.6);
  font-size: var(--para-text);
  line-height: 1.4;
  background-size: 10px;
  padding: 10px 32px 10px 16px;
  min-width: 175px;

  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  appearance: none;
}

.common-checkbox-btn.dropdown-open {
  border-radius: 10px 10px 0 0;
}
.common-checkbox-btn.has-selection {
  color: #fff;
  background-color: var(--secondary-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.custom-btn-dropdown:focus {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

.common-checkbox-menu.dropdown-menu {
  border-radius: 0px 0px 10px 10px;
  border: 1px solid #d6d6d6;
  background: #fff;
  width: 100%;
  overflow: hidden;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  z-index: 99;
  border: 1px solid #d6d6d6;
  padding: 0;
  min-width: 100px;
  max-height: 399px;
  overflow-y: auto;
}

.common-checkbox-menu.dropdown-menu li {
  border: 1px solid #d6d6d6;
  padding: 10px 6px;
  white-space: nowrap;
  color: var(--secondary-color);
  font-size: var(--para-text);
  border: 1px solid #d6d6d6;
}

.common-checkbox-menu.dropdown-menu li .form-check {
  gap: 5px;
}

.common-checkbox-menu.dropdown-menu li:hover {
  background-color: var(--foreground-color);
}

.dropdown-menu {
  border-radius: 10px;
}

.common-filter-icon {
  border: 1px solid #d6d6d6;
  background-color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  padding: 12px;
  cursor: pointer;
}

.common-filter-dropdown-menu {
  position: absolute;
  right: 0;
  margin-top: 12px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);

  border-radius: 10px;
  border: 1px solid #d6d6d6;
  overflow: hidden;
}

.common-filter-dropdown-button {
  font-size: var(--para-text);
  padding: 8px 12px;
  color: var(--secondary-color);
  border: none;
  background-color: #fff;
  min-width: 146px;
}
.common-filter-dropdown-button:not(:last-child) {
  border-bottom: 1px solid #d6d6d6;
}
.common-filter-dropdown-button:hover {
  background-color: var(--foreground-color);
}

.tags-container {
  margin: 32px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.tags-container .tag-label {
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  color: var(--secondary-color);
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 7px 12px;

  font-size: var(--para-text);
  border-radius: 50px;
  border: 1px solid #d6d6d6;
}

.tags-container .remove-btn {
  background: none;
  border: none;
  color: #333333;
  margin-left: 8px;
  cursor: pointer;
  font-size: var(--para-text);
  line-height: 1;
}

.tags-container .remove-btn:hover {
  color: #c7a76c;
}

.page-services-section .service-card {
  background-color: #fff;
  margin-left: auto;
  max-width: 285px;
  height: 100%;
}

.page-services-section .row {
  row-gap: 30px;
  margin-bottom: 30px;
}

.page-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--para-text);
  color: rgba(51, 51, 51, 0.6);
}

.page-pagination .page-active,
.page-pagination .pagination-text {
  font-weight: 700;
  color: var(--secondary-color);
  /* font-size: 18px; */
}

.page-pagination .page-btn {
  cursor: pointer;
}
.page-pagination .page-btn.page-active {
  cursor: default;
}

.page-pagination-btn {
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid var(--primary-color);

  color: var(--secondary-color);
  padding: 0px 5px 1px 5px;
}
.page-pagination-btn:hover {
  color: #fff;
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
}

/* ########################################## */
/* ########### Image Preview  ################ */
/* ########################################## */

.page-services-section {
  margin-bottom: 60px;
}
.page-services-section .whatsapp-chat {
  padding: 16px;
  background-color: var(--primary-color);
  border-radius: 50%;
  height: 64px;
  width: 64px;
  cursor: pointer;
  z-index: 399;
  position: fixed;
  top: auto;
  bottom: 12%;
  right: 72px;
  border: 1px solid #fff;
}
.blood-testing-content p {
  font-size: 18px;
  line-height: 30px; /* 166.667% */
  margin-bottom: 24px;
}
.blood-testing-content h4 {
  font-size: var(--section-heading);

  font-weight: 700;
  line-height: 48px; /* 150% */
  margin-bottom: 24px;
  line-height: 1.4;
}
.blood-testing-content h6 {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px; /* 140% */
  margin-bottom: 24px;
}
.blood-testing-content ul {
  list-style: disc;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
  padding-left: 24px;
  margin-bottom: 30px;
}

.blood-testing-content .test-review {
  color: rgba(109, 73, 28, 0.6);
  font-size: var(--imp-para-text);
  font-weight: 500;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.blood-testing-content .test-review img {
  width: 23px;
  height: 23px;
}

/* ########################################## */
/* ########### Image Preview  ################ */
/* ########################################## */

.img-preview-carousel {
  position: sticky;
  top: 150px;
}

.img-preview-carousel .slick-slide img {
  height: 10vh;
  max-height: 118px;
  /*  */
  object-fit: cover;
  aspect-ratio: 1;
  border: 1px solid #555;
  border-radius: 6px;
}

.main-img-preview {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
  height: Calc(100vh - 250px);
  max-height: 636px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-img-preview .preview-img {
  object-fit: contain;
  aspect-ratio: 1;
  border: 1px solid #eee;
  border-radius: 10px;
}

.img-preview-thumbs {
  margin: 0 auto;
  padding: 0 40px;
}

.img-preview-thumbs .img-preview-thumb {
  border: 1px solid #fff;
  border-radius: 10px;
  overflow: hidden;
}
.img-preview-thumbs .img-preview-thumb.curActive {
  border: 2px solid var(--primary-color);
}

.img-preview-thumbs .slick-prev,
.img-preview-thumbs .slick-next {
  top: 45%;
}

.img-preview-thumbs .slick-prev:before,
.img-preview-thumbs .slick-next:before {
  display: flex;
  padding: 4px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 28px;
  height: 28px;

  color: #263238;
  border-radius: 50%;
  padding: 1px 1px 0px;
  content: url(/assets/images/arrow-right.svg);
}

.img-preview-thumbs .slick-prev:hover:before,
.img-preview-thumbs .slick-next:hover:before {
  box-shadow:
    0px 0px 3px 0px rgba(16, 24, 40, 0.1),
    0px 2px 5px 0px rgba(16, 24, 40, 0.06);
}

.img-preview-thumbs .slick-prev:before {
}

.img-preview-thumbs .slick-next:before {
  transform: rotate(180deg);
}

.aed-cart {
}

.aed-cart-pricing {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}

/* .aed-cart-pricing{
  display: flex;
      align-items: center;
      justify-content: space-between;
} */
.aed-cart-pricing .pricing-card-row {
  background: #ffffff;
  padding: var(--card-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.aed-cart-pricing .pricing-card-row.curActive {
  background: #e8712b;
}

.aed-cart-pricing .pricing-card-row h6 {
  font-size: var(--secondary-heading);
  font-weight: 500;
  line-height: 28px; /* 116.667% */
  display: inline-block;
  margin-bottom: 8px;
}
.aed-cart-pricing .pricing-card-row p {
  font-size: var(--imp-para-text);
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  margin-bottom: 0;
}
.aed-cart-pricing .pricing-card-row .price {
  color: #e8712b;
  font-size: var(--secondary-heading);
  font-weight: 500;
  line-height: 28px; /* 116.667% */
}

.aed-cart-pricing .pricing-card-row .price-line-through {
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  text-decoration: line-through;
}

.aed-cart-pricing .pricing-card-row.curActive h6,
.aed-cart-pricing .pricing-card-row.curActive p,
.aed-cart-pricing .pricing-card-row.curActive .price-line-through {
  color: #fff;
}

.aed-cart-pricing .pricing-card-row.curActive .price {
  color: var(--secondary-color);
}

.aed-cart .selected-price {
  color: #e8712b;
  font-size: var(--section-heading);
  font-weight: 600;
  line-height: 40px; /* 125% */
  margin-bottom: 30px;
}
.aed-cart .selected-price .price-line-through {
  color: rgba(0, 0, 0, 0.2);
  font-size: var(--section-heading);
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  text-decoration: line-through;
}

.aed-cart .quntity-adjust {
  display: flex;

  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.aed-cart .quntity-btn-group {
  border-radius: 60px;
  background: #f2f4f7;

  font-size: 18px;
  font-weight: 500;
  display: flex;
  padding: 10px 12px;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}

.aed-cart .quntity-btn-group button {
  background-color: #0000;
  border: 0;
  height: 24px;
  width: 24px;
}

.btn-serve.aed-cart-btn {
  border-radius: 60px;
  background: #e8712b;
  border: 2px solid #e8712b;
  flex: 1;
}

.discount-banner {
  border-radius: 10px;
  background: #f2f4f7;
  padding: var(--card-padding);
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}

.discount-banner strong {
  font-size: var(--secondary-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 116.667% */
}
.discount-banner p {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}

.benefits-accordion {
  height: 100%;
  margin-bottom: 42px;
}

.benefits-accordion .benefits-item-wrap {
  overflow: hidden;

  margin-bottom: 15px;
  border-bottom: 2px solid rgba(51, 51, 51, 0.2);

  transition: background 0.3s;
}

.benefits-accordion .benefits-item {
  /* margin-bottom: 8px; */
}

.benefits-accordion .benefits-header {
  color: var(--primary-color);
  background: transparent;

  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  font-size: var(--tertiary-heading);
  font-weight: 600;
  border: none;
}
.benefits-accordion .benefits-header h5 {
  color: var(--secondary-color);
  font-size: var(--secondary-heading);
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.48px;
  margin-bottom: var(--margin-bottom-1);
}
.benefits-accordion .benefits-header:hover {
}

.benefits-accordion .benefits-icon {
  width: 30px;
}

.benefits-accordion .benefits-content {
  color: var(--tertiary-color);
  font-size: var(--imp-para-text);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  /* transition: max-height 0.3s ease-in-out, padding 0.3s, opacity 0.3s; */

  line-height: 28px;

  padding: 0;
  transition:
    max-height 0.5s ease,
    opacity 0.3s ease,
    padding 0.3s ease;
}

.benefits-accordion .benefits-open {
  max-height: 100%;
  padding: 0 0 20px;
  opacity: 1;

  max-height: 1000px;
}

/* .benefits-accordion .benefits-content {

}

.benefits-accordion .benefits-open {

} */

.benefits-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    padding 0.3s ease;
}

/* .benefits-content.active {
  opacity: 1;
  padding: 10px 0 20px;
} */

/* .benefits-accordion .benefits-content p {
  margin-bottom: var(--margin-bottom-1);
} */

.benefits-accordion .benefits-content p {
  margin-bottom: 0; /* remove margin */
  padding-bottom: var(--margin-bottom-1);
}
.benefits-accordion .benefits-content strong {
  color: #333333;

  font-size: var(--tertiary-heading);
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 20px */
  letter-spacing: -0.4px;

  line-height: 28px; /* 155.556% */
}
.benefits-accordion .benefits-content ul {
  list-style: disc;
  margin-left: 24px;
}

.benefits-item-wrap .benefits-icon img {
  transition: all 0.3s ease-in-out;
}

.benefits-item-wrap.benefits-item-open .benefits-icon img {
  transform: rotate(180deg);
}

.review-section h4 {
  color: #4f6b18;
  text-align: center;

  font-size: var(--section-heading);
  font-weight: 700;
  line-height: 100%; /* 32px */
  letter-spacing: -0.64px;
  margin-bottom: 30px;
}

.review-cards .review-card {
  padding: var(--card-padding);
  border-radius: 16px;
  border: 1px solid rgba(51, 51, 51, 0.2);
  margin-bottom: var(--margin-bottom-1);
}

.review-cards .review-card .review-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.review-cards .review-card .review-profile {
  display: flex;
  gap: 12px;
}
.review-card .review-profile img {
  width: 41px;
  height: 41px;
  border-radius: 50%;
}

.review-card .review-profile .reviewer-name {
  font-size: var(--para-text);
  font-weight: 500;
  line-height: 20px; /* 125% */
}
.review-card .review-profile .review-date {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px; /* 125% */
}
.review-card .review-content .review-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}
.review-card .review-content .review-rating img {
  width: 20px;
  height: 20px;
}
.review-card .review-text {
  color: var(--tertiary-color);
  font-size: var(--para-text);
  line-height: 26px; /* 162.5% */
}

.why-section {
  background-color: var(--foreground-color);
}
.why-section h4 {
  text-align: center;

  font-size: var(--section-heading);

  font-weight: 600;
  line-height: 100%; /* 32px */
  letter-spacing: -0.64px;
  margin-bottom: 60px;
}
.why-section .why-card {
}
.why-section .why-card img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: var(--margin-bottom-1);
}
.why-section .why-card h5 {
  font-size: var(--secondary-heading);
  font-weight: 600;
  line-height: 100%; /* 24px */
  letter-spacing: -0.48px;
  margin-bottom: var(--margin-bottom-1);
}
.why-section .why-card p {
  font-size: var(--imp-para-text);

  font-weight: 400;
  line-height: 160%; /* 32px */
  letter-spacing: -0.4px;
}

/* ########################################## */
/* ########### collaborate Preview  ################ */
/* ########################################## */
.collaborate-page h4 {
  font-size: var(--section-heading);
  font-weight: 600;
  line-height: 100%; /* 32px */
  letter-spacing: -0.64px;
  margin-bottom: 30px;
}
.collaborate-page .collaborate-bg {
  background-image: url("/assets/images/Handshaking_doctor.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  overflow: hidden;
}

.collaborate-form {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 26px 35px;
  margin: 24px 26px;
}
.collaborate-form .form-row {
  margin-bottom: 19px;
}

/* ########################################## */
/* ########### Login Page  ################ */
/* ########################################## */

.section-login {
  background: #ffffff;
}

.login-container {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 19px 0;
}
.login-container .login-logo {
  width: 164px;
  margin: 0 auto;
  margin-bottom: var(--margin-bottom-1);
}

.login-container h4 {
  font-size: var(--section-heading);
  font-weight: 600;
  line-height: 100%; /* 32px */
  letter-spacing: -0.64px;
  margin-bottom: var(--margin-bottom-1);
}
.login-container h6 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: var(--margin-bottom-1);
  line-height: 1.4;
}
.login-container a {
  font-weight: 600;
}
.login-container .login-hero {
  width: 50%;
  height: 100vh;
  position: fixed;
  left: 25%;
  top: 52%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .login-container .login-hero .login-hero-img{
} */
.login-container .login-hero img {
  padding: 20px;
  object-fit: contain;
  aspect-ratio: 10 / 9;
}

.login-container .login-form {
  padding: 0 36px;
  margin-left: 50%;
  width: 46%;
  min-height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.login-container .register-text {
  font-size: var(--imp-para-text);
  font-weight: 400;
}
.login-container .login-form .btn-serve {
  padding: 11px 16px;
  min-width: 271px;
  margin: 0 auto;
  line-height: 1.4;
  margin-bottom: var(--margin-bottom-1);
}
.login-container .form-row {
  margin-bottom: var(--margin-bottom-1);
}

.login-container .login-options {
  font-size: var(--imp-para-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  margin-bottom: var(--margin-bottom-1);

  gap: 24px;
  flex-wrap: wrap;
}

.login-container .login-options .form-check {
  display: flex;
  align-items: flex-end;
  gap: 5px;
}
.login-container .login-options .form-check-input[type="checkbox"] {
  width: 22px;
  height: 22px;
}

.login-container .login-form ul {
  list-style: disc;
  text-align: left;
  padding-left: 18px;
  font-size: var(--imp-para-text);
  font-weight: 400;
  line-height: 149%; /* 26.82px */
  margin-bottom: var(--margin-bottom-1);
}
.login-container .login-form .otp-inputs {
  display: flex;
  justify-content: center;
  margin-bottom: var(--margin-bottom-1);
  gap: 30px;
}
.login-container .login-form .otp-inputs .otp-input {
  text-align: center;
  width: 44px;
  height: 44px;
  font-size: 24px;
  padding: 8px;
}
.login-form .login-options.register-options {
  font-weight: 400;
}
.login-form .login-options.register-options a {
  font-weight: 600;
}

.login-container .login-options.register-options .form-check {
  display: flex;
  align-items: flex-start;
}
.login-container .login-options.register-options .form-check label {
  margin-top: 4px;
  text-align: left;
  margin-left: 16px;
}

/*  */
.success-modal {
  text-align: center;
}
.success-modal.modal {
  --bs-modal-width: 499px;
}
.success-modal .modal-title {
  font-size: var(--section-heading);
  font-weight: 600;
  letter-spacing: -0.64px;
}
.success-modal .modal-body {
  padding: 32px 67px;
}
.success-modal p {
  font-size: 18px;
  margin-bottom: 15px;
}

.success-modal .btn-serve {
  margin: 0 auto;
  padding: 12px 84px;
  line-height: 1.4;
}

/* ########################################## */
/* ########### Dashboard Styles  ################ */
/* ########################################## */
.dashWrapper {
  padding: 37px 0;
}
.dashWrapper .dashMenu ul {
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.dashWrapper .dashMenu {
  margin-bottom: 30px;
}

.dashWrapper .dashMenu ul li {
  flex: 1;
}
.dashWrapper .dashMenu ul a {
  display: flex;
  border: 1px solid #fff;
  background-color: #edf0e8;
  /* padding: 12px 16px; */
  padding: var(--card-padding);
  line-height: 1.6;
  flex: 1;
  align-items: center;
  justify-content: center;
  font-size: var(--imp-para-text);
  font-weight: 700;
  transition: background-color 0.3s ease-in-out;
}
.dashWrapper .dashMenu ul a.active,
.dashWrapper .dashMenu ul a:hover {
  background-color: var(--secondary-color);
  color: #fff;
  text-decoration: none;
}

.dashInnerWrp .dashHeadWrp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  margin-bottom: 16px;
}

.dashHeadWrp .dashHead h3 {
  font-size: var(--section-heading);
  font-weight: 700;
  line-height: 130%; /* 41.6px */
  letter-spacing: -0.64px;
}
.dashHeadWrp .walletHead {
  font-size: var(--secondary-heading);
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.48px;
}

.dashWrapper .dashInnerWrp .dashBtn {
  max-width: 470px;
}

.upcomingCard {
  padding: var(--card-padding);
  border-radius: 10px;
  background: rgba(79, 107, 24, 0.1);
  margin-bottom: var(--margin-bottom-1);
}

.upcomingCard .upcomingCardHead {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--margin-bottom-1);
}
.upcomingCard .upcomingCardHead .upcomingCardRight {
  text-align: right;
}

.upcomingCard .upcomingCardHead h5 {
  font-size: var(--tertiary-heading);
  font-weight: 700;
  line-height: 160%; /* 32px */
  margin-bottom: 0;
}

.upcomingCard .upcomingCardBody {
  background-color: #fff;
  /* padding: 12px 16px; */
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: var(--margin-bottom-1);
}
.upcomingCard .upcomingCardBody .upcomAddonCard {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 16px;
  border-bottom: 2px solid rgba(79, 107, 24, 0.1);
}
.upcomingCard .upcomingCardBody .upcomOrderCard {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
  padding: 12px 16px;
  border-bottom: 2px solid rgba(79, 107, 24, 0.1);
}
.upcomingCard .upcomingCardBody .upcomOrderCard .upcomOrderCardImg {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 370px;
}
.upcomingCard .upcomOrderCard .upcomOrderCardImg img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  overflow: hidden;
}
.upcomingCard .upcomOrderCard .upcomOrderCardImg h6 {
  font-size: var(--tertiary-heading);
  font-weight: 700;
}
.upcomingCard .upcomOrderCard .order-qty {
  color: rgba(51, 51, 51, 0.6);
  font-size: var(--imp-para-text);
  font-weight: 600;
  line-height: 28px; /* 155.556% */
}
.upcomingCard .upcomOrderCard .order-price {
  color: #333333;
  font-size: var(--tertiary-heading);
  font-weight: 400;
}
.upcomingCard .upcomOrderCardFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  color: #e8712b;
  font-size: var(--tertiary-heading);
  font-weight: 700;
}

.upcomingCard .upcomingCardBody .upcomAddonCardFooter {
  padding: 12px 16px;
  font-size: var(--imp-para-text);
  font-style: normal;
  font-weight: 500;
  color: rgba(51, 51, 51, 0.6);
}
.upcomingCard .upcomingCardBody .upcomAddonCardLeft {
  width: 85px;
  height: 85px;
  border-radius: 10px;
  overflow: hidden;
}
.upcomingCard .upcomingCardBody .upcomAddonCardRight {
  flex: 1;
  font-size: var(--imp-para-text);
  font-weight: 500;
}
.upcomingCard .upcomingCardBody .upcomAddonCardRight h4 {
  font-size: var(--secondary-heading);
  font-weight: 700;
}
.upcomingCard .upcomingCardFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.upcomingCard .upcomingCardFooter > * {
  flex: 1;
  max-width: 50%;
}

.summery-notification {
  margin-bottom: var(--margin-bottom-1);
}

.summery-notification-modal .modal-title {
  font-size: var(--section-heading);
  font-weight: 700;
  line-height: 130%; /* 41.6px */
  letter-spacing: -0.64px;
}
.summery-notification .notify-details {
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  background: #fff;
  padding: 16px 20px;
  display: flex;
  gap: 24px;
}
.summery-notification .notify-details h6 {
  font-size: var(--tertiary-heading);
  font-weight: 700;
}
.summery-notification .notify-details p {
  font-size: var(--imp-para-text);
  font-weight: 400;
}
.summery-notification .notify-details small {
  font-size: var(--small-text);
  font-weight: 400;
  min-width: 70px;
}
.summery-notification .notify-details .check-circle {
  display: inline-block;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: #d6d6d6;
  margin-top: 5px;
}

.summery-notification.active {
}
.summery-notification.active .notify-details {
  background-color: #4f6b181a;
}
.summery-notification.active .notify-details .check-circle {
  background-color: var(--secondary-color);
}

.dash-notify-page .notify-details-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  gap: 24px;
}
.dash-notify-page .notify-date {
  color: rgba(51, 51, 51, 0.6);
}

.dashContent .profileCard {
  border-radius: 10px;
  background: #ffffff;
  padding: 18px;
  margin-bottom: 24px;
}

.dashContent .profileCard .profileCard-content {
  max-width: max-content;
  margin: 0 auto;
}
.dashContent .profileCard-name {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px; /* 116.667% */
  margin-bottom: 12px;
}
.dashContent .profileCard-details {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: var(--margin-bottom-1);
}
.dashContent .profileCard-details a {
  font-size: var(--para-text);
}

.serve-nav-tabs {
  border-bottom: 1px solid #ffffff;
}

.serve-nav-tabs .nav-item {
  flex: 1;
}

.serve-nav-tabs .nav-link {
  width: 100%;
  color: rgba(51, 51, 51, 0.6);
  font-size: var(--imp-para-text);
  font-weight: 600;
  line-height: 28px; /* 155.556% */
  padding: 9px 30px;
}
.serve-nav-tabs .nav-link.active {
  border-bottom: 1px solid #333333;
  color: var(--secondary-color);
}

.profile-nav-card {
  border-radius: 10px;
  border: 1px solid #ffffff;
  padding: 19px 21px;
  margin-top: var(--margin-bottom-1);
}
.profile-nav-card .row-mb {
  row-gap: 20px;
}

.profile-nav-card .promo-check .form-check-input {
  width: 20px;
  height: 20px;
}

.btns-tab-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btns-tab-container .form-label,
.profile-nav-conatiner .form-check-label {
  color: var(--secondary-color);
  font-size: var(--para-text);
  font-weight: 700;
  margin-bottom: 0;
}

.doc-checkbox-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.doc-checkbox-container .form-label {
  margin-bottom: 0;
  font-weight: 700;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 16px;
}

.checkbox-conatiner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.checkbox-conatiner .form-label {
  font-size: var(--para-text);
  font-weight: 700;
  margin-bottom: 0;
}

.btns-tab-container .btns,
.address-modal .btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.btns-tab-container .btns button,
.address-modal .btns button {
  font-size: var(--para-text);
  border: 1px solid #d6d6d6;
  background-color: #fff;
  color: rgba(51, 51, 51, 0.6);
  padding: 12px 16px;
  border-radius: 108px;
  min-width: 85px;
}
.btns-tab-container .btns button.active,
.address-modal .btns button.active {
  border: 1px solid var(--secondary-color);
  background-color: var(--secondary-color);
  color: #fff;
}

.image-upload-box {
  position: relative;
  min-height: 50px;
  height: 100%;
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.image-upload-box .upload-box {
  text-align: center;
  color: #a08775;
  background-color: #fff;
  font-size: var(--para-text);
}

.image-upload-box:hover {
  border-color: #8c7b69;
}

.image-upload-box .upload-box {
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-upload-box .preview {
  width: 100%;
  height: 225px;
  object-fit: cover;
  border-radius: 10px;
}

.upload-passport-box .image-upload-box .preview {
  height: 200px;
}

.image-upload-box .upload-text {
  font-weight: 500;
}

.dashContent .profileCard .profileCard-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 27px;
  position: relative;
  transition: all 0.3s ease-in-out;
  height: 225px;
}

.image-upload-box .image-upload-options {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );

  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: all 0.3s ease-in-out;
}

.image-upload-box:hover .image-upload-options {
  display: flex;
  border-radius: 10px;
}

.image-upload-box .image-upload-options img {
  width: 26px;
  height: 26px;
  cursor: pointer;
}

.upload-passport-box {
  height: 194px;
}

.profile-nav-card .address-card {
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  background: #fff;
  padding: 16px 20px;
  margin-bottom: var(--margin-bottom-1);
}
.profile-nav-card .address-card .address-card-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.profile-nav-card .address-card .address-card-header .form-check {
  gap: 8px;
}
.profile-nav-card .address-card .address-card-header h6 {
  font-size: var(--para-text);
  font-weight: 700;
  line-height: 25px; /* 156.25% */
  margin-bottom: 0;
}
.profile-nav-card .address-card .edit-options {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.profile-nav-card .address-card .edit-options .edit-option {
  width: 17px;
  height: 17px;
  padding: 0;
  border: 0;
  background: #0000;
}
.profile-nav-card .address-card .address-card-details p {
  font-size: var(--para-text);
  line-height: 25px; /* 156.25% */
  margin-bottom: 0;
}

.address-modal {
}
.address-modal .modal-dialog {
  --bs-modal-width: 770px;
}
.address-modal .modal-title {
  text-align: center;
}
.address-modal .form-row {
  margin-bottom: var(--margin-bottom-1);
}

.address-modal .btn-serve {
  margin-bottom: 28px;
}
.address-modal .location-map {
  margin-bottom: var(--margin-bottom-1);
}
.address-modal .location-map iframe {
  width: 100%;
  height: 595px;
  border-radius: 10px;
}

.address-modal .btns button {
  min-width: 131px;
}

/* ######################################## */
/* ########## Dashboard Wallet page######### */
/* ######################################## */

.dash-wallet-page {
}

.dash-wallet-page .wallet-balance-card {
  background: rgba(79, 107, 24, 0.1);
  padding: var(--card-padding);
  border-radius: 10px;
  margin-bottom: 24px;
}
.dash-wallet-page .wallet-balance-card h5 {
  font-size: var(--secondary-heading);
  font-weight: 700;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.48px;
  margin-bottom: 0;
}

.dash-wallet-page .wallet-history-title {
  font-size: var(--secondary-heading);
  font-weight: 700;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.48px;
  margin-bottom: var(--margin-bottom-1);
}

.table-responsive {
  border-radius: 10px;
  margin-bottom: var(--margin-bottom-1);
}
.table-responsive .table {
  margin-bottom: 0;
}
/* .dash-wallet-page .table > thead { */
.table > thead {
  border-radius: 10px;
  border: 1px solid rgba(79, 107, 24, 0.1);
  overflow: hidden;

  background: rgba(79, 107, 24, 0.1);
}

/* .dash-wallet-page .table > thead th { */
.table > thead th {
  color: #333333;
  font-size: var(--imp-para-text);
  font-weight: 700;
  line-height: 25px; /* 138.889% */
}

/* .dash-wallet-page .table > tbody { */
.table > tbody {
  border-radius: 10px;
  border: 1px solid rgba(79, 107, 24, 0.1);
  overflow: hidden;
}

/* .dash-wallet-page .table > tbody td { */
.table > tbody td {
  color: #333333;
  font-size: var(--imp-para-text);
  font-weight: 400;
  line-height: 25px; /* 138.889% */
}

/* .dash-wallet-page .table > :not(caption) > * > * { */
.table > :not(caption) > * > * {
  background: #0000;
  background: none;
  padding: var(--card-padding);
}

.dash-reports-page .reports-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.dash-reports-page .reports-header h5 {
  font-size: var(--section-heading);
  font-weight: 700;
  line-height: 130%; /* 41.6px */
  letter-spacing: -0.64px;
  margin-bottom: 0;
}

.report-accordion {
  border-radius: 10px;
  overflow: hidden;
}

.report-accordion .report-item-wrap {
  background: rgba(79, 107, 24, 0.1);

  border-radius: 10px;
  border: 1px solid rgba(79, 107, 24, 0.2);
  margin-bottom: 15px;
  transition: background 0.3s;
}

.report-accordion .report-header {
  color: var(--secondary-color);
  background: transparent;

  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  font-weight: 600;
  border: none;

  padding: var(--card-padding);
}
.report-accordion .report-header h5 {
  margin-bottom: 0;
  font-size: var(--tertiary-heading);
  font-weight: 600;
  letter-spacing: -0.4px;
  text-align: left;
}
.report-accordion .report-header .report-icon.rotated {
  transform: rotate(180deg);
}

.report-accordion .report-content-wrap {
  background-color: #fff;
  overflow: hidden;
  border-radius: 0 0 10px 10px;
}

.report-row {
  border-radius: 108px;
  border: 1px solid rgba(79, 107, 24, 0.1);
  padding: var(--card-padding);

  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--margin-bottom-1);
}
.report-row button {
  width: 20px;
  height: 20px;
  border: 0;
  background: transparent;
}
.report-row .report-name {
  font-size: var(--imp-para-text);
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.report-row .report-date {
  color: rgba(51, 51, 51, 0.6);
  font-size: var(--imp-para-text);
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.report-accordion .report-content {
  padding: var(--card-padding);
  display: none;
  transition: all 0.3s ease-in-out;
}

.report-accordion .report-open {
  max-height: 100%;
  display: block;
  opacity: 1;
}

/* ######################################## */
/* ########## Order Detail Page ######### */
/* ######################################## */

.order-detail-page {
}
.order-detail-page .order-detail-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--margin-bottom-1);
  flex-wrap: wrap;
}
.order-detail-page .order-detail-heading-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.order-detail-page .order-detail-heading h3 {
  font-size: var(--section-heading);
  font-weight: 700;
  line-height: 130%; /* 41.6px */
  letter-spacing: -0.64px;
}
.order-detail-page .order-detail-heading .btn-serve {
  min-width: 258px;
}

.order-remark-cards {
  margin-bottom: 20px;
}
.order-remark-cards > .row {
  row-gap: 20px;
}

.order-detail-page .order-remark-card {
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  background: #fff;
  padding: var(--card-padding);
  height: auto;
  margin-bottom: var(--margin-bottom-1);
}
.order-detail-page .order-remark-card.upload-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
  margin-bottom: var(--margin-bottom-1);
}
.order-detail-page .upload-card p,
.order-detail-page .upload-card a {
  font-size: var(--imp-para-text);
  font-weight: 700;
  line-height: 30px; /* 150% */
}
.order-detail-page .order-remark-card.disabled-card {
  background: rgba(79, 107, 24, 0.1);
  padding: var(--card-padding);
  font-size: var(--imp-para-text);
  font-weight: 700;
  border-color: rgba(79, 107, 24, 0.1);
  line-height: 32px; /* 175% */
}
.order-detail-page .order-remark-card .order-remark-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--imp-para-text);
  font-weight: 700;
  margin-bottom: var(--margin-bottom-1);
}

.order-detail-page .order-remark-label {
  color: rgba(51, 51, 51, 0.6);
  font-size: var(--para-text);
  font-weight: 500;
  line-height: 32px; /* 194.444% */
}
.order-detail-page .order-remark-detail {
  color: #333333;
  font-size: var(--imp-para-text);
  font-weight: 700;
  line-height: 32px; /* 175% */
}

.order-detail-page .order-detail-card {
  border-radius: 10px;
  background: rgba(79, 107, 24, 0.1);
  padding: 24px;
  margin-bottom: var(--margin-bottom-1);
}

.order-detail-page .order-booking-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  border: 1px solid rgba(79, 107, 24, 0.1);
  background-color: #fff;
  padding: var(--card-padding);
  margin-bottom: var(--margin-bottom-1);
  flex-wrap: wrap;
  gap: 16px;
}

.order-detail-page .order-booking-details .order-booking-lable {
  color: rgba(51, 51, 51, 0.6);
  font-size: var(--para-text);
  font-weight: 500;
  margin-bottom: 10px;
}
.order-detail-page .order-booking-details .order-booking-text {
  color: #333333;
  font-size: var(--imp-para-text);
  font-weight: 700;
}
.order-detail-page .order-add-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  border-radius: 10px;
  border: 1px solid rgba(79, 107, 24, 0.1);
  background-color: #fff;
  padding: var(--card-padding);
  margin-bottom: var(--margin-bottom-1);
}
.order-detail-page .order-add-card-left {
  width: 85px;
  height: 85px;
  overflow: hidden;
  border-radius: 10px;
}
.order-detail-page .order-add-card-right {
  flex: 1;
}
.order-detail-page .order-add-card-right h4 {
  font-size: var(--tertiary-heading);
  font-weight: 700;
}
.order-detail-page .order-add-card-right h6 {
  font-size: var(--para-text);
  font-weight: 500;
}

.order-detail-page .order-add-card .order-add-card-foot {
  display: flex;
  align-items: center;
  padding-top: 16px;
  justify-content: space-between;
  width: 100%;
  border-top: 2px solid rgba(79, 107, 24, 0.1);
}
.order-detail-page
  .order-add-card
  .order-add-card-foot
  .order-add-card-foot-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.order-detail-page .order-add-card .order-add-card-foot img {
  width: 44px;
  height: 44px;
}
.order-detail-page .order-add-card .order-add-card-foot h6 {
  font-size: var(--imp-para-text);
  margin-bottom: 0;
  font-weight: 700;
}
.order-detail-page .order-add-card .order-add-card-foot .order-price {
  font-size: var(--para-text);
}

/* ######################################## */
/* ########## Order Progress Bar CSS ######### */
/* ######################################## */

.order-progress-container {
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  background: #fff;
  padding: 36px 24px 24px;
  height: 100%;
  margin-bottom: var(--margin-bottom-1);
}

.order-progress-bar {
  position: relative;
}
.order-progress-bar .progress-line-container {
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: 0;
  transform: translateY(-50%);
  margin-top: 8px;
}
.order-progress-bar .progress-line {
  height: 100%;
  border-radius: 2px;
  background-color: var(--secondary-soft-color);
}

.order-progress-bar .progress-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  /* z-index: 1; */
}
.order-progress-bar .progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.order-progress-bar .progress-step:first-child {
  align-items: flex-start;
}
.order-progress-bar .progress-step:last-child {
  align-items: flex-end;
}

.order-progress-bar .round-step {
  border: 1px solid var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  transition: all 0.3s ease;
  background-color: #fff;
}
.order-progress-bar .round-step.complete {
  background-color: var(--secondary-color);
  box-shadow: inset 0 0 0 1px #fff;
}
.order-progress-bar .round-step.active {
}

.order-progress-bar .step-text {
  margin-top: 12px;
  text-align: center;
  color: var(--secondary-soft-color);
  font-size: 18px;
  font-weight: 700;
}
.order-progress-bar .step-text.completed {
  color: var(--secondary-color);
}

/* #################################### */

.order-deatil-summery h4 {
  font-size: var(--secondary-heading);
  font-weight: 700;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.48px;
}

.change-password-modal {
}

.reschedule-modal {
}
.reschedule-modal .note {
  border-radius: 20px;
  border: 1px solid #d6d6d6;
  background: #fff;
  padding: var(--card-padding);
  margin-bottom: var(--margin-bottom-1);
}
.reschedule-modal .note a {
  font-weight: 600;
}
.reschedule-modal h6 {
  font-size: var(--imp-para-text);
  font-weight: 600;
}
.reschedule-modal h6,
.reschedule-modal label {
  font-size: var(--imp-para-text);
  font-weight: 600;
  line-height: 28px; /* 155.556% */
  margin-bottom: var(--margin-bottom-1);
}

.add-ons-modal .modal-title {
  text-align: center;
}
.add-ons-modal .search-box {
  background: #fff;
}
.add-ons-modal .single-link {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px; /* 155.556% */
  margin-bottom: var(--margin-bottom-1);
}

.your-rating-card {
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  background: #fff;
  padding: 25px 29px;
  height: 100%;
}
.your-rating-card label {
  color: var(--secondary-soft-color);
  font-size: var(--para-text);

  font-weight: 500;
  line-height: 35px; /* 194.444% */
}
.your-rating-card .rated-stars {
  margin: 10px 0;
}
.your-rating-card .star-box {
  padding-right: 10px;
}

.your-rating-card p {
  font-size: var(--imp-para-text);
  font-weight: 700;
  line-height: 32px; /* 145.833% */
}

.check-up-card {
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  padding: var(--card-padding);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.check-up-card .check-up-card-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.check-up-card .check-up-card-content {
  flex-grow: 1;
  display: flex;
  gap: 16px;
}
.check-up-card .check-up-card-content h6 {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}
.check-up-card .check-up-card-content p {
  color: var(--secondary-soft-color);
  font-size: var(--para-text);
  font-weight: 500;
  line-height: 25px;
}
.check-up-card .custom-checkbox input {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.rate-service-modal {
  text-align: center;
}
.rate-service-modal p {
  font-size: var(--imp-para-text);
  font-weight: 700;
  line-height: 130%; /* 23.4px */
  letter-spacing: -0.36px;
  margin-bottom: var(--margin-bottom-1);
}
.rate-service-modal .rated-stars {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--margin-bottom-1);
}
.rate-service-modal .rated-stars .star-box {
  padding: 5px;
}

.modal.review-submitted-modal {
  --bs-modal-width: 500px;
  text-align: center;
}

.review-submitted-modal .modal-body {
  padding: 36px 48px;
}
.review-submitted-modal p {
  font-size: 18px;
  margin-bottom: var(--margin-bottom-1);
}
.review-submitted-modal .btn-serve {
  min-width: 215px;
  margin: 0 auto;
}

/*  */

.upload-id-modal {
  text-align: center;
}
.upload-id-modal .form-check-label {
  font-size: var(--para-text);
  font-weight: 700;
}
.upload-id-modal .row {
  row-gap: 20px;
  margin-bottom: var(--margin-bottom-1);
}
.upload-id-modal .image-upload-box {
  height: 182px;
}

.member-accordion {
}

.member-accordion .member-item-wrap {
  overflow: hidden;
  padding: var(--card-padding);
  border-radius: 10px;
  border: 1px solid rgba(79, 107, 24, 0.2);
  background: #fff;
  margin-bottom: var(--margin-bottom-1);

  cursor: pointer;
  transition: background 0.3s;
}

.member-accordion .member-header {
  background: transparent;
  color: var(--secondary-color);
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  font-size: 20px;
  font-weight: 600;
  border: none;
}
.member-accordion .member-header h5 {
  font-size: var(--imp-para-text);
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 150% */
  margin-bottom: 0;
}

.member-accordion .member-icon {
  margin-right: 10px;
  font-size: 20px;
}

.member-accordion .member-content {
  font-size: 18px;
  font-weight: 700;

  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.3s ease-in-out,
    padding 0.3s,
    opacity 0.3s;
}

.member-accordion .member-content {
  color: #333333;
  font-size: 20px;
  font-weight: 700;
}

.member-accordion .member-open {
  max-height: 100%;
  padding: 4px 0;
  opacity: 1;
}

/* ########################################### */
/* ######## Refer And Earn Page ############## */
/* ########################################### */
.refer-and-earn-page {
}
.refer-and-earn-page .earn-health-img {
  display: flex;
  height: 100%;
}
.refer-and-earn-page .earn-health-container {
  border-radius: 10px;
  background: rgba(79, 107, 24, 0.1);
  padding: var(--card-padding);
  margin-bottom: var(--margin-bottom-1);
}
.refer-and-earn-page .earn-health-content {
  border-radius: 10px;
  border: 1px solid rgba(79, 107, 24, 0.1);
  background: #fff;
}
.refer-and-earn-page .earn-health-content-text {
  padding: var(--card-padding);
}
.refer-and-earn-page .earn-health-content-text p {
  font-size: var(--tertiary-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 30px */
  margin-bottom: 22px;
}
.refer-and-earn-page .earn-health-content-text h6 {
  font-size: var(--tertiary-heading);
  font-weight: 700;
  margin-bottom: 15px;
}
.refer-and-earn-page .earn-health-content-text .note {
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  background: rgba(255, 255, 255, 0.5);
  padding: 16px;
  margin-bottom: var(--margin-bottom-1);
}
.refer-and-earn-page .earn-health-content-text .note p {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%; /* 21px */
  margin-bottom: 0;
}

.refer-history-table h5 {
  font-size: var(--secondary-heading);
  font-weight: 700;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.48px;
}

/* ########################################### */
/* ######## Helpn Desk Page ############## */
/* ########################################### */

.help-desk-page .help-notify {
  border-radius: 10px;
  background: #ffffff;
  padding: 20px;
  margin-bottom: var(--margin-bottom-1);
}
.help-desk-page .help-notify h5 {
  font-size: var(--secondary-heading);
  font-weight: 700;
  margin-bottom: var(--margin-bottom-1);
}
.help-desk-page .help-notify p {
  font-size: var(--para-text);
}

.tickets-nav-card {
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  background: #fff;
  padding: 16px 20px;
  margin-bottom: var(--margin-bottom-1);
  transition: all 0.3s ease-in-out;
}
.tickets-nav-card:hover {
  cursor: pointer;
  background: var(--background-color);
}
.tickets-nav-card .tickets-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tickets-nav-card .ticketId {
  font-size: var(--tertiary-heading);
  font-weight: 700;
  margin-bottom: 15px;
}
.tickets-nav-card .ticketId span {
  font-weight: 400;
}
.tickets-nav-card .ticketId-detail {
  font-weight: 700;
  font-size: var(--imp-para-text);
  line-height: 25px; /* 138.889% */
}
.tickets-nav-card .ticketId-detail span {
  font-weight: 400;
}

.help-desk-page .ticket-notify {
  border-radius: 10px;
  background: #ffffff;
  padding: var(--card-padding);
  margin-bottom: var(--margin-bottom-1);
}
.help-desk-page .ticket-notify .ticket-notify-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.help-desk-page .ticket-notify-heading h5,
.help-desk-page .ticket-notify-heading a {
  font-size: var(--tertiary-heading);
  font-weight: 700;
  margin-bottom: 15px;
}

.help-desk-page .ticket-notify-body p {
  font-size: var(--imp-para-text);
  font-weight: 700;
  line-height: 25px; /* 138.889% */
  margin-bottom: 5px;
}
.help-desk-page .ticket-notify-body span {
  font-weight: 400;
}
.dash-faq-page .modal-title {
  color: var(--primary-color);
}
/* 
.dash-faq-page .faq-accordion .faq-item-wrap {
  border: 1px solid rgba(51, 51, 51, 0.2);
}
.dash-faq-page .faq-accordion .faq-item-wrap.faq-item-open {
  border-color: var(--secondary-color);
}
.dash-faq-page .faq-accordion .faq-header,
.dash-faq-page .faq-accordion .faq-content {
  color: var(--secondary-color);
}

.dash-faq-page .faq-accordion .faq-icon {
  border: 2px solid;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  line-height: 1;
  padding: 1px;
} */

.contact-us-page h4 {
  font-size: var(--section-heading);
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.64px;
  margin-bottom: 30px;
}

.contact-us-page .form-row {
  margin-bottom: 19px;
}

.contact-us-page .contact-us-box {
  display: flex;
}
.contact-us-page .contact-us-img {
  width: 50%;
  overflow: hidden;
  border-radius: 10px;
}

.contact-us-page .contact-us-col {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
}

.contact-us-page .contact-us-form {
  width: 50%;
  padding: 24px 60px;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
}

.schedule-apoint-modal .schedule-apoint-form h6 {
  font-size: var(--imp-para-text);
  font-weight: 600;
  line-height: 28px; /* 155.556% */
  margin-bottom: 0;
}
.schedule-apoint-modal .schedule-apoint-form .header-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: var(--margin-bottom-1);
  font-size: 18px;
}
.schedule-apoint-modal .schedule-apoint-form p {
  font-size: 14px;
}
.schedule-apoint-modal .schedule-apoint-form a {
  color: var(--primary-color);
  font-weight: 700;
}

.schedule-apoint-modal #custom-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.schedule-apoint-modal .schedule-apoint-form .form-check-label {
  font-size: var(--imp-para-text);
  font-weight: 700;
  line-height: 130%; /* 23.4px */
  letter-spacing: -0.36px;
}
.schedule-apoint-modal .schedule-apoint-form .search-box {
  background-color: #fff;
}
.schedule-apoint-modal .schedule-apoint-form .show-more-btn {
  color: #4f6b18;
  text-align: center;
  display: block;
  font-size: var(--imp-para-text);
  font-weight: 700;
  line-height: 28px; /* 155.556% */
  /* text-decoration: underline; */
}

.schedule-apoint-modal .success-container {
  color: #4f6b18;
  border-radius: 10px;
  padding: 16px 32px;
  background-color: #728b411a;
  margin-bottom: var(--margin-bottom-1);
}
.schedule-apoint-modal .success-container ul {
  list-style: disc;
  font-size: var(--para-text);
  font-weight: 500;
  line-height: 28px; /* 155.556% */
}

/* ############################################## */
/* ############ Section Checkout ################ */
/* ############################################## */

.section-checkout .header-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: var(--margin-bottom-1);
}
.section-checkout p {
  font-size: var(--imp-para-text);
  font-weight: 600;
  line-height: 28px; /* 155.556% */
}

.section-checkout h6 {
  font-size: var(--imp-para-text);
  font-weight: 600;
  line-height: 28px; /* 155.556% */
  margin-bottom: 0;
}
.section-checkout .header-detail p {
  font-weight: 500;
}
.section-checkout .header-detail a {
  color: #4f6b18;
  font-weight: 700;
  line-height: 28px;
}
.section-checkout .form-check-input {
  width: 20px;
  height: 20px;
}

.section-checkout .form-check-label {
  font-size: var(--imp-para-text);
  font-weight: 700;
  line-height: 130%; /* 23.4px */
  letter-spacing: -0.36px;
}
.section-checkout .location-map {
  width: 100%;
  height: 208px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: var(--margin-bottom-1);
}

.checkout-pay-card {
  border-radius: 10px;
  background: rgba(79, 107, 24, 0.1);
  padding: var(--card-padding);
  overflow: hidden;
  margin-bottom: var(--margin-bottom-1);
}
.checkout-pay-card p {
  font-size: var(--para-text);
  font-weight: 400;
}
.checkout-pay-card a {
  font-size: 18px;
  font-weight: 700;
  line-height: 35px; /* 194.444% */
}

.your-services-card {
  border-radius: 10px;
  border: 1px solid rgba(79, 107, 24, 0.2);
  padding: 32px 28px;
  margin-bottom: var(--margin-bottom-1);
}

.testing-card {
  border-radius: 10px;
  border: 1px solid rgba(79, 107, 24, 0.2);
  padding: var(--card-padding);
  margin-bottom: 10px;
}

.testing-card .testing-time {
  font-size: var(--para-text);
  font-weight: 700;
  padding-right: 12px;
}

.testing-card .testing-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.testing-card .testing-time span {
  color: var(--secondary-soft-color);
  font-weight: 500;
}
.testing-card .testing-member-detail {
  margin-bottom: 10px;
  font-size: var(--imp-para-text);
  font-weight: 700;
}
.testing-card .testing-trash {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.testing-card .testing-card-body {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testing-card .testing-card-body .testing-card-img {
  width: 85px;
  height: 85px;
  border-radius: 10px;
  overflow: hidden;
}
.testing-card .testing-card-body-content {
  flex: 1;
}
.testing-card .testing-card-body-content h4 {
  font-size: var(--imp-para-text);
  font-weight: 700;
}
.testing-card .testing-card-body-content .content-qtn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testing-card .content-qtn {
  font-size: var(--para-text);
}
.testing-card .content-qtn .price-line-through {
  display: inline-block;
  color: var(--secondary-soft-color);
  text-decoration: line-through;
}
.testing-card .quntity-btn-group {
  display: flex;
  gap: 10px;
}
.testing-card .quntity-btn-group .qtn {
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testing-card .quntity-btn-group button {
  border: 0;
  background-color: #0000;
  width: 20px;
}
.testing-card .testing-card-body-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  font-size: 18px;
  font-weight: 700;
}
.testing-card .testing-card-body-footer p span {
  color: var(--secondary-soft-color);
  font-weight: 500;
}
.check-up-card-deletable {
  border-radius: 10px;
  border: 1px solid rgba(79, 107, 24, 0.1);
  background: #fff;
  overflow: hidden;
  padding: var(--card-padding);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: var(--margin-bottom-1);
}

.check-up-card-deletable .check-up-deletable-icon {
  width: 60px;
  height: 60px;
}
.check-up-card-deletable .check-up-deletable-content {
  flex-grow: 1;
  display: flex;
  gap: 16px;
}
.check-up-card-deletable .check-up-deletable-content h6 {
  font-size: var(--tertiary-heading);
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 10px;
}
.check-up-card-deletable .check-up-deletable-content p {
  font-size: var(--imp-para-text);
  font-weight: 500;
}

.check-up-card-deletable .check-up-deletable-btn {
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.promocode-card {
  border-radius: 10px;
  border: 1px solid rgba(79, 107, 24, 0.2);
  margin-bottom: var(--margin-bottom-1);
}
.promocode-card .promocode-header {
  border-bottom: 1px solid rgba(79, 107, 24, 0.2);
  padding: var(--card-padding);

  display: flex;
  align-items: center;
  justify-content: space-between;
}
.promocode-card .promocode-header h6 {
  color: var(--secondary-soft-color);
  font-size: var(--para-text);
  font-weight: 700;
  line-height: 35px; /* 218.75% */
}
.promocode-card .promocode-header h6.applied {
  color: var(--secondary-color);
}
.promocode-card .promocode-header a {
  font-size: var(--para-text);
  font-weight: 700;
  line-height: 35px;
}

.promocode-card .promocode-body {
  color: #333333;
  text-align: center;
  padding: var(--card-padding);
  font-size: var(--para-text);
  font-weight: 700;
  line-height: 24px; /* 218.75% */
}

.checkout-summery {
  border-radius: 10px;
  border: 1px solid rgba(79, 107, 24, 0.2);
  padding: var(--card-padding);
  margin-bottom: var(--margin-bottom-1);
}

.checkout-summery .checkout-summery-header {
  font-size: var(--section-heading);
  font-weight: 700;
  line-height: 130%; /* 41.6px */
  letter-spacing: -0.64px;
  margin-bottom: 10px;
}
.checkout-summery .checkout-summery-row {
  color: #333333;
  font-size: var(--imp-para-text);
  font-weight: 700;
  line-height: 36px; /* 200% */

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-page .terms-check .form-check {
  align-items: flex-start;
  margin-bottom: var(--margin-bottom-1);
}
.checkout-page .terms-check .form-check-input {
  margin-top: 8px;
}
.checkout-page .terms-check .form-check-label {
  font-size: var(--imp-para-text);
  font-weight: 400;
  line-height: 30px;
}
.checkout-page .terms-check .form-check-label a {
  font-weight: 700;
}

.section-order-received {
  text-align: center;
}
.section-order-received {
  font-size: var(--section-heading);
  font-weight: 700;
  line-height: 130%; /* 41.6px */
  letter-spacing: -0.64px;
}
.section-order-received img {
  width: 300px;
  margin-bottom: 32px;
}

.section-order-received h6 {
  font-size: var(--section-heading);
  font-weight: 700;
  line-height: 130%; /* 41.6px */
  letter-spacing: -0.64px;
}
.section-order-received p {
  color: var(--tertiary-color);
  font-size: var(--section-sub-heading);
  line-height: 180%;
  letter-spacing: -0.56px;
  margin-bottom: 32px;
}

.section-order-received button {
  min-width: 569px;
  margin: 0 auto;
}

.view-promocodes-modal .promocode-card {
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  padding: var(--card-padding);

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.view-promocodes-modal .promocode-card-details h6 {
  font-size: var(--para-text);
  font-weight: 700;
  margin-bottom: 8px;
}
.view-promocodes-modal a {
  font-size: var(--para-text);
  font-weight: 700;
  margin-bottom: 8px;
}
.view-promocodes-modal .promocode-card-details a {
  font-size: 14px;
}

.view-promocodes-modal .promocode-card-details p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
}

.section-promocode-page {
}
.section-promocode-page .promocode-id-container {
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  padding: var(--card-padding);
  margin-bottom: var(--margin-bottom-1);
}
.section-promocode-page .promocode-id {
  background-color: rgba(79, 107, 24, 0.2);
  border-radius: 10px;
  padding: var(--card-padding);
  text-align: center;
}
.section-promocode-page .promocode-id-container .promocode-id h2 {
  color: #e8712b;
  font-size: var(--section-heading);
  font-weight: 700;
  letter-spacing: -0.64px;

  margin-bottom: 32px;
}
.section-promocode-page .promocode-id-container .promocode-id p {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.4px;
}

.section-promocode-page .promocode-id-container h2 {
  font-size: var(--section-heading);
  font-weight: 700;
  letter-spacing: -0.4px;
}
.section-promocode-page .promocode-id-container p {
  color: rgba(51, 51, 51, 0.6);
  font-size: var(--tertiary-heading);
  font-weight: 400;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}
.section-promocode-page .promocode-id-container span {
  color: rgba(51, 51, 51, 0.6);
  font-size: var(--small-text);
  font-weight: 400;
  letter-spacing: -0.28px;
  margin-bottom: 12px;
}
.section-promocode-page .report-content p {
  font-size: var(--imp-para-text);
}

.your-order-modal .testing-card {
  background: #ffffff;
  margin-bottom: var(--margin-bottom-1);
}
.your-order-modal h4 {
  font-size: 24px;
  font-weight: 600;
}
.your-order-modal .quntity-btn-group {
  background: #fff;
  align-self: stretch;
  border-radius: 60px;
  padding: 0 10px;
}

.your-order-modal .testing-card-body-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.section-text-contant h3 {
  font-size: var(--section-heading);
  font-weight: 700;
  line-height: 130%; /* 41.6px */
  letter-spacing: -0.64px;
  margin-bottom: var(--margin-bottom-1);
}

.section-text-contant h4 {
  font-size: var(--secondary-heading);
  font-weight: 700;
  line-height: 30px; /* 125% */
  letter-spacing: 0.48px;
  margin-bottom: var(--margin-bottom-1);
}
.section-text-contant .order-list {
  margin-bottom: var(--margin-bottom-1);
}
.section-text-contant p,
.section-text-contant li {
  font-size: var(--secondary-heading);
  font-weight: 400;
  line-height: 30px; /* 125% */
  letter-spacing: 0.48px;
}

.section-about .about-img {
  margin-bottom: var(--margin-bottom-1);
}

.section-about .about-row {
  margin-bottom: var(--margin-bottom-1);
}
.section-about ul {
  margin-bottom: var(--margin-bottom-1);
}

.section-text-contant ul {
  list-style: disc;
  padding-left: 2rem;
}
.custom-radio-circle {
  width: 18px;
  height: 18px;
  border: 2px solid #888;
  border-radius: 50%;
  margin-top: 6px;
  position: relative;
  transition: border 0.2s;
}

.custom-radio-circle.active {
  border-color: #007bff;
}

.custom-radio-circle.active::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  background: #007bff;
  border-radius: 50%;
}

.menu4-container {
  width: 100%;
}

.menu4-container {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px;
}

.nav-wrapper ul.nav-links > li {
  position: relative;
}
/* .pricing-card-row {
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: border-color 0.2s, background-color 0.2s;
}

.pricing-card-row.curActive {
  border-color: #007bff;
  background-color: #f0f8ff;
} */

.price-line-through {
  text-decoration: line-through;
  font-size: 0.9rem;
}
.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  position: relative;
}

.nav-item {
  position: relative;
}

.nav-button {
  background: none;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
}

.dropdown-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ccc;
  z-index: 10;
  min-width: 180px;
}

.dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

.dropdown-item {
  padding: 10px 16px;
  cursor: pointer;
}

.dropdown-item:hover {
  background: #f0f0f0;
}

.modal.delete-confirm-modal {
  --bs-modal-width: 500px;
}
.delete-confirm-modal .delete-options {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.delete-confirm-modal .modal-title {
  margin-bottom: 24px;
}
.delete-confirm-modal .delete-options button {
  flex: 1;
  flex-shrink: 0;
  min-width: 140px;
}

.section-not-found {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.section-not-found img {
  width: 300px;
  margin-bottom: 32px;
  text-align: center;
}
.section-not-found h3 {
  color: #333333;
  font-size: 96px;
  font-weight: 700;
}
.section-not-found p {
  color: #263238;
  font-size: 28px;
  font-weight: 400;
}

.section-not-found button {
  max-width: 569px;
  width: 100%;
  margin: 0 auto;
}
