/* src/assets/css/stylesheet.css */

@font-face {
    font-family: 'Lexend Deca';
    src: url('../fonts/LexendDeca-Regular.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('../fonts/NotoSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('../fonts/NotoSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}


/* ... the rest of your CSS ... */
body {
  background: #f8f9ff;
}

.checkbox-label {
  background: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lexend Deca", sans-serif !important;
}

:root {
  --color-blue5: #0A0032;
  --color-blue1: #2F2482;
  --color-blue2: #346CB0;
  --color-gray: #f7f7fd;
  --color-gray1: #f4f9ff;
  --color-gray2: #495059;
  --color-gray3: #EBEBEB;
  --color-gray4: #9690A2;
  --color-gray5: #7E838B;
  --color-gray6: #EEEEEE;
  --color-light-gray: #f4f1fe;
  --color-light-gray2: #F8F8F8;
  --color-light-gray3: #dadde1;
  --color-white: #fff;
  --color-black: #000;
  --color-black1: #222;
  --color-black2: #383838;
  --color-black3: #161519;
  --color-black4: #151515;
  --color-black5: rgba(45, 42, 52);
  --color-black6: #111013;
  --color-black7: #373737;
  --color-black8: #555555;
  --color-black9: #292c35;
  --color-black10: rgb(51 55 66);
  --color-black11: #212121;
  --color-yellow: #FFC701;
  --bs-body-font-family: system-ui, -apple-system, Segoe UI, Noto Sans, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji !important;

}

a {
  text-decoration: none !important;
}

.btn-primary-railway {
  display: inline-flex;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background-color: #FFC234;
  font-weight: 500;
}

body.dark {
  background-color: var(--color-black9);
}


/* #9b59b6 */
.light_mode {
  opacity: 0;
  position: absolute;
}

.checkbox-label {
  height: 26px;
  border-radius: 50px;
  position: relative;
  padding: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.light_dark_icon .fa-moon {
  color: #f1c40f;
  display: none;
}

.light_dark_icon .fa-sun {
  color: #f39c12;
}

button {
  cursor: pointer;
}

a,
.button {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a,
button {
  outline: medium none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

a {
  text-decoration: none;
}

h1 {
  font-size: 40px;
  font-weight: 500;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

li {
  list-style: none;
}

p {
  font-size: 15px;
  line-height: 200%;
}

hr {
  border-bottom: 1px solid #eceff8;
  border-top: 0 none;
  margin: 30px 0;
  padding: 0;
}

html {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  top: 0 !important;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

img {
  max-width: 100%;
  height: auto;
}

button,
select {
  background: none;
}

pre {
  margin: 0px;
  border: 0px;
  background: none;
  box-sizing: inherit;
  display: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-variant-ligatures: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  tab-size: inherit;
  text-indent: inherit;
  text-rendering: inherit;
  text-transform: inherit;
  white-space: pre-wrap;
  word-break: keep-all;
  overflow-wrap: break-word;
  position: relative;
  pointer-events: none;
  padding: 10px;
  color: var(--color-black);
}

.left_side::-webkit-scrollbar,
body::-webkit-scrollbar,
.right_side::-webkit-scrollbar {
  background-color: var(--color-white);
  width: 4px;
}

.left_side::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
.right_side::-webkit-scrollbar-track {
  background-color: var(--color-gray3);
}

.left_side::-webkit-scrollbar-track:hover,
body::-webkit-scrollbar-track:hover,
.right_side::-webkit-scrollbar-track {
  background-color: var(--color-gray3);
}

/* scrollbar itself */
.left_side::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
.right_side::-webkit-scrollbar-thumb {
  background-color: var(--color-gray5);
  border-radius: 10px;
}

/* Deafult Margin & Padding */
/*-- Margin Top --*/
.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px !important;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

/*-- Margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 45px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

/*--margin right--*/
.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.mr-105 {
  margin-right: 105px;
}

.mr-110 {
  margin-right: 110px;
}

.mr-115 {
  margin-right: 115px;
}

.mr-120 {
  margin-right: 120px;
}

.mr-125 {
  margin-right: 125px;
}

.mr-130 {
  margin-right: 130px;
}

.mr-135 {
  margin-right: 135px;
}

.mr-140 {
  margin-right: 140px;
}

.mr-145 {
  margin-right: 145px;
}

.v-150 {
  margin-right: 150px;
}

.mr-155 {
  margin-right: 155px;
}

.mr-160 {
  margin-right: 160px;
}

.mr-165 {
  margin-right: 165px;
}

.mr-170 {
  margin-right: 170px;
}

.mr-175 {
  margin-right: 175px;
}

.mr-180 {
  margin-right: 180px;
}

.mr-185 {
  margin-right: 185px;
}

.mr-190 {
  margin-right: 190px;
}

.mr-195 {
  margin-right: 195px;
}

.mr-200 {
  margin-right: 200px;
}

/*--margin left--*/
.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.ml-105 {
  margin-left: 105px;
}

.ml-110 {
  margin-left: 110px;
}

.ml-115 {
  margin-left: 115px;
}

.ml-120 {
  margin-left: 120px;
}

.ml-125 {
  margin-left: 125px;
}

.ml-130 {
  margin-left: 130px;
}

.ml-135 {
  margin-left: 135px;
}

.ml-140 {
  margin-left: 140px;
}

.ml-145 {
  margin-left: 145px;
}

.ml-150 {
  margin-left: 150px;
}

.ml-155 {
  margin-left: 155px;
}

.ml-160 {
  margin-left: 160px;
}

.ml-165 {
  margin-left: 165px;
}

.ml-170 {
  margin-left: 170px;
}

.ml-175 {
  margin-left: 175px;
}

.ml-180 {
  margin-left: 180px;
}

.ml-185 {
  margin-left: 185px;
}

.ml-190 {
  margin-left: 190px;
}

.ml-195 {
  margin-left: 195px;
}

.ml-200 {
  margin-left: 200px;
}

/*-- padding --*/
.p-5 {
  padding: 5px;
}

.p-10 {
  padding: 10px;
}

.p-15 {
  padding: 15px;
}

.p-20 {
  padding: 20px;
}

.p-25 {
  padding: 25px;
}

.p-30 {
  padding: 30px;
}

.p-35 {
  padding: 35px;
}

.p-40 {
  padding: 40px;
}

.p-45 {
  padding: 45px;
}

.p-50 {
  padding: 50px;
}

.p-55 {
  padding: 55px;
}

.p-60 {
  padding: 60px;
}

.p-65 {
  padding: 65px;
}

.p-70 {
  padding: 70px;
}

.p-75 {
  padding: 75px;
}

.p-80 {
  padding: 80px;
}

.p-85 {
  padding: 85px;
}

.p-90 {
  padding: 90px;
}

.p-95 {
  padding: 95px;
}

.p-100 {
  padding: 100px;
}

.p-105 {
  padding: 105px;
}

.p-110 {
  padding: 110px;
}

.p-115 {
  padding: 115px;
}

.p-120 {
  padding: 120px;
}

.p-125 {
  padding: 125px;
}

.p-130 {
  padding: 130px;
}

.p-135 {
  padding: 135px;
}

.p-140 {
  padding: 140px;
}

.p-145 {
  padding: 145px;
}

.p-150 {
  padding: 150px;
}

.pt-155 {
  padding: 155px;
}

.p-160 {
  padding: 160px;
}

.p-165 {
  padding: 165px;
}

.p-170 {
  padding: 170px;
}

.p-175 {
  padding: 175px;
}

.p-180 {
  padding: 180px;
}

.p-185 {
  padding: 185px;
}

.p-190 {
  padding: 190px;
}

.p-195 {
  padding: 195px;
}

.p-200 {
  padding: 200px;
}

/*-- Padding Top --*/
.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

/*-- Padding Bottom --*/
.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-220 {
  padding-bottom: 220px;
}

/*-- Padding Left --*/
.pl-0 {
  padding-left: 0px !important;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 80px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

/*-- Padding Right --*/
.pr-0 {
  padding-right: 0px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 35px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 80px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

/* font weight */
.f-800 {
  font-weight: 800;
}

.f-700 {
  font-weight: 700;
}

.f-600 {
  font-weight: 600;
}

.f-500 {
  font-weight: 500;
}

.f-400 {
  font-weight: 400;
}

.f-300 {
  font-weight: 300;
}

.f-200 {
  font-weight: 300;
}

.f-100 {
  font-weight: 300;
}

.f-b {
  font-weight: bold;
}

.fs-10 {
  font-size: 10px;
}

.fs-11 {
  font-size: 10px;
}

.opacity-15 {
  opacity: 0.05;
}

.mt-n1 {
  margin-top: -0.25rem !important;
}

.mt-n2 {
  margin-top: -2.5rem !important;
}

.mt-n3 {
  margin-top: -50px;
}

.mt-n4 {
  margin-top: -60px;
}

.mt-n5 {
  margin-top: -70px;
}

.mt-n6 {
  margin-top: -80px;
}

.position-t-n40 {
  top: -40px !important;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.z-index-3 {
  z-index: 3;
}

.main-menu ul li {
  display: inline-block;
  margin: 0px 8px;
  position: relative;
}

.header-area .dropdown-menu {
  width: auto !important;
  z-index: 999;
}

.header-top {
  background-color: var(--color-blue2);
  border-bottom:none;
  position: relative;
  padding: 15px 15px;
}

.header-top .goi {
  line-height: 40px;
  font-style: normal;
  font-weight: 500;
}

.header-top .goi a {
  line-height: 40px;
  color: var(--color-white);
  font-size: 12px;
}

.header-top .goi img {
  margin-right: 15px;
}

.header-top .skip01 {
  color: var(--color-white);
  font-size: 12px;
  line-height: 32px;
  padding-right: 15px;
  font-weight: 500;
}

.header-top .partition {
  color: var(--color-gray3);
  opacity: 0.4;
}

.header-top .font01 {
  font-size: 16px;
  height: 40px;
  width: 40px;
  color: var(--color-white);
  opacity: 1;
  transition: all 1s ease-out;
}

.dropdown-toggle::after{
  content: none;
}

.header-top a{
  color: var(--color-white);
}

.header-top .font01:hover {
  border-radius: 4px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
  transition: all 1s ease-out;
}

.header-top .language01 {
  font-size: 14px;
  color: var(--color-white);
  height: 40px;
  display: inline-block;
  padding: 10px 0 10px 14px;
  /* margin-right: 8px; */
}

.header-top .language01 select {
  color: #fff;
  background-color: var(--color-blue5);
  cursor: pointer;
}

.header-area {
  background-size: cover;
}

.transparent-header {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
}

.header-white {
  background: var(--color-white);
}

.light_dark_icon {
  padding-left: 10px;
}

.nav_custom {
  display: grid;
  grid-template-columns: repeat(2, 1fr auto);
}

.nav_custom .collapse {
  display: flex;
  gap: 0 50px;
  justify-content: flex-start;
}

.dropdown-menu {
  border: none !important;
  width: 100%;
}

.header_white_space {
  min-height: 75px;
}

.icon_hamburger {
  width: 28px;
  height: 28px;
  stroke: var(--color-black3);
}

.show_hide {
  display: none;
}

nav {
  flex-grow: 1;
}

header nav.navbar ul li.nav-item.active a {
  color: var(--bs-link-color);
}

@media (min-width: 1200px){
  .explore .explore-effect2, .waw .waw-effect{
    right: 0px !important;
  }
}

@media (min-width: 992px) {
    .explore .explore-effect2, .waw .waw-effect{
    right: 0px !important;
  }
}

@media (min-width: 768px) {
     .explore .explore-effect2, .waw .waw-effect{
    right: 0px !important;
  }
}




@media (max-width: 768px) {
  .header-design-system-btn {
    position: absolute;
    right: 0;
    top: 51px;
  }
  .left_side_mobile button {
    position: fixed;
    right: 0;
    border-bottom: solid 1px #ddd;
    width: 100%;
    text-align: right;
    padding: 10px 15px;
    background: var(--color-white);
    z-index: 99999;
    top: 0;
  }
  .left_side_mobile {
    position: fixed !important;
    background: var(--color-white);
    z-index: 9;
    width: 100% !important;
    border-right: 0 !important;
    top: 0 !important;
    bottom: 0;
    min-height: 100%;
  }
  .left_side_mobile .close_left_menu {
    width: 24px;
    height: 24px;
    fill: red;
    stroke: red;
  }
  .header_white_space {
    height: 90px;
  }
  .menu_icon_ellipsis {
    width: 24px;
    height: 24px;
  }
  .body_raper {
    width: 100% !important;
  }
  .logo .ux-logo-header {
    width: 200px;
  }
  .goi a {
    font-size: 11px !important;
  }
}
.search_results {
  margin: 0;
  padding: 10px 15px;
  border: solid 1px var(--color-gray3);
  background-color: var(--color-white);
  display: none;
  max-height: 300px;
  overflow: auto;
  width: 100%;
}

.search_results li {
  border-bottom: solid 1px var(--color-gray3);
  padding: 10px;
  cursor: pointer;
}

.search_results li:hover {
  background-color: #ddd;
  transition: all 1s;
}

.search_btn {
  margin-right: 10px;
}

.m-search {
  background: var(--color-black3);
  padding: 5px;
  border-radius: 50%;
  color: var(--color-white);
  margin-right: 5px;
}

@media (max-width: 400px) {
  .logo .ux-logo-header {
    width: 187px;
  }
  .light_dark_icon {
    padding-left: 0;
  }
}
@media (max-width: 360px) {
  .logo .ux-logo-header {
    width: 177px;
  }
}
@media (max-width: 991px) {
  .nav_custom .navbar-collapse {
    position: absolute;
    left: 0px;
    padding: 0px 20px 30px;
    top: 60px;
    background: rgb(255, 255, 255);
    width: 100%;
    min-height: 100vh;
  }
  .nav_custom .collapse {
    flex-direction: column;
    align-items: flex-start;
  }
  .navbar-nav {
    margin-top: 5px;
    padding: 20px 15px 10px 0px;
    background: #fff;
    width: 100%;
  }
  .navbar-toggler {
    border: none !important;
  }
}
.body_content h1,
.body_content h2,
.body_content h3,
.body_content h4,
.body_content h5,
.body_raper h1,
.body_raper h2,
.body_raper h3,
.body_raper h4,
.body_raper h5 {
  padding-top: 20px;
}

.body_content h1 a,
.body_content h2 a,
.body_content h3 a,
.body_content h4 a,
.body_content h5 a,
.body_raper h1 a,
.body_raper h2 a,
.body_raper h3 a,
.body_raper h4 a,
.body_raper h5 a {
  position: relative;
  margin-top: -10px;
  padding-top: 8rem;
}

.footer_terms .footer_terms_link {
  text-align: center;
}

.footer_terms .footer_terms_link a {
  color: var(--color-black7);
  font-size: 12px;
}

.footer_terms .footer_social {
  gap: 20px;
}

.copy-write {
  border-top: solid 1px var(--color-light-gray3);
  padding: 10px 10px 15px 10px;
  color: var(--color-black7);
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  background-color: var(--bs-body-bg);
}

.copy-write .copy-write-content p {
  font-size: 12px;
  line-height: 18px;
}

.slider {
  background: linear-gradient(90deg, #FBF0F1 0%, #F7ECFF 100%);
  position: relative;
  overflow: hidden;
}

.slider .slider_circle_transparent {
  position: absolute;
  right: 0;
}

.slider .slider_content {
  min-height: 741px;
  position: relative;
}

.slider .slider_content h1 {
  font-weight: 700;
  font-size: 64px;
  line-height: 68px;
  margin-bottom: 20px;
}

.slider .slider_content h1 .engaging {
  background-image: linear-gradient(to right bottom, #da4453, #ca355c, #b72a63, #a12468, #89216b);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 21%;
  display: inline-block;
  text-align: left;
}

.slider .slider_content h1 .engaging .wrap {
  border-color: #c592b7;
  border-right: 0;
}

.slider .slider_content p {
  max-width: 517px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .slider_content {
    min-height: 600px !important;
  }
  .slider_content .engaging {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    height: 80px;
  }
}
main {
  margin-bottom: 0;
}

.list-style li {
  list-style-type: decimal !important;
}

.single-features-area-down-unordered li {
  list-style-type: disc !important;
}

.single-features-area-down-roman li {
  list-style-type: lower-roman !important;
}

.para {
  text-indent: 50px;
}

/* scrollUp */
#scrollUp:hover {
  background: #86c7ed;
}

#scrollUp {
  background: #a066cc;
  height: 60px;
  width: 60px;
  right: 50px;
  bottom: 25px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  line-height: 58px;
}

#scrollUp:hover {
  background: rgba(160, 102, 204, 0.431372549);
}

.max-width-70 {
  max-width: 70%;
}

.max-width-80 {
  max-width: 80%;
}

.code_bg {
  background: #f6f8fa;
}

.code_bg > .btn {
  padding: 5px 8px;
}

.code_bg.rounded {
  border-radius: 0 !important;
}

.order-list {
  padding-left: 15px;
}

.order-list li {
  list-style: auto !important;
}

.un_order_list li {
  list-style: disc !important;
}

.un_order_list_circle li {
  list-style: circle !important;
}

.right_side ul li {
  margin-bottom: 2px;
}

.right_side ul li a {
  color: #7E838B;
  font-size: 14px;
}

.right_side ul li a:hover {
  text-decoration: underline;
}

.right_side ul li.active a {
  color: var(--color-black);
}

.product-tab nav {
  border-bottom: solid 1px #dee2e6;
}

.product-tab .nav-tabs .nav-item.show .nav-link,
.product-tab .nav-tabs .nav-link {
  color: var(--color-black);
  position: relative;
}

.product-tab .nav-tabs .nav-link svg {
  width: 20px;
  height: 20px;
}

.product-tab .nav-tabs .nav-link:focus,
.product-tab .nav-tabs .nav-link {
  padding: 15px 44px;
}

.product-tab .nav-tabs .nav-item.show .nav-link,
.product-tab .nav-tabs .nav-link.active {
  color: var(--bs-blue);
}

.product-tab .nav-tabs {
  border: none;
  margin-bottom: 0 !important;
  flex-wrap: nowrap;
}

.product-tab .custom-tab-sticky {
  top: 112px;
  z-index: 1;
}

.code_btn_main code,
.code_btn {
  font-size: 12px;
  color: var(--bs-code-color);
  word-wrap: break-word;
  border: solid 1px var(--color-gray4);
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 5px;
  background-color: rgb(246, 247, 248);
  padding: 0 1px;
}

.result {
  background-color: #ebedf0;
  padding: 10px;
}

.left_side .dropdown-menu li a.active {
  background: #D1ECFD !important;
  border-radius: 4px;
  color: #1C1D1F !important;
}

h1:hover a.hover-1,
h2:hover a.hover-1,
h3:hover a.hover-1 {
  opacity: 1 !important;
  color: #a1d5fc;
  text-decoration: underline;
}

.blockquote {
  border-left: solid 4px rgba(0, 170, 255, 0.5);
  background-color: rgba(0, 170, 255, 0.08);
  padding: 15px;
  font-size: 16px !important;
}

.blockquote_danger {
  border-left: solid 4px rgba(179, 38, 29, 0.5);
  background-color: rgba(179, 38, 29, 0.08);
  padding: 15px;
}

.blockquote_warning {
  border-left: solid 4px rgba(255, 170, 1, 0.5);
  background-color: rgba(255, 170, 1, 0.08);
  padding: 15px;
}

.blockquote_danger {
  border-left: solid 4px rgba(199, 46, 93, 0.5);
  background-color: rgba(194, 120, 140, 0.08);
  padding: 15px;
}

.width_20 {
  width: 20px;
}

.height_20 {
  height: 20px;
}

code .btn {
  margin-right: 10px;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: #1C1D1F !important;
  background: #D1ECFD !important;
  border-radius: 4px;
}

.left_side .dropdown-menu li {
  margin-bottom: 0px !important;
}

.min_hight130 {
  min-height: 130px;
}

.pagination_custom span {
  display: block;
  color: var(--color-black);
}

.pagination_custom a:hover {
  background: none;
}

.left_side #navbarNav {
  width: 100%;
}

.left_side #navbarNav #navbarDropdown {
  float: right;
}

.left_side .navbar-nav .nav-link.active,
.left_side .navbar-nav .show > .nav-link {
  color: #1C1D1F !important;
}

.left_side .dropdown-item {
  color: #7E838B;
  font-size: 14px !important;
}

.product {
  padding-top: 0px !important;
  padding-bottom: 10px !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.product a.card {
  color: var(--color-black3) !important;
}

.card{
  padding: 10px !important;
}

.product a.card:hover {
  color: var(--color-gray5) !important;
}

@media (max-width: 767px) {
  .body_raper_content nav {
    margin-top: 7px !important;
  }
}
.btn-main {
  background: var(--color-magenta);
  border: medium none;
  border-radius: 25px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
  padding: 15px 31px;
  text-align: center;
  touch-action: manipulation;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  white-space: nowrap;
}

.btn-main:hover {
  background: #86C7ED;
  color: #fff;
}

.bd-example > .btn,
.bd-example > .btn-group {
  margin: 0.25rem 0.125rem;
}

.accordion-button {
  font-weight: 700;
}

.left_side .dropdown-toggle::after {
  display: none !important;
}

.left_side .dropdown-toggle::before {
  content: "";
  box-sizing: border-box;
  height: 9px;
  width: 9px;
  border-style: solid;
  border-width: 0px 2px 2px 0px;
  transform: rotate(45deg);
  transition: border-width 150ms ease-in-out;
  display: inline-block;
}

.left_side #navbarNav #navbarDropdown.show .dropdown-toggle::before {
  transform: rotate(226deg);
}

.bd-example-border-utils [class^=border] {
  display: inline-block;
  width: 5rem;
  height: 5rem;
  margin: 0.25rem;
  background-color: #f5f5f5;
}

.main_raper {
  display: flex;
  align-items: flex-start;
}

.left_side {
  padding: 15px 15px 15px 6px;
  border-right: solid 1px var(--color-light-gray3);
  margin-right: 20px;
  height: calc(100vh - 100px);
  overflow: auto;
  top: calc(13vh - 16px);
  position: sticky;
  width: 16%;
  padding-top: 33px;
}

.body_raper {
  width: 80%;
}

.right_side {
  padding: 30px 15px;
  border-left: solid 1px var(--color-light-gray3);
  margin-left: 30px;
  overflow-y: auto;
  position: sticky;
  top: calc(25vh - 16px);
  right: 50px;
  height: calc(100vh - 174px);
}

.progress {
  margin-bottom: 15px;
}

.bd-example-row-flex-cols .row {
  min-height: 10rem;
  background-color: rgba(26, 115, 233, 0.26);
}

.bd-example-row [class^=col],
.bd-example-cssgrid .grid > * {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background-color: rgba(26, 115, 233, 0.26);
  border: 1px solid rgba(26, 115, 233, 0.26);
}

.bd-example-row .row + .row,
.bd-example-cssgrid .grid + .grid {
  margin-top: 1rem;
}

.list-group-item.active {
  z-index: 0 !important;
}

.bd-example-ratios .ratio > div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bd-example-ratios .ratio {
  display: inline-block;
  width: 10rem;
  color: var(--bs-secondary-color);
  background-color: var(--bs-tertiary-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
}

.bd-placeholder-img {
  font-size: 1.125rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-anchor: middle;
}

.bd-example-zindex-levels > div {
  color: var(--bs-body-bg);
  background-color: rgb(26, 115, 233);
  border: 1px solid rgb(44, 93, 158);
}

.bd-example-zindex-levels > div > span {
  position: absolute;
  right: 5px;
  bottom: 0;
}

.bd-example-zindex-levels {
  min-height: 15rem;
}

.bd-example-zindex-levels > :nth-child(2) {
  top: 3rem;
  left: 3rem;
}

.bd-example-zindex-levels > :nth-child(3) {
  top: 4.5rem;
  left: 4.5rem;
}

.bd-example-zindex-levels > :nth-child(4) {
  top: 6rem;
  left: 6rem;
}

.bd-example-zindex-levels > :nth-child(5) {
  top: 7.5rem;
  left: 7.5rem;
}

.z-3 {
  z-index: 3 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-n1 {
  z-index: -1 !important;
}

.ux4g-themed-grid-col {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background-color: rgba(26, 115, 233, 0.26);
  border: 1px solid rgba(26, 115, 233, 0.26);
}

.ux4g-themed-container {
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  background-color: rgba(26, 115, 233, 0.26);
  border: 1px solid rgba(26, 115, 233, 0.26);
}

.bd-example-flex div {
  background-color: rgba(26, 115, 233, 0.26);
  border: 1px solid rgba(26, 115, 233, 0.26);
}

.bd-example-position-utils .position-absolute {
  width: 2rem;
  height: 2rem;
  background-color: #212529;
  border-radius: 0.375rem;
}

.bd-example-position-utils .position-relative {
  height: 200px;
  background-color: #ebedf0;
}

/* custom css */
.navbar-expand-lg .navbar-nav .nav-link {
  padding-left: 20px;
  padding-right: 20px;
}

/* Template 5 css */
.navbar .search span {
  font-weight: 800;
}
.navbar .login-btn {
  background-color: var(--color-blue2) !important;
  color: var(--color-white
    );
  line-height: 19px;
  border: none;
}

.banner {
  padding: 0 0px;
}
.banner {
  padding: 0 0px;
}

.banner_inner {
  padding: 0 0 50px 0;

   min-height:500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.7s cubic-bezier(.4,0,.2,1);
  position: relative;

}
.banner_inner::before { 
  content: '';
   position: absolute; 
   top: 0; 
   left: 0; 
   right: 0;
    bottom: 0; 
     background-blend-mode: hard-light;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #8e44ad 100%); opacity: 0; z-index: 1;
     }

.banner_inner > * {
  position: relative;
  z-index: 2;
}
/*.banner_inner {
   background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: auto;
  border-radius: 0;
  padding:0px 0px 80px 0px;
   background-image: url("../images/bannernew.png");
  position: relative;
}

.banner_inner::before {
      content: '';
    position: absolute;
   
 
    background-blend-mode: hard-light;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    bottom: 0;
    background:linear-gradient(45deg, #2F2482 0%, #346CB0 100%);
    opacity: 0.8;
    z-index:1;
}

.banner_inner > * {
    position: relative;
    z-index: 2;
}
*/

.dropdownzindex{
  z-index: 99 !important;
}
.inner{
  max-width: 800px;
  margin: 0px auto;
  position: relative;
  z-index: 99;
}
.titlemain {
   font-size: 2.3rem;
    font-weight: 700;
    padding-top: 10px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
/*    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;*/
    background-clip: text;
    max-width: 800px;
}

.banner_inner .subtitle {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4545454545;
    margin-bottom:30px;
    color: #FFF;
}
.banner .banner_content {
  max-width: 950px;
}
.banner .banner_content .banner_logo {
  color: var(--color-white);
}
.banner .banner_content .banner_logo h3 {
  font-size: 36px;
  padding-top: 32px;
  padding-bottom: 8px;
}
.banner .banner_search {
  padding-top: 0px;
}
.banner .banner_search .banner_search_input {
  border: solid 2px var(--color-white);
  height: 65px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(2.5499999523px);
  display: flex;
  align-items: center;
}
.banner .banner_search .banner_search_input input[type=text] {
  padding: 0 12px;
  width: calc(100% - 137px);
  height: 62px;
  background: none;
  font-size: 18px;
  color: var(--color-white);
  font-weight: 500;
}
.banner .banner_search .banner_search_input input[type=text]::placeholder {
  color: var(--color-white);
}
.banner .banner_search .banner_search_input .btn {
  background-color: var(--color-blue5);
  color: var(--color-white);
  padding: 10px 35px;
  border-radius: 40px;
  font-weight: 500;
}
.banner .banner_search .banner-chip {
  flex-wrap: wrap;
  gap: 16px;
  padding-top:25px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom:25px;
}
.banner .banner_search .banner-chip a {
  padding: 6px 12px;
    backdrop-filter: blur(20px);
      border-radius: 16px;
      box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
  font-weight: 400;
  color: var(--color-white);
  display: flex;
  gap: 5px;
  transition: all 0.5s ease-in-out;
}
.banner .banner_search .banner-chip a:hover {
  background-color: var(--color-white);
  color: var(--color-blue2);
}
.banner .banner_search .banner-chip a span {
  font-weight: 600;
}
.banner .banner_search .banner-chip p a {
  color: var(--color-white);
}
.banner .banner_search .banner_find p {
  color: var(--color-white);
  font-size: 14px;
}
.banner .banner_search .banner_find p a {
  font-size: 16px;
  color: var(--color-white);
}
.banner .banner_search .banner_find p a span {
  margin-left: 10px;
  position: absolute;
  top: 3px;
  font-size: 30px;
}

.explore_head span {
  background-color: var(--color-blue2);
  font-weight: 500;
  padding: 8px 16px;
  color: var(--color-white);
}
.explore_head h3 {
  padding-top:0px;
  font-size: 1.7rem;
  font-weight: 700;
}

.explore_count {
  background-color: #f8f9ff;
}

.explore {
  background-color: #f8f9ff;
  padding: 30px 0;
}
.explore .explore-effect {
  border-radius: 569.539px;
  opacity: 0.3;
  background: #346CB0;
  filter: blur(142.1499938965px);
  width: 570px;
  height: 570px;
  left: -600px;
  top: 70px;
}
.explore .explore-effect2 {
  border-radius: 405.494px;
  opacity: 0.3;
  background: rgba(104, 32, 255, 0.39);
  filter: blur(157.5500030518px);
  width: 400px;
  height: 400px;
  right: -100px;
  top: -180px;
  flex-shrink: 0;
}
.explore .explore_inner {
  border-bottom: solid 1px #C0C0C0;
}
.explore .explore_inner .services_chip {
  gap:20px 15px;
  padding-top:25px;
}
.explore .explore_inner .services_chip a {

  background: #FFF;
 

  transition: all 0.5s ease-in-out;
}
/* .explore .explore_inner .services_chip a:hover {
  box-shadow: 0px 6px 8px -2px rgba(33, 33, 33, 0.2), 0px 2px 8px -2px rgba(33, 33, 33, 0.04);
} */
/* .explore .explore_inner .services_chip a i {
  width: 38px;
  height: 38px;
  padding: 8px;
} */
/* .explore .explore_inner .services_chip a span {
  color: #717B9E;
  font-weight: 700;
  font-size: 28px;
} */
/* .explore .explore_inner .services_chip a .icon_1 {
  background-color: #F7F8FF;
}
.explore .explore_inner .services_chip a .icon_1 span {
  color: #0019C4;
}
.explore .explore_inner .services_chip a .icon_2 {
  background-color: #FEFBEF;
}
.explore .explore_inner .services_chip a .icon_2 span {
  color: #8E7200;
}
.explore .explore_inner .services_chip a .icon_3 {
  background-color: #F2FCFF;
}
.explore .explore_inner .services_chip a .icon_3 span {
  color: #1782A2;
}
.explore .explore_inner .services_chip a .icon_4 {
  background-color: #FEEFF6;
}
.explore .explore_inner .services_chip a .icon_4 span {
  color: #A7396C;
}
.explore .explore_inner .services_chip a .icon_5 {
  background-color: #FEF7FF;
}
.explore .explore_inner .services_chip a .icon_5 span {
  color: #9020A0;
}
.explore .explore_inner .services_chip a .icon_6 {
  background-color: #FFF7F7;
}
.explore .explore_inner .services_chip a .icon_6 span {
  color: #802222;
}
.explore .explore_inner .services_chip a .icon_7 {
  background-color: #F7FFF8;
}
.explore .explore_inner .services_chip a .icon_7 span {
  color: #1E882C;
}
.explore .explore_inner .services_chip a .icon_8 {
  background-color: #F7FDFF;
}
.explore .explore_inner .services_chip a .icon_8 span {
  color: #176079;
} */
.explore .explore_inner .services_chip a strong {
  color: var(--color-black11);
  font-weight: 600;
  flex: 1;
}


.explore .explore_inner .services_chip a img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}
.explore .explore_inner .services_chip a img.ArrowRight {
  width: 15px;
  height: 21px;
}
.explore .explore_inner .view-all-category {
  padding-bottom: 15PX;
  padding-top: 15PX;
  font-weight: 500;
}
.explore .explore_inner .view-all-category p a {
  color: var(--color-black11);
}
.explore .explore_inner .view-all-category p a:hover {
  text-decoration: underline;
}

/*.view-all-btn {
  border-radius: 6px;
  color: var(--color-blue5);
  border: 1px solid var(--color-blue5);
  padding: 10px 24px;
  opacity: 0.6;
  font-weight: 500;
  font-size: 14px;
}*/



.services {
  background-color: #f8f9ff;
  padding:0px 0px;
}
.services .explore_head h3 {
  padding-bottom: 0;
}
.services .services_card .services_card_inner {
  border-radius: 16px;
  border: 1px solid #E3E3E3;
  background: var(--color-white);
  padding: 20px;
}
.services .services_card .services_card_inner:hover .effect {
  filter: blur(60.3499984741px);
  opacity: 1;
  width: 120px;
  height: 120px;
}
.services .services_card .services_card_inner:hover .none-visible {
  opacity: 0 !important;
}
.services .services_card .services_card_inner:hover .services_card_content.hover-visible {
  opacity: 1 !important;
}
.services .services_card .services_card_inner:hover .services_card_content.hover-visible h3 {
  transform: translateY(-35px);
}
.services .services_card .effect {
  width: 100px;
  height: 100px;
  right: -30px;
  top: -50px;
  filter: blur(72.3499984741px);
  opacity: 0.7;
  transition: 200ms;
}
.services .services_card .effect-1 {
  background-color: #1782A2;
}
.services .services_card .effect-2 {
  background-color: #A7396C;
}
.services .services_card .effect-3 {
  background-color: #0019C4;
}
.services .services_card .effect-4 {
  background-color: #B28F00;
}
.services .services_card i.icon {
      /* width: 35px;
    height: 35px; */
    padding: 8px;
    background-color: #FFF;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
    right: 12px;
    top: 12px;
    z-index: 1;
}
.services .services_card i.icon span {
  font-weight: 700;
  font-size: 32px;
}
.services .services_card i.icon_1 span {
  color: #1782A2;
}
.services .services_card i.icon_2 span {
  color: #A7396C;
}
.services .services_card i.icon_3 span {
  color: #0019C4;
}
.services .services_card i.icon_4 span {
  color: #8E7200;
}
.services .services_card .services_card_content {
  min-height: 167px;
}
.services .services_card .services_card_content.none-visible {
  transition: 200ms;
}
.services .services_card .services_card_content.hover-visible {
  opacity: 0 !important;
  position: absolute !important;
  bottom: 25px;
  min-height: auto;
  width: auto;
  left: 0;
  padding: 20px;
  transition: 200ms;
}
.services .services_card .services_card_content.hover-visible h3 {
  position: relative;
  transform: translateY(0px);
  transition: all 200ms;
}
.services .services_card .services_card_content.hover-visible button {
  background-color: var(--color-blue5);
  color: var(--color-white);
  width: 100%;
  padding: 6px;
}
.services .services_card .services_card_content span {
  padding: 6px 16px;
  border-radius: 40px;
  border: 1px solid #E3E3E3;
  backdrop-filter: blur(2px);
  font-size: 12px;
}
.services .services_card .services_card_content h3 {
  font-size:17px;
  font-weight: 500;
  margin: 8px 0;
}
.services .services_card .services_card_content h5 {
  font-size: 14px;
  color: #535353;
  font-weight: normal;
}
.services .services_card .services_card_content h5 i {
  background-color: #535353;
  width: 5px;
  height: 5px;
  display: inline-block;
  margin: 0 7px;
}

.find-map .find-map-content {
  background-color: #120F74;
  background-image: url("../images/map-half.png");
  background-repeat: no-repeat;
  background-position: right center;
  padding: 32px 80px;
  border-radius: 16px;
  color: var(--color-white);
  overflow: hidden;
  position: relative;
}
.find-map .find-map-content h3 {
  font-size: 32px;
}
.find-map .find-map-content p {
  margin-bottom: 24px;
}
.find-map .find-map-content button.btn {
  font-weight: 500;
}
.find-map .find-map-content button.btn:hover {
  color: var(--color-blue5);
}

.application {
  padding: 80px 0;
}
.application .application-effect {
  border-radius: 405.494px;
  opacity: 0.3;
  background: rgba(104, 32, 255, 0.39);
  filter: blur(157.5500030518px);
  flex-shrink: 0;
  width: 405px;
  height: 405px;
  left: -260px;
  top: 0;
}
.application .application-content {
  gap: 40px;
  padding-top: 40px;
}
.application .application-content .application-card {
  border-radius: 16px;
  border: 1px solid #E4E4E4;
  background: var(--color-white);
  box-shadow: 0px 10px 20px 0px rgba(50, 50, 50, 0.15);
  padding: 32px;
  gap: 24px;
  overflow: hidden;
  position: relative;
}
.application .application-content .application-card:hover i::after {
  opacity: 1 !important;
  transform: scale(15);
}
.application .application-content .application-card:hover .application-content-inner p {
  opacity: 0;
}
.application .application-content .application-card:hover .application-content-inner > a {
  transform: translateY(-30px);
}
.application .application-content .application-card:hover .application-content-inner > strong {
  transform: translateY(30px);
}
.application .application-content .application-card i {
  padding: 22px;
  background-color: #FFF8E1;
  position: relative;
  z-index: 1;
}
.application .application-content .application-card i::after {
  content: "";
  width: 100px;
  height: 100px;
  background-color: #FFF8E1;
  position: absolute;
  border-radius: 50%;
  transition: all 0.6s;
  z-index: -1;
}
.application .application-content .application-card i span {
  font-size: 56px;
  font-weight: 800;
}
.application .application-content .application-card .application-content-inner {
  position: relative;
  z-index: 1;
}
.application .application-content .application-card .application-content-inner strong {
  transition: 300ms;
  display: block;
}
.application .application-content .application-card .application-content-inner a {
  color: var(--color-black);
  font-weight: 500;
  gap: 5px;
}
.application .application-content .application-card .application-content-inner a span.material-symbols-outlined {
  font-weight: 800;
  font-size: 30px;
}

.waw .waw-effect {
  border-radius: 376.891px;
  opacity: 0.36;
  background: #FFC701;
  filter: blur(140.1999969482px);
  flex-shrink: 0;
  width: 370px;
  height: 370px;
  right: -90px;
  top: 0;
}
.waw{
  background-color: #f8f9ff;
}
.waw .waw-inner {
  padding: 40px 0;
  border-top: solid 1px #C0C0C0;
}
.waw .waw-inner {
  gap: 50px;
}
.waw .waw-inner .waw-left {
  flex: 1;
}

img.About_img{
  width: 380px;
      border-radius: 25px !important;
}
.waw .waw-inner .waw-left .explore_head h3 {
  padding-bottom: 16px;
  margin-bottom: 0;
}

.waw .waw-inner .waw-left .explore_head p{
  text-align: justify;
}
/*.waw .waw-inner .waw-left .explore_head button {
  border-color: var(--color-blue5);
  font-weight: 500;
  color: var(--color-blue5);
}*/
.waw .waw-inner .counter {
  grid-template-columns: repeat(3, 1fr);
  padding: 35px 55px;
  background-color: var(--color-blue5);
  border-radius: 12px;
  position: absolute;
  bottom: 120px;
}
.waw .waw-inner .counter .counter-box {
  color: var(--color-white);
  padding-left: 40px;
  padding-right: 40px;
}
.waw .waw-inner .counter .counter-box:not(:last-child) {
  border-right: solid 1px rgba(255, 255, 255, 0.48);
}
.waw .waw-inner .counter .counter-box h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #FFF;
}
.waw .waw-inner .counter .counter-box p {
  margin-bottom: 0;
}
.waw .waw-inner .waw-right {
  padding-top: 56px;
}

.news {
  padding-bottom: 45px;
  background-color: #f8f9ff;
}
.news .news-inner {
  padding:25px;
  border-radius: 16px;
  border: 2px solid #DFE3FF;
  background: #dfe3ff;
}
.news .news-card {
  border-radius: 12px;
  background: var(--color-white);
  padding: 24px;
  min-height: 218px;
  display: flex;              /* Flex layout */
  flex-direction: column;     /* Content top → bottom */
  justify-content: space-between; /* Push last element to bottom */
}
.news .news-card h5 {
  font-size: 18px;
  margin-bottom: 16px;
}
.news .news-card a {
  font-weight: 500;
}

.faq {
  padding-bottom: 45px;
  background-color: #f8f9ff;
}
.faq .accordion-item {
  border-bottom: 1px solid #DEDEDE !important;
  border-left: none;
  border-right: none;
  border-radius: 0;
  background: none !important;
}
.faq .accordion-item h5 .accordion-button {
  margin-bottom: 0;
  color: #555555;
  font-size: 20px;
  font-weight: normal;
  padding: 24px;
  border-radius: 0;
  background: none !important;
}
.faq .accordion-item h5 .accordion-button:focus {
  box-shadow: 0 0 0 0 rgba(255, 236, 168, 0.25);
}
.faq .accordion-item h5 .accordion-button::after {
  content: "+";
  width: 0;
  height: 0;
  transform: translateY(-20px);
  background: none !important;
  font-size: 25px;
  color: #555555;
  font-weight: 300;
}
.faq .accordion-item h5 .accordion-button:not(.collapsed)::after {
  content: "-";
}
.faq .accordion-button:not(.collapsed) {
  background-color: rgba(250, 243, 218, 0.2823529412);
}

/* footer */
.footer_need_support {
  background-color: var(--color-blue2);
  padding: 50px 0;
}
.footer_need_support h3 {
  font-size: 43px;
  color: var(--color-white);
  margin-bottom: 15px;
}

footer {
  background-color: var(--color-blue2);
  padding: 50px 0;
  border-top: solid 1px rgba(255, 255, 255, 0.15);
}
footer .footer-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 80px;
}
footer .col-list {
  color: var(--color-white);
}
footer .col-list h3 {
  font-size: 14px;
  font-weight: 600px;
  color: #FFF;
}
footer .col-list ul {
  padding: 0;
}
footer .col-list ul li a {
  font-size: 13px;
  color: var(--color-white);
}
footer .col-list ul li {
  margin-bottom: 8px;
}
footer .footer-logo-col {
  gap: 15px;
  flex-direction: column;
}
footer .col-list .btn-group .btn {
  color: var(--color-white);
  border-color: var(--color-white);
}

/* footer social */
.btn-last-update {
  border-color: var(--color-white) !important;
  color: var(--color-white) !important;
  margin-top: 15px;
  padding: 10px 7px !important;
  font-size: 13px !important;
}

.footer_social {
  width: 160px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer_social a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_social a svg {
  width: 14px;
  height: 14px;
  fill: var(--color-white);
}

.btn-last-update {
  color: var(--color-white) !important;
  margin-top: 0px;
  padding: 10px 15px !important;
  font-size: 13px !important;
  background-color: #3B335B;
}

.terms {
  border-top: #7A7A7A solid 1px;
  background-color: var(--color-blue5);
  font-size: 14px;
}
.terms ul {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  align-items: center;
  margin-bottom: 0;
}
.terms li a {
  color: var(--color-white);
}

/* footer end */
.lion {
  position: fixed;
  bottom: 19px;
  right: 30px;
  cursor: pointer;
  z-index: 1;
}
.lion:hover .lion_tooltip {
  opacity: 1;
  transform: translateY(-15px);
}
.lion .lion_tooltip {
  background-color: #191919;
  border-radius: 5px;
  color: var(--color-white);
  padding: 10px 20px;
  font-size: 14px;
  margin: 0 auto;
  width: 152px;
  position: absolute;
  left: -41px;
  text-align: center;
  opacity: 0;
  position: relative;
  transition: 200ms;
}
.lion .lion_tooltip::after {
  border-top: 10px solid #191919;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  vertical-align: middle;
  left: 50%;
  content: "";
  position: absolute;
  bottom: -10px;
  transform: translateX(-50%);
}
.lion .lion_tooltip span {
  color: #ffc701;
}

.emergency {
  border-radius: 50px;
  bottom: 36px;
  cursor: pointer;
  height: 70px;
  padding: 13px;
  position: fixed;
  left: 20px;
  display: flex;
  overflow: hidden;
  align-items: center;
  width: auto;
  max-width: 70px;
  transition: all 400ms;
  color: var(--color-white);
  background-color: #ed4040;
  text-align: left;
  z-index: 99;
}
.emergency:hover {
  max-width: 300px;
}
.emergency:hover a {
  opacity: 1;
}
.emergency span {
  font-size: 40px;
}
.emergency a {
  white-space: nowrap;
  padding-left: 5px;
  font-size: 16px;
  opacity: 0;
  color: var(--color-white);
}


/**Search Tab**/

  .modern-tabbed-search {
      width: 100%;
      max-width: 800px;
      position: relative;
      z-index: 1;
      margin: 0px auto;
    }

    .tabsWrap {
      /*display: flex;*/
      justify-content: flex-start;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(20px);
      border-radius: 16px 16px 0px 0;
      overflow: hidden;
      position: relative;
      border: 1px solid rgba(255, 255, 255, 0.2);
      margin-bottom: 1rem;
      width:100%;
    }

    .tabInner {
      padding: 10px 20px;
      font-weight: 500;
      font-size:15px;
      border: none;
      background: transparent;
      color: rgb(255 255 255 / 80%);
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      z-index: 2;
      white-space: nowrap;
    }

    .tabInner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: -1;
    }

    .tabInner:hover::before {
      opacity: 1;
    }

    .tabInner.active {
      color: #FFF;
      font-weight: 600;
      transform: translateY(-2px);
    }

    .tabInner.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60%;
      height: 3px;
      /*background: linear-gradient(90deg, #ff6b6b, #4ecdc4);*/
       background: linear-gradient(90deg, #FFF, #FFF);
      border-radius: 2px;
      animation: slideIn 0.4s ease;
    }

    @keyframes slideIn {
      from {
        width: 0;
        opacity: 0;
      }
      to {
        width: 60%;
        opacity: 1;
      }
    }

    .tab-content-wraper {
     /* background: rgba(255, 255, 255, 0.95);*/
/*      backdrop-filter: blur(20px);
      padding:15px;
      border-radius: 16px;
      box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);*/
    opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 100%;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  transform: translateY(10px);
  z-index: 0;
  padding:15px 15px 0px 15px;
    }


.tab-content-wraper.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
  z-index: 1;
}

    .search-wrapperNew {
      display: flex;
      align-items: center;
      padding: 4px;
      background: #FFF;
          /* backdrop-filter: blur(10px); */
      border-radius: 22px;
      gap: 0;
      /* box-shadow: 
        00 10px 30px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.4); */
      border: 2px solid rgba(255, 255, 255, 0.3);
      transition: all 0.3s ease;
    }

    /*.search-wrapperNew:hover {
    
       box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5); 
    }*/

    .input-iconNew {
      padding: 0 16px;
      font-size:16px;
      color: #666;
      transition: transform 0.3s ease;
    }

    .search-wrapperNew:focus-within .input-iconNew {
      transform: scale(1.1);
      color: #4ecdc4;
    }

    .search-wrapperNew input,
    .search-wrapperNew select {
      padding:10px 12px;
      border: none;
      font-size: 15px;
      color: #aaaaac;
      background: #FFF;
      border:none !important;
      flex: 1;
      font-weight: 500;
      transition: all 0.3s ease;
      margin-right: 10px;
    }

    .search-wrapperNew input::placeholder {
      color: #999;
      font-weight: 400;
    }

    .search-wrapperNew input:focus,
    .search-wrapperNew select:focus {
      outline: none;
      color: #222;
    }

    .search-wrapperNew select {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
      background-position: right 12px center;
      background-repeat: no-repeat;
      background-size: 16px;
      padding-right: 40px;
    }

    .search-btnNew {
          background: linear-gradient(45deg, #2F2482 0%, #346CB0 100%);
      color: white;
      border: none;
         gap: 7px;
    padding: 10px 15px;
      border-radius: 50px;
         font-size: 16px;
    font-weight: 600;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .search-btnNew::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s ease;
    }

    .search-btnNew:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }

    .search-btnNew:hover::before {
      left: 100%;
    }

    .search-btnNew:active {
      transform: translateY(0);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      body {
        padding: 1rem;
      }
      
      .tabInner {
        padding: 12px 16px;
        font-size: 0.9rem;
      }
      
      .tab-content-wraper {
        padding: 20px;
      }
      
      .search-wrapperNew {
        flex-direction: column;
        gap: 8px;
      }
      
      .search-wrapperNew input,
      .search-wrapperNew select {
        width: 100%;
      }
      
      .search-btnNew {
        width: 100%;
        margin-top: 8px;
      }
    }

    /* Additional animations */
    .search-wrapperNew input:focus {
      animation: pulse 0.3s ease;
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.02); }
      100% { transform: scale(1); }
    }

    /* Glassmorphism effect enhancement */
    .modern-tabbed-search::before {
      content: '';
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      bottom: -2px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
      border-radius: 18px;
      z-index: -1;
    }

    /* Content container for proper positioning */
    .content-container {
      position: relative;
      min-height:98px;
    }

    .tab-content-wraper {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
    }

    
        .view-all-container {
            margin-top:25px;
            text-align: center;
            opacity: 0;
            animation: slideUp 0.8s ease-out 2s forwards;
        }

        .view-all-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 10px 15px;
            background: linear-gradient(45deg, #2F2482 0%, #346CB0 100%);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            color: white;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
            /*text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);*/
        }

        .view-all-btn:hover {
            transform: translateY(-4px) scale(1.05);
            color: white;
           /* box-shadow: 0 20px 60px rgba(102, 126, 234, 0.5);*/
            border-color: rgba(255, 255, 255, 0.5);
            background: linear-gradient(45deg, #2F2482 0%, #346CB0 100%);

        }

        .view-all-btn:active {
            transform: translateY(-2px) scale(1.02);
        }

        .view-all-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .view-all-btn:hover::before {
            left: 100%;
        }

        .view-all-btn svg {
            transition: transform 0.3s ease;
        }

        .view-all-btn:hover svg {
            transform: translate(3px, -3px) rotate(5deg);
        }

@media (min-width: 1024px) {
  .sticky-bar {
    transition: all 200ms;
     background: linear-gradient(135deg, #1e3c72, #2a5298);
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 999;
  }
  .sticky-bar nav {
    background: #fff;
    box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    border-radius: 50px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 576px) {
  header .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
 /* .services .view-all-btn {
    max-width: 160px;
  }*/
  .find-map .find-map-content {
    background-image: none;
    padding: 32px 40px;
  }
  .application .application-content {
    flex-direction: column;
  }
  .waw .waw-effect {
    display: none;
  }
  .waw .waw-inner {
    flex-direction: column;
  }
  .waw .waw-inner .counter {
    position: relative;
    bottom: 0;
    grid-template-columns: repeat(1, 1fr);
    padding: 35px;
    gap: 15px;
  }
  .waw .waw-inner .counter .counter-box:not(:last-child) {
    border: none;
    align-items: flex-start !important;
  }
  .banner .banner_search .banner-chip {
    padding-left: 20px;
    padding-right: 20px;
  }
  /* footer */
  .footer-row {
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 15px !important;
  }
  .terms {
    padding: 20px 0;
  }
  .banner .banner_inner {
    padding-block: 30px;
  }
  .banner .banner_logo h3 {
    font-size: 25px !important;
  }
  .banner .banner_search_input input[type=text] {
    width: calc(100% - 0px) !important;
  }
  .banner .banner_search_input .btn {
    display: none;
  }
  .banner .banner_find p a {
    display: block;
  }
  .banner .banner_find p a span {
    display: none;
  }
  .explore .explore-effect, .explore .explore-effect2 {
    display: none;
  }
  .explore .explore_inner .services_chip a {
    width: 100%;
  }
  .application .application-content .application-card {
    padding: 18px;
  }
  .news .news-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .news .news-inner .owl-dots {
    display: none;
  }
  .faq .explore_head h3 {
    font-size: 1.3rem;
  }
  .services .owl-dots {
    display: none;
  }
  .emergency {
    display: none;
  }

  .dropdownzindex{
    margin-top:1rem;
  }
  .explore{
    padding: 30px 0 15px 0;
  }
  .explore_head h3{
    font-size: 1.3rem;
  }
  .services{
    padding: 0px 0px 25px 0px;
  }

   .titlemain{
    animation: none !important;
    border-right: none !important;
    white-space: normal !important;
    overflow: visible !important;
   }
   .mb-60{
    margin-bottom: 20px !important;
   }

   .faq .accordion-item h5 .accordion-button {
  font-size:17px;
}

.explore_head{
  text-align: left !important;
}

.search-wrapperNew input, .search-wrapperNew select{
  margin-right: 14px;
    margin-left: 14px;
}

.input-iconNew{
  display: none;
}
  

}

.form-control:focus{
  box-shadow: none !important;
}



.RightHeadCount{
       display: flex;
    justify-content: space-around;
    align-content: center;
    position: relative;
    border-radius: 10px;
    border: 1px solid #E7E7F1;
    background: #FFF;
    box-shadow: 0px 6px 12px 0px rgba(30, 10, 58, 0.04);
    padding: 15px;
    gap: 12px;
    transition: all 0.5s ease-in-out;
    width: 100%;
    max-width: 500px;
    margin: -46px auto 0 auto;
        flex-wrap: inherit;
    align-items: center;
}


.counte {
   text-align: center;
    /*background: url(../images/counter-bg.png?raw=1) #e9ecef3b left top / 100% 100% no-repeat;*/
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
  
  

.counte img {
   width: 40px;
    padding-top: 10px !important;
    margin-right: 16px;
}

.count-title {
    font-weight: 600;
    line-height: normal;
    color: #0b141f;
    margin-top: 0px;
    text-align: left;
    text-shadow: rgb(255, 255, 255) 1px 2px;
    font-family: 'Hind-Regular', serif;
}

.count-title {
    font-size: 22px;
}

.count-line {
    height: 2px;
    width: 100%;
    background-color: rgb(37, 3, 79);
    margin-right: 13px;
   
}

.count-text {
    font-size: 14px !important;
}

.count-text {
    font-weight: bold;
    font-size: 14px;
    line-height: 22px;
    color: rgb(46, 46, 46);
    padding-top:5px;
    margin-bottom: 0px;
    text-align: justify;
}


 /* .titlemain {
           
            border-right: 4px solid #FFF;
            white-space: nowrap;
            overflow: hidden;
            display: inline-block;
            animation: 
                typing 4s steps(30, end) 0.5s both,
                blink 1s infinite,
                hideCursor 0.1s 4.5s forwards;
        }

        @keyframes typing {
            from {
                width: 0;
            }
            to {
                width: 100%;
            }
        }

        @keyframes blink {
            0%, 50% {
                border-color: #FFF;
            }
            51%, 100% {
                border-color: transparent;
            }
        }

        @keyframes hideCursor {
            to {
                border-right-color: transparent;
            }
        } */



        /* Responsive design */
        @media (max-width: 768px) {
            .titlemain {
                font-size: 2.5rem;
            }
        }

         @media (max-width: 767px) {
            .titlemain {
                white-space: normal;
            }
            .RightHeadCount{
              margin: -25px auto 0 auto;
            }
        }

        @media (max-width: 480px) {
            .titlemain {
                font-size: 1.3rem;
            }
        }


/* Breadcrumb styling */
.breadcrumb-container {
  background: #f8fafc;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 0px;
  top: 78px;  /* Adjust based on your header height */
  z-index: 98;
}

.breadcrumb {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  color: #64748b;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item a {
  color: var(--color-blue2);
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: #2f2482;
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #64748b;
  font-weight: 500;
}

.breadcrumb-separator {
  margin: 0 8px;
  color: #94a3b8;
  display: flex;
  align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
  .breadcrumb-container {
    top: 60px;
    padding: 8px 0;
  }
  
  .breadcrumb {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
.counte img {
    width: 40px;
    padding-top: 10px !important;
    margin-right: 16px;
    text-align: center;
    margin: 0px auto;
    margin-bottom: 11px;
}

.counte {
    text-align: center;
    /* background: url(../images/counter-bg.png?raw=1) #e9ecef3b left top / 100% 100% no-repeat; */
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    align-content: center;
}

.count-title{
  text-align: center;
}

.count-text{
  text-align: center; 
}

}


/* @media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 800px !important;
    }
}

@media (min-width: 768px) {
    .container, .container-md, .container-sm {
        max-width: 660px;
    }
} */



/* Fixed Feedback Button - Left Side */
        .feedback-button-left {
                position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: left center;
    background: linear-gradient(45deg, #2F2482 0%, #346CB0 100%);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255, 255, 255, 0.6);
        }

        .feedback-button-left:hover {
            background:linear-gradient(45deg, #2F2482 0%, #346CB0 100%);
            padding: 12px 30px;
            box-shadow: 0 6px 20px rgba(52, 108, 176, 0.6);
        }

        .feedback-button-right svg,
        .feedback-button-left svg {
            width: 20px;
            height: 20px;
        }

        :root {
  --site-primary: #1937b2; /* <- replace with your theme primary color (hex) */
  --site-primary-contrast: #ffffff;
}

/* ...existing code... */

/* Feedback button visible on any background */
.feedback-button-right {
  position: fixed;
  right: 18px;
  top: 75%;
  transform: translateY(-50%);
  z-index: 999;

  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  background: var(--site-primary);
  color: var(--site-primary-contrast);
  border: 2px solid rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transition: background 180ms ease, transform 120ms ease, box-shadow 180ms ease;
  overflow: visible;
}

/* Icon color */
.feedback-button-right .fb-svg {
  width: 22px;
  height: 22px;
  color: var(--site-primary-contrast);
  fill: currentColor;
}

/* Hover / focus states with stronger contrast */
.feedback-button-right:hover,
.feedback-button-right:focus {
  transform: translateY(-50%) scale(1.03);
  background: color-mix(in srgb, var(--site-primary) 80%, black 20%); /* subtle darken */
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  outline: none;
}

/* Label/pill */
.feedback-button-right .fb-label {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--site-primary);
  color: var(--site-primary-contrast);
  padding: 10px 14px;
  border-radius: 20px;
  white-space: nowrap;
  font-weight: 500;
  font-size: 17px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 170ms ease, transform 170ms ease, visibility 170ms;
  pointer-events: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.16);
  border: 1px solid rgba(255,255,255,0.06);
}

.feedback-button-right .fb-label::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid var(--site-primary);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.feedback-button-right:hover .fb-label,
.feedback-button-right:focus .fb-label {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}

/* small screen tweak */
@media (max-width: 480px) {
  .feedback-button-right {
    right: 10px;
    width: 46px;
    height: 46px;
  }
  .feedback-button-right .fb-label {
    right: calc(100% + 10px);
    padding: 8px 12px;
    font-size: 13px;
  }
}
