/* font families */
@font-face {
  font-family: 'Lato';
  src: url('../fonts/lato/Lato-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Lato';
  src: url('../fonts/lato/Lato-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}


@font-face {
  font-family: 'Lato';
  src: url('../fonts/lato/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}


@font-face {
  font-family: 'Lato';
  src: url('../fonts/lato/Lato-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}


@font-face {
  font-family: 'Lato';
  src: url('../fonts/lato/Lato-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

/*===== Variable Define =====*/
:root {
  --primary-color: #A31170;
  --primary-dark: #410F36;
  --primary-light: #FBEFF6;
  /* #A31170 at 8% opacity */

  --warning-color: #F2C94C;
  --signal-green: #2ECC71;
  --warning-coral: #FF6B6B;
  --charcoal-blue: #111827;


  --gray-1: #333333;
  --gray-2: #4F4F4F;
  --gray-3: #828282;
  --gray-4: #BDBDBD;
  --gray-5: #E0E0E0;
  --gray-6: #F2F2F2;

  --white: #fff;
  --blue-1: #2F80ED;

  --primary-font: 'Lato', sans-serif;

}


*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:active,
:hover,
:focus {
  outline: 0 !important;
  outline-offset: 0;
}

a,
a:hover {
  text-decoration: none;
}

a:hover {
  color: var(--primary-color) !important;
}

/*  */
ul,
ol {
  margin: 0;
  padding: 0;
}

button:focus:not(:focus-visible) {
  outline: none !important;
  box-shadow: none;
}




html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--primary-font);
  font-size: 100%;
  font-weight: 400;
  overflow-x: hidden;
}

.btn:hover {
  color: var(--white);
  border: 1px solid var(--primary-color);
  background: var(--primary-dark);
}


/*
==========================================
   Custom CSS Design
==========================================
*/

/* Headings */
h1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
}

h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
}

h4 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0;
}

h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
}

h6 {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0;
}

/* Paragraph */
p {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 0;
}

a {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--gray-1);
}

/* button */

.btn-common {
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}

.seperation-line {
  border: 1px solid var(--gray-5);
}

/* inputs CSS Start */

/* inputs CSS END */


/* common components Start */

/* common components End */



/* navbar */
.navbar {
  height: 100px;
}

.logo-img {
  height: 52px;
}

.navbar-btn-purple {
  gap: 10px;
  min-width: 92px;
  background: #1111114D;
  color: var(--white);
}

.navbar-btn-purple:hover h5 {
  color: var(--white);
}

.navbar-btn-purple:hover svg {
  stroke: var(--white);
}

.navbar-btn-purple h5 {
  font-weight: 500;
  color: #FFFFFF;
}

.navbar-btn-white {
  min-width: 174px;
  max-height: 44px;
  padding: 12px 20px;
  background: var(--primary-color);
  color: #FFFFFF;
}

/* .navbar-btn-white:hover {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  background: var(--white);
} */

.navbar-btn-white svg,
.navbar-btn-purple svg,
.set-password-input svg,
.forget-box svg {
  height: 16px;
  width: 16px;
}



.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  background: linear-gradient(180deg, #FFFFFF 47.6%, rgba(255, 255, 255, 0) 129.2%);
}

.offcanvas-header {
  padding: 24px 16px 0 !important;
}


.register-btn {
  border: 1px solid var(--gray-5);
  max-height: 44px;
  padding: 12px 20px;
  gap: 8px;
  /* min-width: 180px; */
}

.register-btn p {
  white-space: nowrap;
}


.lang-btn .nav-dropdown-menu {
  top: 43px;
  left: 0;
  max-width: 100px;
  padding: 12px;
}





.nav-dropdown-toggle::after {
  display: none !important;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 24px;
  left: -45px;
  width: 200px;
  max-height: 276px;
  background-color: #fff;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 16px 4px 16px 16px;
  z-index: 1000;
  transition: all 0.2s ease-in-out;
}

.scroll-wrapper {
  max-height: 236px;
  overflow-y: auto;
  padding-right: 4px;
}

.navbar-toggler {
  border: none;
}

/* Show on hover */
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
  transition: transform 0.3s ease-in-out;
}


/* Dropdown list */
.nav-dropdown-menu ul {
  list-style: none;
  gap: 12px;
  display: flex;
  flex-direction: column;
}

.nav-dropdown-menu li {
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--gray-5);
  cursor: pointer;
}

.nav-dropdown-menu p:hover {
  transform: translateY(-2px);
  font-weight: 600;
}

.nav-dropdown-menu li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

/* scroll bar */
.scroll-wrapper::-webkit-scrollbar {
  width: 6px;
}

.scroll-wrapper::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 8px;
}

.scroll-wrapper::-webkit-scrollbar-track {
  background-color: var(--gray-5);
}

/*contry drop*/
.country-selector-dropdown {
  display: flex;
}

.country-selector-dropdown .country-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -4px;
  width: 260px;
  max-height: 176px;
  background-color: #fff;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 16px 4px 16px 16px;
  z-index: 1000;
  display: none;
  flex-direction: column;
  gap: 12px;
  transition: all 0.2s ease-in-out;
}

.country-selector-dropdown .country-dropdown-menu.show {
  display: flex;
}

.country-selector-dropdown .country-scroll-wrapper {
  max-height: 236px;
  overflow-y: auto;
  padding-right: 4px;
}

.country-selector-dropdown .country-scroll-wrapper::-webkit-scrollbar {
  width: 6px;
}

.country-selector-dropdown .country-scroll-wrapper::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 8px;
}

.country-selector-dropdown .country-scroll-wrapper::-webkit-scrollbar-track {
  background-color: var(--gray-5);
}

.country-selector-dropdown .country-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--gray-5);
  transition: all 0.3s ease-in-out;
}

.country-selector-dropdown .country-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.country-selector-dropdown .country-item:hover {
  background-color: #f7f7f7;
  border-radius: 6px;
  transform: translateY(-1px);
}

.country-selector-dropdown .country-item span:last-child {
  margin-left: auto;
  color: #666;
  font-weight: 500;
}



/* oofcanvas dropdown */

.offcanvas-fixed-top {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--white);
  padding: 0 16px;
}

.offcanvas-scrollable {
  overflow-y: auto;
  flex-grow: 1;
}


/* Accordion List */
.offcanvas-accordion-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.offcanvas-accordion-list li {
  border-bottom: 1px dashed var(--gray-5);
  padding-bottom: 12px;
  cursor: pointer;
}

.offcanvas-accordion-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.offcanvas-accordion-list a,
.nav-dropdown-menu p {
  transition: all 0.3s ease-in-out;
  color: #333333;
}

.offcanvas-accordion-list a:hover {
  font-weight: 600;
  transform: translateX(4px);
}

.offcanvas-scrollable::-webkit-scrollbar {
  display: none;
}



/*  */
/* ===== Custom Accordion Shared Styles ===== */
.custom-accordion {
  padding: 24px 16px 0 16px;
}

.custom-accordion .accordion-item {
  margin-bottom: 16px;
  border: none;
}

.accordion-item .my-3 {
  margin: 20px 0 !important;
}

.custom-accordion .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.custom-accordion .accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}

.custom-accordion .accordion-chevron {
  transition: transform 0.3s ease-in-out;
}

.custom-accordion .accordion-item.active .accordion-chevron {
  transform: rotate(180deg);
}



.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  border-radius: 6px;
}

.lang-option input[type="radio"] {
  appearance: none;
  min-width: 16px;
  min-height: 16px;
  border: 2px solid #999;
  border-radius: 50%;
  position: relative;
}

.lang-option input[type="radio"]:checked {
  border-color: var(--primary-color);
}

.lang-option input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  min-width: 6px;
  min-height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.modal[aria-hidden="true"] {
  aria-hidden: false !important;
}

.modal.show {
  aria-hidden: false !important;
}



/* navbar ends   */
/* getin */
.form-section {
  position: relative !important;
  z-index: 0;
  overflow: hidden;
}

/* .form-section::after {
  width: 50% !important;
  height: 100%;
} */

.modal-content {
  position: relative;
  z-index: 10;
}

.modal .btn-close {
  z-index: 20;
  pointer-events: auto;
}

.modal .form-section {
  position: relative;
  z-index: 5;
}

.form-right {
  margin: 60px 26px 32px 2px !important;
}




/* modal */
.modal-content.auth-modal {
  max-width: 400px;
  border-radius: 4px;
  padding: 24px;
}

.auth-modal .input-group {
  position: relative;
  border: 1px solid var(--gray-5);
  border-radius: 4px;
}

.auth-modal .input-group-text {
  background: transparent;
  border: none;
}

.auth-modal input.form-control {
  padding: 12px;
  border: none;
  outline: none;
  font-size: 14px;
}



.auth-modal .form-label {
  font-size: 14px;
  font-weight: 400;
}

.auth-modal .input-group input:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.auth-modal .input-group input {
  font-size: 16px;
  font-weight: 400;
}

.auth-view.d-none {
  display: none !important;
}

.modal-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-logo img {
  max-width: 84px;
  max-height: 56px;
}

.modal-wrapper {
  position: relative;
}

.modal-wrapper p {
  line-height: 1.4;
}

.cross-icon {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.forgot-text {
  font-size: 14px;
  font-weight: 400;
  text-align: end;
  margin-bottom: 24px;
}

.forgot-text a {
  color: #111111 !important;
}


.btn-login,
.btn-signup,
.btn-otp-submit {
  border: 1px solid var(--gray-5);
  background: var(--gray-6);
  color: var(--gray-1);
}

.btn-login.active,
.btn-signup.active,
.btn-otp-submit.active,
.btn-continue.active,
.submit-reset-btn.active,
#submitForgotPassword.active {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  cursor: pointer;
  pointer-events: auto;
}





.reset-btn,
.submit-reset-btn {
  background: var(--gray-6);
  padding: 12px 20px;
  border: none;
}

.btn-continue,
.submit-sucess-btn {
  background: var(--primary-color);
  color: white;
}

/* .submit-reset-btn:hover {
  color: unset;
  border: unset;
  background: var(--gray-6);
  border: 1px solid var(--white);
} */

.reset-btn:hover,
/* .submit-reset-btn:hover, */
.submit-sucess-btn:hover {
  background: var(--primary-color);
  color: white;
}

/* .sign-up-bottom {
  margin-bottom: 104px;
} */
.form-label {
  margin-bottom: 4px;
}

.signup-text p {
  font-size: 14px;
  font-weight: 400;
  color: #111111;
}

.text-signup {
  font-size: 14px;
  font-weight: 400;
  color: var(--blue-1);
}

.sign-up-terms a {
  color: #339DFF;
}

.modal-mail {
  color: var(--blue-1);
}

.login-option-text {
  margin: 20px auto;
  text-align: center;
  color: var(--gray-2);
  font-size: 14px;
  font-weight: 400;
}

.login-option-btn {
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 10px;
  border-radius: 6px;
  width: 100%;
  padding: 10px;
  border: 1.5px solid var(--gray-5);
}

.auth-modal:has(#signupView:not(.d-none)) .modal-logo {
  display: none;
}

.input-group-text .seperation-line {
  border: 0.5px solid var(--gray-5);
  height: 90%;
  margin-left: 8px;
}

.auth-view h4,
.forget-box h4 {
  font-weight: 500;
}

.forget-box p {
  font-weight: 500;
  line-height: 1.4;
}

.auth-modal .country-wrapper {
  position: relative;
}

/* Prevent input-group-text shift */
.auth-modal .country-selector {
  position: relative;
  display: flex;
  align-items: center;
}

/* Dropdown absolutely positioned outside layout flow */
.auth-modal .country-dropdown {
  position: absolute;
  top: 35px;
  left: -20px;
  margin-top: 4px;
  display: none;
  background: white;
  border: 1px solid var(--gray-5);
  border-radius: 4px;
  min-width: 150px;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Show on hover */
.auth-modal .country-selector:hover .country-dropdown {
  display: block;
  list-style: none;
}

/* Dropdown items */
.auth-modal .country-dropdown li a {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 14px;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
}

.auth-modal .country-dropdown li a:hover {
  background-color: var(--gray-6);
}

/* Chevron rotation */
.auth-modal .chevron-icon {
  transition: transform 0.3s ease;
}

.auth-modal .country-selector:hover .chevron-icon {
  transform: rotate(180deg);
}

.set-password-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.set-password-box h4 {
  font-weight: 500;
}

.set-password-text {
  font-weight: 500;
  margin-bottom: 24px;
}

/* opt  */
.otp-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.otp-box svg,
.set-password-box svg {
  cursor: pointer;
  height: 16px;
  width: 16px;
}

.otp-box h4 {
  font-weight: 500;
}

.otp-body p {
  font-weight: 500;
}

.otp-body .form-label {
  margin-bottom: 12px !important;
}

.auth-modal .otp-input {
  padding: 16px 20px;
  font-size: 20px;
  text-align: center;
  border: 1px solid var(--gray-5);
  border-radius: 8px;
}

.otp-input-box {
  display: flex;
  gap: 8px;
  /* margin-bottom: 20px; */
}

.otp-input-box input {
  border: 1px solid var(--gray-5) !important;
}

/* remove number spinners */
.auth-modal .otp-input::-webkit-inner-spin-button,
.auth-modal .otp-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.auth-modal .otp-input[type="number"] {
  -moz-appearance: textfield;
}


.auth-modal .country-wrapper .input-group-text::after {
  display: none;
}

.otp-input:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: inherit !important;
}

/* suceess */
.otp-modal-body p {
  font-size: 16px;
  font-weight: 500;
}

.otp-success-section {
  padding: 30px 0;
}

.otp-success-cross {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 144px; */
}

.otp-success-gif img {
  display: block;
  margin: 24px auto;
  width: 124px;
  height: auto;
}

.otp-success-text {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.01rem;
  text-align: center;
  margin-bottom: 24px;
}

/*  */
.is-valid {
  border-bottom-color: #4CAF50;
}

.is-invalid {
  border-bottom-color: var(--warning-coral);
}

.error-message {
  font-size: 13px;
  margin: 4px 0 0 10px;
  color: var(--warning-coral);
  display: none;
}

.error-note {
  font-size: 12px;
  color: var(--warning-coral);
  position: absolute;
}





/* common-breadcrumbs */
.breadcrubs {
  display: flex;
  align-items: center;
  padding: 8px;
}

.breadcrubs-home {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--gray-3);
}

.breadcrubs-child {
  color: var(--gray-1);
}


/* card buttons */
.quote-card-btn {
  border: none;
  color: var(--gray-1);
  background: none;
}

.feature-btn:hover .quote-card-btn {
  color: var(--white);
}















/* footer */
.footer-section {
  background-color: var(--charcoal-blue);
  padding: 50px 0;
  border-bottom: 1px solid var(--gray-1);
}


.footer-logo-section p {
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02rem;
  color: var(--white);
}

.footer-column h5 {
  margin-bottom: 20px;
  color: var(--gray-4);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.footer-column a,
.footer-column p,
.footer-column address,
.footer-contact-list a {
  color: var(--white);
}

.subscribe-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
}

.subscribe-section p {
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02rem;
  color: var(--white);
}

.custom-input {
  height: fit-content;
  background-color: transparent;
  border: 1px solid #BDBDBD66;
  border-radius: 8px;
  padding: 0 6px 0 12px;
}

.custom-input input {
  display: inline-block;
  font-size: 14px;
}

.custom-input input[type="text"] {
  background: transparent;
  min-height: 48px;
  border: none;
  outline: none;
  padding: 0 0 0 8px;
  color: var(--white);
}

.custom-input input[type="submit"] {
  padding: 8px 16px;
  left: -5px;
  border-radius: 8px;
  /* width: 92px; */
  height: 36px;
  border: none;
  outline: none;
  cursor: pointer;
  background: var(--primary-color);
  color: var(--white);
}

.custom-input input[type="submit"]:hover {
  background: var(--white);
  color: var(--primary-color);
}

.custom-input input::placeholder {
  color: var(--gray-3);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
}

.footer-content .col-md-4 {
  width: 35%;
}


/* ffooter accordian */
/* custom accordian */
.footer-accordion-custom {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-accordion-custom .footer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.footer-accordion-custom .footer-title {
  color: var(--gray-4);
}

.footer-accordion-custom .footer-icon {
  transition: transform 0.3s ease-in-out;
  color: var(--gray-4);
}

.footer-contact-list,
.footer-quick-links,
.footer-company-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--white);
}

.footer-accordion-custom .footer-content {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease-in-out;
}

.footer-accordion-custom .footer-item.active .footer-content {
  height: auto !important;
  padding-top: 20px;
}

.footer-accordion-custom .footer-item.active .footer-icon {
  transform: rotate(180deg);
}

.footer-contact-list p:active,
.footer-quick-links a:active,
.footer-company-links a:active {
  transform: translateY(-2px);
  font-weight: 600;
}

.footer-contact-list p,
.footer-quick-links a,
.footer-company-links a {
  transition: transform 0.3s ease-in-out;
  color: var(--white);
}

/* subfooter */
.sub-footer {
  background: #111827;
}

.sub-footer-wrapper {
  padding: 28px 20px;
}

.sub-footer-content {
  display: flex;
  justify-content: space-between;
}

.social-icons img {
  max-width: 24px;
  max-height: 24px;
}

.sub-footer-content h4 {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  color: #D1D5DB;
}

.social-icons {
  display: flex;
  gap: 24px;
}



.mobile-dropdown-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: none;
}

.mobile-dropdown-overlay.active {
  display: block;
}

body.no-scroll {
  overflow: hidden;
}

.nav-profile {
  padding: 6px 4px;
  background: var(--white);
  border-radius: 100px;
  max-width: 32px;
  min-height: 30px;
  display: flex;
  align-items: center;
  min-width: 32px;
  justify-content: center;
}

.nav-profile h6 {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--primary-color);
}

.notification-bell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: 1px solid var(--gray-5);
  border-radius: 100px;
  background: var(--white);
}

.notification-bell.active {
  background-color: #f8f9fa;
}

.notification-bell:hover {
  background-color: #e9ecef;
}

/*  */
.profile-dropdown-container {
  position: relative;
  display: inline-block;
}

.profile-dropdown-modal {
  position: absolute;
  top: 46px;
  left: 0;
  right: 0;
  max-height: 276px;
  background-color: #fff;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 12px;
  z-index: 1000;
  transition: all 0.2s ease-in-out;
  display: none;
}

.profile-dropdown-container:hover .profile-dropdown-modal {
  display: block;
}

.dropdown-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dropdown-item {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0;
  color: var(--gray-1);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.dropdown-item:hover {
  font-weight: 600;
  cursor: pointer;
}

.dropdown-item i {
  margin-right: 12px;
}

.dropdown-divider {
  border: 1px dashed var(--gray-5);
}

/*  */
/* myprofile-modal */
.myProfile-modal .modal-content {
  padding: 24px;
  gap: 24px;
}

.myProfile-modal .modal-header {
  padding: 0;
  border: none;
}

.myProfile-modal .modal-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 1;
  color: var(--gray-1);
}

.myProfile-modal .modal-body {
  padding: 12px;
  background: var(--gray-6);
  border-radius: 8px;
}

.profile-pic {
  min-height: 84px;
  min-width: 84px;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  overflow: hidden;
}

.profile-pic h5 {
  font-weight: 400;
  font-size: 24px;
  color: var(--primary-color);
}

.edit-profile p {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02rem;
  color: var(--gray-1);
}

.profile-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-control:disabled, .form-control[readonly]{
  background-color: transparent;
}

.profile-form .form-label {
  font-size: 12px;
  line-height: 1.7;
  color: var(--gray-2);
}

.profile-inputs {
  padding: 0;
  background: transparent;
  border: none;
  line-height: 1;
  color: var(--gray-1);
}

/*  */
.profile-inputs.active {
  padding: 8px 12px !important;
  background: white !important;
  border: 1px solid #ddd !important;
  border-radius: 4px;
  box-shadow: none;
}

.profile-form .form-control:focus {
  box-shadow: none;
  background: transparent;
}

/*  */

.profile-form .gx-3 {
  --bs-gutter-x: 20px;
}

.myProfile-modal .modal-footer {
  padding: 0;
  border: none;
  background: transparent;
  justify-content: unset;
  border-radius: 0;
  flex-direction: column;
}

.myProfile-modal .modal-footer>* {
  margin: 0;
}

.change-password {
  display: flex;
  gap: 8px;
  width: 100%;
}

.change-password.hidden {
  display: none;
}

.change-password a {
  color: var(--blue-1);
}

.profile-modal-btns {
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.profile-modal-btns.visible {
  visibility: visible;
}

.profile-btn-cancel {
  padding: 9px 20px;
  border: 1px solid var(--gray-5);
  border-radius: 4px;
  color: var(--gray-1);
}

.profile-btn-save {
  padding: 9px 20px;
  border-radius: 4px;
  color: var(--white);
  background: var(--primary-color);
}




/* noti */
.notification-dropdown-modal {
  position: fixed;
  top: 70px;
  right: 30vw;
  background: white;
  border-radius: 8px;
  box-shadow: 0px 5px 12px 0px #0000001A;
  border: 1px solid var(--gray-6);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-4);
}

.notification-dropdown-modal.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.notification-dropdown-modal .dropdown-content {
  gap: 0;
  max-width: 380px;
}

.notification-header {
  padding: 18px 18px 10px 18px;
  border-bottom: 1px solid var(--gray-5);
}

.notification-header h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--gray-1);
}

.notification-body {
  display: flex;
  flex-direction: column;
  padding: 14px 4px 18px 18px;
  gap: 12px;
}

.single-notification {
  display: flex;
  gap: 12px;
  padding-right: 18px;
}

.icon-box {
  border: 1px solid var(--gray-5);
  padding: 4px;
  border-radius: 20px;
  min-width: 36px;
  max-height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.notification-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.notification-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.notification-text h4 {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--primary-color);
}

.notification-text p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--gray-2);
}

.notification-time {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notification-time h6 {
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--gray-1);
}

.notification-time a {
  color: var(--primary-color);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0;
}

.notification-body .scroll-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notification-body .dropdown-divider {
  margin-right: 10px;
}

/* Positioning for desktop */
.desktop-notification-container {
  position: relative;
}

/* Positioning for offcanvas */
.offcanvas-notification-container {
  position: relative;
}

/* offcanvas menus */
.profile-menues {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 16px;
}

.offcanvas-body .scroll-wrapper {
  max-height: 100%;
  margin-right: 2px;
}

.profile-phone .input-group-text {
  border: none;
  padding: 0;
  background: transparent;
}

.profile-phone .fa-chevron-down:before,
.profile-phone .fi-bw {
  display: none;
}

.profile-phone .input-group-text .seperation-line {
  display: none;
  margin-right: 0;
}

.profile-phone .fa,
.fas {
  width: 0 !important;
}

.profile-phone .profile-inputs {
  line-height: 1.5;
}

.profile-phone .fa-phone::before {
  display: none;
}
.profile-phone.active   .input-group-text{
    padding-left: 6px;
        border: 1px solid var(--gray-5);
    border-right: none;
    border-radius: 4px 0 0 4px;
    background: var(--white);

}

.profile-phone.active .profile-inputs{
  line-height: 1;
}
#profileCountryDropdownWrapper .country-dropdown-menu{
  left: -35px;
}

.show-pill{
  font-size: 14px;
}


/* <!--=============== Responsive Design =================--> */
@media (min-width:1399px) {
  .container.nav-container {
    max-width: 1320px;
    margin: 0 auto
  }

  .container.main-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0;
  }

  .container.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0;
  }

}

@media (min-width:1199px) {

  .footer-container .col-xl-3 {
    width: 24%;
  }

  .footer-container .col-xl-9 {
    width: 76%;
  }

  .footer-container .col-md-5 {
    width: 38%;
  }

  .footer-container .gx-3 {
    --bs-gutter-x: 100px;
  }

  .offcanvas.offcanvas-start {
    display: none !important;
  }



}


@media (max-width:1399px) {
  .custom-input input[type="text"] {
    max-width: 113px;
  }

  .notification-dropdown-modal {
    right: 30vw;
  }
}

@media (max-width:1199px) {
  .logo-img {
    height: 80px;
  }


  .footer-logo-section {
    max-width: 100%;
  }

  .footer-container .col-xl-3 {
    width: 100%;
  }

  .footer-logo-section p {
    margin-bottom: 24px;
  }

  .subscribe-section {
    margin-top: 24px;
  }

  .footer-container .gx-3 {
    --bs-gutter-x: 0;
  }

  .footer-container .col-xl-9 {
    width: 100%;
  }

  .notification-dropdown-modal {
    right: 6vw;
  }
}


@media (max-width: 991px) {
  .nav-wrapper {
    height: 80px;
  }

  .container.nav-container {
    padding: 0 16px !important;
  }

  .navbar {
    height: 80px;
  }


  .footer-logo-section img {
    margin-bottom: 4px !important;
  }

  .breadcrubs {
    padding: 0;
  }


  .notification-dropdown-modal {
    right: 10vw;
    top: 66px;
  }



}

@media (max-width: 767px) {
  .container.main-container {
    padding: 0 16px;
  }

  .logo-img {
    height: 52px;
  }

  .navbar {
    height: 52px;
  }

  .hero-content-header {
    top: 15%;
  }

  .nav-wrapper {
    height: 52px;
  }

  .breadcrubs-home {
    font-size: 14px;
  }

  .notification-dropdown-modal {
    top: 49px;
  }
}

@media (max-width: 575px) {
  .navbar-btn-purple {
    min-width: 72px;
    min-height: 32px;
  }

  .lang-btn img {
    width: 16px;
  }

  .lang-btn h5 {
    font-size: 14px;
    font-weight: 500;
  }

  .lang-btn svg {
    height: 12px;
    width: 12px;
  }


  .footer-section {
    padding: 20px 16px;
  }

  .breadcrubs-home {
    font-size: 14px;
  }

  .notification-dropdown-modal {
    right: 2vw;
  }

  .notification-dropdown-modal .dropdown-content {
    max-width: 290px;
  }

  .notification-header {
    padding: 9px 9px 5px 9px;
  }

  .notification-header h4 {
    font-size: 14px;
  }

  .notification-body {
    padding: 8px 4px 8px 8px;
  }

  .icon-box {
    min-width: 30px;
    max-height: 30px;
  }

  .icon-box svg {
    height: 16px !important;
    width: 16px !important;
  }

  .notification-text h4 {
    font-size: 14px;
  }

  .notification-text p {
    font-size: 14px;
  }

  .notification-time a {
    font-size: 13px;
  }

  .sub-footer-content {
    flex-direction: column;
    gap: 10px;
  }

  .sub-footer-content h4 {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .sub-footer-wrapper {
    padding: 20px;
  }
}

@media (max-width: 390px) {
  .offcanvas-body {
    padding: 10px;
  }

  .register-btn p {
    font-size: 12px;
    white-space: nowrap;
  }

  .navbar-btn-white {
    min-width: 50%;
    min-height: 44px;
  }

  .navbar-btn-white p {
    font-size: 12px;
  }


}

/* Fullscreen spinner overlay */
#spinner-overlay {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

    #spinner-overlay.hidden {
        display: none;
    }