@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("dark.css");

/* ========================= Css Variables Start ======================== */
:root {
  /* Font Family */
  --heading-font: "Montserrat", serif;
  --body-font: "Lato", serif;
  /* ========================= Theme Color Start ============================= */
  /* Base Color */
  --base-h: 236;
  --base-s: 86%;
  --base-l: 16%;
  --base: var(--base-h) var(--base-s) var(--base-l);
  --base-d-100: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.1);
  --base-d-200: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.2);
  --base-d-300: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.3);
  --base-d-400: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.4);
  --base-d-500: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.5);
  --base-d-600: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.6);
  --base-d-700: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.7);
  --base-d-800: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.8);
  --base-d-900: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.9);
  --base-d-1000: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 1);
  --base-l-100: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.1);
  --base-l-200: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.2);
  --base-l-300: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.3);
  --base-l-400: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.4);
  --base-l-500: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.5);
  --base-l-600: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.6);
  --base-l-700: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.7);
  --base-l-800: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.8);
  --base-l-900: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.9);
  --base-l-1000: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 1);

  /* ========================= Theme Color End ============================= */
  /* ========================= Color Variables Start =========================== */
  --white: 0 0% 100%;
  --body-color: 226 10% 42%;
  --heading-color: 240 9% 23%;
  --black: 0 0% 0%;
  --border-color: 236 86% 16%;
  --section-bg: 240 14% 95%;
  --background-color: var(--black);
  /* ================================ Box Shadow Start =============================== */
  --header-box-shadow: 0px -1px 15px 3px hsl(var(--black) / 0.3);
  --mobile-box-shadow: 0px -1px 5px 0px hsl(var(--black) / 0.92);
  --box-shadow: 0px 2px 15px hsl(var(--black) / 0.05);
  --box-shadow-two: 0px 2px 8px 0px #63636333;
  /* ================================ Box Shadow End =============================== */
  /* ============================== Bootstrap Modifier Start ============================== */
  /* Primary Color */
  --primary-h: 238;
  --primary-s: 100%;
  --primary-l: 40%;
  --primary: var(--primary-h) var(--primary-s) var(--primary-l);
  --primary-d-100: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.1);
  --primary-d-200: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.2);
  --primary-d-300: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.3);
  --primary-d-400: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.4);
  --primary-d-500: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.5);
  --primary-l-100: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.1);
  --primary-l-200: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.2);
  --primary-l-300: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.3);
  --primary-l-400: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.4);
  --primary-l-500: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.5);
  /* Secondary Color */
  --secondary-h: 208;
  --secondary-s: 7%;
  --secondary-l: 46%;
  --secondary: var(--secondary-h) var(--secondary-s) var(--secondary-l);
  --secondary-d-100: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.1);
  --secondary-d-200: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.2);
  --secondary-d-300: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.3);
  --secondary-d-400: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.4);
  --secondary-d-500: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.5);
  --secondary-l-100: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.1);
  --secondary-l-200: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.2);
  --secondary-l-300: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.3);
  --secondary-l-400: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.4);
  --secondary-l-500: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.5);
  /* Success Color */
  --success-h: 112;
  --success-s: 100%;
  --success-l: 40%;
  --success: var(--success-h) var(--success-s) var(--success-l);
  --success-d-100: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.1);
  --success-d-200: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.2);
  --success-d-300: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.3);
  --success-d-400: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.4);
  --success-d-500: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.5);
  --success-l-100: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.1);
  --success-l-200: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.2);
  --success-l-300: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.3);
  --success-l-400: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.4);
  --success-l-500: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.5);
  /* Danger Color */
  --danger-h: 0;
  --danger-s: 96%;
  --danger-l: 63%;
  --danger: var(--danger-h) var(--danger-s) var(--danger-l);
  --danger-d-100: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.1);
  --danger-d-200: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.2);
  --danger-d-300: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.3);
  --danger-d-400: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.4);
  --danger-d-500: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.5);
  --danger-l-100: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.1);
  --danger-l-200: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.2);
  --danger-l-300: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.3);
  --danger-l-400: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.4);
  --danger-l-500: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.5);
  /* Warning Color */
  --warning-h: 45;
  --warning-s: 100%;
  --warning-l: 51%;
  --warning: var(--warning-h) var(--warning-s) var(--warning-l);
  --warning-d-100: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.1);
  --warning-d-200: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.2);
  --warning-d-300: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.3);
  --warning-d-400: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.4);
  --warning-d-500: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.5);
  --warning-l-100: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.1);
  --warning-l-200: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.2);
  --warning-l-300: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.3);
  --warning-l-400: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.4);
  --warning-l-500: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.5);
  /* Info Color */
  --info-h: 196;
  --info-s: 100%;
  --info-l: 50%;
  --info: var(--info-h) var(--info-s) var(--info-l);
  --info-d-100: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.1);
  --info-d-200: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.2);
  --info-d-300: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.3);
  --info-d-400: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.4);
  --info-d-500: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.5);
  --info-l-100: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.1);
  --info-l-200: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.2);
  --info-l-300: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.3);
  --info-l-400: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.4);
  --info-l-500: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.5);
  /* dark color */
  --dark: 227 43% 4%;
  /* ============================== Bootstrap Modifier End ============================== */
  /* ============================== Dark Mood Color Modify Start ============================== */
  /* ============================== Dark Mood Color Modify End ============================== */
}


/* ===============================
   Theme Image Toggle
   =============================== */

.theme-image-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* Default: light mode */
.theme-icon-dark {
  display: none;
}




/* ========================= Css Variables End =========================== */
/* Fully Fit image Css */
.fit-image,
.dashboard .user-info__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* ============================= Display Flex Css Start ============================= */
.flex-wrap,
.form--radio,
.form--check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-align,
.dashboard .user-info__button,
.action-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* ============================= Display Flex Css End ============================= */
/* ===================== Font Size For responsive devices Start =================== */
.fs-10 {
  font-size: 0.625rem;
}

.fs-11 {
  font-size: 0.6875rem;
}

.fs-12 {
  font-size: 0.75rem;
}

.fs-13 {
  font-size: 0.8125rem;
}

.fs-14 {
  font-size: 0.875rem;
}

.fs-15,
.dashboard .user-info .user-info-dropdown__link {
  font-size: 0.9375rem;
}

.fs-16 {
  font-size: 1rem;
}

@media screen and (max-width: 1199px) {
  .fs-16 {
    font-size: 0.9375rem;
  }
}

.fs-17 {
  font-size: 1.0625rem;
}

@media screen and (max-width: 1199px) {
  .fs-17 {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .fs-17 {
    font-size: 0.9375rem;
  }
}

.fs-18 {
  font-size: 1.125rem;
}

@media screen and (max-width: 1399px) {
  .fs-18 {
    font-size: 1.0625rem;
  }
}

@media screen and (max-width: 767px) {
  .fs-18 {
    font-size: 1rem;
  }
}

.fs-20 {
  font-size: 1.25rem;
}

@media screen and (max-width: 1399px) {
  .fs-20 {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 767px) {
  .fs-20 {
    font-size: 1.0625rem;
  }
}

/* ===================== Font Size For responsive devices End =================== */
/* ================================= Common Typography Css Start =========================== */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  color: hsl(var(--body-color));
  word-break: break-word;
  background-color: hsl(var(--white));
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

p {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  color: hsl(var(--body-color));
}

span {
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px 0;
  font-family: var(--heading-font);
  color: hsl(var(--heading-color));
  line-height: 1.2;
  font-weight: 600;
}

@media screen and (max-width: 767px) {

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0 0 15px 0;
  }
}

h1 {
  font-weight: 700;
}

h1 {
  font-size: 3.75rem;
}

@media screen and (max-width: 1399px) {
  h1 {
    font-size: 3.125rem;
  }
}

@media screen and (max-width: 1199px) {
  h1 {
    font-size: 2.8125rem;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.1875rem;
  }
}

@media screen and (max-width: 575px) {
  h1 {
    font-size: 1.875rem;
  }
}

h2 {
  font-size: 3rem;
}

@media screen and (max-width: 1399px) {
  h2 {
    font-size: 2.8125rem;
  }
}

@media screen and (max-width: 1199px) {
  h2 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 2.1875rem;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 1.875rem;
  }
}

@media screen and (max-width: 575px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 2rem;
}

@media screen and (max-width: 1399px) {
  h3 {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 1199px) {
  h3 {
    font-size: 1.5625rem;
  }
}

@media screen and (max-width: 991px) {
  h3 {
    font-size: 1.4375rem;
  }
}

@media screen and (max-width: 767px) {
  h3 {
    font-size: 1.375rem;
  }
}

@media screen and (max-width: 575px) {
  h3 {
    font-size: 1.25rem;
  }
}

h4 {
  font-size: 1.5rem;
}

@media screen and (max-width: 1399px) {
  h4 {
    font-size: 1.3125rem;
  }
}

@media screen and (max-width: 1199px) {
  h4 {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 991px) {
  h4 {
    font-size: 1.1875rem;
  }
}

@media screen and (max-width: 767px) {
  h4 {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 575px) {
  h4 {
    font-size: 1.0625rem;
  }
}

h5 {
  font-size: 1.25rem;
}

@media screen and (max-width: 1399px) {
  h5 {
    font-size: 1.1875rem;
  }
}

@media screen and (max-width: 1199px) {
  h5 {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 991px) {
  h5 {
    font-size: 1.0625rem;
  }
}

@media screen and (max-width: 767px) {
  h5 {
    font-size: 1rem;
  }
}

@media screen and (max-width: 575px) {
  h5 {
    font-size: 1rem;
  }
}

h6 {
  font-size: 1.125rem;
}

@media screen and (max-width: 1399px) {
  h6 {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1199px) {
  h6 {
    font-size: 0.9375rem;
  }
}

@media screen and (max-width: 991px) {
  h6 {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 767px) {
  h6 {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 575px) {
  h6 {
    font-size: 0.875rem;
  }
}

h1>a,
h2>a,
h3>a,
h4>a,
h5>a,
h6>a {
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  line-height: inherit;
}

a {
  display: inline-block;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  text-decoration: none;
  color: hsl(var(--base));
}

a:hover {
  color: hsl(var(--base-d-400));
}

img {
  max-width: 100%;
  height: auto;
}

select {
  cursor: pointer;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: 0;
  background-color: transparent;
}

button:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-select:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.dashboard-body h1,
.dashboard-body h2,
.dashboard-body h3,
.dashboard-body h4,
.dashboard-body h5,
.dashboard-body h6 {
  font-family: Lato, serif;
}

.welcome-heading {
  color: var(--Colors-Primary-500, #02021D);
  font-family: Lato, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  display: flex;
  height: 24px;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  margin-bottom: 0;
}

/* ================================= Common Typography Css End =========================== */
/* ================================= Custom Classes Css Start =========================== */
/* Column Extra Small Screen */
@media screen and (min-width: 425px) and (max-width: 575px) {
  .col-xsm-6 {
    width: 50%;
  }
}

/* Section Background */
.section-bg {
  background-color: hsl(var(--section-bg));
}

.text-muted {
  color: var(--Text-color, #A4A4A4) !important;
}

/* Bg Image Css */
.bg-img {
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center;
}

/* Hide Scroll bar Css For Custom Modal */
.scroll-hide {
  position: absolute;
  overflow-y: hidden;
  padding-right: 17px;
  top: 0;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .scroll-hide {
    padding-right: 0;
  }
}

.scroll-hide-sm {
  position: absolute;
  overflow-y: hidden;
  top: 0;
  left: 0;
  width: calc(100% - 0px);
}

/* Overlay Start */
.body-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  background-color: hsl(var(--black) / 0.6);
  z-index: 99;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  visibility: hidden;
  opacity: 0;
}

.body-overlay.show {
  visibility: visible;
  opacity: 1;
}

.gradient-text {
  background-image: -webkit-gradient(linear,
      left top,
      left bottom,
      from(hsl(var(--base-d-200))),
      to(hsl(var(--base))));
  background-image: linear-gradient(180deg,
      hsl(var(--base-d-200)) 0%,
      hsl(var(--base)) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.gradient-text::-moz-selection {
  color: hsl(var(--white));
  -webkit-text-fill-color: hsl(var(--white));
  background: transparent;
}

.gradient-text::selection {
  color: hsl(var(--white));
  -webkit-text-fill-color: hsl(var(--white));
  background: transparent;
}

.sidebar-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  background-color: hsl(var(--black) / 0.6);
  z-index: 99;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  visibility: hidden;
  opacity: 0;
}

.sidebar-overlay.show {
  visibility: visible;
  opacity: 1;
  z-index: 999;
}

/* Overlay End */
/* ================================= Custom Classes Css End =========================== */
/* ====================== Section Heading ==================== */
.section-heading {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1199px) {
  .section-heading {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 991px) {
  .section-heading {
    margin-bottom: 30px;
  }
}

.section-heading__title {
  color: #FFF;
  text-align: center;
  font-size: 41px;
  font-style: normal;
  line-height: 44px;
  /* 122.222% */
  display: flex;
  height: 72.403px;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
}

@media screen and (max-width: 767px) {
  .section-heading__title {
    margin-bottom: 16px;
  }
}

.section-heading__subtitle {
  font-size: 14px;
  background-color: hsl(var(--section-bg));
  padding: 11px 16px;
  line-height: 1;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.section-heading__desc {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-size: 17px !important;
  font-size: clamp(1rem, 0.9431rem + 0.2427vw, 1.125rem);
  color: var(--main-head-Color, #F9F4F4) !important;
}

.section-heading.style-left {
  text-align: left;
}

.section-heading.style-left .section-heading__desc {
  margin-left: 0;
}


.choose-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px 0px;
  /* 40px vertical, 32px horizontal */
  justify-items: center;
  /* space between cards */
}

/* Cards */
.choose-us-card {
  display: flex;
  width: 360px;
  padding: 40px 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;


  border-radius: 28px;
  border: 1px solid rgba(0, 174, 255, 0.25);
  /* Figma blue border */
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;

  /* Subtle Figma glow */
  box-shadow:
    0px 0px 16px rgba(0, 174, 255, 0.15) inset,
    0px 0px 12px rgba(0, 174, 255, 0.08);

}

.choose-us-card:hover {

  border-color: #D6DBE6;
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.08);
  transform: translateY(-4px);

}

/* Icon circle */
.choose-us-card__icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e90ff, #6a5acd);
  padding: 10px;
  position: relative;
  transition: 0.4s;
  box-shadow: 0 0 0 rgba(0, 153, 255, 0.6);
  animation: pulseGlow 2.2s infinite;
}

.choose-us-card__icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  transition: transform 0.4s ease;
  /* make icon white if it’s dark */
}

/* Section bottom CTA */
.choose-us-wrapper__bottom {
  text-align: center;
  margin-top: 28px;
}

.choose-us-wrapper__bottom .title {
  margin-bottom: 12px;
  color: #0F172A;
  font-weight: 700;
}

/* Responsive columns */
@media (max-width: 991.98px) {
  .choose-us-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .choose-us-grid {
    grid-template-columns: 1fr;
  }
}


.choose-us-card:hover .choose-us-card__icon {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 0 18px rgba(0, 153, 255, 0.6);
}

.choose-us-card:hover .choose-us-card__icon img {
  transform: scale(1.15);
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 153, 255, 0.5);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(0, 153, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 153, 255, 0);
  }
}

/* ====================== Section Heading End ==================== */
/* ================================= Background Color Css Start =========================== */
.bg--base {
  background-color: hsl(var(--base)) !important;
}

.bg--primary {
  background-color: hsl(var(--primary)) !important;
}

.bg--secondary {
  background-color: hsl(var(--secondary)) !important;
}

.bg--success {
  background-color: hsl(var(--success)) !important;
}

.bg--danger {
  background-color: hsl(var(--danger)) !important;
  color: hsl(var(--white)) !important;
}

.bg--warning {
  background-color: hsl(var(--warning)) !important;
}

.bg--info {
  background-color: hsl(var(--info)) !important;
}

/* ================================= Background Color Css End =========================== */
/* ================================= Color Css Start =========================== */
.text--base {
  color: hsl(var(--base)) !important;
}

.text--primary {
  color: hsl(var(--primary)) !important;
}

.text--secondary {
  color: hsl(var(--secondary)) !important;
}

.text--success {
  color: hsl(var(--success)) !important;
}

.text--danger {
  color: hsl(var(--danger)) !important;
}

.text--warning {
  color: hsl(var(--warning)) !important;
}

.text--info {
  color: hsl(var(--info)) !important;
}

/* ================================= Color Css End =========================== */
/* ================================= Border Color Css Start =========================== */
.border--base {
  border-color: hsl(var(--base)) !important;
}

.border--primary {
  border-color: hsl(var(--primary)) !important;
}

.border--secondary {
  border-color: hsl(var(--secondary)) !important;
}

.border--success {
  border-color: hsl(var(--success)) !important;
}

.border--danger {
  border-color: hsl(var(--danger)) !important;
}

.border--warning {
  border-color: hsl(var(--warning)) !important;
}

.border--info {
  border-color: hsl(var(--info)) !important;
}

/* ================================= Border Color Css End =========================== */
/* ================================= margin Css Start =========================== */
.my-120 {
  margin-top: 60px;
  margin-bottom: 60px;
}

@media (min-width: 576px) {
  .my-120 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

@media (min-width: 992px) {
  .my-120 {
    margin-top: 120px;
    margin-bottom: 120px;
  }
}

.mt-120 {
  margin-top: 60px;
}

@media (min-width: 576px) {
  .mt-120 {
    margin-top: 80px;
  }
}

@media (min-width: 992px) {
  .mt-120 {
    margin-top: 120px;
  }
}

.mb-120 {
  margin-bottom: 60px;
}

@media (min-width: 576px) {
  .mb-120 {
    margin-bottom: 80px;
  }
}

@media (min-width: 992px) {
  .mb-120 {
    margin-bottom: 120px;
  }
}

.my-60 {
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (min-width: 576px) {
  .my-60 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .my-60 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.mt-60 {
  margin-top: 30px;
}

@media (min-width: 576px) {
  .mt-60 {
    margin-top: 40px;
  }
}

@media (min-width: 992px) {
  .mt-60 {
    margin-top: 60px;
  }
}

.mb-60 {
  margin-bottom: 30px;
}

@media (min-width: 576px) {
  .mb-60 {
    margin-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .mb-60 {
    margin-bottom: 60px;
  }
}

/* ================================= margin Css End =========================== */
/* ================================= padding Css Start =========================== */
.py-120 {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (min-width: 576px) {
  .py-120 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 992px) {
  .py-120 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.pt-120 {
  padding-top: 60px;
}

@media (min-width: 576px) {
  .pt-120 {
    padding-top: 80px;
  }
}

@media (min-width: 992px) {
  .pt-120 {
    padding-top: 120px;
  }
}

.pb-120 {
  padding-bottom: 60px;
}

@media (min-width: 576px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}

@media (min-width: 992px) {
  .pb-120 {
    padding-bottom: 120px;
  }
}

.py-60 {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (min-width: 576px) {
  .py-60 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.pt-60 {
  padding-top: 30px;
}

@media (min-width: 576px) {
  .pt-60 {
    padding-top: 40px;
  }
}

@media (min-width: 992px) {
  .pt-60 {
    padding-top: 60px;
  }
}

.pb-60 {
  padding-bottom: 30px;
}

@media (min-width: 576px) {
  .pb-60 {
    padding-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .pb-60 {
    padding-bottom: 60px;
  }
}

/* ================================= padding Css End =========================== */
/* =========================== Accordion Css start ============================= */
.custom--accordion .accordion-item {
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  background-color: hsl(var(--white)) !important;
  border-radius: 8px;
  overflow: hidden;
  border: 0;
}

.custom--accordion .accordion-item:not(:last-child) {
  margin-bottom: 16px;
}

.custom--accordion .accordion-body {
  padding: 24px;
  background-color: hsl(var(--white));
  padding-top: 0;
}

@media screen and (max-width: 575px) {
  .custom--accordion .accordion-body {
    padding: 15px;
    padding-top: 0;
  }
}

.custom--accordion .accordion-body .text {
  max-width: 95%;
  font-weight: 500;
}

@media screen and (max-width: 575px) {
  .custom--accordion .accordion-body .text {
    max-width: 100%;
    font-size: 15px;
  }
}

.custom--accordion:first-of-type .accordion-button.collapsed {
  border-radius: 5px;
}

.custom--accordion:last-of-type .accordion-button.collapsed {
  border-radius: 5px;
}

.custom--accordion .accordion-button {
  background-color: hsl(var(--white));
  color: var(--heading-color);
  font-size: 1.125rem;
  padding: 24px;
  font-weight: 600;
  padding-right: 60px;
}

@media screen and (max-width: 767px) {
  .custom--accordion .accordion-button {
    padding-right: 40px;
  }
}

@media screen and (max-width: 575px) {
  .custom--accordion .accordion-button {
    padding: 15px;
    padding-right: 35px;
    font-size: 1rem;
  }
}

.custom--accordion .accordion-button::after {
  background-image: none;
}

.custom--accordion .accordion-button:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.custom--accordion .accordion-button:not(.collapsed) {
  background-color: hsl(var(--white)) !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.custom--accordion .accordion-button:not(.collapsed)::after {
  background-image: none;
  color: hsl(var(--heading-color));
}

.custom--accordion .accordion-button[aria-expanded="true"]::after,
.custom--accordion .accordion-button[aria-expanded="false"]::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f068";
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 24px;
  height: unset;
  font-size: 24px;
}

@media screen and (max-width: 575px) {

  .custom--accordion .accordion-button[aria-expanded="true"]::after,
  .custom--accordion .accordion-button[aria-expanded="false"]::after {
    font-size: 20px;
    right: 12px;
  }
}

.custom--accordion .accordion-button[aria-expanded="false"]::after {
  content: "\f067";
  color: hsl(var(--heading-color));
}

/* ================================= Accordion Css End =========================== */
/* ================================= Button Css Start =========================== */
.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  color: none;
  background-color: none;
  border-color: none;
}

.pill {
  border-radius: 40px !important;
}

.btn {
  color: hsl(var(--white)) !important;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  border: 1px solid hsl(var(--border-color));
  font-family: var(--body-font);
  display: inline-block !important;
  font-size: 0.875rem;
  line-height: 1;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  border: 0 !important;
}

.btn:hover,
.btn:focus,
.btn:focus-visible {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.btn:active {
  top: 1px;
}

.btn--lg {
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 400;
}

.btn--sm {
  padding: 9px 18px;
  font-weight: 600;
  font-size: 0.75rem;
}

.btn--xsm {
  padding: 5px 8px;
  font-size: 0.75rem;
}

.btn--icon {
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 0.9375rem;
  padding: 0;
}

.btn--base {
  border: 1px solid hsl(var(--border-color) / 0.2);
  -webkit-box-shadow: 0px 1px 2px 0px #1012280d,
    0px 1px 2px 0px hsla(241, 63%, 15%, 0.251),
    0px -1px 1px 1px hsl(var(--base) / 0.25) inset,
    0px 1px 1px 1px hsl(var(--white) / 0.25) inset,
    0px 0px 0px 1px hsl(var(--base)) inset;
  box-shadow: 0px 1px 2px 0px #1012280d,
    0px 1px 2px 0px hsla(241, 63%, 15%, 0.251),
    0px -1px 1px 1px hsl(var(--base) / 0.25) inset,
    0px 1px 1px 1px hsl(var(--white) / 0.25) inset,
    0px 0px 0px 1px hsl(var(--base)) inset;
}

.btn--white {
  -webkit-box-shadow: 0px 1px 2px 0px #1018280d;
  box-shadow: 0px 1px 2px 0px #1018280d;
  font-weight: 400;
  color: hsl(var(--body-color)) !important;
  background-color: hsl(var(--white));
}

.btn--white:hover {
  border: 1px solid hsl(var(--body-color) / 0.2);
  background-color: hsl(var(--base) / 0.1);
}

.btn--base {
  background-color: #070E4E !important;
}

.btn--base:hover,
.btn--base:focus .btn--base:focus-visible {
  background-color: #050A3A !important;
  border: 1px solid #050A3A !important;
}

.btn-outline--base {
  background-color: transparent !important;
  border: 1px solid hsl(var(--base)) !important;
  color: hsl(var(--base)) !important;
}

.btn-outline--base:hover,
.btn-outline--base:focus .btn-outline--base:focus-visible {
  background-color: hsl(var(--base)) !important;
  color: hsl(var(--white)) !important;
}

.btn--dark {
  background-color: hsl(var(--dark)) !important;
}

.btn--dark:hover,
.btn--dark:focus .btn--dark:focus-visible {
  opacity: 0.9;
}

.btn-outline--dark {
  background-color: transparent !important;
  border: 1px solid hsl(var(--dark)) !important;
  color: hsl(var(--dark)) !important;
}

.btn-outline--dark:hover,
.btn-outline--dark:focus .btn-outline--dark:focus-visible {
  background-color: hsl(var(--dark)) !important;
  color: hsl(var(--white)) !important;
}

.btn--primary {
  background-color: hsl(var(--primary)) !important;
}

.btn--primary:hover,
.btn--primary:focus .btn--primary:focus-visible {
  background-color: hsl(var(--primary-d-200)) !important;
  border: 1px solid hsl(var(--primary-d-200)) !important;
}

.btn-outline--primary {
  background-color: transparent !important;
  border: 1px solid hsl(var(--primary)) !important;
  color: hsl(var(--primary)) !important;
}

.btn-outline--primary:hover,
.btn-outline--primary:focus .btn-outline--primary:focus-visible {
  background-color: hsl(var(--primary)) !important;
  color: hsl(var(--white)) !important;
}

.btn--secondary {
  background-color: hsl(var(--secondary)) !important;
}

.btn--secondary:hover,
.btn--secondary:focus .btn--secondary:focus-visible {
  background-color: hsl(var(--secondary-d-200)) !important;
  border: 1px solid hsl(var(--secondary-d-200)) !important;
}

.btn-outline--secondary {
  background-color: transparent !important;
  border: 1px solid hsl(var(--secondary)) !important;
  color: hsl(var(--secondary)) !important;
}

.btn-outline--secondary:hover,
.btn-outline--secondary:focus .btn-outline--secondary:focus-visible {
  background-color: hsl(var(--secondary)) !important;
  color: hsl(var(--white)) !important;
}

.btn--danger {
  background-color: hsl(var(--danger)) !important;
}

.btn--danger:hover,
.btn--danger:focus .btn--danger:focus-visible {
  background-color: hsl(var(--danger-d-200)) !important;
  border: 1px solid hsl(var(--danger-d-200)) !important;
}

.btn-outline--danger {
  background-color: transparent !important;
  border: 1px solid hsl(var(--danger)) !important;
  color: hsl(var(--danger)) !important;
}

.btn-outline--danger:hover,
.btn-outline--danger:focus .btn-outline--danger:focus-visible {
  background-color: hsl(var(--danger)) !important;
  color: hsl(var(--white)) !important;
}

.btn--success {
  background-color: hsl(var(--success)) !important;
}

.btn--success:hover,
.btn--success:focus .btn--success:focus-visible {
  background-color: hsl(var(--success-d-200)) !important;
  border: 1px solid hsl(var(--success-d-200)) !important;
}

.btn-outline--success {
  background-color: transparent !important;
  border: 1px solid hsl(var(--success)) !important;
  color: hsl(var(--success)) !important;
}

.btn-outline--success:hover,
.btn-outline--success:focus .btn-outline--success:focus-visible {
  background-color: hsl(var(--success)) !important;
  color: hsl(var(--white)) !important;
}

.btn--warning {
  background-color: hsl(var(--warning)) !important;
}

.btn--warning:hover,
.btn--warning:focus .btn--warning:focus-visible {
  background-color: hsl(var(--warning-d-200)) !important;
  border: 1px solid hsl(var(--warning-d-200)) !important;
}

.btn-outline--warning {
  background-color: transparent !important;
  border: 1px solid hsl(var(--warning)) !important;
  color: hsl(var(--warning)) !important;
}

.btn-outline--warning:hover,
.btn-outline--warning:focus .btn-outline--warning:focus-visible {
  background-color: hsl(var(--warning)) !important;
  color: hsl(var(--white)) !important;
}

.btn--info {
  background-color: hsl(var(--info)) !important;
}

.btn--info:hover,
.btn--info:focus .btn--info:focus-visible {
  background-color: hsl(var(--info-d-200)) !important;
  border: 1px solid hsl(var(--info-d-200)) !important;
}

.btn-outline--info {
  background-color: transparent !important;
  border: 1px solid hsl(var(--info)) !important;
  color: hsl(var(--info)) !important;
}

.btn-outline--info:hover,
.btn-outline--info:focus .btn-outline--info:focus-visible {
  background-color: hsl(var(--info)) !important;
  color: hsl(var(--white)) !important;
}

/* ================================= Button Css End =========================== */
/* ================================= Card Css Start =========================== */
.custom--card {
  border-radius: 8px;
  -webkit-box-shadow: var(--box-shadow-two);
  box-shadow: var(--box-shadow-two);
  background-color: hsl(var(--white));
  border: transparent;
}

.custom--card .card-header {
  padding: 12px 24px;
  background-color: transparent;
  border-bottom: 1px solid hsl(var(--black) / 0.1);
}

.custom--card .card-header .card-title {
  margin-bottom: 0;
}

.custom--card .card-body {
  background-color: hsl(var(--white));
  padding: 24px;
  border-radius: 8px;
}

.custom--card .card-body .card-title {
  margin-bottom: 24px;
}

.custom--card .card-footer {
  padding: 12px 24px;
  background-color: transparent;
  border-top: 1px solid hsl(var(--black) / 0.1);
}

/* ================================= Card Css End =========================== */
/* ================================= Form Css Start =========================== */
/* Form Label */
.form--label {
  margin-bottom: 6px;
  font-size: 14px;
  color: hsl(var(--heading-color));
  font-weight: 600;
}

@media screen and (max-width: 424px) {
  .form--label {
    font-size: 14px;
  }
}

.form--label__text {
  font-size: 14px;
  color: hsl(var(--body-color));
  font-weight: 400;
}

.form-group {
  margin-bottom: 1rem;
}

/* Form Select */
.select {
  color: hsl(var(--black) / 0.6) !important;
}

.select:focus {
  border-color: hsl(var(--base));
  color: hsl(var(--black)) !important;
}

.select option {
  background-color: hsl(var(--black));
  color: hsl(var(--white));
}

/* Form Select End */
/* Form Control Start */
.form--control {
  border-radius: 8px;
  font-weight: 400;
  outline: none;
  width: 100%;
  padding: 8px 16px;
  background-color: hsl(var(--white));
  border: 1px solid hsl(var(--border-color));
  color: hsl(var(--black));
  line-height: 1;
  -webkit-box-shadow: 0px 1px 2px 0px #1018280d;
  box-shadow: 0px 1px 2px 0px #1018280d;
}

.form--control::-webkit-input-placeholder {
  color: hsl(var(--body-color));
}

.form--control::-moz-placeholder {
  color: hsl(var(--body-color));
}

.form--control:-ms-input-placeholder {
  color: hsl(var(--body-color));
}

.form--control::-ms-input-placeholder {
  color: hsl(var(--body-color));
}

.form--control::placeholder {
  color: hsl(var(--body-color));
}

.form--control:focus {
  border-color: hsl(var(--base));
}

.form--control.form-control:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.form--control:disabled,
.form--control[readonly] {
  background-color: hsl(var(--black) / 0.2);
  opacity: 1;
  border: 0;
}

.form--control[type="password"] {
  color: hsl(var(--black) / 0.5);
}

.form--control[type="password"]:focus {
  color: hsl(var(--black));
}

.form--control[type="file"] {
  line-height: 38px;
  padding: 0;
  position: relative;
}

.form--control[type="file"]::-webkit-file-upload-button {
  border: 1px solid hsl(var(--black) / 0.08);
  padding: 3px 4px;
  border-radius: 0.2em;
  font-size: 14px;
  background-color: hsl(var(--base)) !important;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  line-height: 20px;
  position: relative;
  margin-left: 6px;
  color: hsl(var(--white)) !important;
}

.form--control[type="file"]::file-selector-button {
  border: 1px solid hsl(var(--black) / 0.08);
  padding: 3px 4px;
  border-radius: 0.2em;
  font-size: 14px;
  background-color: hsl(var(--base)) !important;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  line-height: 20px;
  position: relative;
  margin-left: 6px;
  color: hsl(var(--white)) !important;
}

.form--control[type="file"]::-webkit-file-upload-button:hover {
  background-color: hsl(var(--base));
  border: 1px solid hsl(var(--base));
  color: hsl(var(--black));
}

.form--control[type="file"]::file-selector-button:hover {
  background-color: hsl(var(--base));
  border: 1px solid hsl(var(--base));
  color: hsl(var(--black));
}

/* Form Control End */
textarea.form--control {
  height: 130px;
}

/* Autofill Css */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-text-fill-color: hsl(var(--black)) !important;
  caret-color: hsl(var(--black));
}

/* Autofill Css End */
/* input group */
.input--group {
  position: relative;
}

/* Show Hide Password */
input#your-password,
input#confirm-password {
  padding-right: 50px;
}

.password-show-hide {
  position: absolute;
  right: 20px;
  z-index: 5;
  cursor: pointer;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: hsl(var(--black) / 0.4);
}

/* --------------- Number Arrow None --------------------- */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

/* Custom Checkbox Design */
.form--check {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form--check a {
  display: inline;
}

.form--check .form-check-input {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: hsl(var(--white));
  box-shadow: none !important;
  border: 0;
  position: relative;
  border-radius: 6px;
  width: 20px;
  height: 20px;
  border: 1px solid hsl(var(--black) / 0.2);
  cursor: pointer;
  margin-top: 0;
}

.form--check .form-check-input:checked {
  background-color: hsl(var(--base) / 0.06) !important;
  border-color: hsl(var(--base)) !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form--check .form-check-input:checked[type="checkbox"] {
  background-image: none;
}

.form--check .form-check-input:checked::before {
  position: absolute;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: hsl(var(--base));
  font-size: 0.6875rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.form--check .form-check-label {
  font-weight: 600;
  width: calc(100% - 20px);
  padding-left: 12px;
  cursor: pointer;
  font-size: 0.875rem;
  color: hsl(var(--heading-color));
}

@media screen and (max-width: 424px) {
  .form--check label {
    font-size: 0.9375rem;
  }
}

@media screen and (max-width: 424px) {
  .form--check a {
    font-size: 0.875rem;
  }
}

/* Custom Radio Design */
.form--radio .form-check-input {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid hsl(var(--black) / 0.2);
  position: relative;
  background-color: transparent;
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.form--radio .form-check-input:active {
  -webkit-filter: brightness(100%);
  filter: brightness(100%);
}

.form--radio .form-check-input:checked {
  background-color: transparent;
  border-color: hsl(var(--base));
}

.form--radio .form-check-input:checked[type="radio"] {
  background-image: none;
}

.form--radio .form-check-input:checked::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  background-color: hsl(var(--base));
  border-radius: 50%;
  z-index: 999;
}

.form--radio .form-check-label {
  font-weight: 600;
  width: calc(100% - 16px);
  padding-left: 12px;
  cursor: pointer;
  font-size: 0.875rem;
}

/*  Custom Switch Design */
.form--switch .form-check-input {
  border-radius: 3px;
  background-image: none;
  position: relative;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  background-color: hsl(var(--black) / 0.2) !important;
  padding: 10px !important;
  margin-left: 0;
  margin-bottom: 5px;
  border-radius: 40px;
  width: 50px;
  height: 24px;
  cursor: pointer;
}

.form--switch .form-check-input:focus {
  border-radius: 40px;
  background-image: none;
  position: relative;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
}

.form--switch .form-check-input::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background-color: hsl(var(--white));
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 2px;
  left: 5px;
  border-radius: 50%;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.form--switch .form-check-input:checked {
  background-color: hsl(var(--success)) !important;
}

.form--switch .form-check-input:checked::before {
  left: calc(100% - 24px);
  background-color: hsl(var(--white)) !important;
}

.form--switch .form-check-input:checked[type="checkbox"] {
  background-image: none;
}

.form--switch .form-check-label {
  width: calc(100% - 14px);
  padding-left: 5px;
  cursor: pointer;
}

/*  Custom Switch End Design */
/* ================================= Form Css End =========================== */
/* --======================Custom Input group Start ======================*/
.input--group {
  border-radius: 5px;
  border: 1px solid hsl(var(--border-color));
}

.input--group .form--control {
  border-width: 0px !important;
  padding-right: 5px;
  -webkit-box-shadow: unset;
  box-shadow: unset;
}

.input--group .input-group-text+.form--control {
  padding-right: 20px;
  padding-left: 10px;
}

.input--group:focus-within {
  border: 1px solid hsl(var(--base));
}

.input--group .input-group-text {
  border-width: 0px;
  height: calc(100% - 10px);
  margin: 5px;
  border-radius: 5px;
  background-color: hsl(var(--black) / 0.1);
  color: hsl(var(--body-color));
}

.input--group-text {
  margin-left: 5px;
}

.input--group .form--control[readonly] {
  background: hsl(var(--black) / 0.2) !important;
}

.input--group .form--control[readonly]:focus {
  border-color: hsl(var(--black) / 0.2);
}

.input--group:has(.form--control[readonly]) {
  background: hsl(var(--black) / 0.2) !important;
}

.input--group:has(.form--control[readonly]):focus-within {
  border-color: hsl(var(--black) / 0.4) !important;
}

/* --======================Custom Input group End ======================*/
.input-group .input-group-text {
  border: 1px solid hsl(var(--border-color));
  background-color: #efeff3;
  -webkit-box-shadow: 0px 1px 2px 0px #1018280d;
  box-shadow: 0px 1px 2px 0px #1018280d;
  padding: 0 10px;
}

.input-group .input-group-text .form--control {
  border: 0 !important;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 30px;
}

.input-group .input-group-text:has(.form--control) {
  padding: 0;
}

.input-group .input-group-text .select2+.select2-container {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

.input-group .input-group-text:has(.select2+.select2-container) {
  height: 40px !important;
}

/* ================================= Modal Css Start =========================== */
.custom--modal .modal-header {
  border: 0;
  padding: 32px 40px;
  position: relative;
  z-index: 1;
  background: -webkit-gradient(linear,
      left top,
      right top,
      color-stop(-93%, #b7bfe1),
      to(hsl(var(--base))));
  background: linear-gradient(90deg, #b7bfe1 -93%, hsl(var(--base)) 100%);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .custom--modal .modal-header {
    padding: 24px;
  }
}

.custom--modal .modal-header__shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.custom--modal .modal-header__shape img {
  width: 100%;
  height: 100%;
}

.custom--modal .modal-header .btn-close {
  margin: 0;
  padding: 0;
  background: none;
  width: unset;
  height: unset;
  opacity: 1;
  background-image: none;
  border-radius: 0;
  box-shadow: none;
}

.custom--modal .modal-header .btn-close__icon {
  width: 25px;
  height: 25px;
  background-color: hsl(var(--white));
  font-size: 1rem;
  color: hsl(var(--base));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  border-radius: 50%;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.custom--modal .modal-header .btn-close__icon:hover {
  background-color: hsl(var(--danger-l-100));
  color: hsl(var(--white));
}

.custom--modal .modal-header .btn-close :focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.custom--modal .modal-header .modal-title {
  color: hsl(var(--white));
  margin-bottom: 10px;
}

.custom--modal .modal-header__desc {
  color: hsl(var(--white));
}

@media screen and (max-width: 424px) {
  .custom--modal .modal-header__desc {
    font-size: 12px;
  }
}

.custom--modal .modal-content {
  border-radius: 10px !important;
  border: 0;
}

.custom--modal .modal-body {
  padding: 32px 40px;
}

@media screen and (max-width: 767px) {
  .custom--modal .modal-body {
    padding: 24px;
  }
}

.custom--modal .modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 32px 40px;
  border-top: 1px solid hsl(var(--border-color));
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

/* ================================= Modal Css End =========================== */
/* ================================= Pagination Css Start =========================== */
.pagination {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-end;
  gap: 12px;
}

.pagination .page-item.active .page-link {
  background-color: hsl(var(--base));
  color: hsl(var(--white));
  border-color: hsl(var(--base));
}

.pagination .page-item .page-link {
  border: 1px solid hsl(var(--black) / 0.15);
  border-radius: 6px;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  font-weight: 500;
  padding: 0;
  color: hsl(var(--body-color));
}

.pagination .page-item .page-link:hover {
  background-color: hsl(var(--base));
  color: hsl(var(--white));
  border-color: hsl(var(--base));
}

.pagination .page-item .page-link:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* ================================= Pagination Css End =========================== */
/* ================================= Table Css Start =========================== */
/* Table Content Css start */
.action-buttons {
  gap: 4px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.action-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.edit-btn {
  color: hsl(var(--info));
}

.delete-btn {
  color: hsl(var(--danger));
  background-color: hsl(var(--danger) / 0.08);
}

/* Table Content Css end */
/* Table Css Start */
.table {
  margin: 0;
  border-collapse: collapse;
  border-collapse: separate;
  border-spacing: 0px 0px;
}

.table thead tr th {
  background-color: hsl(var(--section-bg));
  text-align: center;
  padding: 15px 20px;
  font-family: var(--heading-font);
  font-weight: 600;
  max-width: 170px;
  font-size: 0.75rem;
  border-top: 1px solid hsl(var(--border-color) / 0.4);
  border-bottom: 1px solid hsl(var(--border-color) / 0.4);
}

.table thead tr th:not(:first-child) {
  border-left: 0;
}

.table thead tr th:first-child {
  border-radius: 8px 0 0 0;
  text-align: left;
  border-left: 1px solid hsl(var(--border-color) / 0.4);
}

.table thead tr th:last-child {
  text-align: right;
  border-radius: 0 8px 0 0;
  border-right: 1px solid hsl(var(--border-color) / 0.4);
}

.table thead tr th:nth-child(2) {
  text-align: left;
}

.table tbody {
  border: 0 !important;
}

.table tbody tr:last-child {
  border-bottom: 0;
}

.table tbody tr:last-child td:first-child {
  border-radius: 0px 0 0 6px;
}

.table tbody tr:last-child td:last-child {
  border-radius: 0 0px 6px 0;
}

.table tbody tr td {
  text-align: center;
  vertical-align: middle;
  padding: 24px;
  border-width: 1px;
  color: hsl(var(--body-color));
  font-weight: 500;
  max-width: 170px;
  font-size: 1rem;
  border: 0;
  background-color: transparent;
  border-bottom: 1px solid hsl(var(--border-color) / 0.4);
}

@media screen and (max-width: 1399px) {
  .table tbody tr td {
    font-size: 0.875rem;
    padding: 20px 16px;
  }
}

.table tbody tr td::before {
  content: attr(data-label);
  font-family: var(--heading-font);
  font-size: 0.9375rem;
  color: hsl(var(--black));
  font-weight: 500;
  display: none;
  width: 45% !important;
  text-align: left;
}

.table tbody tr td:first-child {
  text-align: left;
  font-weight: 600;
  color: #101828;
  border-left: 1px solid hsl(var(--border-color) / 0.4);
}

.table tbody tr td:last-child {
  text-align: right;
  border-right: 1px solid hsl(var(--border-color) / 0.4);
}

.table tbody tr td:nth-child(2) {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .table--responsive--md thead {
    display: none;
  }

  .table--responsive--md tbody tr {
    display: block;
  }

  .table--responsive--md tbody tr:last-child td {
    border-bottom: 0;
  }

  .table--responsive--md tbody tr td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 15px;
    text-align: right;
    padding: 10px 15px;
    border: none;
    border-bottom: 1px solid hsl(var(--black) / 0.8);
    max-width: unset;
  }

  .table--responsive--md tbody tr td:last-child {
    border: none;
  }

  .table--responsive--md tbody tr td:first-child {
    text-align: right;
    border-left: 0;
  }

  .table--responsive--md tbody tr td::before {
    display: block;
    font-size: 0.875rem;
    color: hsl(var(--black) / 0.7);
  }
}

@media screen and (max-width: 767px) {
  .table--responsive--md tbody tr td {
    border-color: hsl(var(--black) / .05);
  }
}

@media screen and (max-width: 991px) {
  .table--responsive--lg thead {
    display: none;
  }

  .table--responsive--lg tbody tr {
    display: block;
  }

  .table--responsive--lg tbody tr:nth-child(odd) {
    background-color: hsl(var(--section-bg));
  }

  .table--responsive--lg tbody tr:nth-child(even) {
    background-color: hsl(var(--base) / 0.04);
  }

  .table--responsive--lg tbody tr:last-child td {
    border-bottom: 0;
  }

  .table--responsive--lg tbody tr td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 15px;
    text-align: right;
    padding: 10px 15px;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid hsl(var(--black) / 0.08);
    max-width: unset;
  }

  .table--responsive--lg tbody tr td:last-child {
    border: none;
  }

  .table--responsive--lg tbody tr td:first-child {
    text-align: right;
    border-left: 0;
  }

  .table--responsive--lg tbody tr td::before {
    display: block;
    font-size: 0.875rem;
    color: hsl(var(--black) / 0.7);
  }
}

@media screen and (max-width: 991px) {
  .table--responsive--lg tbody tr td {
    border-color: hsl(var(--black) / .05);
  }
}

@media screen and (max-width: 1199px) {
  .table--responsive--xl thead {
    display: none;
  }

  .table--responsive--xl tbody tr {
    display: block;
  }

  .table--responsive--xl tbody tr:nth-child(odd) {
    background-color: hsl(var(--section-bg));
  }

  .table--responsive--xl tbody tr:nth-child(even) {
    background-color: hsl(var(--base) / 0.04);
  }

  .table--responsive--xl tbody tr td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 15px;
    text-align: right;
    padding: 10px 15px;
    border: none;
    border-bottom: 1px solid hsl(var(--black) / 0.08);
    max-width: unset;
  }

  .table--responsive--xl tbody tr td:last-child {
    border: none;
  }

  .table--responsive--xl tbody tr td:first-child {
    text-align: right;
    border-left: 0;
  }

  .table--responsive--xl tbody tr td::before {
    display: block;
    font-size: 0.875rem;
    color: hsl(var(--black) / 0.7);
  }
}

@media screen and (max-width: 1199px) {
  .table--responsive--xl tbody tr td {
    border-color: hsl(var(--black) / .05);
  }
}

@media screen and (max-width: 1399px) {
  .table--responsive--xxl thead {
    display: none;
  }

  .table--responsive--xxl tbody tr {
    display: block;
  }

  .table--responsive--xxl tbody tr:nth-child(odd) {
    background-color: hsl(var(--section-bg));
  }

  .table--responsive--xxl tbody tr:nth-child(even) {
    background-color: hsl(var(--base) / 0.04);
  }

  .table--responsive--xxl tbody tr:last-child td {
    border-bottom: 0;
  }

  .table--responsive--xxl tbody tr td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 15px;
    text-align: right;
    padding: 10px 15px;
    border: none;
    border-bottom: 1px solid hsl(var(--black) / 0.08);
    max-width: unset;
  }

  .table--responsive--xxl tbody tr td:last-child {
    border: none;
  }

  .table--responsive--xxl tbody tr td:first-child {
    text-align: right;
    border-left: 0;
  }

  .table--responsive--xxl tbody tr td::before {
    display: block;
    font-size: 0.875rem;
    color: hsl(var(--black) / 0.7);
  }
}

@media screen and (max-width: 1399px) {
  .table--responsive--xxl tbody tr td {
    border-color: hsl(var(--black) / .05);
  }
}

/* ================================= Table Css End =========================== */
/* ================================= Tab Css Start =========================== */
.custom--tab {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 6px;
  margin-bottom: 40px;
}

.custom--tab .nav-item {
  border-bottom: 0;
  padding: 5px;
}

.custom--tab .nav-item .nav-link {
  color: hsl(var(--body-color));
  padding: 8px 25px;
  background-color: transparent !important;
  border-radius: 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 1px solid hsl(var(--black) / 0.08) !important;
  font-size: 14px;
}

@media screen and (max-width: 1199px) {
  .custom--tab .nav-item .nav-link {
    padding: 12px 15px;
  }
}

.custom--tab .nav-item .nav-link.active {
  color: hsl(var(--white));
  background-color: hsl(var(--base-d-200)) !important;
  border: 1px solid transparent !important;
}

.custom--tab .nav-item .nav-link.active:hover {
  color: hsl(var(--white));
}

.custom--tab .nav-item .nav-link:hover {
  color: hsl(var(--base));
}

.custom--tab.tab-two {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-radius: 0;
  background-color: hsl(var(--white));
  padding: 0;
  padding-bottom: 15px;
  border-radius: 0;
  gap: 40px 30px;
  width: 100%;
  border-bottom: 1px solid hsl(var(--border-color) / 0.4);
}

@media screen and (max-width: 424px) {
  .custom--tab.tab-two {
    gap: 20px 10px;
  }
}

.custom--tab.tab-two .nav-item {
  padding: 0;
}

.custom--tab.tab-two .nav-item .nav-link {
  background-color: transparent !important;
  border-radius: 0;
  border: 0 !important;
  padding: 0 10px !important;
  position: relative;
}

@media screen and (max-width: 424px) {
  .custom--tab.tab-two .nav-item .nav-link {
    padding: 0 5px !important;
  }
}

.custom--tab.tab-two .nav-item .nav-link::after {
  position: absolute;
  content: "";
  bottom: -17px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: hsl(var(--base-d-400));
}

@media screen and (max-width: 424px) {
  .custom--tab.tab-two .nav-item .nav-link::after {
    bottom: -10px;
  }
}

.custom--tab.tab-two .nav-item .nav-link.active {
  color: hsl(var(--base)) !important;
  background-color: transparent !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.custom--tab.tab-two .nav-item .nav-link.active.nav-link {
  color: hsl(var(--base));
  font-weight: 600;
}

.custom--tab.tab-two .nav-item .nav-link.active.nav-link::after {
  width: 100%;
}

.custom--tab.tab-two .nav-item .nav-link.active:hover {
  color: hsl(var(--base));
}

/* ================================= Tab Css End =========================== */
/* ================================= Badge Css Start =========================== */
.badge {
  font-size: 0.75rem;
  border-radius: 40px;
  padding: 5px 10px;
  font-weight: 500;
  position: relative;
  text-align: center;
}

.badge__icon {
  font-size: 12px;
}

.badge--base {
  background-color: hsl(var(--base) / 0.1) !important;
  color: hsl(var(--base)) !important;
}

.badge--primary {
  background-color: hsl(var(--primary) / 0.1) !important;
  color: hsl(var(--primary)) !important;
}

.badge--secondary {
  background-color: hsl(var(--secondary) / 0.1) !important;
  color: hsl(var(--secondary)) !important;
}

.badge--success {
  background-color: hsl(var(--success) / 0.1) !important;
  color: hsl(var(--success)) !important;
}

.badge--danger {
  background-color: hsl(var(--danger) / 0.1) !important;
  color: hsl(var(--danger)) !important;
}

.badge--dark {
  background-color: hsl(var(--dark) / 0.1) !important;
  color: hsl(var(--dark)) !important;
}

.badge--warning {
  background-color: hsl(var(--warning) / 0.1) !important;
  color: hsl(var(--warning)) !important;
}

.badge--info {
  background-color: hsl(var(--info) / 0.1) !important;
  color: hsl(var(--info)) !important;
}







/* ================================= Badge Css End =========================== */
/* ====================================== Alert Css Start =============================== */
.alert {
  margin-bottom: 0;
  background-color: hsl(var(--alert-color)/0.05);
  border: 1px solid hsl(var(--alert-color)/0.2);
  font-weight: 400;
  padding: 20px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
}

@media screen and (max-width: 991px) {
  .alert {
    padding: 16px;
  }
}

@media screen and (max-width: 575px) {
  .alert {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.alert__icon {
  line-height: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 0.75rem;
  height: 20px;
  width: 20px;
  display: grid;
  place-content: center;
  background: hsl(var(--alert-color));
  color: hsl(var(--white));
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 3px hsl(var(--white)), 0 0 0 6px hsl(var(--alert-color)/0.5), 0 0 0 9px hsl(var(--white)), 0 0 0 12px hsl(var(--alert-color)/0.15);
  box-shadow: 0 0 0 3px hsl(var(--white)), 0 0 0 6px hsl(var(--alert-color)/0.5), 0 0 0 9px hsl(var(--white)), 0 0 0 12px hsl(var(--alert-color)/0.15);
  margin: 6px;
}

.alert__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (max-width: 575px) {
  .alert__content {
    width: 100%;
    margin-top: 6px;
  }
}

.alert__title {
  font-size: 0.875rem;
  color: hsl(var(--base-two)/0.8);
  font-weight: 600;
  font-family: var(--heading-font);
  margin-bottom: 6px;
}

.alert__desc {
  color: hsl(var(--base-two)/0.7);
  display: block;
  font-size: 0.875rem;
}

@media screen and (max-width: 424px) {
  .alert__desc {
    font-size: 0.8125rem;
  }
}

.alert__link {
  position: relative;
  color: hsl(var(--primary));
  font-weight: 600;
}

.alert .btn-close {
  background: transparent;
  padding: 0;
  color: hsl(var(--alert-color));
  font-size: 1.25rem;
  top: 16px;
  right: 16px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media screen and (max-width: 991px) {
  .alert .btn-close {
    top: 10px;
    right: 10px;
  }
}

.alert--base {
  --alert-color: var(--base);
}

.alert--primary {
  --alert-color: var(--primary);
}

.alert--success {
  --alert-color: var(--success);
}

.alert--info {
  --alert-color: var(--info);
}

.alert--danger {
  --alert-color: var(--danger);
}

.alert--warning {
  --alert-color: var(--warning);
}

.alert--secondary {
  --alert-color: var(--secondary);
}

/* ====================================== Alert Css End =============================== */
/* ================================= preload Css Start =========================== */


/* ==================== PRELOADER STYLES ==================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000a1a;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.preloader.fade-out {
  animation: preloaderFadeOut 0.5s ease-out forwards;
}

@keyframes preloaderFadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.loader-p {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000a1a;
  overflow: hidden;
}

/* Background animation - continuous */
.preloader-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000a1a;
  animation: bgPulse 8s infinite ease-in-out;
}

@keyframes bgPulse {
  0% {
    background: #000a1a;
  }

  25% {
    background: #001a33;
  }

  50% {
    background: #000a1a;
  }

  75% {
    background: #001122;
  }

  100% {
    background: #000a1a;
  }
}

/* Initial dot - continuous */
.preloader-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #00f7ff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px #00f7ff, 0 0 40px #00f7ff;
  animation:
    dotExpand 8s infinite cubic-bezier(0.2, 0.8, 0.3, 1),
    dotPulse 2s infinite ease-in-out;
  z-index: 10;
}

@keyframes dotExpand {

  0%,
  100% {
    width: 8px;
    height: 8px;
    opacity: 1;
  }

  /* Removed expansion frames */
  12.5% {
    width: 8px;
    height: 8px;
    opacity: 1;
  }

  25%,
  50% {
    width: 8px;
    height: 8px;
    opacity: 1;
  }
}

@keyframes dotPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* Electric circle removed as per user request */

/* Lightning effects - continuous */
.preloader-lightning {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%);
  z-index: 25;
  animation: lightningReveal 8s infinite;
}

@keyframes lightningReveal {

  0%,
  37.5%,
  100% {
    opacity: 0;
  }

  25% {
    opacity: 1;
  }
}



@keyframes lightningFlash {

  0%,
  100% {
    opacity: 0;
    transform: scaleY(0);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Logo shield construction - continuous */
.preloader-logo-construction {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 185px;
  opacity: 0;
  z-index: 30;
  animation: logoConstructionCycle 8s infinite;
}

@keyframes logoConstructionCycle {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }

  29% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }

  30% {
    opacity: 1;
    /* Appear exactly when circle vanishes */
    transform: translate(-50%, -50%) scale(0.1);
    /* Start small */
  }

  40% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    /* Full size */
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  55% {
    opacity: 0;
    /* Fade out for next cycle or final reveal */
    transform: translate(-50%, -50%) scale(1.1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
}

.preloader-shield-outline {
  position: absolute;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #00f7ff;
  stroke-width: 2;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  filter: url(#preloaderGlow);
  animation: drawShield 8s infinite cubic-bezier(0.2, 0.8, 0.3, 1);
}

@keyframes drawShield {

  0%,
  50%,
  100% {
    stroke-dashoffset: 1000;
  }

  37.5% {
    stroke-dashoffset: 0;
  }

  43.75% {
    stroke-dashoffset: 0;
  }
}

/* Final flash effect - continuous */
.preloader-final-flash {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 174, 255, 0.4) 0%, transparent 20%);
  opacity: 0;
  z-index: 5;
  animation: finalFlashCycle 8s infinite;
}

@keyframes finalFlashCycle {

  0%,
  62.5%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }

  56.25% {
    opacity: 0;
    transform: scale(1.2);
  }
}

/* Final logo with glow - continuous */
.preloader-final-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 185px;
  opacity: 0;
  z-index: 50;
  animation: finalLogoCycle 8s infinite;
}

@keyframes finalLogoCycle {

  0%,
  62.5%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }

  56.25% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.preloader-final-shield {
  width: 100%;
  height: 100%;
  filter: url(#preloaderFinalGlow);
  animation: shieldPulse 2s ease-in-out infinite;
}

@keyframes shieldPulse {

  0%,
  100% {
    opacity: 0.9;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

/* Continuous energy waves */
.preloader-energy-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  z-index: 5;
}

.preloader-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #00f7ff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px #00f7ff, 0 0 40px #00f7ff;
  animation:
    dotExpand 8s infinite cubic-bezier(0.2, 0.8, 0.3, 1),
    dotPulse 2s infinite ease-in-out;
  z-index: 10;
}

.preloader-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border: 2px solid transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: circleForm 8s infinite cubic-bezier(0.2, 0.8, 0.3, 1);
  z-index: 20;
}


.preloader-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border: 1px solid #00f7ff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: waveExpand 3s linear infinite;
}

@keyframes waveExpand {
  0% {
    width: 0;
    height: 0;
    opacity: 0.8;
  }

  100% {
    width: 200px;
    height: 200px;
    opacity: 0;
  }
}

/* ================================= preload Css End ===========================  */
/* ============= Header Start Here ======================= */
.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
  margin-right: 40px;
}

.navbar-brand.logo img {
  max-width: 180px;
}

@media screen and (max-width: 991px) {
  .navbar-brand.logo img {
    max-width: 150px;
  }
}

.header {
  position: relative;
  z-index: 999;
  background: var(--Colors-Primary-500, #02021D);
  border: 1px solid hsl(var(--border-color) / 0.4);
}

.header-light-shadow {
  position: absolute;
  right: -120px;
  width: 890px;
  pointer-events: none;
  z-index: 1;
  object-fit: cover;
}

.header .navbar {
  position: unset;
  z-index: 2;
}

.header.fixed-header {
  position: sticky;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  top: 0px;
  -webkit-animation: slide-down 0.8s;
  animation: slide-down 0.8s;
  width: 100%;
  background-color: var(--Colors-Primary-500, #02021D);
  border-bottom: 1px solid hsl(var(--black) / 0.1);
}

.header.fixed-header .header-light-shadow {
  display: none;
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-150%);
    transform: translateY(-150%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-150%);
    transform: translateY(-150%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.navbar {
  padding: 0 !important;
}

/* ========================= Desktop Device Start ========================= */
@media (min-width: 1200px) {
  .header .nav-menu {
    padding-top: 0;
    padding-bottom: 0;
  }

  .header .nav-menu .nav-item {
    padding-right: 34px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .header .nav-menu .nav-item {
    padding-right: 20px;
  }
}

@media (min-width: 1200px) {
  .header .nav-menu .nav-item:last-child {
    padding-right: 0;
  }
}

@media (min-width: 1200px) {
  .header .nav-menu .nav-item.active .nav-link {
    color: hsl(var(--base)) !important;
  }

  .header .nav-menu .nav-item.active .nav-link::before {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .header .nav-menu .nav-item:hover .nav-link {
    color: hsl(var(--base)) !important;
  }

  .header .nav-menu .nav-item:hover .header-dropdown {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
  }
}

@media (min-width: 1200px) {
  .header .nav-menu .nav-item .nav-link {
    color: var(--main-Brand-color, #070E4E) !important;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;

    position: relative;
    cursor: pointer;
    padding: 30px 6px;
  }
}


/* ========================== Desktop Device End ========================= */
/* ============================== Small Device ======================= */
@media screen and (max-width: 1199px) {
  .header {
    padding-block: 20px;
    border-bottom: 1px solid hsl(var(--black) / 0.05);
  }

  .header .nav-menu .nav-item {
    text-align: left;
    display: block;
    position: relative;
    margin: 0;
  }

  .header .nav-menu .nav-item:hover .nav-link .nav-item__icon {
    -webkit-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
  }

  .header .nav-menu .header-dropdown {
    position: static !important;
    display: none !important;
    border: 0 !important;
    margin-top: 20px;
    padding-left: 20px;
  }

  .header .nav-menu .header-dropdown .dropdown-menu__list {
    border-bottom: 1px solid hsl(var(--border-color) / 0.3);
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .header .nav-menu .header-dropdown .dropdown-menu__list:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .header .nav-menu .header-dropdown .dropdown-menu__link {
    padding: 0;
  }

  .header .nav-menu .header-dropdown .dropdown-menu__link:hover {
    background-color: transparent !important;
  }

  .header .nav-menu .header-dropdown.show {
    display: block !important;
  }

  .header .nav-item:first-child {
    border-bottom: none;
  }

  .header .nav-item:not(:last-child) {
    margin-bottom: 16px !important;
  }

  .header .nav-item.active .nav-link {
    color: hsl(var(--base));
  }

  .header .nav-item .nav-link {
    padding: 0 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 !important;
    color: hsl(var(--heading-color));
    font-weight: 600;
    font-size: 1rem;
  }

  .header .nav-item .nav-link.show[aria-expanded="true"] {
    color: hsl(var(--base)) !important;
  }

  .header .nav-item .nav-link.show[aria-expanded="true"] i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

.header .navbar-toggler.header-button {
  border-color: transparent;
  color: hsl(var(--black));
  background: transparent !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  width: auto;
  font-size: 2.125rem;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  margin-left: 10px;
}

@media screen and (max-width: 575px) {
  .header .navbar-toggler.header-button {
    font-size: 2rem;
  }
}

.header .navbar-toggler.header-button:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.header .navbar-toggler.header-button[aria-expanded="true"] i::before {
  content: "\f00d";
}

.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 8px;
  padding-left: 48px;
}

@media screen and (max-width: 1399px) {
  .header-right {
    gap: 12px;
    padding-left: 24px;
  }
}

.header-right .btn:has(.icon) {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.header-right .btn:has(.icon) .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.lang-box {
  margin-right: 8px;
}

@media screen and (max-width: 1399px) {
  .lang-box {
    margin-right: 0;
  }
}

@media screen and (max-width: 1199px) {
  .lang-box {
    display: inline-flex;
  }
}

.lang-box-btn {
  color: var(--main-head-Color, #F9F4F4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 1199px) {
  .lang-box-btn {
    width: 100%;
    border: 1px solid hsl(var(--border-color) / 0.4);
    border-radius: 8px;
    padding: 8px 10px;
  }
}

@media screen and (max-width: 374px) {
  .lang-box-btn {
    padding: 6px 10px;
  }
}

.lang-box-btn.show .icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.lang-box-btn .thumb {
  border-radius: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
}

.lang-box-btn .thumb img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1399px) {
  .lang-box-btn .thumb {
    height: 20px;
    width: 20px;
  }
}

.lang-box-btn .text {
  color: var(--main-Brand-color, #070E4E) !important;
  font-family: 'Lato', sans-serif !important;
  font-size: 18px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 21px !important;
  /* 116.667% */
}

@media screen and (max-width: 991px) {
  .lang-box-btn .text {
    font-size: 14px !important;
  }
}

@media screen and (max-width: 374px) {
  .lang-box-btn .text {
    font-size: 13px !important;
  }
}



.lang-box-btn .icon {
  color: hsl(var(--body-color));
  font-size: 0.75rem;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

.lang-box-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 16px;
  color: hsl(var(--body-color));
  font-weight: 600;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

@media (max-width: 991px) {
  .lang-box-link .text {
    font-size: 14px;
  }
}

.lang-box-link:hover {
  background-color: hsl(var(--black) / 0.05);
  color: hsl(var(--black));
}

.lang-box-link .thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.lang-box-link .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.lang-box .dropdown-menu {
  margin-top: 30px;
  min-width: 205px;
}

@media screen and (max-width: 1199px) {
  .lang-box .dropdown-menu {
    left: 0 !important;
    margin-top: 10px;
    right: auto !important;
    width: 100%;
    border-radius: 6px;
  }
}

.dropdown-menu {
  padding: 16px 12px;
  border: 0;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  background-color: #0f0f1e;
  border-radius: 14px;
  left: auto !important;
  right: 0 !important;
  display: unset !important;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
  top: 100% !important;
  position: absolute !important;
  border: none;
  overflow: hidden;
  min-width: 240px;
  margin-top: 14px;
  list-style: none;
}

.dropdown-menu.show {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1) !important;
  transform: translate3d(137px, 2.4px, 0px) !important;
}

.dropdown-menu__link {
  color: hsl(var(--body-color));
  font-weight: 400;
  padding: 8px 15px;
}

.dropdown-menu__link:hover {
  background-color: hsl(var(--base)) !important;
  color: hsl(var(--white));
}

.dropdown-menu li {
  list-style: none;
  margin-bottom: 0;
}

.dropdown-menu li:last-child {
  margin-bottom: 0;
}

.dropdown-menu li a.lang-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f0f0f5;
  font-weight: 400;
  padding: 12px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.3px;
  margin-left: 0;
}

.dropdown-menu li a.lang-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.lang-flag {
  width: 32px;
  height: 22px;
  border-radius: 3px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header .offcanvas-header {
  background-color: hsl(var(--white));
}

.header .btn-close {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.account-btn-groups .btn {
  padding: 12px;
}

@media screen and (max-width: 424px) {
  .account-btn-groups .btn {
    font-size: 14px;
    padding: 10px 12px;
  }
}

@media screen and (max-width: 374px) {
  .account-btn-groups .btn {
    font-size: 13px;
    padding: 10px;
  }
}

/* ================================= Header Css End =========================== */
/* ================ Top Header Start Here ================ */
.header-top {
  background-color: hsl(var(--black));
  border-bottom: 1px solid hsl(var(--white) / 0.2);
  padding: 10px 0px;
  position: relative;
}

.header-top .social-list.style-two .social-list__link flex-center {
  width: 30px;
  height: 30px;
  font-size: 0.75rem;
}

.top-header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .top-header-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.contact-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.contact-list__item {
  padding-right: 20px;
  margin-right: 20px;
  position: relative;
}

.contact-list__item:last-child {
  padding-right: 0;
  margin-right: 0;
}

.contact-list__item:last-child::before {
  display: none;
}

.contact-list__item::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: hsl(var(--white) / 0.4);
}

.contact-list__item-icon {
  font-size: 0.75rem;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: hsl(var(--white));
  background-color: hsl(var(--base));
  border-radius: 50%;
  margin-right: 10px;
  display: inline-block;
}

.contact-list__link {
  color: hsl(var(--white));
  font-weight: 400;
  font-family: var(--body-font);
}

.contact-list__link:hover .contact-list__link-icon {
  color: hsl(var(--white));
}

/* Login Registration */
.login-registration-list {
  margin: 0 -10px;
  padding-right: 20px;
}

@media screen and (max-width: 991px) {
  .login-registration-list {
    padding-right: 0;
  }
}

.login-registration-list__item {
  color: hsl(var(--white));
  padding: 0 10px;
  position: relative;
}

.login-registration-list__item:last-child::before {
  display: none;
}

.login-registration-list__item::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 12px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: hsl(var(--white) / 0.5);
}

.login-registration-list__icon {
  color: hsl(var(--base));
  margin-right: 10px;
  font-size: 1rem;
}

.login-registration-list__link {
  color: hsl(var(--white));
  font-weight: 400;
  font-family: var(--body-font);
}

@media screen and (max-width: 575px) {
  .login-registration-list__link {
    font-size: 0.9375rem;
  }
}

.login-registration-list__link:hover {
  color: hsl(var(--base));
}

.login-registration-list__link:hover .login-registration-list__icon {
  color: hsl(var(--white));
}

@media screen and (max-width: 991px) {
  .login-registration-list__link:hover {
    color: hsl(var(--base));
  }
}

/* Language Box */
.language-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.language-box .select {
  color: hsl(var(--white));
  background-color: transparent;
  border: 1px solid hsl(var(--white) / 0.4);
  padding: 5px 8px;
  font-size: 0.9375rem;
  font-weight: 400;
  border-radius: 5px;
}

.language-box .select option {
  background-color: hsl(var(--black));
}

/* ================ Top Header End Here ================ */
/* ============= Footer Start Here ======================= */
.footer-area {
  background-color: #050A3A;
  color: hsl(var(--white));
  margin-top: auto;
  overflow: hidden;
  position: relative;
}

.footer-area::after,
.footer-area::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -520px;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgba(219, 223, 240, 0.6)),
      to(rgba(62, 79, 152, 0.6)));
  background: linear-gradient(180deg,
      rgba(219, 223, 240, 0.6) 0%,
      rgba(62, 79, 152, 0.6) 100%);
  height: 600px;
  width: 600px;
  -webkit-filter: blur(250px);
  filter: blur(250px);
  border-radius: 50%;
}

.footer-area::before {
  left: unset;
  right: -520px;
}

.footer-item__logo {
  margin-bottom: 24px;
}

.footer-item__logo a img {
  width: 100%;
  height: 100%;
  max-width: 190px;
  max-height: 64px;
}

.footer-item .title {
  color: hsl(var(--white));
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
}

.footer-item__title {
  color: hsl(var(--white));
  margin-bottom: 24px;
  text-decoration: underline;
  font-weight: 600;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .footer-item__title {
    margin-bottom: 16px;
  }
}

.footer-item__desc {
  color: hsl(var(--white));
  font-size: 14px;
}

.footer-item .social-list-wrapper {
  margin-top: 24px;
}

@media screen and (max-width: 991px) {
  .footer-item .social-list-wrapper {
    margin-top: 20px;
  }
}

@media screen and (max-width: 575px) {
  .footer-item .social-list-wrapper {
    margin-top: 15px;
  }
}

.footer-item .social-list-wrapper__title {
  color: hsl(var(--white));
  margin-bottom: 16px;
  text-decoration: underline;
  font-weight: 600;
  font-size: 18px;
}

/* Footer List Item */
.footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer-menu__item {
  display: block;
  padding-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .footer-menu__item {
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 575px) {
  .footer-menu__item {
    padding-bottom: 8px;
  }
}

.footer-menu__item:last-child {
  padding-bottom: 0;
}

.footer-menu__link {
  color: hsl(var(--white));
}

@media screen and (max-width: 767px) {
  .footer-menu__link {
    font-size: 14px;
  }
}

.footer-menu__link:hover {
  color: hsl(var(--base));
  text-decoration: underline;
}

/* Footer Contact */
.footer-contact-menu__item {
  margin-bottom: 16px;
}

.footer-contact-menu__item:last-child {
  margin-bottom: 0;
}

.footer-contact-menu__item .text {
  color: hsl(var(--white));
  font-weight: 600;
}

.footer-contact-menu__item-content p {
  color: hsl(var(--white));
}

@media screen and (max-width: 767px) {
  .footer-contact-menu__item-content p {
    font-size: 14px;
  }
}

/* ============= Footer End Here ======================= */
/*============== top footer css start here ==============*/
.top-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .top-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.top-footer__mail {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  display: grid;
  grid-template-columns: 3fr auto;
}

@media screen and (max-width: 424px) {
  .top-footer__mail {
    grid-template-columns: 1fr;
  }
}

.top-footer__mail .form--control {
  background-color: hsl(var(--white) / 0.2);
  border-color: hsl(var(--border-color) / 0.2);
  color: hsl(var(--white));
}

.top-footer__mail .form--control:-webkit-autofill,
.top-footer__mail .form--control:-webkit-autofill:hover,
.top-footer__mail .form--control:-webkit-autofill:focus,
.top-footer__mail .form--control:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.top-footer__mail .form--control:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-text-fill-color: hsl(var(--white)) !important;
  caret-color: hsl(var(--white)) !important;
}

.top-footer__mail .form--control::-webkit-input-placeholder {
  color: hsl(var(--white));
  font-size: 14px;
}

.top-footer__mail .form--control::-moz-placeholder {
  color: hsl(var(--white));
  font-size: 14px;
}

.top-footer__mail .form--control:-ms-input-placeholder {
  color: hsl(var(--white));
  font-size: 14px;
}

.top-footer__mail .form--control::-ms-input-placeholder {
  color: hsl(var(--white));
  font-size: 14px;
}

.top-footer__mail .form--control::placeholder {
  color: hsl(var(--white));
  font-size: 14px;
}

.top-footer__mail .btn--white:hover {
  background-color: hsl(var(--white));
}

.top-footer__title {
  color: hsl(var(--white));
  font-weight: 600;
  margin-bottom: 4px;
}

.top-footer__desc {
  font-size: 14px;
  color: hsl(var(--white));
}

@media screen and (max-width: 991px) {
  .top-footer__desc {
    font-size: 12px;
  }
}

.top-footer__text {
  color: hsl(var(--white));
  font-size: 12px;
  margin-top: 8px;
}

.top-footer__left {
  width: calc(100% - 430px);
}

@media screen and (max-width: 991px) {
  .top-footer__left {
    width: calc(100% - 350px);
  }
}

@media screen and (max-width: 767px) {
  .top-footer__left {
    width: 100%;
  }
}

.top-footer__right {
  width: 430px;
}

@media screen and (max-width: 991px) {
  .top-footer__right {
    width: 350px;
  }
}

@media screen and (max-width: 767px) {
  .top-footer__right {
    width: 100%;
  }
}

/*============== top footer css end here ==============*/
/* ============= Bottom Footer End Here ======================= */
.bottom-footer {
  border-top: 1px solid hsl(var(--white) / 0.2);
  padding: 20px;
  margin-top: 50px;
}

.bottom-footer-text {
  font-weight: 600;
  font-size: 12px;
  color: hsl(var(--white) / .7);
}

.bottom-footer-text .link {
  color: hsl(var(--white));
  transition: all linear 0.3s;
}

.bottom-footer-text .link:hover {
  text-decoration: underline;
}

/* =============Bottom Footer End Here ======================= */
/* ===================== Scroll to Top Start ================================= */
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  color: hsl(var(--white));
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  z-index: 5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
  -webkit-transform: scale(0);
  transform: scale(0);
  background-color: hsl(var(--base));
}

.scroll-top:hover {
  color: hsl(var(--white));
  background-color: hsl(var(--base-d-100));
}

.scroll-top.show {
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* ===================== Scroll to Top End ================================= */
/* ================================= Template Selection Css Start =========================== */
::-moz-selection {
  color: hsl(var(--white));
  background: hsl(var(--base-d-100));
}

::selection {
  color: hsl(var(--white));
  background: hsl(var(--base-d-100));
}

/* ================================= Template Selection Css End ===========================  */
/* ================================= Social Icon Css Start =========================== */
.social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px 15px;
}

.social-list__link {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 18px;
  cursor: pointer;
  color: hsl(var(--white));
}

.social-list__link.active,
.social-list__link:hover,
.social-list__link:focus {
  color: hsl(var(--base)) !important;
}

@media screen and (max-width: 767px) {
  .social-list__link {
    font-size: 1rem;
  }
}

/* ================================= Social Icon Css End ===========================  */
/* ====================== Breadcrumb Css Start ==================== */
.breadcrumb {
  position: relative;
  z-index: 1;
  padding: 155px 0 70px;
  background-color: #ddd;
}

@media screen and (max-width: 991px) {
  .breadcrumb {
    padding: 115px 0 60px;
  }
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: 105px 0 40px;
  }
}

.breadcrumb::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-color: hsl(var(--white) / 0.1);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.breadcrumb__wrapper {
  text-align: center;
}

.breadcrumb__title {
  margin-bottom: 10px;
  color: hsl(var(--black));
}

.breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.breadcrumb__item {
  color: hsl(var(--black));
  padding: 0 5px;
  font-weight: 400;
  font-size: 1rem;
}

.breadcrumb__item-text {
  color: hsl(var(--base));
}

.breadcrumb__link {
  color: hsl(var(--black));
  font-weight: 500;
}

.breadcrumb__link:hover {
  color: hsl(var(--base));
}

/* ====================== Breadcrumb Css End ==================== */
/* ================================= Start Rating Css Start =========================== */
.rating-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.rating-list__item {
  padding: 0 1px;
  color: hsl(var(--warning));
}

.rating-list__text {
  color: hsl(var(--body-color));
}

/* ================================= Start Rating Css End =========================== */
.blog-sidebar-wrapper {
  position: sticky;
  top: 100px;
  border: 1px solid hsl(var(--border-color) / 0.2);
  background-color: hsl(var(--section-bg) / 0.2);
  padding: 20px;
  border-radius: 16px;
}

/* ================== Sidebar Box & Title =================== */
.blog-sidebar__title {
  margin-bottom: 10px;
  font-weight: 600;
}

/* ========================= Category & Tags List Style ========================= */
/* ======================== Latest Blog Css========================  */
.latest-blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
  background-color: hsl(var(--white));
  -webkit-box-shadow: var(--box-shadow-two);
  box-shadow: var(--box-shadow-two);
  border-radius: 8px;
  padding: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.latest-blog:last-of-type {
  margin-bottom: 0px;
}

.latest-blog__thumb {
  width: 170px;
  max-height: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 4px;
  overflow: hidden;
}

@media screen and (max-width: 424px) {
  .latest-blog__thumb {
    width: 100px;
  }
}

.latest-blog__thumb a {
  display: block;
  height: 100%;
  width: 100%;
}

.latest-blog__content {
  width: calc(100% - 170px);
  padding-left: 15px;
}

@media screen and (max-width: 424px) {
  .latest-blog__content {
    width: calc(100% - 100px);
  }
}

.latest-blog__bottom .title {
  font-weight: 600;
  color: hsl(var(--base));
  margin-bottom: 4px;
  font-size: 14px;
}

.latest-blog__title {
  margin-bottom: 16px;
}

@media screen and (max-width: 575px) {
  .latest-blog__title {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 424px) {
  .latest-blog__title {
    margin-bottom: 5px;
  }
}

.latest-blog__title a {
  color: hsl(var(--heading-color));
  font-weight: 600;
  font-size: 1.125rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 424px) {
  .latest-blog__title a {
    font-size: 14px;
  }
}

.latest-blog__title a:hover {
  color: hsl(var(--base));
}

/* ========================= Latest Blog Css End ===================*/
/* =========================== Banner Section Start Here ========================= */
.banner-section {
  position: relative;
  z-index: 1;
  background: var(--Colors-Primary-500, #02021D);
  text-align: center;
  padding-bottom: 200px;
}

@media screen and (max-width: 1399px) {
  .banner-section {
    padding-bottom: 45px;
  }
}

.banner-section__shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  background: var(--Colors-Primary-500, #02021D);
}

.banner-section .banner-container {
  padding: 105px 220px;
  background: var(--Colors-Primary-500, #02021D);
}


.banner-content__subtitle {
  margin-bottom: 12px;
  padding: 11px 16px;
  font-size: 17px;
  display: inline-block;
  margin-bottom: 20px;
  color: #fff !important;
  border-radius: 8px;
  background: radial-gradient(262.93% 262.93% at 50% 50%, rgba(0, 102, 255, 0.01) 12.91%, #06F 100%);
  border: 2px solid #00F0FF;
  text-align: center;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.1px;
}


.banner-content__title {
  margin-bottom: 24px;
  color: var(--main-head-Color, #F9F4F4);
  background: linear-gradient(90deg, #ffffff 20%, #85c6ff 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
  font-weight: 500;
  line-height: 71px;
}

.banner-content__desc {
  font-size: 22px !important;
  font-weight: 400 !important;
  line-height: 28px !important;
  max-width: 650px;
  margin: 0 auto 32px;
  letter-spacing: 0.2px;
  color: #FFF;
  text-align: center;
  font-family: Lato;
  font-style: normal;
}


@media screen and (max-width: 991px) {
  .banner-content__desc {
    font-size: 20px;
  }
}

@media screen and (max-width: 575px) {
  .banner-content__desc {
    font-size: 18px;
  }
}

@media screen and (max-width: 424px) {
  .banner-content__desc {
    font-size: 16px;
  }
}

.banner-content__button {
  margin-top: 40px;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .banner-content__button {
    margin-top: 24px;
  }
}

@media screen and (max-width: 424px) {
  .banner-content__button .btn {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

.banner-thumb-wrapper {
  text-align: center;
  position: relative;
}

.banner-thumb-wrapper__shape {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;

  width: 422px;
  height: 278px;
  flex-shrink: 0;
  border-radius: 24px 24px 45px 45px;
  background: #070E4E;
}


@keyframes color-change {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}


.banner-thumb-wrapper__client {
  position: absolute;
  bottom: 110px;
  left: -30px;
  background: #003F8C;
  padding: 24px 16px;
  -webkit-box-shadow: 8px 4px 6px 0px #00000033;
  box-shadow: 8px 4px 6px 0px #00000033;
  border-radius: 8px;
  animation: ban 3s linear infinite;
}

@keyframes ban {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }

  100% {
    transform: scale(1);
  }

}



.banner-thumb-wrapper__client img {
  max-width: 135px;
}

@media screen and (max-width: 767px) {
  .banner-thumb-wrapper__client {
    left: 0;
    bottom: 150px;
  }
}

@media screen and (max-width: 424px) {
  .banner-thumb-wrapper__client {
    bottom: 130px;
    padding: 10px;
  }
}

.banner-thumb-wrapper__client .title {
  font-family: var(--body-font);
  margin-bottom: 5px;
}

.banner-thumb-wrapper__client .text {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 18px;
}

.banner-thumb-wrapper__client h3.title {
  color: #ffffff !important;
}


@media screen and (max-width: 767px) {
  .banner-thumb-wrapper__client .text {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 424px) {
  .banner-thumb-wrapper__client .text {
    font-size: 14px;
    margin-bottom: 5px;
  }
}

.banner-light {
  position: absolute;
  top: -220px;
  /* move upward */
  right: -180px;
  /* shift slightly right */
  width: 900px;
  height: 1000px;
  z-index: 2;
  opacity: 0.8;
  pointer-events: none;
  mix-blend-mode: screen;
  /* glow blends naturally */
  filter: blur(2px);
  /* soft edge */
}

/* =========================== Banner Section End Here ========================= */
/*================= category css start here =================*/
.category-item {
  background-color: hsl(var(--white));
  border-radius: 8px;
  -webkit-box-shadow: 0px 2px 8px 0px #63636333;
  box-shadow: 0px 2px 8px 0px #63636333;
  padding: 40px 14px;
  text-align: center;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  height: 100%;
  width: 100%;
  border-bottom: 4px solid transparent;
}

.category-item:hover {
  border-bottom: 4px solid hsl(var(--base));
  border-radius: 8px;
  background: #ecedf5;
}

.category-item__thumb {
  margin: 0 auto;
}

.category-item__title {
  font-weight: 600;
  margin-top: 16px;
  color: hsl(var(--heading-color));
}

.insurance-thumb {
  max-width: 600px;
  margin: 0 auto;
}

/*=================== category css end here =================*/
/* .left-bg {
  position: absolute;
  width: 520px;
  height: 520px;
  left: -15%;
  bottom: -30%;
  z-index: -1;
} */

/* .right-bg {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -15%;
  bottom: -30%;
  z-index: -1;
  background: var(--Colors-Primary-500, #02021D);
  -webkit-filter: blur(700px);
  filter: blur(700px);
} */

/* @media (max-width: 1399px) {
  .right-bg {
    filter: blur(350px);
  }

  .left-bg {
    filter: blur(350px);
  }
} */

/*================= area section css start here =================*/
.area-section {
  position: relative;
  z-index: 3;
  background: hsl(var(--section-bg));
}

.area-section .left-bg,
.area-section .right-bg {
  -webkit-filter: blur(300px);
  filter: blur(300px);
}

.area-form {
  background: hsl(var(--white));
  padding: 32px;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border-radius: 8px;
}

.area-form .btn--white:hover,
.area-form .btn--white:focus-visible,
.area-form .btn--white:active {
  background-color: hsl(var(--white));
}

.quote-thumb {
  text-align: center;
  margin-bottom: -60px;
}

@media screen and (max-width: 991px) {
  .quote-thumb {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  .area-form {
    padding: 20px;
  }
}

.area-form .form--label {
  color: hsl(var(--body-color));
}

.area-form .form--control:focus {
  border-color: hsl(var(--base));
}

/*================== area section css end here =================*/
/*=============== choose us section css start here ===============*/
.choose-us-section {
  overflow: hidden;
  z-index: 1;
  background: var(--Colors-Primary-500, #02021D);
}



.choose-us-card__thumb {
  max-height: 300px;
  overflow: hidden;
  position: relative;
}

.choose-us-card__thumb-inner {
  width: 100%;
  height: 100%;
}

.choose-us-card__thumb-inner img {
  -webkit-transition: 1s;
  transition: 1s;
  background-size: cover;
  width: 100%;
}

.choose-us-card__thumb-inner .image1 {
  -webkit-transform: translatex(50%) scalex(1);
  transform: translatex(50%) scalex(1);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.choose-us-card__thumb-inner .image2 {
  -webkit-transform: translatex(0%) scalex(1);
  transform: translatex(0%) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0px);
  filter: blur(0px);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.choose-us-card:hover .choose-us-card__thumb-inner .image1 {
  -webkit-transform: translatex(0) scalex(1);
  transform: translatex(0) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.choose-us-card:hover .choose-us-card__thumb-inner .image2 {
  -webkit-transform: translatex(-50%) scalex(2);
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.choose-us-card__content {
  padding: 24px;
}



.choose-us-card__title {
  font-weight: 500;
  color: #fff;
  text-align: center;
  font-size: 28px;
  line-height: 32px;
  width: 274px;
  font-family: Lato;
}

.choose-us-card__desc {
  color: var(--Text-color, #A4A4A4);
  font-size: 17px;
  line-height: 26px;
  margin-top: 0;
  text-align: center;
}

.choose-us-slider .slick-list {
  margin-bottom: -15px;
  padding-bottom: 15px;
}

.choose-us-wrapper__bottom {
  text-align: center;
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .choose-us-wrapper__bottom {
    margin-top: 30px;
  }
}

.choose-us-wrapper__bottom .title {
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .choose-us-wrapper__bottom .title {
    margin-bottom: 16px;
  }
}

/*=============== choose us section css end here ===============*/
/* =============================== Brand Section Css Start ======================= */
.brand-section {
  position: relative;
  z-index: 1;
  background-color: hsl(var(--section-bg));
}

/* Fix slick track */
.slick-track {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Remove extra spacing slick adds */
.client-logos .slick-slide {
  margin: 0 !important;
}

/* Main container */
.client-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  /* Exact Figma spacing */
  flex-wrap: nowrap;
  padding-top: 20px;
  margin-top: 0 !important;
}

/* Equal-size bounding box for each logo */
.client-logos .logo-box {
  width: 150px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Do not change logo ratio */
.client-logos img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* =============================== Brand Section Css End ======================= */
/*=============== step section css start here ===============*/

.insurance-details__main {
  margin-top: 16px;
  padding: 20px;
  background-color: hsl(var(--white));
  border-radius: 8px;
  border: 1px solid hsl(var(--black) / .1);
}

.insurance-details__title {
  margin-bottom: 16px;
  color: hsl(var(--heading-color));
  font-size: 14px;
  font-weight: 600;
}

.insurance-details__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;

  justify-content: space-between;
}

.insurance-details__item:not(:last-child) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid hsl(var(--black) / .07);
}

.insurance-details__item .text {
  color: hsl(var(--heading-color));
}

/*================= step section css end here ===============*/
/*=============== how work section css start here ===============*/
.how-work-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.how-work-section__bottom {
  text-align: center;
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .how-work-section__bottom {
    margin-top: 30px;
  }
}

.how-work-section .left-bg {
  left: -20%;
}

.how-work-section .right-bg {
  right: -20%;
}

.how-work-item {
  background-color: hsl(var(--white));
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  height: 100%;
}

@media screen and (max-width: 991px) {
  .how-work-item {
    padding: 30px 24px;
  }
}

@media screen and (max-width: 767px) {
  .how-work-item {
    padding: 24px 16px;
  }
}

.how-work-item__thumb {
  max-width: 70px;
  margin: 0 auto;
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .how-work-item__thumb {
    margin-bottom: 16px;
  }
}

.how-work-item__title {
  margin-bottom: 24px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .how-work-item__title {
    margin-bottom: 16px;
  }
}

/*=============== how work section css end here ===============*/
/*============== counter section css start here ==============*/
.counter-section {
  background-color: #070E4E;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 80px 0;
}

@media screen and (max-width: 575px) {
  .counter-section {
    padding: 60px 0;
  }
}

.counter-section__shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.counter-section__shape img {
  height: 100%;
}

.counter-section .section-heading__title {
  color: hsl(var(--white));
}

.counter-item {
  text-align: center;
  max-width: 350px;
  margin: 0 auto;
}

.counter-item__title {
  color: hsl(var(--white));
  font-weight: 600;
  margin-bottom: 10px;
}

.counter-item__desc {
  color: hsl(var(--white)/.9);
}

.counter-item__number {
  color: hsl(var(--white));
  font-size: 30px;
  font-weight: 600;
  background: hsl(var(--white) / 0.2);
  border-radius: 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 20px;
  padding: 5px 15px;
}

@media screen and (max-width: 575px) {
  .counter-item__number {
    margin-bottom: 12px;
    font-size: 24px;
  }

  .counter-item__desc {
    font-size: 14px;
  }

  .counter-item__title {
    margin-bottom: 6px;
  }
}

.odometer.odometer-auto-theme {
  font-size: 30px;
}

@media screen and (max-width: 575px) {
  .odometer.odometer-auto-theme {
    font-size: 24px;
  }
}

/*================ counter section css end here ==============*/
/*======== popular section css start here ========*/
/* ----------------------------------------
   POPULAR SECTION - COMBINED & OPTIMIZED
---------------------------------------- */

.popular-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--Colors-Primary-500, #02021D);
  color: #ffffff;
}

/* Ensures all columns stretch equally */
.row.align-items-stretch>[class*='col-'] {
  display: flex;
}

/* Card base */
.popular-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(3px);
  transition: transform 0.3s ease, border-color 0.3s ease;
  min-height: 580px;
  height: 100%;
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.popular-item:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.3);
}

/* Thumbnail animations (kept from main.css) */
.popular-item__thumb {
  max-height: 300px;
  overflow: hidden;
  position: relative;
}

.popular-item__thumb-link {
  width: 100%;
  height: 100%;
}

.popular-item__thumb-link img {
  transition: 1s;
  background-size: cover;
  width: 100%;
}

.popular-item__thumb-link .image1 {
  transform: translatex(50%) scalex(1);
  opacity: 0;
  filter: blur(10px);
}

.popular-item__thumb-link .image2 {
  transform: translatex(0%) scalex(1);
  opacity: 1;
  filter: blur(0px);
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.popular-item:hover .popular-item__thumb-link .image1 {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}

.popular-item:hover .popular-item__thumb-link .image2 {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}

/* Card Content */
.popular-item__header,
.popular-item__content {
  padding: 24px 32px;
}

@media screen and (max-width: 767px) {

  .popular-item__header,
  .popular-item__content {
    padding: 20px 16px;
  }
}

.popular-item__header {
  margin-bottom: 20px;
}

.popular-item__icon {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
}

.popular-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Zoom text on hover */
.value-list__item:hover .value-list__text {
  transform: scale(1.06);
  transition: 0.25s ease;
  color: #00C6FF;
}

/* Add circle animation around icon */
.value-list__item:hover svg {
  animation: tickGlow 0.6s ease forwards;
}

/* Circle glow around icon */
@keyframes tickGlow {
  0% {
    filter: drop-shadow(0 0 0px rgba(0, 198, 255, 0));
    transform: scale(1);
  }

  60% {
    filter: drop-shadow(0 0 10px rgba(0, 198, 255, 0.9));
    transform: scale(1.18);
  }

  100% {
    filter: drop-shadow(0 0 4px rgba(0, 198, 255, 0.55));
    transform: scale(1.05);
  }
}

.value-list__text,
.value-list__item svg {
  transition: 0.25s ease;
}


.popular-item__title {
  font-size: 26px;
  color: #fff;
}

.popular-item__desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
}

.popular-item__price {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.popular-item__price strong {
  font-size: 18px;
  color: #fff;
}

.popular-item__bottom {
  width: 100%;
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Benefits list */
.advantage-wrapper {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
  flex-grow: 1;
}

.value-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-list__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.value-list__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: transparent;
}

.check-icon {
  width: 15px;
  height: 15px;
}

.value-list__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

/* Button */
.btn-get-quote {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 291px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(90deg, #00C6FF 0%, #0072FF 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
}

.btn-get-quote:hover {
  background: linear-gradient(90deg, #00B8F0 0%, #0066E6 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 114, 255, 0.4);
  color: #fff;
}

/* Toggle buttons */
.toggle-container {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 198, 255, 0.35);
  backdrop-filter: blur(6px);
  padding: 6px;
  border-radius: 14px;
  gap: 0;
}

.toggle-btn {
  padding: 10px 30px;
  /* smaller height + width */
  border: none;
  border-radius: 10px;
  font-size: 16px;
  /* reduced from 18px */
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  min-width: 150px;
  /* reduced */
  transition: all 0.25s ease;
}

.toggle-btn.active {
  background: linear-gradient(90deg, #007bff, #0b92ff);
  color: #fff;
  box-shadow: 0px 4px 20px rgba(0, 123, 255, 0.4);
}

.toggle-btn:not(.active):hover {
  color: rgba(255, 255, 255, 0.85);
}

/* Decorative background light */
/* .light-effect {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  pointer-events: none;
  z-index: 1;
} */

/* Responsive */
@media (max-width: 991px) {
  .popular-item {
    min-height: 500px;
    padding: 20px 24px;
  }
}

@media (max-width: 767px) {
  .popular-item {
    min-height: auto;
    padding: 20px;
  }

  .btn-get-quote {
    width: 100%;
  }
}




/*======== popular section css end here ==========*/
/* ================================ Testimonails Section Css Start ============================= */
.testimonials {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.testimonials .slick-initialized.slick-slider .slick-track {
  margin: 10px 0;
}

.testimonials .slick-initialized.slick-slider .slick-slide {
  padding: 0;
}

.testimonials .slick-dots {
  text-align: left;
}

@media screen and (max-width: 575px) {
  .testimonials .slick-dots {
    text-align: center;
    padding-top: 30px;
  }
}

.testimonials .slick-prev {
  left: unset;
  right: 64px;
}

.testimonails-card {
  padding: 0 10px;
  height: 100%;
}

.testimonial-item {
  background-color: hsl(var(--white));
  padding: 24px;
  border-radius: 8px;
  height: 100%;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  -webkit-box-shadow: 0px 2px 8px 0px #63636333;
  box-shadow: 0px 2px 8px 0px #63636333;
}

@media screen and (max-width: 575px) {
  .testimonial-item {
    padding: 20px 15px;
  }
}

.testimonial-item__content {
  margin: 24px 0;
}

.testimonial-item__title {
  font-weight: 600;
  color: hsl(var(--heading-color));
  margin-bottom: 8px;
}

.testimonial-item__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.testimonial-item__thumb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-item__details {
  width: calc(100% - 32px);
  padding-left: 10px;
  line-height: 1;
}

.testimonial-item__name {
  margin-bottom: 5px;
  color: hsl(var(--heading-color));
  font-weight: 600;
}

.testimonial-item__designation {
  font-size: 12px;
}

.testimonial-item__desc {
  color: hsl(var(--heading-color));
}

/* ================================ Testimonails Section Css End ============================= */
/*============ faq section css start here ============*/
.faq-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.faq-section__bottom {
  margin-top: 50px;
  text-align: center;
}

.faq-section__bottom .title {
  margin-bottom: 16px;
}

.faq-section__btn {
  margin-top: 24px;
}

/*============== faq section css end here ============*/
/* ================================= Blog Section Css Start Here ============================= */
.blog {
  position: relative;
  overflow: hidden;
  background-color: #02021D;
}

.blog__bottom {
  text-align: center;
  margin-top: 50px;
}



@media screen and (max-width: 767px) {
  .blog__bottom {
    margin-top: 30px;
  }
}

.blog .left-bg {
  top: -30%;
  bottom: unset;
}

.blog-item {
  -webkit-box-shadow: var(--box-shadow-two);
  box-shadow: var(--box-shadow-two);
  border-radius: 8px;
  background-color: #02021D;
  overflow: hidden;
  height: 100%;
  padding: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-item.item-two {
  display: block;
}



.blog-item__thumb {
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}


.blog-item__thumb-link {
  width: 100%;
  height: 100%;
}





.blog-item__content {
  padding: 24px 16px;
}

@media screen and (max-width: 991px) {
  .blog-item__content {
    padding: 20px;
  }
}

@media screen and (max-width: 424px) {
  .blog-item__content {
    padding: 15px;
  }
}

.blog-item__title {
  margin-bottom: 8px;
  color: #FFF;
  font-family: Lato;
  font-size: 22px;
  font-style: normal;
  line-height: 31px;

}

.blog-item__title-link {
  color: #ffffff !important;
  /* Always white */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  text-decoration: none !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #fff !important;
}

.blog-item__title-link:hover {
  color: #00C6FF !important;
  /* Nice hover color */
}




.blog-item__desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #A4A4A4;
}

.blog-item__bottom .title {
  font-weight: 600;
  color: hsl(var(--base));
  margin-bottom: 4px;
  font-size: 14px;
}

.text-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.text-list__item {
  color: hsl(var(--base));
  position: relative;
}

.text-list__item::after {
  position: absolute;
  content: "";
  right: -14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: hsl(var(--base));
}

.text-list__item:last-child::after {
  display: none;
}

/* Text Border Bottom Animation Css Start */
.border-effect {
  display: inline !important;
  width: 100%;
  background-repeat: no-repeat;
  background-position-y: -2px;
  background-image: linear-gradient(transparent calc(100% - 1px),
      currentColor 1px);
  -webkit-transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-size: 0 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.border-effect:hover {
  background-image: linear-gradient(transparent calc(100% - 1px),
      currentColor 1px);
  background-size: 100% 100%;
}

/* Text Border Bottom Animation Css Ends */
/* ================================= Blog Section Css End Here ================================= */
/*=============== cta section css start here ===============*/
/* Wrapper for CTA and Footer to share background */
.cta-section-wrapper {
  background: #02021D;
  position: relative;
  overflow: hidden;
}

.cta-section {
  background: transparent;
  position: relative;
  overflow: visible;
  z-index: 1;
}

/* Light effect positioning */
.cta-banner-light {
  position: absolute;
  left: -300px;
  top: -100px;
  width: 1000px;
  height: 150%;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}

.cta-banner-light img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-wrapper {
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

.cta-wrapper__left {
  width: 100%;
}

.cta-certificate-title {
  color: #FFFFFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 40px;
}

.cta-certificate-content {
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.certificate-row {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.certificate-col {
  flex: 1;
  min-width: 250px;
}

.certificate-item {
  margin-bottom: 20px;
  display: block;
}

.certificate-item:last-child {
  margin-bottom: 0;
}

.certificate-label {
  color: #FFFFFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  display: inline;
  margin-right: 6px;
}

.certificate-value {
  color: #FFFFFF;
  font-family: Lato, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 4px;
  display: inline;
}

/* For values in first column that should be on separate lines */
.certificate-col p.certificate-value {
  display: block;
  margin-bottom: 4px;
}

.certificate-col p.certificate-value:last-child {
  margin-bottom: 0;
}

/* Footer styling to continue the background */
.footer-v2 {
  background: #070E4E;
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .certificate-row {
    flex-direction: column;
    gap: 30px;
  }

  .certificate-col {
    min-width: 100%;
  }

  .cta-banner-light {
    left: -100px;
    width: 600px;
  }
}

@media (max-width: 768px) {
  .cta-wrapper {
    padding: 40px 0;
  }

  .cta-certificate-title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 30px;
  }

  .cta-banner-light {
    left: -50px;
    width: 400px;
  }
}

/*========== insurance section css start here ==========*/
.insurance-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.insurance-section__shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
}

.insurance-section::before {
  position: absolute;
  content: "";
  width: 520px;
  height: 520px;
  left: -400px;
  top: -330px;
  z-index: -1;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgba(219, 223, 240, 0.7)),
      to(rgba(62, 79, 152, 0.7)));
  background: linear-gradient(180deg,
      rgba(219, 223, 240, 0.7) 0%,
      rgba(62, 79, 152, 0.7) 100%);
  -webkit-filter: blur(700px);
  filter: blur(700px);
}

.insurance-form {
  border: 1px solid hsl(var(--border-color) / 0.2);
  background-color: hsl(var(--section-bg) / 0.2);
  padding: 20px;
  border-radius: 16px;
}

.check-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.check-wrapper .type--check {
  position: relative;
  padding: 11px 14px;
  line-height: 1;
  border: 1px solid hsl(var(--border-color));
  border-radius: 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 40px;
}

@media (max-width: 424px) {
  .check-wrapper .type--check {
    padding: 10px;
  }
}

.check-wrapper .type--check .type--input {
  position: relative;
  border-radius: 4px;
  width: 16px;
  height: 16px;
  border: 1px solid hsl(var(--border-color));
  cursor: pointer;
}

.check-wrapper .type--check .type--input::before {
  position: absolute;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: hsl(var(--body-color));
  font-size: 0.75rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.check-wrapper .type--check .type-text {
  font-size: 14px;
  color: hsl(var(--heading-color));
}

.type--check:has(input:checked) {
  background-color: hsl(var(--section-bg));
  border-color: hsl(var(--base));
}

.type--check:has(input:checked) .type--input::before {
  opacity: 1;
  color: hsl(var(--base));
}

.type--check:has(input:checked) .type--input {
  border-color: hsl(var(--base));
}

/*========== insurance section css end here ==========*/
/*============== insurance plan section start here ==============*/
.plan-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.plan-section__shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
}

.plan-section::before {
  position: absolute;
  content: "";
  width: 520px;
  height: 100%;
  left: -400px;
  top: -330px;
  z-index: -1;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgba(219, 223, 240, 0.7)),
      to(rgba(62, 79, 152, 0.7)));
  background: linear-gradient(180deg,
      rgba(219, 223, 240, 0.7) 0%,
      rgba(62, 79, 152, 0.7) 100%);
  -webkit-filter: blur(700px);
  filter: blur(700px);
}

.plan-section__btn {
  margin-bottom: 32px;
}

@media screen and (max-width: 575px) {
  .plan-section__btn {
    margin-top: 20px;
  }
}

.plan-section__top {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: -webkit-gradient(linear,
      left top,
      right top,
      color-stop(-93.24%, #b7bfe1),
      to(#3e4f98));
  background: linear-gradient(90deg, #b7bfe1 -93.24%, #3e4f98 100%);
  border-radius: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px 40px;
}

@media screen and (max-width: 991px) {
  .plan-section__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .plan-section__top {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 575px) {
  .plan-section__top {
    gap: 20px;
  }
}

.plan-section__top .insurance-info {
  position: relative;
}

.plan-section__top .insurance-info::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -100px;
  width: 1px;
  height: 100%;
  background: hsl(var(--border-color) / 0.4);
}

@media screen and (max-width: 1399px) {
  .plan-section__top .insurance-info::after {
    right: -70px;
  }
}

@media screen and (max-width: 1199px) {
  .plan-section__top .insurance-info::after {
    display: none;
  }
}

.plan-section__top .insurance-info:last-child::after {
  display: none;
}

.plan-section__top .insurance-info__title {
  color: hsl(var(--white));
  margin-bottom: 4px;
}

@media screen and (max-width: 575px) {
  .plan-section__top .insurance-info__title {
    font-size: 14px;
  }
}

.plan-section__top .insurance-info__text {
  color: hsl(var(--white));
  font-weight: 600;
  font-size: 18px;
}

@media screen and (max-width: 575px) {
  .plan-section__top .insurance-info__text {
    font-size: 16px;
  }
}

.plan-section .edit-btn {
  color: hsl(var(--white));
  font-size: 18px;
}

.back-btn {
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}

.back-btn__icon {
  font-size: 18px;
}

.plan-container {
  margin-top: 24px;
}

.plan-container__title {
  margin-bottom: 20px;
  font-weight: 600;
}

.plan-container .plan-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 991px) {
  .plan-container .plan-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.plan-container .plan-wrapper__left {
  width: calc(100% - 300px);
}

@media screen and (max-width: 991px) {
  .plan-container .plan-wrapper__left {
    width: 100%;
  }
}

.plan-container .plan-wrapper__right {
  width: 300px;
}

@media screen and (max-width: 991px) {
  .plan-container .plan-wrapper__right {
    width: 100%;
  }
}

.plan-container .plan-wrapper__right .plan-sidebar {
  padding: 20px;
  border-radius: 8px;
  background: hsl(var(--section-bg) / 0.2);
  border: 1px solid hsl(var(--border-color) / 0.2);
  margin-bottom: 10px;
}

.plan-container .plan-wrapper__right .plan-sidebar:last-child {
  margin-bottom: 10px;
}

.plan-container .plan-wrapper__right .plan-sidebar__top {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}

.plan-container .plan-wrapper__right .plan-sidebar__title {
  margin-bottom: 0;
  font-family: var(--body-font);
  font-weight: 600;
}

.plan-container .plan-wrapper__right .plan-sidebar__text {
  font-size: 14px;
  color: hsl(var(--heading-color));
}

.plan-container .plan-wrapper__right .plan-sidebar .plan-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 10px;
  color: hsl(var(--heading-color));
}

.plan-container .plan-wrapper__right .plan-sidebar .plan-list__item:last-child {
  margin-bottom: 0;
}

.plan-container .plan-wrapper__right .plan-sidebar .plan-list__item-text {
  font-weight: 600;
}

.plan-container .plan-wrapper__right .plan-sidebar .plan-list__icon {
  font-size: 12px;
}

.plan-item {
  background-color: hsl(var(--section-bg));
  padding: 24px;
  border: 1px solid hsl(var(--border-color) / 0.4);
  border-radius: 8px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 1199px) {
  .plan-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 575px) {
  .plan-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media screen and (max-width: 575px) {
  .plan-item {
    gap: 20px;
  }
}

.plan-item:last-child {
  margin-bottom: 0;
}

.plan-item .text {
  font-size: 12px;
  font-weight: 600;
  color: hsl(var(--heading-color));
}

.plan-item__content {
  position: relative;
}

.plan-item__content .form-check {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.plan-item__content .form-check .form-check-input {
  margin-top: 0;
}

.plan-item__content:last-child::after {
  display: none;
}

.plan-item__content:nth-last-child(2)::after {
  display: none;
}

.plan-item__content .btn {
  margin-bottom: 12px;
}

.plan-item__title {
  margin-bottom: 4px;
  color: hsl(var(--heading-color));
}

.plan-item__number {
  margin-bottom: 4px;
  font-weight: 600;
  font-family: var(--body-font);
}

.plan-item__desc {
  font-size: 12px;
  color: hsl(var(--heading-color));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.plan-item__desc .icon {
  color: hsl(var(--base));
}

/*============== insurance plan section end here ================*/
/*========== plan details css start here ==========*/
.plan-details-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.plan-details-section__shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
}

.plan-details-section::before {
  position: absolute;
  content: "";
  width: 520px;
  height: 500px;
  left: -400px;
  top: -330px;
  z-index: -1;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgba(219, 223, 240, 0.7)),
      to(rgba(62, 79, 152, 0.7)));
  background: linear-gradient(180deg,
      rgba(219, 223, 240, 0.7) 0%,
      rgba(62, 79, 152, 0.7) 100%);
  -webkit-filter: blur(300px);
  filter: blur(300px);
}

.plan-details__item {
  margin-top: 24px;
}

.plan-details__title {
  margin-bottom: 24px;
}

@media screen and (max-width: 575px) {
  .plan-details__title {
    margin-bottom: 10px;
  }
}

.content-list-wrapper {
  gap: 16px 30px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  max-width: 650px;
  gap: 16px;
}

@media screen and (max-width: 575px) {
  .content-list-wrapper .form--check {
    margin-bottom: 10px;
  }
}

.content-list-wrapper .form--check:last-child {
  margin-bottom: 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.feature-list .feature-item {
  background-color: hsl(var(--section-bg));
  padding: 20px 12px;
  border-radius: 8px;
  text-align: center;
}

.feature-list .feature-item__icon {
  max-width: 60px;
  margin: 0 auto;
  margin-bottom: 16px;
}

.feature-list .feature-item__text {
  color: hsl(var(--heading-color));
  margin-bottom: 4px;
}

.feature-list .feature-item__title {
  font-family: var(--body-font);
  margin-bottom: 0;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-item__box {
  position: relative;
  border-radius: 6px;
  width: 20px;
  height: 20px;
  background-color: hsl(var(--base) / 0.06) !important;
  border: 1px solid hsl(var(--base)) !important;
}

.check-item__box.style-two {
  background-color: hsl(var(--danger) / 0.06) !important;
  border: 1px solid hsl(var(--danger)) !important;
}

.check-item__box::after {
  position: absolute;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: hsl(var(--base));
  font-size: 0.6875rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.check-item__box.style-two::after {
  content: "\f00d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: hsl(var(--danger));
}

.check-item__text {
  font-weight: 600;
  width: calc(100% - 20px);
  font-size: 0.875rem;
  color: hsl(var(--heading-color));
}

/*============ plan details css end here ==========*/
/*============== insurance compare section start here ==============*/
.compare-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.compare-section__shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
}

.compare-section::before {
  position: absolute;
  content: "";
  width: 520px;
  height: 500px;
  left: -400px;
  top: -330px;
  z-index: -1;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgba(219, 223, 240, 0.7)),
      to(rgba(62, 79, 152, 0.7)));
  background: linear-gradient(180deg,
      rgba(219, 223, 240, 0.7) 0%,
      rgba(62, 79, 152, 0.7) 100%);
  -webkit-filter: blur(300px);
  filter: blur(300px);
}

.compare-section .edit-btn {
  color: hsl(var(--white));
  font-size: 18px;
}

.section-btn {
  margin-bottom: 32px;
}

@media screen and (max-width: 575px) {
  .section-btn {
    margin-top: 20px;
  }
}

.compare-container__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px 20px;
  margin-bottom: 24px;
}

@media screen and (max-width: 424px) {
  .compare-container__top {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.compare-container__top .title {
  margin-bottom: 0;
}



.back-btn__icon {
  font-size: 18px;
}

.compare-item {
  background-color: hsl(var(--section-bg));
  padding: 24px;
  border-radius: 8px;
}

@media screen and (max-width: 424px) {
  .compare-item {
    padding: 16px;
  }
}

.compare-item__text {
  color: hsl(var(--heading-color));
  font-weight: 600;
}

.compare-item__close-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: hsl(var(--white));
  background-color: #cacacf;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.compare-item__close-icon:hover {
  background-color: hsl(var(--danger));
}

.compare-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 24px;
}

@media screen and (max-width: 575px) {
  .compare-item__top {
    margin-bottom: 16px;
  }
}

.compare-item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px 90px;
}

@media screen and (max-width: 1399px) {
  .compare-item-wrapper {
    gap: 10px 40px;
  }
}

@media screen and (max-width: 1199px) {
  .compare-item-wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (max-width: 424px) {
  .compare-item-wrapper {
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.compare-item-wrapper__content {
  position: relative;
}

.compare-item-wrapper__content::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -45px;
  width: 1px;
  height: 50px;
  background: hsl(var(--border-color) / 0.4);
}


/* Get Insurance CTA */
.dashboard .insurance-cta {

  flex-shrink: 0;
  margin: 0 auto 2rem auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}


.dashboard .insurance-cta__plus {
  display: flex;
  width: 28px;
  height: 28px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background: #FFFFFF;
  border-radius: 50%;
}

.dashboard .insurance-cta__plus svg {
  width: 16px;
  height: 16px;
  stroke: #191933;
  stroke-width: 2.5;
}

.dashboard .insurance-cta__btn {
  display: flex;
  flex: 1;
  height: 47px;
  width: 230px;
  justify-content: center;
  align-items: center;
  background: var(--Colors-Primary-500, #02021D);
  color: #FFFFFF;
  padding: 0 1.25rem;
  border-radius: 4px;
  box-shadow: 0 16px 40px -8px rgba(88, 92, 95, 0.16);
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
}


.dashboard .insurance-cta__btn .text {
  color: var(--White, #FFF);
  text-align: center;
  font-family: Lato;
  font-size: 19px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
}

@media screen and (max-width: 1399px) {
  .compare-item-wrapper__content::after {
    right: -20px;
  }
}

@media screen and (max-width: 1199px) {
  .compare-item-wrapper__content::after {
    display: none;
  }
}

.compare-item-wrapper__content:last-child::after {
  display: none;
}

.compare-item-wrapper__title {
  margin-bottom: 4px;
  color: hsl(var(--heading-color));
}

.compare-item-wrapper__number {
  margin-bottom: 4px;
  font-weight: 600;
  font-family: var(--body-font);
}

.compare-item-wrapper__desc {
  font-size: 12px;
  color: hsl(var(--heading-color));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.compare-item-wrapper__desc .icon {
  color: hsl(var(--base));
}

.compare-table {
  margin: 0;
  margin-top: 12px;
  border-collapse: collapse;
  border-collapse: separate;
  border-spacing: 0px 0px;
}

.compare-table tbody {
  border: 0 !important;
}

.compare-table tbody tr .title {
  background-color: hsl(var(--section-bg) / 0.2) !important;
  color: hsl(var(--heading-color)) !important;
  font-weight: 600 !important;
  padding: 16px !important;
}

@media screen and (max-width: 424px) {
  .compare-table tbody tr .title {
    padding: 12px !important;
  }
}

.compare-table tbody tr:last-child {
  border-bottom: 0;
}

.compare-table tbody tr:last-child td {
  border-bottom: 1px solid hsl(var(--border-color) / 0.4) !important;
}

.compare-table tbody tr:last-child td:first-child {
  border-radius: 0px;
}

.compare-table tbody tr:last-child td:last-child {
  border-radius: 0;
}

.compare-table tbody tr td {
  text-align: left;
  vertical-align: middle;
  padding: 16px;
  border-width: 1px;
  color: hsl(var(--heading-color));
  font-weight: 400;
  max-width: 170px;
  font-size: 1rem;
  border: 0;
  background-color: hsl(var(--white));
  border: 1px solid hsl(var(--border-color) / 0.4);
  border-right: 0;
  border-bottom: 0;
}

@media screen and (max-width: 1399px) {
  .compare-table tbody tr td {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 424px) {
  .compare-table tbody tr td {
    padding: 10px;
    font-size: 12px;
  }
}

.compare-table tbody tr td::before {
  content: attr(data-label);
  font-family: var(--heading-font);
  font-size: 0.9375rem;
  color: hsl(var(--black));
  font-weight: 500;
  display: none;
  width: 45% !important;
  text-align: left;
}

.compare-table tbody tr td:first-child {
  text-align: left;
  font-weight: 400;
  color: hsl(var(--body-color));
  border-left: 1px solid hsl(var(--border-color) / 0.4);
}

.compare-table tbody tr td:last-child {
  text-align: left;
  border-right: 1px solid hsl(var(--border-color) / 0.4);
}

.compare-table tbody tr td:nth-child(2) {
  text-align: left;
}

/*============== insurance compare section end here ================*/
/* ================================= Dashboard Fulid Sidebar Css Start =========================== */
.dashboard .sidebar-logo {
  background-color: hsl(var(--white) / 0.1);
  padding: 11px 1.5rem 0.5rem 2.5rem;
  width: 120%;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard .sidebar-logo__link {
  display: inline-block;
}

.dashboard .sidebar-logo img {
  max-width: 190px;
  max-height: 60px;
  width: auto;
}

.dashboard .bar-style {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 0;
  top: 0;
  border-radius: 0;
  background-color: #f0f0f4;
}

/* Sidebar Toggle Button */
.dashboard .sidebar-toggle {
  display: inline-flex;
  padding: 6px;
  align-items: flex-start;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid #F6F6F6;
  background: #FFF;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dashboard .sidebar-toggle:hover {
  background: #F9F9F9;
  border-color: #E8E8E8;
}

.dashboard .sidebar-toggle svg {
  width: 16px;
  height: 16px;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.dashboard .sidebar-menu.collapsed .sidebar-toggle svg {
  transform: rotate(-90deg);
}

@media screen and (max-width: 991px) {
  .dashboard .bar-style {
    display: none;
  }
}

.dashboard .bar-style::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 20px;
  right: 0px;
  top: -5px;
  border-radius: 16px 0 16px 0;
  background-color: #292c34;
}

.dashboard .sidebar-menu {
  position: fixed;
  width: 256px;
  height: 100vh;
  border-right: 1px solid #E8E8E8;
  z-index: 999;
  transition: all 0.3s ease;
  background-color: #fff;
  overflow: hidden;
}

@media screen and (max-width: 424px) {
  .dashboard .sidebar-menu {
    width: 320px;
  }
}

@media (min-width: 992px) {
  .desktop-hidden {
    display: none !important;
  }

  .desktop-visible {
    display: block !important;
  }
}

@media (max-width: 991.98px) {
  .desktop-visible {
    display: none !important;
  }
}

.preview-menu-list {
  overflow-y: auto;
  min-height: 87vh;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #050A3A #f2f4fb;
}

.preview-menu-list::-webkit-scrollbar {
  width: 10px;
}

.preview-menu-list::-webkit-scrollbar-track {
  background: #f2f4fb;
  border-radius: 10px;
}

.preview-menu-list::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #050A3A, #0b1a6f);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.preview-menu-list::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #0b1a6f, #050A3A);
}

.dashboard .sidebar-menu__bar {
  position: absolute;
  right: 10%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: hsl(var(--section-bg));
  font-size: 24px;
  padding: 6px 6px;
  border-radius: 16px 0 0 16px;
  color: hsl(var(--heading-color));
  cursor: pointer;
  top: 17px;
}

@media screen and (max-width: 991px) {
  .dashboard .sidebar-menu__bar {
    display: none;
  }
}

.dashboard .sidebar-menu__bar::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  right: 0;
  bottom: -20px;
  border-radius: 0;
  background-color: #f0f0f4;
}

@media screen and (max-width: 991px) {
  .dashboard .sidebar-menu__bar::after {
    display: none;
  }
}

.dashboard .sidebar-menu__bar::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 20px;
  right: 0px;
  bottom: -20px;
  border-radius: 0px 16px 0px 16px;
  background-color: #292c34;
  z-index: 1;
}

@media screen and (max-width: 991px) {
  .dashboard .sidebar-menu__bar::before {
    display: none;
  }
}

.dashboard .sidebar-menu__bar i {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.dashboard .sidebar-menu::after {
  position: absolute;
  content: "";
  top: 0;
  left: -550px;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgba(219, 223, 240, 0.7)),
      to(rgba(62, 79, 152, 0.7)));
  background: linear-gradient(180deg,
      rgba(219, 223, 240, 0.7) 0%,
      rgba(62, 79, 152, 0.7) 100%);
  height: 600px;
  width: 600px;
  -webkit-filter: blur(250px);
  filter: blur(250px);
  border-radius: 50%;
  z-index: -1;
}

.dashboard .sidebar-menu::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}

.dashboard .sidebar-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.dashboard .sidebar-menu::-webkit-scrollbar {
  width: 4px;
  height: 3px;
}

.dashboard .sidebar-menu::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

.dashboard .sidebar-menu__inner {
  width: 118%;
  padding: 0.5rem 18px;
  min-height: 120vh !important;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

.sidebar-menu-list {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.logout-item {
  margin-top: auto;
}

.dashboard .sidebar-menu.show-sidebar {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

@media screen and (max-width: 991px) {
  .dashboard .sidebar-menu {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    z-index: 9992;
    border-radius: 0;
  }
}

.dashboard .sidebar-menu__close {
  position: absolute;
  top: 30px;
  right: 16px;
  color: hsl(var(--white));
  font-size: 1rem;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  cursor: pointer;
  z-index: 9;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: hsl(var(--white) / 0.1);
  border-radius: 50%;
}

.dashboard .sidebar-menu__close:active {
  top: 14px;
}

.dashboard .sidebar-menu__close:hover,
.dashboard .sidebar-menu__close:focus {
  background-color: hsl(var(--danger));
  color: hsl(var(--white));
}

.dashboard .sidebar-menu-list {
  margin-top: -23px !important;
  padding: 0 24px;
  flex: 1;
  padding: 4px;
  margin: 0;
  max-height: 70vh;
  scrollbar-width: thin;
  scrollbar-color: #050A3A #f2f4fb;
}

.sidebar-menu-list::-webkit-scrollbar {
  width: 10px;
}

.sidebar-menu-list::-webkit-scrollbar-track {
  background: #f2f4fb;
  border-radius: 10px;
}

.sidebar-menu-list::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #050A3A, #0b1a6f);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.sidebar-menu-list::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #0b1a6f, #050A3A);
}

.dashboard .sidebar-menu-list__item {
  margin-bottom: 6px;
  display: flex;
  height: 40px;
  padding: 10px 12px;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  border-radius: 8px;
}

.dashboard .sidebar-menu-list__item:last-child .sidebar-menu-list__link {
  border-bottom: 0;
}

.dashboard .sidebar-menu-list__item.active>a {
  color: hsl(var(--white));
  background: #F5F7FF;
}

.dashboard .sidebar-menu-list__item.has-dropdown.active>a {
  color: hsl(var(--white));
}

.dashboard .sidebar-menu-list__item.has-dropdown.active>a:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 18px;
  color: hsl(var(--white));
}

.dashboard .sidebar-menu-list__item.has-dropdown>a:after {
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  text-align: center;
  background: 0 0;
  right: 16px;
  top: 14px;
  -webkit-transition: 0.1s linear;
  transition: 0.1s linear;
  color: hsl(var(--text-color) / 0.6);
  font-size: 0.8125rem;
}

.dashboard .sidebar-menu-list__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: #737373;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 15px;
  font-weight: 500;
  border-left: 3px solid transparent;
  font-family: 'Lato', sans-serif;
  width: 100%;
}

.dashboard .sidebar-menu-list__link:hover {
  border-left: 3px solid #070E4E;
  background: #d1d1d6;
  color: #070E4E;
}

.dashboard .sidebar-menu-list__link.active {
  color: hsl(var(--base));
}

.dashboard .sidebar-menu-list__link:hover .icon svg path {
  fill: #070E4E;
}

.dashboard .sidebar-menu-list__link:hover .icon i {
  color: #070E4E;
}

/* Active state icon color */
.dashboard .sidebar-menu-list__item.active .icon svg path {
  fill: #070E4E;
}

.dashboard .sidebar-menu-list__item.active .icon i {
  color: #070E4E;
}



.dashboard .sidebar-menu-list__link .icon svg {
  width: 20px;
  height: 20px;
}

.dashboard .sidebar-menu-list__link .icon i {
  width: 20px;
  height: 20px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard .sidebar-submenu {
  display: none;
  background-color: transparent;
}

.dashboard .sidebar-submenu.open-submenu {
  display: block;
}

.dashboard .sidebar-submenu-list {
  list-style: none;

}

.dashboard .sidebar-submenu-list__item {
  margin-bottom: 6px;
}

.dashboard .sidebar-submenu-list__item.active>a {
  color: hsl(var(--white));
  background: -webkit-gradient(linear,
      left top,
      right top,
      color-stop(-93.24%, #b7bfe1),
      to(hsl(var(--base))));
  background: linear-gradient(90deg, #b7bfe1 -93.24%, hsl(var(--base)) 100%);
}

.dashboard .sidebar-submenu-list__link {
  display: block;
  padding: 0.6rem 1.5rem 0.6rem 3.5rem;
  color: #737373;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  font-family: 'Lato', sans-serif;
}

/* Section Headers */
.dashboard .sidebar-section-header {
  color: var(--Colors-Primary-100, #6A6AF5);
  font-size: 14px;
  font-weight: 400;
  padding: 1px 1.5rem;
  margin-top: 0;
  font-family: 'Lato', sans-serif;
  flex-shrink: 0;
}

.dashboard .sidebar-menu-list__item.active>.sidebar-menu-list__link {

  color: #070E4E;
  border-left: 3px solid #070E4E;
}


.dashboard .sidebar-menu-list__item.has-dropdown.active .sidebar-submenu,
.dashboard .sidebar-menu-list__item.has-dropdown:hover .sidebar-submenu {
  display: block;
}


/* Mobile menu close button */
.dashboard .sidebar-menu__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #070E4E;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
}

/* Hide favicon on desktop */
.dashboard .sidebar-logo__link.favicon {
  display: none;
}

@media (max-width: 991px) {
  .dashboard .sidebar-menu {
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: left 0.3s ease;
  }

  .dashboard .sidebar-menu__bar {
    display: none;
  }

  .dashboard .sidebar-menu.active {
    left: 0;
  }

  .dashboard .sidebar-logo__link.logo {
    display: none;
  }

  .dashboard .sidebar-logo__link.favicon {
    display: block;
  }

}


/* new CSS */
.dashboard.show-hide .sidebar-menu .sidebar-menu-list__link {
  justify-content: space-around;
}

.dashboard .sidebar-menu__bar::after,
.dashboard .sidebar-menu__bar::before {
  content: none;
}

.dashboard.show-hide .sidebar-menu-list__item .text,
.dashboard.show-hide .sidebar-section-header {
  display: none;
}

.dashboard.show-hide .sidebar-menu-list {
  min-height: 95vh;
}




.dashboard .insurance-cta-sm {
  display: none;
}

.dashboard.show-hide .insurance-cta {
  display: none;
}

.dashboard.show-hide .insurance-cta-sm {
  display: flex;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.dashboard .insurance-cta-sm .insurance-cta__plus {
  margin: 0px !important;
}

.dashboard .insurance-cta-sm {
  width: auto;
  height: auto;
  padding: 10px;
}

.dashboard .sidebar-menu__bar svg {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.dashboard.show-hide .sidebar-menu__bar svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}



.dashboard.show-hide .sidebar-toggle.sidebar-menu__bar {
  position: absolute;
  z-index: 9999;
}

.dashboard.show-hide .sidebar-menu__inner {
  padding-top: 0px;
}


.dashboard.show-hide .sidebar-menu__bar {
  top: 50%;
}


.dashboard .sidebar-submenu-list__link::before {
  position: absolute;
  content: "";
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: transparent;
  border: 1px solid hsl(var(--white) / 0.4);
  border-radius: 50%;
}

.dashboard .sidebar-submenu-list__link:hover {
  background-color: #F5F5F5;
  color: #070E4E;
}

.dashboard .sidebar-submenu-list__item.active .sidebar-submenu-list__link {
  color: #070E4E;
  font-weight: 600;
  background-color: #E8EBFF;
}

.dashboard .sidebar-submenu-list__link .icon {
  margin-right: 8px;
  font-size: 0.9375rem;
  text-align: center;
  border-radius: 4px;
}

.sidebar-menu-list__item.has-dropdown.active .sidebar-submenu {
  display: block;
}

/* Logout button */
.dashboard .sidebar-menu-list__item.logout-item {
  margin-top: auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.dashboard .sidebar-menu-list__item.logout-item .sidebar-menu-list__link {
  color: #FF4757;
  font-weight: 600;
}

.dashboard .sidebar-menu-list__item.logout-item .sidebar-menu-list__link:hover {
  background-color: rgba(255, 71, 87, 0.08);
  border-left: 3px solid #FF4757;
}

.dashboard .sidebar-menu-list__item.logout-item .icon svg path {
  fill: #FF4757;
}

/* ============ User Profile Css Start ============ */
/* Sidebar User Info Css */
.user-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid hsl(var(--base) / 0.15);
  width: 100%;
  padding: 20px 24px;
  position: sticky;
  bottom: 0;
  left: 0;
  width: 299px;
  background-color: hsl(var(--white));
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.user-profile-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.user-profile-info__icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f3f9fe;
  font-size: 1.125rem;
  border: 1px solid hsl(var(--black) / 0.1);
}

.user-profile-info__content {
  width: calc(100% - 50px);
  padding-left: 15px;
}

.user-profile-info__name {
  margin-bottom: 0px;
}

.user-profile-info__desc {
  color: hsl(var(--body-color));
  font-size: 15px;
}

.dashboard.show-hide .sidebar-menu .sidebar-menu-list__link {
  padding: 12px 17px;
}

.dashboard.show-hide .sidebar-menu .sidebar-menu-list__link .icon {
  margin-right: 0;
}

.dashboard.show-hide .sidebar-menu .sidebar-menu-list .text {
  display: none;
  width: 0;
  white-space: nowrap;
}

.dashboard.show-hide .sidebar-menu .has-dropdown .sidebar-submenu {
  display: none !important;
}

.dashboard.show-hide .sidebar-logo {
  padding: 24px 16px;
}

.dashboard.show-hide .sidebar-menu-list__item.has-dropdown>a:after {
  display: none;
}

/* ========= User Profile Css End ============== */
/* ================================= Dashboard Fulid Sidebar Css End =========================== */
/* ======================  Plugin Customization Start  ======================*/
/* ======================  Select2 Start  ======================*/
.select2-wrapper {
  --border-radius: 8px;
  --height: 40px;
  --select2-border: hsl(var(--border-color));
}

.select2+.select2-container {
  border: 1px solid var(--select2-border);
  border-radius: var(--border-radius);
  height: 40px;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  background: hsl(var(--white));
}

.area-section .select2+.select2-container {
  border: 0;
}

.select2+.select2-container .select2-selection__rendered {
  line-height: 25px !important;
  padding-left: 6px !important;
}

.select2+.select2-container .select2-selection--single {
  height: var(--height) !important;
}

.select2+.select2-container .select2-selection {
  border: 0;
  background-color: transparent;
  width: 100%;
  outline: 0;
}

.select2+.select2-container .selection {
  width: 100%;
}

.select2+.select2-container .select2-selection__arrow b {
  border: 0;
}

.select2-container--open:has(.select2-dropdown--above) {
  margin-top: -12px;
}

.select2-container--open:has(.select2-dropdown--below) {
  margin-top: 0px;
  z-index: 1099;
  border: 0;
}

.select2-container--open .select2-dropdown {
  border: 1px solid hsl(var(--black) / 0.1) !important;
  border-radius: 4px !important;
  overflow: hidden;
  -webkit-box-shadow: var(--box-shadow-two);
  box-shadow: var(--box-shadow-two);
}

.select2-container--open .select2-dropdown--above {
  margin-bottom: 10px;
}

.select2-search__field {
  border-radius: 4px !important;
  border: 1px solid hsl(var(--black) / 0.1) !important;
}

.select2-search__field:focus {
  outline: 0;
  border-color: hsl(var(--base)) !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: hsl(var(--base) / 0.25) !important;
}

.select2-container--below.select2-container--open .select2-selection__arrow::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: hsl(var(--body-color));
  font-weight: 400;
  font-size: 16px;
}

/* ======================  Select2 End  ======================*/
.select2-container:has(.select2-selection--single) {
  width: 100% !important;
}

/* ================= Slick Arrow & Dots css Start ================ */
.slick-initialized.slick-slider {
  margin: 0 -10px;
}

.slick-initialized.slick-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slick-initialized.slick-slider .slick-slide {
  height: auto;
  padding: 0 10px;
}

.slick-initialized.slick-slider .slick-slide>div {
  height: 100%;
}

.slick-arrow {
  position: absolute;
  z-index: 1;
  border: 1px solid hsl(var(--base) / 0.2);
  color: hsl(var(--base) / 0.1);
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  background-color: hsl(var(--base) / 0.1);
  font-size: 20px;
  bottom: -10px;
}

.slick-arrow:hover {
  background-color: hsl(var(--section-bg));
  color: hsl(var(--base));
}

.slick-next {
  right: 0px;
}

.slick-prev {
  left: 0px;
}



.choose-us-wrapper .slick-arrow {
  top: 50%;
  transform: translateY(-50%);
  background-color: hsl(var(--white));
  color: hsl(var(--base));
}

.choose-us-wrapper .slick-prev {
  left: -10px;
}

.choose-us-wrapper .slick-next {
  right: -10px;
}

/* -------------- Slick Slider Arrow Style two ------------  */
/* Dots Css Start */

.slick-dots {
  text-align: center;
  padding-top: 32px;
}

.slick-dots li {
  display: inline-block;
}

.slick-dots li button {
  border: none;
  background-color: hsl(var(--base) / 0.2);
  color: hsl(var(--white));
  margin: 0 3px;
  width: 8px;
  height: 8px;
  border-radius: 1px;
  border-radius: 50%;
  text-indent: -9999px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.slick-dots li.slick-active button {
  background-color: hsl(var(--base));
  width: 20px;
  border-radius: 5px;
  color: hsl(var(--base));
}

/* Dots Css End */
/* ================= Slick Arrow & Dots css Start ================ */
/* ================================= Range Slider Css Start =========================== */
.custom--range__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 10px;
}

.custom--range__content label {
  width: 40%;
}

.custom--range__content input {
  width: 60%;
  text-align: right;
}

.custom--range input {
  border: 0;
  color: hsl(var(--body-color));
  font-weight: 500;
}

.custom--range #slider-range {
  height: 5px;
  border: 0;
  background: hsl(var(--base) / 0.2);
}

.custom--range #slider-range .ui-widget-header {
  background-color: hsl(var(--base));
}

.custom--range #slider-range span:focus {
  background-color: hsl(var(--base));
}

.custom--range #slider-range .ui-slider-handle {
  width: 15px !important;
  height: 15px !important;
  background-color: hsl(var(--base)) !important;
  border: 2px solid hsl(var(--white)) !important;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* ================================= Range Slider Css End =========================== */
/* ======================  Plugin Customization End  ======================*/
/* ======================  Pages Design Start  ======================*/
/* =========================================== Account Css Start =========================*/
.account {
  position: relative;
  z-index: 1;
}

.account::before {
  position: absolute;
  content: "";
  width: 520px;
  height: 520px;
  left: -400px;
  top: -330px;
  z-index: -1;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgba(219, 223, 240, 0.6)),
      to(rgba(62, 79, 152, 0.6)));
  background: linear-gradient(180deg,
      rgba(219, 223, 240, 0.6) 0%,
      rgba(62, 79, 152, 0.6) 100%);
  -webkit-filter: blur(700px);
  filter: blur(700px);
}

.account.register .account-form-wrapper {
  max-width: 530px;
}

.account-form-wrapper {
  background-color: hsl(var(--section-bg)/.2);
  max-width: 480px;
  padding: 48px;
  border-radius: 8px;
  border: 1px solid hsl(var(--border-color)/.2);
}

@media screen and (max-width: 575px) {
  .account-form-wrapper {
    padding: 20px;
  }
}

.account-form-wrapper__text {
  text-align: center;
  font-size: 0.875rem;
  color: hsl(var(--text-color));
}

.account-form-wrapper__title {
  margin-bottom: 8px;
  text-align: center;
  color: hsl(var(--base));
}

.account-form {
  margin-top: 30px;
}

@media screen and (max-width: 424px) {
  .account-form {
    margin-top: 20px;
  }
}

.account-form__text {
  text-align: center;
  font-size: 14px;
  color: hsl(var(--base));
}

.account-form__text a {
  color: hsl(var(--base));
  font-weight: 600;
  text-decoration: underline;
}

.account-form .forgot-password {
  color: hsl(var(--heading-color));
  font-size: 14px;
  margin-bottom: 16px;
}

.account-inner {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
  padding: 75px;
  justify-content: flex-end;
  position: relative;
}

.account-inner__thumb {
  position: absolute;
  bottom: 0;
  left: 60px;
  max-width: 500px;
}

@media (max-width: 1399px) {
  .account-inner__thumb {
    left: 0px;
  }

  .account-inner {
    padding: 50px 40px;
  }
}

@media (max-width: 1199px) {
  .account-inner__thumb {
    left: 0px;
    max-width: 400px;
  }

  .account-inner {
    padding: 40px 0px;
  }

  .account-form-wrapper {
    padding: 30px;
  }

  .account.register .account-form-wrapper {
    max-width: 430px;
  }

  .account-form-wrapper {
    max-width: 430px;
  }
}

@media (max-width: 991px) {
  .account-inner__thumb {
    display: none;
  }

  .account-inner {
    justify-content: center;
  }

  .account-form-wrapper {
    padding: 20px;
  }
}

.social-login-wrapper {
  text-align: center;
  margin: 30px 0;
  border-top: 1px solid hsl(var(--border-color));
  padding-top: 30px;
}

.social-login-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.social-login-list .social-login-btn {
  border: 1px solid hsl(var(--border-color));
  -webkit-box-shadow: 0px 1px 2px 0px #1018280d;
  box-shadow: 0px 1px 2px 0px #1018280d;
  border-radius: 8px;
  padding: 10px 15px;
  color: hsl(var(--heading-color));
  font-size: 14px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  line-height: 1.3;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.social-login-list .social-login-btn:hover {
  border-color: hsl(var(--base));
  color: hsl(var(--base));
}

.form--check .link {
  color: hsl(var(--base));
  font-weight: 600;
}

/* ============================================ Account Css End ====================================*/
/* =========================================== Blog Details Css Start ==============================*/
.blog-details {
  height: 100%;
}

.blog-details__thumb {
  height: 450px;
  max-height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .blog-details__thumb {
    height: 350px;
  }
}

@media screen and (max-width: 767px) {
  .blog-details__thumb {
    height: 300px;
  }
}


.blog-details .blog-item__bottom {
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-details .blog-item__bottom .text-list__item {
  color: hsl(var(--body-color));
}

.blog-details .blog-item__bottom .title {
  margin-bottom: 0;
  font-size: 16px;
}

.blog-details__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 10px;
  margin-top: 32px;
}

.blog-details__content {
  margin-top: 24px;
}

.blog-details__share .social-list {
  gap: 5px 24px;
}

.blog-details__title {
  margin-bottom: 24px;
}

.blog-details__desc {
  margin-bottom: 24px;
}

.blog-details__desc:last-child {
  margin-bottom: 0;
}

.blog-details .social-list__link {
  color: hsl(var(--base));
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.blog-details .social-list__link:hover {
  color: hsl(var(--base-d-300));
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.quote-text {
  background-color: hsl(var(--base));
  padding: 20px 24px;
  border-radius: 16px;
  border-left: solid #35353f;
  border-bottom: solid #35353f;
  border-width: 0px, 0px, 4px, 4px;
}

.quote-text__desc {
  color: hsl(var(--white));
  font-size: 17px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .quote-text {
    padding: 25px 15px;
  }
}

.content-wrapper {
  margin-bottom: 24px;
}

.content-wrapper__title {
  margin-bottom: 16px;
  font-weight: 600;
}

.content-wrapper:last-child {
  margin-bottom: 0;
}

.content-list__item {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  color: hsl(var(--heading-color));
  position: relative;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .content-list__item {
    font-size: 16px;
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 424px) {
  .content-list__item {
    font-size: 14px;
    margin-bottom: 5px;
  }
}

.content-list__item::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: hsl(var(--black));
}

.content-list.list-two .content-list__item {
  font-size: 16px;
  margin-bottom: 16px;
  color: hsl(var(--body-color));
  font-weight: 400;
}

/* ========================================== Blog Details Css End ======================================*/
/*=========== contact section css start here ===========*/
.contact-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-section .left-bg {
  top: -270px;
  bottom: unset;
  width: 520px;
  height: 620px;
  left: -350px;
}

.contact-container {
  margin-top: 32px;
}

.contact-item {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  background: hsl(var(--white));
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  height: 100%;
}

.contact-item__icon {
  color: hsl(var(--base));
  font-size: 30px;
  background: hsl(var(--section-bg));
  width: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-item__title {
  margin-bottom: 5px;
}

.contact-item__content {
  width: calc(100% - 70px);
  padding: 20px;
}

.contact-item__desc a {
  color: hsl(var(--body-color));
}

.contact-wrapper {
  background-color: hsl(var(--white));
  padding: 32px;
  border-radius: 8px;
  -webkit-box-shadow: var(--box-shadow-two);
  box-shadow: var(--box-shadow-two);
}

.contact-wrapper__map {
  width: 100%;
}

.contact-wrapper__map iframe {
  height: 100%;
  border-radius: 10px;
  width: 100%;
  min-height: 400px;
}

/*============= contact section css end here ===========*/
/* ================================= Dashboard Css Start =========================== */
.dashboard {
  position: relative;
  -webkit-transition: 0.5s linear;
  transition: 0.5s linear;
  /* User Info Css Start */
  /* User Info Css End */
  /* ================================= Dashboard Css End =========================== */
}

.dashboard__right {
  width: 100%;
  margin-left: 300px;
  background-color: hsl(var(--white));
}

@media screen and (max-width: 991px) {
  .dashboard__right {
    width: 100%;
    margin-left: 0;
  }
}

.dashboard .search-form {
  width: 370px;
  position: relative;
}

@media screen and (max-width: 1199px) {
  .dashboard .search-form {
    width: 300px;
  }
}

@media screen and (max-width: 575px) {
  .dashboard .search-form {
    width: 100%;
  }
}

.dashboard .search-form .form--control {
  background-color: transparent !important;
  padding-left: 40px;
}

@media screen and (max-width: 424px) {
  .dashboard .search-form .form--control {
    padding-left: 28px;
  }
}

.dashboard .search-form__icon {
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: hsl(var(--body-color) / 0.5);
}

.dashboard .dropdown {
  display: inline-block !important;
}

.dashboard .dashboard-header {
  width: 1184px;
  height: 54px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--Colors-Neutral-200, #E8E8E8);
  background: #FFF;

  /* keep your sticky behavior */
  position: sticky;
  top: 0;
  z-index: 8;

  /* reset padding since you defined fixed width/height */
  padding: 0 24px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 424px) {
  .dashboard .dashboard-header {
    padding: 0 15px;
  }
}

.dashboard .dashboard-header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.dashboard .dashboard-header__left .title {
  font-family: var(--body-font);
  margin-bottom: 0;
  color: hsl(var(--body-color));
}

.dashboard .dashboard-header__inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 0;
  /* removed inner padding since height is fixed */
}

@media (max-width: 991px) {
  .dashboard .dashboard-header__inner {
    padding: 10px 0;
  }
}

@media screen and (max-width: 424px) {
  .dashboard .dashboard-header {
    width: 100%;
    /* responsive */
    padding: 0 15px;
  }
}






@media screen and (max-width: 424px) {
  .dashboard .user-info__thumb {
    width: 35px;
    height: 35px;
  }
}

.figma-dropdown {
  position: absolute;
  right: 0;
  top: 60px;
  width: 280px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.10);
  padding: 16px;
  display: none;
  z-index: 9999;
}

/* Show/Hide state */
.figma-dropdown.show {
  display: block;
}

/* Header section */
.figma-dropdown-header {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #EEEEEE;
}

/* Avatar */
.figma-avatar {
  width: 40px;
  height: 40px;
  position: relative;
}

.figma-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

/* Online indicator */
.online-indicator {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
  background: #12B76A;
  border: 2px solid white;
  border-radius: 50%;
}

/* User text */
.figma-user-text {
  display: flex;
  flex-direction: column;
}

.figma-name {
  font-size: 14px;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  color: #344054;
  margin: 0;
}

.figma-email {
  font-size: 13px;
  color: #737373;
  font-family: "Inter", sans-serif;
  margin: 0;
}

/* Menu items */
.figma-menu {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.figma-menu li {
  margin-bottom: 12px;
}

.figma-menu li a {
  text-decoration: none;
  color: #344054;
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.figma-menu li a.logout {
  color: #E74C3C;
}

.user-info__button1 {
  display: flex;
  align-items: center;
  gap: 12px;
  /* spacing between avatar + caret */
  cursor: pointer;
  padding: 6px 0;
}

.header-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.header-caret svg {
  display: block;
  margin-top: 2px;
}


.dashboard .user-info__caret {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.dashboard .user-info__notify {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.dashboard .user-info__notify i {
  font-size: 18px;
  color: #070E4E;
}

.dashboard .notify-dot {
  position: absolute;
  top: 4px;
  right: 6px;
  width: 6px;
  height: 6px;
  background: red;
  border-radius: 50%;
}

.dashboard .user-info__divider {
  width: 1px;
  height: 24px;
  background: #E8E8E8;
}

.dashboard .user-info__button {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media screen and (max-width: 575px) {
  .dashboard .user-info__button {
    gap: 10px;
  }
}

@media screen and (max-width: 767px) {
  .dashboard .user-info__profile {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .dashboard .user-info .user-info-dropdown {
    -webkit-transform: unset !important;
    transform: unset !important;
    top: 43px !important;
  }
}

.dashboard .dashboard-body {
  position: relative;
  padding: 24px;
}

@media screen and (max-width: 424px) {
  .dashboard .dashboard-body {
    padding: 20px 15px;
  }
}

.dashboard .dashboard-body__bar-icon {
  color: hsl(var(--body-color));
  font-size: 1.5625rem;
  cursor: pointer;
}

.dashboard .dashboard-body__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px 30px;
  margin-bottom: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 424px) {
  .dashboard .dashboard-body__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.dashboard .dashboard-body__left {
  min-width: 100px;
}

@media screen and (max-width: 424px) {
  .dashboard .dashboard-body__left {
    width: 100%;
  }
}

.dashboard .dashboard-body__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .dashboard .dashboard-body__right {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }
}

.dashboard .dashboard-body__right .search-form {
  width: 250px;
}

@media screen and (max-width: 991px) {
  .dashboard .dashboard-body__right .search-form {
    width: 170px;
  }
}

@media screen and (max-width: 424px) {
  .dashboard .dashboard-body__right .search-form {
    width: 100%;
  }
}

.dashboard .dashboard-body__right .search-form .form--control {
  padding: 4px 16px;
  padding-left: 35px;
}

.dashboard .dashboard-widget {
  padding: 24px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: hsl(var(--white));
  -webkit-box-shadow: var(--box-shadow-two);
  box-shadow: var(--box-shadow-two);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  height: 100%;
}

.dashboard .dashboard-widget::after {
  position: absolute;
  content: "";
  right: 50px;
  top: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  z-index: -1;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgba(219, 223, 240, 0.7)),
      to(rgba(62, 79, 152, 0.7)));
  background: linear-gradient(180deg,
      rgba(219, 223, 240, 0.7) 0%,
      rgba(62, 79, 152, 0.7) 100%);
  -webkit-filter: blur(70px);
  filter: blur(70px);
}

.dashboard .dashboard-widget:hover {
  -webkit-transform: translateY(-2px) scale(1.01);
  transform: translateY(-2px) scale(1.01);
}

@media screen and (max-width: 767px) {
  .dashboard .dashboard-widget {
    padding: 16px;
  }
}

.dashboard .dashboard-widget__btn-group .btn {
  margin-bottom: 10px;
}

.dashboard .dashboard-widget__btn-group .btn:last-child {
  margin-bottom: 0;
}

.dashboard .dashboard-widget__title {
  margin-bottom: 16px;
  font-weight: 600;
}

.dashboard .dashboard-widget__text {
  margin-top: 10px;
  color: hsl(var(--heading-color));
  font-weight: 600;
}

@media screen and (max-width: 1399px) {

  .dashboard .dashboard-widget__text,
  .dashboard-widget__desc {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 575px) {

  .dashboard .dashboard-widget__text,
  .dashboard-widget__desc {
    font-size: 0.8125rem;
  }
}

.dashboard .dashboard-widget__btn {
  margin-top: 16px;
}

.dashboard .dashboard-widget__shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.dashboard-table {
  background-color: hsl(var(--white));
  -webkit-box-shadow: var(--box-shadow-two);
  box-shadow: var(--box-shadow-two);
  border-radius: 8px;
}

.dashboard-table__top {
  padding: 24px;
}

.dashboard-table__title {
  margin-bottom: 0;
}

@media screen and (max-width: 424px) {
  .dashboard-select {
    width: 100%;
  }
}

.dashboard-select .form--control {
  background-color: hsl(var(--section-bg));
  font-size: 14px;
  font-weight: 600;
  padding-right: 40px;
}

/* info card css here */
.info-main-container {
  gap: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width:767px) {
  .info-main-container {
    grid-template-columns: 1fr;
  }

}

.info-wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.info-wrapper__title {
  margin-bottom: 10px;
}

.info-card {
  background-color: hsl(var(--white));
  -webkit-box-shadow: var(--box-shadow-two);
  box-shadow: var(--box-shadow-two);
  padding: 16px;
  border-radius: 8px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.info-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.info-list__item:not(:last-child) {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid hsl(var(--black) / .06);
}


@media screen and (max-width: 1199px) {
  .info-list__item {
    font-size: 14px;
  }
}

.info-list__item:last-child {
  margin-bottom: 0;
}

.info-list__title {
  font-weight: 600;
  color: hsl(var(--heading-color));
}

/*=========== policy-list css start here ===========*/
.policy-renewal {
  margin-top: 24px;
}

.policy-renewal__header {
  padding: 12px 20px;
  border-radius: 8px;
  background-color: hsl(var(--section-bg));
}

.policy-renewal__body {
  margin-top: 24px;
}

.policy-renewal__body .text {
  margin-bottom: 6px;
  color: hsl(var(--heading-color));
}

.policy-renewal__body .policy-list {
  list-style: auto;
  padding-left: 20px;
}

.policy-renewal__body .policy-list__item {
  margin-bottom: 6px;
  color: hsl(var(--heading-color));
}

.policy-renewal__body .policy-list__item:last-child {
  margin-bottom: 0;
}

.policy-renewal__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 16px;
  gap: 6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.amount-list {
  background: hsl(var(--section-bg));
  padding: 16px 12px;
  border-radius: 8px;
}

.amount-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px 10px;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
}

.amount-list__item:last-child {
  margin-bottom: 0;
}

.amount-list__item.total {
  color: hsl(var(--heading-color));
  border-top: 1px solid hsl(var(--border-color));
  padding-top: 8px;
}

/*============== insurance plan page css start here ==============*/
.insurance-plan-wrapper {
  border-radius: 8px;
  overflow: hidden;
  background-color: hsl(var(--white));
  -webkit-box-shadow: var(--box-shadow-two);
  box-shadow: var(--box-shadow-two);
}

.insurance-plan-wrapper__header {
  position: relative;
  padding: 32px 40px;
  z-index: 1;
  background: -webkit-gradient(linear,
      left top,
      right top,
      color-stop(-93%, #b7bfe1),
      to(hsl(var(--base))));
  background: linear-gradient(90deg, #b7bfe1 -93%, hsl(var(--base)) 100%);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .insurance-plan-wrapper__header {
    padding: 24px;
  }
}

.insurance-plan-wrapper__header .title {
  color: hsl(var(--white));
  margin-bottom: 6px;
}

.insurance-plan-wrapper__header .text {
  color: hsl(var(--white));
}

.insurance-plan-wrapper__shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  z-index: -1;
}

.insurance-plan-wrapper__shape img {
  width: 100%;
  height: 100%;
}

.insurance-plan-wrapper__body {
  padding: 50px 40px;
}

@media screen and (max-width: 1499px) {
  .insurance-plan-wrapper__body {
    padding: 40px 30px;
  }
}

@media screen and (max-width: 1399px) {
  .insurance-plan-wrapper__body {
    padding: 40px 20px;
  }
}

@media screen and (max-width: 424px) {
  .insurance-plan-wrapper__body {
    padding: 30px 16px;
  }
}

.information-container {
  background: hsl(var(--base) / 0.1);
  padding: 24px;
  border-radius: 8px;
}

@media screen and (max-width: 424px) {
  .information-container {
    padding: 0;
    background-color: transparent;
  }
}

.information-container.information-two {
  background-color: hsl(var(--white));
  -webkit-box-shadow: var(--box-shadow-two);
  box-shadow: var(--box-shadow-two);
}



.plan-info {
  margin-top: 90px;
}

@media screen and (max-width: 575px) {
  .plan-info {
    margin-top: 40px;
    padding: 0 40px;
  }
}

@media screen and (max-width: 424px) {
  .plan-info {
    padding: 0 20px;
  }
}

.page-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  counter-reset: step;
  padding: 0 40px;
}

@media screen and (max-width: 1399px) {
  .page-list {
    padding: 0 20px;
  }
}

@media screen and (max-width: 575px) {
  .page-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.page-list .nav-item {
  border-bottom: 0;
  padding: 3px;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

@media screen and (max-width: 575px) {
  .page-list .nav-item {
    padding-bottom: 40px;
    text-align: left;
  }
}

@media screen and (max-width: 575px) {
  .page-list .nav-item:last-child {
    padding-bottom: 0;
  }
}

.page-list .nav-item::after {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  bottom: 8px;
  color: hsl(var(--body-color));
  font-size: 16px;
  top: -26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  counter-increment: step;
  content: counter(step);
  z-index: 2;
  font-size: 24px;
}

@media screen and (max-width: 1399px) {
  .page-list .nav-item::after {
    font-size: 20px;
  }
}

@media screen and (max-width: 575px) {
  .page-list .nav-item::after {
    top: 16px;
    left: -7px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    font-size: 18px;
  }
}

.page-list .nav-item::before {
  content: "";
  position: absolute;
  top: -17px;
  right: 50%;
  width: 100%;
  height: 6px;
  background: hsl(var(--section-bg));
}

@media screen and (max-width: 575px) {
  .page-list .nav-item::before {
    top: 0;
    left: 0;
    right: unset;
    width: 6px;
    height: 100%;
  }
}

.page-list .nav-item .nav-link {
  padding: 0 !important;
  background-color: transparent !important;
  border-radius: 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 0 !important;
  position: relative;
}

.page-list .nav-item .nav-link::before {
  position: absolute;
  content: "";
  top: -38px;
  left: 50%;
  width: 40px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 40px;
  border-radius: 50%;
  background-color: hsl(var(--section-bg));
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .page-list .nav-item .nav-link::before {
    display: block !important;
  }
}

@media screen and (max-width: 575px) {
  .page-list .nav-item .nav-link::before {
    top: 50%;
    left: -18px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 36px;
    height: 36px;
  }
}

.page-list .nav-item .nav-link__title {
  margin-top: 10px;
  font-weight: 600;
}

@media screen and (max-width: 1399px) {
  .page-list .nav-item .nav-link__title {
    font-size: 15px;
  }
}

@media screen and (max-width: 1199px) {
  .page-list .nav-item .nav-link__title {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .page-list .nav-item .nav-link__title {
    font-size: 12px;
  }
}

@media screen and (max-width: 575px) {
  .page-list .nav-item .nav-link__title {
    margin-top: 0;
    margin-left: 40px;
    font-size: 14px;
  }

  .nav-link__desc {
    margin-left: 40px;
  }
}

.page-list .nav-item.active.nav-item::after {
  color: hsl(var(--white));
  content: "\f00c" !important;
  font-family: "Font Awesome 6 Free";
  font-weight: 800;
}

.page-list .nav-item.active.nav-item::before {
  background-color: hsl(var(--success));
}

.page-list .nav-item.active.nav-item .nav-link::before {
  background-color: hsl(var(--success));
}

.page-list .nav-item.active.nav-item .nav-link__title {
  color: hsl(var(--heading-color));
}

.page-list .nav-item.active .transaction-item__title {
  color: hsl(var(--white));
}

.page-list .nav-item.active .transaction-item__text {
  color: hsl(var(--white));
}

.page-list .nav-item:last-child::before {
  right: -50%;
  width: 200%;
}

@media screen and (max-width: 575px) {
  .page-list .nav-item:last-child::before {
    top: 0;
    left: 0;
    right: unset;
    width: 6px;
    height: 100%;
    display: none;
  }
}

/* payment page css */
.payment-card {
  border: 1px solid hsl(var(--border-color));
  border-radius: 8px;
  overflow: hidden;
}

.payment-card__header {
  background-color: hsl(var(--section-bg));
  padding: 32px 40px;
}

@media screen and (max-width: 575px) {
  .payment-card__header {
    padding: 20px;
  }
}

.payment-card__title {
  margin-bottom: 8px;
}

.payment-card__text {
  font-size: 14px;
  color: hsl(var(--heading-color));
}

.payment-card__body {
  padding: 40px;
}

@media screen and (max-width: 575px) {
  .payment-card__body {
    padding: 20px;
  }
}

/*============== insurance plan page css end here ==============*/
/*================ confirmation page start  css ====================*/
.confirmation-container {
  min-height: calc(100vh - 140px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: hsl(var(--white));
  padding: 30px;
  -webkit-box-shadow: var(--box-shadow-two);
  box-shadow: var(--box-shadow-two);
  border-radius: 8px;
}

@media screen and (max-width: 424px) {
  .confirmation-container {
    padding: 15px;
  }
}

.confirmation-container__icon {
  text-align: center;
  display: block;
  font-size: 60px;
  color: hsl(var(--base));
  margin-bottom: 30px;
  line-height: 1;
}

@media screen and (max-width: 575px) {
  .confirmation-container__icon {
    margin-bottom: 15px;
  }
}

.confirmation-container__title {
  text-align: center;
  margin-bottom: 16px;
  color: hsl(var(--base));
}

.confirmation-container__text {
  text-align: center;
  font-size: 18px;
  margin-bottom: 24px;
  color: hsl(var(--base));
}

@media (max-width: 767px) {
  .confirmation-container__text {
    font-size: 16px;
  }
}

.confirmation-container__body {
  max-width: 650px;
}

.confirmation-container .confirmation-card {
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid hsl(var(--border-color) / 0.5);
  padding: 24px;
  border-radius: 8px;
}

@media screen and (max-width: 424px) {
  .confirmation-container .confirmation-card {
    padding: 15px;
  }
}

.notification-item .form-check-label {
  font-size: 16px !important;
}

/*==================== confirmation page end css ====================*/
/*======= setting page css start here =======*/
.authentication-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
}

@media screen and (max-width: 575px) {
  .authentication-item__top {
    margin-bottom: 16px;
  }
}

.authentication-item__title {
  margin-bottom: 5px;
}

.authentication-item__desc {
  font-size: 14px;
  color: hsl(var(--heading-color));
}

/*======== claim details css start here ========*/
.single-claim-item {
  margin-bottom: 40px;
}

.single-claim-item:last-child {
  margin-bottom: 0;
}

.uploader-thumb {
  background-color: hsl(var(--white));
  padding: 24px;
  border-radius: 8px;
}

@media (max-width: 424px) {
  .uploader-thumb {
    padding: 0;
  }
}

.uploader-thumb__top {
  margin-bottom: 16px;
}

.uploader-thumb__top .title {
  margin-bottom: 6px;
  color: hsl(var(--heading-color));
  font-weight: 600;
}

.image-uploader {
  border: 1px dashed hsl(var(--border-color));
  border-radius: 8px;
}

.image-uploader .upload-text {
  text-align: center;
}

.temp-active {
  -webkit-transition: 0.4s linear;
  transition: 0.4s linear;
}

/* ======================  Pages Design End  ======================*/
/*# sourceMappingURL=main.css.map */
.footer-contact-menu__item a {
  color: #fff !important;
}

.table tbody tr td:has(.empty-message) {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.table tbody tr td:has(.empty-message)::before {
  display: none;
}

.empty-message {
  text-align: center;
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.empty-message-icon {
  max-width: 150px;
  width: 100%;
}

.empty-message-text {
  color: hsl(var(--black)/0.5);
  font-weight: 500;
}

.image-uploader .uploaded .uploaded-image {
  display: inline-block;
  width: calc(16.6666667% - 1rem) !important;
  padding-bottom: calc(16.6666667% - 1rem) !important;
  height: 0;
  position: relative;
  margin: .5rem;
}

@media screen and (max-width: 1366px) {
  .image-uploader .uploaded .uploaded-image {
    width: calc(20% - 1rem) !important;
    padding-bottom: calc(20% - 1rem) !important;
  }
}

@media screen and (max-width: 992px) {
  .image-uploader .uploaded .uploaded-image {
    width: calc(25% - .8rem) !important;
    padding-bottom: calc(25% - .4rem) !important;
    margin: .4rem;
  }
}

@media screen and (max-width: 786px) {
  .image-uploader .uploaded .uploaded-image {
    width: calc(33.3333333333% - .6rem) !important;
    padding-bottom: calc(33.3333333333% - .3rem) !important;
    margin: .3rem;
  }
}


@media screen and (max-width: 450px) {
  .image-uploader .uploaded .uploaded-image {
    width: calc(50% - .4rem) !important;
    padding-bottom: calc(50% - .4rem) !important;
    margin: .2rem;
  }
}


.dashboard .sidebar-logo .sidebar-logo__link.favicon {
  display: none;
}

.dashboard.show-hide .sidebar-logo .sidebar-logo__link.favicon {
  display: block;
}

.dashboard .sidebar-logo .sidebar-logo__link.logo {
  display: block;
}

.dashboard.show-hide .sidebar-logo .sidebar-logo__link.logo {
  display: none;
}

.dashboard .sidebar-logo .favicon img {
  width: 38px;
}

.privacy-policy__top {
  margin-bottom: 40px;
}

.privacy-policy__top .title {
  margin-bottom: 0;
}


/* New Css */
.dashboard .dashboard-header {
  width: auto !important;
}

.dashboard__right {
  margin-left: 257PX;
}

@media screen and (max-width: 991px) {
  .dashboard__right {
    margin-left: 0;
  }
}


.alert-warning-cus {
  border: 1px solid #DFB400;
  background: rgba(255, 219, 67, 0.1);
}

.alert-warning-cus svg {
  color: rgba(223, 180, 0, 1);
  border-radius: 100%;
  background: #fff;
}

.alert .alert__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.table.new_table thead tr th:last-child,
.table.new_table thead tr th:first-child {
  border-radius: 0;
}

.table.new_table thead tr th,
.table.new_table tbody tr td {
  border: 0;
}

.table.new_table tbody tr td {
  border-bottom: 1px solid rgba(232, 232, 232, 1);
}

.qact {
  border-radius: 100%;
  color: #fff;
  border: 0;
  box-shadow: none;
  padding: 5px;
}

.qact_sec_odd {
  margin-left: 20px;
  margin-bottom: 20px;
}

.qact_sec_even {
  margin-right: 20px;
  margin-bottom: 20px;
}

.clr_check {
  background-color: #070E4E;
  color: #fff;
  border-radius: 100%;
  padding: 5px;
  font-size: 13px;
}

.clr_check_sec {
  background: var(--Color, rgba(7, 14, 78, 0.09));
}

.ts {
  color: #4F5AFF;
}

.ba-s {
  background: #4F5AFF;
}

.bo-s {
  border: 1px solid #4F5AFF;
}

.btd .arr {
  background: rgba(0, 114, 255, 0.1);
  padding: 5px;
  border-radius: 100%;
  color: #000;
  display: inline;
  margin-right: 5px;
}

.ttl {
  color: rgba(2, 2, 29, 1);
}


.new-navbar {
  width: 1152px;
  height: 38px;
  margin: 20px auto;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* purple outline like screenshot */
}

.new-navbar .nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.new-navbar .nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.new-navbar .nav-links li a:hover,
.new-navbar .nav-links li a.active {
  color: #00aaff;
  /* highlight color for active */
}

.new-navbar .nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.new-navbar .btn--primary {
  background: linear-gradient(90deg, #007bff, #402fa5);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
}

/* Only your Resources dropdown */
.resources-dropdown .resources-menu {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 22px !important;
  min-width: 0;
  z-index: 2000;
  /* sit above navbar */
}

/* Right-align under toggle when Popper is active */
.resources-dropdown .resources-menu[data-bs-popper] {
  right: 0;
  left: auto;
}

/* Purple card (size, gap, padding as requested) */
.resources-dropdown .resources-container {
  box-sizing: border-box;
  width: 303px;
  min-height: 165px;
  /* avoid clipping */
  padding: 24px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 31px;
  row-gap: 8px;
  align-items: start;

  border-radius: 16px;
  background: #04043C;
  border: 1px solid rgba(205, 180, 255, 0.35);
  box-shadow:
    0 12px 28px rgba(45, 16, 75, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12);
  color: #fff;
  backdrop-filter: blur(6px);
}

/* Columns */
.resources-dropdown .dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  /* allow wrapping inside the small width */
}

/* Headers + links */
.resources-dropdown .dropdown-header {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 10px -10px;
}

.resources-dropdown .dropdown-column a {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 8px;
  line-height: 1.3;
}

.resources-dropdown .dropdown-column a:hover,
.resources-dropdown .dropdown-column a:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn--gradient {
  position: relative;
  display: flex;
  width: 240px;
  height: 52px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: #fff;
  text-decoration: none;
  z-index: 1;
}

.btn--gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #00C6FF 0%, #0072FF 100%);
  mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='253' height='52' viewBox='0 0 253 52' fill='none'%3E%3Cpath d='M249 -0.000488281L253 3.99951V47.9995L249.002 51.9976H3.99805L0 47.9995V3.99951L4 -0.000488281L3.99805 -0.00244141H249.002L249 -0.000488281Z' fill='%23fff'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='253' height='52' viewBox='0 0 253 52' fill='none'%3E%3Cpath d='M249 -0.000488281L253 3.99951V47.9995L249.002 51.9976H3.99805L0 47.9995V3.99951L4 -0.000488281L3.99805 -0.00244141H249.002L249 -0.000488281Z' fill='%23fff'/%3E%3C/svg%3E") center / contain no-repeat;
  border-radius: 0;
}

.cta-btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  /* spacing between buttons */
  margin-top: 24px;
  flex-wrap: nowrap;
  /* keeps buttons in one row */
}


/* Full-bleed strip (edge to edge) */
.clients-partners-bleed {
  position: relative;
  width: 100vw;
  /* span entire viewport width */
  left: 50%;
  transform: translateX(-50%);
  /* center the 100vw block */
  padding-top: 40px;
  /* Reduce empty space above */
  padding-bottom: 40px;
  /* Reduce empty space below */
  margin-top: -40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  /* hide any tiny overflow from fonts */
  z-index: 1;
  background: var(--Colors-Primary-500, #02021D);
}

/* Optional: avoid horizontal scrollbars on some browsers */
@media (min-width: 0) {
  body {
    overflow-x: hidden;
  }
}

/* Center the content within the full width area */
.clients-partners-bleed .clients-inner {
  max-width: 1200px;
  /* adjust if your layout uses a different container width */
  margin: 0 auto;
  text-align: center;
}

.clients-title {
  color: #E9F1FF;
  text-align: center;
  text-align: center;
  font-family: Lato;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  /* 75% */

  margin-top: 0;
  margin-bottom: 25px !important;
  /* Close to Figma style */
}

.clients-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px 44px;
  /* row / column spacing */
}

.clients-list .brand {
  font-weight: 700;
  font-size: clamp(14px, 1.2vw, 18px);
  color: #9FB7FF;
  /* soft blue */
  letter-spacing: .2px;
  text-decoration: none;
  white-space: nowrap;
}

.clients-list .brand small {
  font-weight: 500;
  font-size: 0.75em;
  opacity: .85;
  margin-left: 4px;
}

.clients-list .brand.is-primary {
  color: #FFFFFF;
  /* first brand brighter */
}

.clients-sub {
  color: rgba(233, 241, 255, 0.72);
  text-align: center;
  font-family: Lato;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
}

/* Tighten spacing on small screens */
@media (max-width: 575.98px) {
  .clients-list {
    gap: 14px 22px;
  }
}


/* 2025-10-11 */
.new-navbar .btn--primary {
  background: #0072ff !important;
}


.btn--gradient::before {
  background: linear-gradient(176deg,
      #00C6FF 10.99%,
      #0072FF 63.14%);
}


.clients-partners-bleed {
  border: 0;
}




.popular-item__header {
  min-height: 150px;
}

/* --- Find and replace these specific styles in your CSS file --- */

/* Team Card */
.team-card {

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;

  transition: all 0.3s ease;
  cursor: pointer;
  padding: 16px;
  /* ADD this line */
}

.team-card__image {
  width: 100%;
  /* REMOVE the fixed height from here */
  overflow: hidden;
  position: relative;
}

.team-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  /* UPDATE: This makes the image a perfect square */
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 12px;
  /* ADD this for the rounded corners */
}

/* This is the main change for the name tag background */
.team-card__content {

  border: 1px solid rgba(255, 255, 255, 0.1);
  /* ADD border */
  border-radius: 12px;
  /* ADD border-radius */
  padding: 12px 16px;
  /* UPDATE padding */
  backdrop-filter: none;
  /* REMOVE blur from here */
  text-align: left;
  /* ADD text alignment */
  margin-top: 16px;
  /* ADD spacing from image */
}

/* 🌟 Team Section Styles */
.team-section {
  background: var(--Colors-Primary-500, #02021D);
  position: relative;
  overflow: hidden;
}

.team-section__header {
  text-align: center;
  margin-bottom: 60px;
}

.team-badge {
  display: inline-flex;
  padding: 8px 16px 8px 12px;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.31);
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
  font-weight: 600;
  color: #00C6FF;
  margin-bottom: 20px;
}


.team-section__title {
  color: #FFF;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  font-family: Lato;
}

.team-section__desc {
  color: #fff;
  font-size: 17px;
  line-height: 1.6;
  max-width: 411px;
  margin: 0 auto;
}

/* Team Card */
.team-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 198, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 198, 255, 0.2);
}

.team-card__image {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}


.team-card__name {
  color: #FFF;

  /* 12 */
  font-family: Lato;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  display: flex;
  height: 21px;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
}

.team-card__designation {
  margin: 0;
  color: #FFF;
  font-family: Lato;
  font-size: 17px;
  font-style: normal;
  line-height: 17px;
  /* 121.429% */
}

/* See More Button */
.team-section__footer {
  text-align: center;
  margin-top: 50px;
}

.team-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(90deg, #00C6FF 0%, #0072FF 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
}

.team-btn:hover {
  background: linear-gradient(90deg, #00B8F0 0%, #0066E6 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 114, 255, 0.4);
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .team-section__title {
    font-size: 36px;
  }

  .team-card__image {
    height: auto;
  }
}

@media (max-width: 767px) {
  .team-section__title {
    font-size: 28px;
  }

  .team-section__desc {
    font-size: 14px;
  }

  .team-card__image {
    height: auto;
  }
}

/* 📱 Mobile Header Styles */
@media (max-width: 1199px) {
  .header {
    height: 112px;
    align-self: stretch;
  }

  .new-navbar {
    padding: 32px 16px;
    justify-content: space-between;
    align-items: center;
  }

  /* Hide desktop nav links */
  .nav-links {
    display: none !important;
  }

  /* Hide auth buttons and language on mobile */
  .nav-right {
    display: none !important;
  }

  /* Show hamburger menu */
  .mobile-menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .mobile-menu-toggle svg {
    width: 48px;
    height: 48px;
  }

  /* Logo adjustments */
  .navbar-brand.logo {
    display: flex;
    align-items: center;
  }

  .FrontLogo {
    max-height: 48px;
    width: auto;
  }
}

/* Desktop - Show normal layout */
@media (min-width: 1200px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.fnt_cs_header {
  color: var(--Colors-Primary-500, #F9F4F4);
  /* Section title */
  font-family: Lato;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px;
  /* 75% */
  display: flex;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  align-self: stretch;
}

.fnt_cs_login {
  color: var(--Colors-Primary-500, #FFF);

  /* Body Large */
  font-family: Lato;
  font-size: 18px;
  font-style: normal;
  line-height: 21px;
  /* 116.667% */
  display: flex;
  height: 21px;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
}


.fnt_cs,
.section-heading__title {
  color: #ffffff;
}

.fnt_cp {
  color: #070E4E;
}

.social-login-wrapper {
  margin: 0;
  border: 0;
  padding-top: 10px;
}



.authh .login-section {
  min-height: 100vh;
}

.authh .login-left {
  background-color: #02021D;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.authh .login-right {
  background-color: #02021D;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: fixed;
  height: 100vh;
  right: 0;
}

.authh .login-right img {
  max-width: 420px;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.authh .google-btn {
  border-radius: 10px;
  background: var(--main-Brand-color, #070E4E);
  box-shadow: 0 7px 32px -12px rgba(118, 121, 123, 0.10);
  border-radius: 8px;
  padding: 10px 15px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  transition: all 0.2s;
}

.authh .google-btn:hover {
  background-color: #f7f7f7;
}

.authh .divider {
  text-align: center;
  margin: 1.5rem 0;
  color: #fff;
  position: relative;
}

.authh .divider::before,
.authh .divider::after {
  content: '';
  top: 50%;
  width: 30%;
  height: 1px;
  background-color: #ddd;
}

.authh .divider::before {
  left: 0;
}

.authh .divider::after {
  right: 0;
}

.authh .form-control {
  border-radius: 8px;
  padding: 10px 12px;
}

.authh .btn-login {
  background-color: #020626;
  color: #fff;
  width: 100%;
  border-radius: 8px;
  padding: 10px;
  font-weight: 500;
}

.authh .btn-login:hover {
  background-color: #00091e;
}

.authh .small-link {
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
}

.authh .small-link:hover {
  text-decoration: underline;
}

.authh .carousel-indicators [data-bs-target] {
  background-color: #fff;
}

.authh .back-btn {
  position: absolute;
  top: 20px;
  left: 20px;
}

@media (max-width: 992px) {
  .authh .login-right {
    order: -1;
    padding-top: 4rem;
    display: none;
  }

  .authh .login-left {
    padding: 0rem;
  }
}

.authh .btn.btd:hover {
  color: #fff !important;
  border-color: #060a4c;
  background: transparent;
}

.authh .carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #55A1FF;
}

.authh .ig {
  border-color: #ced4da !important;
  background: transparent !important;
  color: #ced4da !important;
  border-right: 0 !important;
}

.authh .bl0 {
  border-left: 0 !important;
}

/* 2025-10-14 */
.md_show {
  display: block;
}

.sm_show {
  display: none;
}

@media (max-width: 768px) {
  .banner-container .banner-content {
    text-align: center;
  }

  .banner-container .banner-content__title {
    width: auto;
    padding: 0 14px;
    height: auto;
  }

  .banner-container .banner-content__desc {
    width: auto;
    font-size: 15px;
  }

  .banner-container .btn--gradient {
    width: 100%;
  }

  .category-container .clients-title {
    padding: 0 35px;
  }

  .category-container .client-logos img {
    width: 75px;
  }

  .choose-us-wrapper .choose-us-card {
    text-align: center;
    width: auto;
    margin: 0 30px;
  }

  .step-section .step-icon img {
    max-height: fit-content;
  }

  .step-section .step-icon img {
    height: auto;
  }

  .new-faq-section {
    text-align: center;
  }

  .faq_lbl_box {
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
  }

  .footer-v2_main .footer-v2_links,
  .footer-v2_main .footer-v2_title {
    text-align: center;
  }

  .md_show {
    display: none;
  }

  .sm_show {
    display: block;
  }
}

@media (max-width: 767px) {
  .popular-item {
    margin: 0px 15px;
    width: auto;
  }
}

/* 2025-10-16 */
/* Abou US Banner */
.wwr-section {
  background: var(--Colors-Primary-500, #02021D);
  position: relative;
  overflow: hidden;
}

.wwr-section__title {
  color: #FFF;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.wwr-section__desc {
  color: var(--Text-color, #A4A4A4);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 764px;
  margin: 0 auto;
}

/* Abou US Our Miision */
.Our_Miision {
  padding: 80px 0;
  background: var(--Colors-Primary-500, #02021D);
}

.Our_Miision_title {
  color: #FFF;
  font-weight: normal !important;
}


.Our_Miision_card {
  border-radius: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.10);
  background: rgba(2, 2, 29, 0.55);
  box-shadow: 0 4px 20px rgba(0, 198, 255, 0.09);

  display: flex;
  width: 100%;
  height: 175px;
  padding: 35px 25px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.Our_Miision_card_title {
  text-align: center;
  /* Section title */
  font-family: Lato;
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
}


.Our_Miision_card:hover {
  background: var(--Colors-Primary-500, #02021D);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.Our_Miision_card h3 {
  background: linear-gradient(164deg, #00C6FF 10.99%, #0072FF 63.14%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}

.Our_Miision .why-tag {
  color: #007bff;
  font-weight: 500;
}

@media (max-width: 767px) {
  .Our_Miision .Our_Miision_detial {
    text-align: justify;
  }

  .Our_Miision_title {
    text-align: center;
  }

  .Our_Miision_lbl {
    margin-right: auto !important;
    margin-left: auto !important;
  }
}

/* Abou US Our Miision */





.new-cta-wrapper {
  height: 525px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  border-radius: 24px;
  position: relative;
  /* Essential for positioning video */
  overflow: hidden;
  /* Essential to clip the video to the rounded corners */
  /* We keep a background color as a fallback in case video doesn't load */
  background: #020B2D;
}

/* New Video Styles */
.cta-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* This ensures the video covers the whole area without stretching */
  z-index: 1;
}



.new-cta-content {
  text-align: center;
  max-width: 700px;
  position: relative;
  z-index: 3;
  /* Raised z-index to sit above video and overlay */
}

/* --- Existing Styles Below (Unchanged) --- */

.new-cta-title {
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 71px;
  /* 110.938% */
}

.new-cta-desc {
  color: rgba(255, 255, 255, 0.70);
  text-align: center;
  font-family: Lato;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  /* 116.667% */
}

.new-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 22px;
  font-size: 17px;
  color: #fff;
  text-decoration: none;
  background: rgba(0, 15, 40, 0.6);
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, #00C6FF, #006BFF) 1;
  transition: 0.3s ease;
  position: relative;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

/* Hover effect */
.new-cta-btn:hover {
  background: rgba(0, 198, 255, 0.08);
  border-color: #00c6ff;
  box-shadow:
    0 0 0 1px rgba(0, 198, 255, 0.6),
    0 8px 30px rgba(0, 198, 255, 0.25);
  color: #ffffff !important;
}

/* SVG Icon size fix */
.new-cta-btn svg {
  width: 22px;
  height: 22px;
}

.h-50p {
  height: 50px;
}

.card-custom {
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(60, 60, 67, 0.08);
}

.increase {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #1f7a35;
  font-size: 14px;
}

.p_clr {
  color: #070E4E;
}

.body_bg,

.page-wrapper {
  background: #a4c8e117;
}

.py-15p {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}



.pl_table thead th {
  border: 0px !important;
  background-color: #fff !important;
}



.pl_table tbody tr td {

  border-bottom: 1px solid rgba(228, 226, 226, 0.90) !important;
  background-color: #fff !important;

}

.plcy_paynow {

  position: absolute;

  bottom: 10px;

  color: #fff;

  left: 35px;



}



.pl_table tbody tr:first-child td {

  border-top: 1px solid rgba(228, 226, 226, 0.90) !important;

}



.pl_table tbody tr td:first-child {

  border-left: 1px solid rgba(228, 226, 226, 0.90) !important;

}



.pl_table tbody tr td:last-child {

  border-right: 1px solid rgba(228, 226, 226, 0.90) !important;

}




#policy_cardd .policy-header {

  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 18px;

}



#policy_cardd .policy-icon {

  width: 34px;

  height: 34px;

  border-radius: 50%;

  background: #e8f5ff;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #075985;

}


#policy_cardd .policy-icon img {

  height: 20px;

}



#policy_cardd .meta_label {

  color: var(--Colors-Primary-500, #02021D);
  /* Body Large */
  font-family: Lato;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
  /* 116.667% */
  margin: 5px 0;

}

#policy_cardd .meta_text {

  /* Body fault */
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  padding: 0 20px;

}


.badge-warning {

  border-radius: 8px;

  background: #DFB400;

  color: #fff;

  padding: 0px 10px;

}



.badge-outline-warning {

  border-radius: 8px;

  background: rgba(255, 219, 67, 0.10);

  color: #DFB400;

  padding: 0px 10px;

}

.badge-blue {

  border-radius: 8px;

  background: #0072FF;

  color: #fff;

  padding: 0px 10px;

}



.badge-outline-blue {

  border-radius: 8px;

  background: rgba(0, 114, 255, 0.10);

  color: #0072FF;

  padding: 0px 10px;

}

.badge-blue1 {

  border-radius: 8px;

  background: #070E4E;

  color: #fff;

  padding: 0px 10px;

}



.badge-outline-blue1 {

  border-radius: 8px;

  background: rgba(7, 14, 78, 0.09);

  color: #070E4E;

  padding: 0px 10px;

}

.plcy_doc {

  padding: 10px;

  background: #F4F4F4;

}



.pl_table.ph_table thead th {

  background: #F9FCFF !important;

}



.pl_table.ph_table tbody tr:first-child td,

.pl_table.ph_table tbody tr td:first-child,

.pl_table.ph_table tbody tr td:last-child,

.pl_table.ph_table tbody td {

  border: 0px !important;

  padding: 5px;

}

.clr_check_sec.alt_danger {
  border-color: #D00416;
  background: rgba(251, 55, 72, 0.10);
}

.clr_check_sec.alt_danger .clr_check {
  background-color: #D00416;
}

/* 2025-11-14 */

.clr_check_sec.alt_warning {
  border-color: rgba(223, 180, 0, 1);
  background: rgba(223, 180, 0, 0.1);
}

.clr_check_sec.alt_warning .clr_check {
  background-color: rgba(223, 180, 0, 1);
}

.clr_check_sec.alt_success {
  border-color: rgba(31, 193, 107, 1);
  background: rgba(31, 193, 107, 0.1);
}

.clr_check_sec.alt_success .clr_check {
  background-color: rgba(31, 193, 107, 1);
}

.bg--transparent {
  background: transparent !important;
  color: #000 !important;
}

.nav_tab_cus {
  width: auto !important;
  background: transparent !important;
  border: 0 !important;
  gap: unset !important;
  margin-bottom: 0px !important;
}

.nav_tab_cus .nav-item {
  background-color: #fff !important;
}

.nav_tab_cus.tab-two .nav-item .nav-link::after {
  background-color: transparent !important;
}

.nav_tab_cus.tab-two .nav-item .nav-link.nav-link {
  padding: 10px !important;
  margin: 5px !important;
  color: rgba(115, 115, 115, 1) !important;
}

.nav_tab_cus.tab-two .nav-item .nav-link.active.nav-link {
  color: #070E4E !important;
  border-left: 3px solid #070E4E !important;
  background: #070e4e26 !important;
}

.table-responsive.dsa123 {
  height: 60vh;
  ;
}

.company-form {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
}

.company-title {
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #000;
}

.company-subtitle {
  color: #6B6B6B;
  font-size: 15px;
  margin-top: 5px;
}

.company-label {
  display: flex;
  height: 17px;
  align-items: center;
  color: #000;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 8px;
}

.company-input {
  border: 1px solid #E3E3E3;
  border-radius: 8px;
  height: 48px;
  padding: 0 15px;
  width: 100%;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  transition: all 0.2s ease;
}

.company-input:focus {
  border-color: #000;
  outline: none;
  box-shadow: none;
}


/* Subscribe form styling (Figma matched) */
.subscribe-form {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.subscribe-label {
  color: var(--main-Brand-color, #070E4E);
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  /* 150% */
}

.input-group {
  display: flex;
  align-items: stretch;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--Gray-5, #E0E0E0);
  background: var(--White, #FFF);
}

.subscribe-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 18px;
  font-size: 1rem;
  color: #111;
  background: #fff;
}

.subscribe-input::placeholder {
  color: #b0b0b0;
}

.subscribe-btn {
  background-color: #0c0c4d;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.3s ease;
}

.subscribe-btn:hover {
  background-color: #1a1a70;
}


.dark_light_switch {
  position: relative;
}

.dark_light_switch .form-check-input {
  width: 50px;
  height: 26px;
  background-color: #fff;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  border: none;
  transition: 0.3s;
}

.dark_light_switch .form-check-input:focus {
  box-shadow: none;
}

.dark_light_switch .form-check-input::after {
  content: "\f185";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;

  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  transition: .3s;
}

.dark_light_switch .form-check-input:checked {
  background-color: #000;
}

.dark_light_switch .form-check-input:checked::after {
  left: 27px;
  content: "\f186";
  background-color: #fff;
  color: #000;
}

.custom-tooltip .tooltip-inner {
  background: #ffffff;
  color: #000;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.12);
  text-align: left;
  max-width: 220px;
}

.custom-tooltip.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before,
.custom-tooltip.bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: #ffffff;
}

.custom-tooltip-content {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.custom-tooltip-content .icon {
  font-weight: bold;
  background: #f3f3f3;
  border-radius: 50%;
  padding: 4px 9px;
  font-size: 12px;
}


/* === WHO WE SERVE HEADER === */
.who-we-serve {
  background-color: #02021D;
  color: #fff;
  padding: 80px 0;
}

.who-we-serve__header {
  text-align: center;
  margin-bottom: 60px;
}

.serve-badge {

  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 198, 255, 0.35);
  backdrop-filter: blur(6px);
}

.badge-text {
  font-size: 18px;
  font-weight: 500;
  color: #2CA7FF;
}



.who-we-serve__subtitle {
  color: var(--Bronchure-text-color, rgba(249, 244, 244, 0.90));
  font-style: normal;
  line-height: 1.6;
  max-width: 456px;
  font-size: 18px;
  margin: 0 auto;

}


.serve-grid {
  row-gap: 110px !important;
  /* space between row 1 and 2 */
  column-gap: 0 !important;
}

/* === GRID === */
.serve-card {
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.row.g-4 {
  row-gap: 60px !important;
}


.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Perfect center for all cards */
/* .col-lg-4, .col-md-6 {
    display: flex;
    flex-direction: column;
    align-items: center;
} */

.serve-card__title {
  color: #fff;
  font-size: 20px;
  margin-top: 18px;
  transition: color 0.3s ease;
}

.serve-card:hover .serve-card__title {
  color: #00C6FF;
}

/* === Responsive === */
@media (max-width: 991px) {
  .who-we-serve__title {
    font-size: 2rem;
  }

  .serve-card__image {
    width: 200px;
  }
}

@media (max-width: 767px) {
  .serve-card__image {
    width: 180px;
  }

  .serve-card__title {
    font-size: 0.95rem;
  }
}


.small-card {
  padding: 25px 25px 20px !important;
  min-height: auto !important;
}

.small-card .popular-item__header {
  margin-bottom: 10px !important;
}

.small-card .popular-item__title {
  margin-bottom: 12px !important;
  /* increase gap below title */
  color: #FFF;
  font-family: Lato;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px;
  /* 135.714% */
}

.small-card .popular-item__desc {
  margin-top: 15px !important;
  color: #FFF;
  /* Body fault */
  font-family: Lato;
  font-size: 17px;
  font-style: normal;
}

.small-card .popular-item__bottom {
  margin-top: 10px !important;
}

.latest-articles-section {
  /* neutralize inherited rules first */
  color: #FFF;
  font-family: Lato;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 44px;
  /* 122.222% */
  display: flex;
  height: 56px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}

/* Disabled link */
.paynow-link-disabled {
  pointer-events: none !important;
  cursor: not-allowed !important;
}

/* Disabled background SVG */
.paynow-bg-disabled {
  opacity: 0.4 !important;
  filter: grayscale(100%);
}

/* Disabled text and icon */
.plcy_paynow.paynow-disabled {
  opacity: 0.5 !important;
}

.plcy_paynow.paynow-disabled svg path {
  fill: #A4A4A4 !important;
}





.cookies-card__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 20px;
  color: #737373;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
  transition: all 0.3s;
  z-index: 1;
}

.cookies-card__close:hover {
  color: #070E4E;
  transform: rotate(90deg);
}

.cookies-card__close i {
  display: block;
}

.btn-outline-cookie {
  border: 1px solid #070E4E;
  background: transparent;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}

.btn-outline-cookie:hover {
  background: transparent;
  color: #070E4E;
  border-color: #070E4E;
  text-decoration: none;
}

/* Match the Allow button styling */
.cookies-card__btn .d-flex {
  gap: 10px;
}

.cookies-card__btn .btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
}


.pulse-button {
  position: relative;
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 198, 255, 1), rgba(0, 114, 255, 1));
  cursor: pointer;
  box-shadow: 0 0 0 rgba(0, 114, 255, 0.4);
  animation: pulse 2s infinite;
}

.pulse-button:before,
.pulse-button:after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 198, 255, 1), rgba(0, 114, 255, 1));
  opacity: 0;
  animation: pulse-ring 2s infinite;
  z-index: -1;
}

.pulse-button:after {
  animation-delay: 0.5s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 114, 255, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(0, 114, 255, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 114, 255, 0);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}


.plan-page {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
}

/* Tabs */
.plan-page .nav-tabs {
  border-bottom: 2px solid #dee2e6;
}

.plan-page .nav-link {
  color: #333;
  font-weight: 600;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 10px 20px;
  transition: 0.3s;
}

.plan-page .nav-link.active {
  color: #070E4E;
  border-color: #070E4E;
  background: none;
}

/* Plan Card */
.plan-page .plan-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-top: 5px solid transparent;
  padding: 20px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.plan-page .plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Plan Type Colors */
.plan-page .plan-card.bt1 {
  border-top-color: #c57d2a;
}

.plan-page .plan-card.bt2 {
  border-top-color: #208b3a;
}

.plan-page .plan-card.bt3 {
  border-top-color: #c3a500;
}

/* Content Inside Card */
.plan-page .plan-card img {
  max-height: 60px;
  object-fit: contain;
}

.plan-page .plan-price {
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(2, 2, 29, 1);
}

.plan-page .plan_benifut_title {
  font-weight: 600;
  color: #000;
  margin-top: 15px;
}

/* Benefits List */
.plan-page ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.plan-page ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 0.95rem;
}

.plan-page ul li svg {
  color: #28a745;
}

/* Bottom Buttons */
.plan-page .bottom-btn {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 30px;
}

/* Equal height for columns */
.plan-page .row.g-4>[class*="col-"] {
  display: flex;
}

.plan-page .row.g-4>[class*="col-"]>.plan-card {
  flex: 1;
}