/* General style */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

[dir="ltr"] {
  direction: ltr;
}

[dir="rtl"] {
  direction: rtl;
}

body {
  font-family: var(--font-body);
  font-size: 14px;
  background-color: var(--color-white);
  text-align: start;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none !important;
}

*::placeholder {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--gray-500);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

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

/* Custom Scroll bar */
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: 0.5em;
  height: 0.3em;
}

body::-webkit-scrollbar-track,
*::-webkit-scrollbar-track {
  background-color: #909090;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--brand-700);
}

/* custom scrollbar for firefox */
@-moz-document url-prefix() {
  *,
  html,
  body {
    /* "auto" or "thin"  */
    scrollbar-width: thin;
    /* scroll thumb & track */
    scrollbar-color: var(--brand-700) #909090;
  }
}

/* Inputs Auto Fill */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  box-shadow: 0 0 0 100px #fff inset !important;
  -webkit-box-shadow: 0 0 0 100px #fff inset inset !important;
  background-color: #fff !important;
}

/* Button */
button,
button:focus {
  box-shadow: none !important;
  outline: 0 none !important;
}

input {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-500);
  caret-color: var(--brand-700);
  box-shadow: none !important;
  outline: 0 none;
}

.w100 {
  width: 100%;
}

.maxW100 {
  max-width: 100%;
}

.h100 {
  height: 100%;
}

.objFitCover {
  object-fit: cover;
}

.mb128 {
  margin-bottom: 128px;
}

/********************** My Style *********************/
.wss_content {
  flex-grow: 1;
  position: relative;
}
.wss_content:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -1%;
  left: 0;
  content: '';
  display: block;
  background-image: url("../img/main-bg.svg");
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  z-index: -1;
}
.primary_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background:var(--brand-700);
  border-radius: 8px;
  border: 1px solid var(--brand-700);
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--color-white);
  width: fit-content;
}

.primary_btn.hover_bg_white:hover {
  background: var(--color-white);
  color: var(--brand-700);

}

.secondary_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border: 1px solid;
  background: #fff;
  border: 1px solid var(--gray-300);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.05),
    0px 0px 0px 2px rgba(225, 230, 236, 0.5),
    inset 0px -5px 1px -1px rgba(0, 0, 0, 0.03) !important;
  font-size: var(--text-md);
  font-weight: 600;
  color: #344054;
}

.secondary_btn:hover {
  background-color: var(--brand-50);
  color: #344054;
}

/*==================== Header ==============*/
.wss_header {
  padding: 18px 0;
}

.header_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.header_right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  height: 34px;
}

.header_logo {
  flex-shrink: 0;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header_logo img {
  height: 100%;
}

.menu_items {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  position: relative;
}

.menu_item {
  flex-shrink: 0;
  padding: 4px;
  transition: 0.3s;
}

.menu_link,
.nav-link,
.nav-link span {
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--gray-600);
  transition: 0.3s;
}

.nav-link {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.nav-link img {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: 0.3s;
}

.menu_link:hover,
.nav-link:hover,
.nav-link:hover span {
  color: rgba(14, 14, 15, 0.7);
}

.dropdown_menu_container {
  position: absolute;
  top: 100%;
  right: 0;
  width: calc(100% + 40px);
  /*width: max-content;*/
  background-color: var(--color-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-4xl);
  box-shadow: 0px 4px 6px -2px #10182808, 0px 12px 16px -4px #10182814;
  margin-inline-start: -20px;
  height: auto;
  transform-origin: top right;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 5;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.menu_item:has(.nav-link):hover {
  background-color: var(--gray-200);
  border-radius: var(--radius-md);
}

.menu_item:has(.nav-link):hover img {
  margin-top: 5px;
}

.menu_item:has(.nav-link):hover .dropdown_menu_container,
.dropdown_menu_container:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu_content {
  padding: 0 12px;
}

.menu_content .right_side {
  padding: 24px 20px;
}

.menu_content .right_side .text_box:not(:last-child) {
  margin-bottom: 4px;
}

.menu_content .right_side .text_box {
  padding: 12px;
  display: block;
  width: 100%;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  cursor: pointer;
}

.menu_content .right_side .text_box h4 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 4px;
}

.menu_content .right_side .text_box h4 .txt {
  font-size: var(--text-md);
  color: var(--gray-900);
  font-weight: 600;
}

.menu_content .right_side .text_box p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  font-weight: 400;
  margin-bottom: 0;
}
.menu_content .right_side .text_box:hover {
  background-color: var(--gray-50);
}

.menu_content .right_side .text_box.active {
  background-color: var(--blue-dark-50);
}

.menu_content .content_box {
  padding: 20px;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  display: none;
  height: 100%;
}

.menu_content .content_box .content {
  position: relative;
  width: 100%;
  height: 100%;
}

.menu_content .content_box img {
  width: 100%;
  height: 100%;
  margin-top: 0 !important;
}

.menu_content .content_box h5 {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: var(--text-md);
  color: var(--gray-900);
  font-weight: 600;
  margin-bottom: 0;
}

.menu_content .content_box.active {
  display: flex;
}

.products_content_box {
  padding: 20px;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  display: none;
  height: 100%;
}

.products_content_box img {
  width: 100%;
  height: 100%;
}

.products_content_box.active {
  display: flex;
}

.pro_content {
  padding: 12px;
  background: linear-gradient(0deg, #accbee 0%, #e7f0fd 100%);
  height: 100%;
  width: 100%;
  border-radius: var(--radius-xl);
  position: relative;
}

.pro_content h5 {
  font-size: var(--text-md);
  color: var(--gray-900);
  font-weight: 600;
  margin-bottom: 16px;
}

.pro_content ul li:not(:last-child) {
  margin-bottom: 16px;
}

.pro_content ul li a {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  border-radius: var(--radius-md);
}

.pro_content ul li a img {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.pro_content ul li a .info {
  display: flex;
  flex-direction: column;
}

.pro_content ul li a .info .title {
  font-size: var(--text-sm);
  color: var(--gray-900);
  font-weight: 600;
  margin-bottom: 4px;
}

.pro_content ul li a .info .desc {
  font-size: var(--text-sm);
  color: var(--gray-600);
  font-weight: 400;
}

.pro_content ul li a:hover {
  background-color: rgba(255, 255, 255, 0.56);
}

.pro_content .pro_title {
  margin-bottom: 0;
  position: absolute;
  top: 12px;
  right: 12px;
}

.pro_content > img {
  display: block;
  width: 100%;
  height: 100%;
  margin-top: 0 !important;
}

.burger_btn {
  padding: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-700);
  border-radius: 6px;
  transition: 0.3s;
}

.burger_btn img {
  width: 26px;
  max-width: 100%;
  display: block;
}

.burger_btn img.close {
  display: none;
}

.burger_btn.opened img {
  display: none;
}

.burger_btn.opened img.close {
  display: block;
}

.burger_btn:hover {
  background-color: var(--brand-900);
}

[dir="ltr"] .burger_btn img {
  transform: rotateY(180deg);
}

/* Responsive Menu */
.responsive_menu {
  position: absolute;
  top: calc(100% + 10px);
  width: 100%;
  background-color: #ffffffe5;
  border-radius: 10px;
  box-shadow: 0 0 5px 2px #3555bd5e;
  border: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 5;
}

.responsive_menu.show {
  opacity: 1;
  visibility: visible;
}

.responsive_menu .menu_item {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.responsive_menu .dropdown-menu {
  right: 0 !important;
  top: calc(100% + 5px) !important;
  transform: none !important;
  width: 90%;
  background-color: #ffffffe5;
  border-radius: 10px;
  box-shadow: 0 0 5px 2px #3555bd5e;
  border: 0;
  padding: 20px;
  margin: 0 auto !important;
}

/*================================ Footer =====================*/
.wss_footer {
  margin-bottom: 64px;
}

.footer_content {
  padding: 0 20px;
}

.footer_content .contact {
  padding: 64px 0;
  border-bottom: 1px solid var(--gray-300);
}

.footer_content .contact h5 {
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--gray-500);
  margin-bottom: 0;
}

.footer_sec {
  padding: 64px 0;
  border-block: 1px solid var(--gray-300);
}

.footer_sec .top {
  margin-bottom: 16px;
}
.footer_sec .desc{
  color: #475467;
  font-size: var(--text-md);
  font-weight: 500;
  max-width: 85%;
}
.footer_sec .top .imgs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.footer_sec .top .imgs img {
  flex-shrink: 0;
}

.footer_sec .top .imgs img:first-child {
  height: 28px;
}

.footer_sec .top .imgs img:last-child {
  height: 41px;
}

.footer_sec .social_icons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
}

.footer_sec .social_icons a {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: 0.3s;
}

.footer_sec .social_icons a:hover {
  border-color: var(--gray-500);
}

.footer_sec .social_icons a img {
  width: 24px;
  height: 24px;
}

.footer_cols .col_head {
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--gray-500);
}

.col_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--gray-600);
  transition: 0.3s;
}

.col_link:not(:last-child) {
  margin-bottom: 12px;
}

.col_link:hover {
  color: rgba(14, 14, 15, 0.564);
}

.footer_accordion .accordion-item {
  background-color: transparent;
  border: 0;
}

.footer_accordion .accordion-item:not(last-child) {
  margin-bottom: 12px;
}

.footer_accordion .accordion-item .accordion-header,
.footer_accordion .accordion-item .accordion-button {
  background-color: transparent;
}

.footer_accordion .accordion-item .accordion-button {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--gray-600);
  width: fit-content;
}

.footer_accordion .accordion-item .accordion-button::after {
  display: none;
}

.footer_accordion .accordion-item .accordion-button span {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--gray-600);
}

.footer_accordion .accordion-item .accordion-button img {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-size: 16px;
  transition: 0.3s;
}

.footer_accordion .accordion-item .accordion-button:not(.collapsed) img {
  transform: rotate(180deg);
}

.footer_accordion .accordion-body {
  padding: 0;
  padding-inline-start: 12px;
  margin-top: 12px;
  border-inline-start: 1px solid var(--gray-200);
}

.col_contact {
  /*margin-bottom: 64px;*/
}

.col_contact a,
.col_contact .address {
  display: block;
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--gray-600);
}

.col_contact a {
  /*text-decoration: underline !important;*/
  margin-bottom: 12px;
}

.subscribe {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.subscribe label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-500);
}

.subscribe_box {
  padding: 6px;
  padding-inline-start: 16px;
  background-color: #fff;
  border: 1px solid var(--gray-300);
  box-shadow: 0px 1px 2px 0px #1018280d;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.subscribe_box .input_holder {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.subscribe_box .input_holder .input {
  width: 100%;
  border: 0;
}

.copyRights {
  padding-top: 32px;
  padding-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.copyRights p {
  font-size: var(--text-md);
  font-weight: 400;
  color: var(--gray-500);
  margin-bottom: 0;
}

.copyRights .links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.copyRights .links a {
  flex-shrink: 0;
  font-size: var(--text-md);
  font-weight: 400;
  color: var(--gray-500);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.copyRights .links a:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 100%;
  background-color: var(--gray-500);
}

/*=========================== Home =====================*/
.wss_hero {
  padding: 96px 0 30px;
}

.video_wrapper {
  /*background-image: url(../img/circle-bg.png);*/
  background-repeat: no-repeat;
  background-position: top -50px center;
  background-size: 100% 80%;
}

.wss_hero--head {
  padding-bottom: 14px;
}

.wss_hero--head h1 {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 24px;
  font-family: var(--font-title);
  line-height: 60px;
}

.wss_hero--head p {
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--gray-600);
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.wss_hero--video {
  position: relative;
  transform: rotateX(60deg); /* Initial rotation */
}

.wss_hero--video video {
  display: block;
  width: 100%;
}
.partner_swiper.swiper .swiper-wrapper{height: 80px;align-items: center;}
.partner_swiper.swiper .swiper-wrapper .swiper-slide{height: fit-content}

/* Services */
.services {
  padding: 40px 0;background: #fff;
}
.card-container{
  background: linear-gradient(99.66deg, rgba(242, 244, 251, 0.19) -1.08%, rgba(242, 244, 251, 0.58) 95.96%);
  padding: 32px 50px;
}
.sec_title {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--gray-600);
  text-align: center;
  width: 100%;
  max-width: 80%;
  margin: 0 auto 64px;
  font-family:  var(--font-title);
}
.tabs-container{
  border-radius: 24px;
  padding: 32px;
  background: #fff;
  margin-top: 32px;
}
.services_tabs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 6px;
}

.services_tabs .nav-item {width: 100%;}
.services_tabs .nav-link {
  padding: 12px;
  background-color: transparent;
  display: flex;
 gap: 16px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-600);
  position: relative;
  justify-content: flex-start;
  width: 100%;
  transition:all .8s linear;
}
.services_tabs .nav-link .tab-text{
  display: flex;
  flex-direction: column;
  text-align: right;
  gap: 4px;
}
.services_tabs .nav-link .tab-title{
  color: #101828;
  font-size: var(--text-md);
  font-weight: 700;
  display: flex;gap: 8px;
  align-items: center;

}
.services_tabs .nav-link .tab-title .badge_green{
  height: 24px;font-size: var(--text-md);
}
.services_tabs .nav-link .tab-subtitle{
  font-size: var(--text-sm);
  font-weight: 400;
  color: #475467;
}
.services_tabs .nav-link .tab-icon{
  background-image: url("../img/tab-icon.svg");
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.services_tabs .nav-link.active ,
.services_tabs .nav-link:hover{
  background-color: var(--brand-700);
  color: #fff;
}
.services_tabs .nav-link:hover .tab-title,
.services_tabs .nav-link.active .tab-title{color: #fff;}
.services_tabs .nav-link:hover .tab-subtitle,
.services_tabs .nav-link.active .tab-subtitle{color:#D0D5DD;}
.services_tabs .nav-link:hover.tab-icon,
.services_tabs .nav-link.active .tab-icon{background-image: url("../img/tab-icon-active.svg");}


.tab-content .text_side p.tab-desc{color: #475467;font-size: 18px;margin-bottom: 32px}
.tab-content .text_side {
  padding: 24px;
}

.tab-content .text_side h3 {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: #101828;
  margin-bottom: 12px;
}

.tab-content .text_side ul {
  margin-bottom: 32px;
}

.tab-content .text_side ul li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}

.tab-content .text_side ul li:not(:last-child) {
  margin-bottom: 12px;
}

.tab-content .text_side ul li img {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.tab-content .text_side ul li p {
  font-size: var(--text-lg);
  font-weight: 400;
  color: #475467;
  margin-bottom: 0;
}

/* Our Values */
.our_values {
  padding: 50px 0;
}

.value_box {
  padding: 30px;
  border-radius: 32px;
  margin-bottom: 40px;
  overflow: hidden;
  position: sticky;
}

.value_box .logo_icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.value_box .text_side {
  padding: 80px;
  padding-bottom: 40px;
  padding-inline-end: 30px;
}

.value_box .text_side .badge {
  padding: 4px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 12px;
  margin-bottom: 8px;
  font-size: var(--text-sm);
  font-weight: 400;
  border: 1px solid transparent;
  height: 28px;
}

.value_box .text_side h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  font-family: var(--font-title);
}

.value_box .text_side p {
  font-size: 18px;
  font-weight: 400;
  color: #475467;
  margin-bottom: 32px;
}

.value_box .text_side ul li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 20px;
}

.value_box .text_side ul li img {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.value_box .text_side ul li span {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--gray-600);
}

.value_box.blue {
  background: linear-gradient(180deg, #e5eeff 0%, #f9fbff 100%);
  border: 3px solid #d6e0ff;
  top: 10px;
}

.value_box.blue .text_side .badge {
  background-color: #eef4ff;
  border-color: #c7d7fe;
  color: #395bc7;
}

.value_box.green {
  background: linear-gradient(180deg, #eaf6f1 0%, #f8fcfa 100%);
  border: 1px solid #d2eae1;

  top: 50px;
}

.value_box.green .text_side .badge {
  background-color: #ecfdf3;
  border-color: #abefc6;
  color: #067647;
}

.value_box.simon {
  background: linear-gradient(180deg, #fcf5e9 0%, #fefbf6 100%);
  border: 1px solid #efe4d2;
  top: 90px;
}

.value_box.simon .text_side .badge {
  background-color: #FDEDEC;
  border-color: #EFB3AB;
  color: #B54708;
}

.box_imgs {
  margin: 100px 0;
  position: relative;
}

.box_imgs > * {
  display: block;
}

.box_imgs .img1 {
  width: 318px;
  margin: 0 auto;
}

.box_imgs .img2,
.box_imgs .img3 {
  position: absolute;
}

.box_imgs .img2 {
  width: 230px;
  right: 0;
  top: -70px;
}

.box_imgs .img3 {
  width: 184px;
  left: 0;
  bottom: -90px;
}

.success_img {
  display: block;
  width: 70%;
  max-width: 100%;
  margin: 0 auto;
}

.stats_holder {
  padding: 126px 0 40px 20px;
}

.stats_boxes {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.stat_box {
  padding: 24px 5px;
  background: #fff;
  border: 1px solid #efe4d2;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  flex:1;
  min-width: 180px;
}

.stat_box .counter1 {
  font-size: var(--fs-md);
  font-weight: 700;
  color: #101828;
  font-family: var(--font-title);
}

.stat_box .lbl {
  font-size: 24px;
  font-weight: 400;
  color: #344054;
  text-align: center;
}

/* Confidence */
.confidence_holder {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 64px;
}

.confidence_box {
  padding: 16px;
  background-color: #F9FAFB;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-repeat: no-repeat;
  background-size: 12px 12px;
  flex: 1;
  height: 100px;
  border-radius: 8px;
}

.confidence_box img {
  width: 100%;
  max-width: 210px;
  height: 100%;
}

/* Our Products */
.our_products_sec{padding-bottom: 40px;background: #fff}
.our_products {
  padding: 64px 32px;
  background-color: #031A57;
  border-radius: 20px;
  background-image: url(../img/products-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.sec_head {
  margin-bottom: 48px;
}

.sec_head h2 {
  font-size: var(--fs-md);
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
  font-family: var(--font-title);
}

.sec_head p {
  font-size: var(--text-md);
  font-weight: 600;
  color: #dedede;
  text-align: center;
  margin-bottom: 0;
}

.product_box {
  padding: 32px 20px;
  background-color: #031A57;
  border-radius: 16px;
  box-shadow: 0px 4px 10px 0px #00000029, 0px 1px 0px 0px #ffffff0f inset;
  transition: 0.3s;
  overflow: hidden;
  position: relative;
}

/*.product_box:hover {*/
/*  background: linear-gradient(*/
/*      180deg,*/
/*      rgba(255, 255, 255, 0.04) 0%,*/
/*      rgba(255, 255, 255, 0.01) 52.62%*/
/*    ),*/
/*    #191f30;*/
/*  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.16),*/
/*    inset 0px 1px 0px rgba(255, 255, 255, 0.06);*/
/*}*/

.frame_layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.product_box .head {
  margin-bottom: 32px;
  transition: 0.3s;
}

/*.product_box:hover .head {*/
/*  background: linear-gradient(*/
/*      180deg,*/
/*      rgba(255, 255, 255, 0.04) 0%,*/
/*      rgba(255, 255, 255, 0.01) 52.62%*/
/*    ),*/
/*    #191f30;*/
/*  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.16),*/
/*    inset 0px 1px 0px rgba(255, 255, 255, 0.06);*/
/*  border-radius: 16px;*/
/*}*/

.product_box .head h3 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
}

.product_box .head p {
  font-size: var(--text-md);
  font-weight: 400;
  color: #b9babf;
  text-align: center;
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}

.services_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service_card {
  padding: 16px;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border-radius: 8px;
  transition: 0.3s;
  max-width: 366px;
  flex: 1;
  min-width: 45%;
}

/*.service_card:hover {*/
/*  background: linear-gradient(*/
/*      180deg,*/
/*      rgba(255, 255, 255, 0.15) 0%,*/
/*      rgba(255, 255, 255, 0.05) 100%*/
/*    ),*/
/*    rgba(255, 255, 255, 0.05);*/
/*}*/

.service_card .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  margin-bottom: 8px;
}

.service_card h5 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 0;
}

.service_card h5 img {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.service_card .arrow_icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0;
  transition: 0.3s;
}

@keyframes pulse {
  0% {
    transform: scale(1) rotate(-45deg);
  }
  50% {
    transform: scale(1.2) rotate(0);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

.service_card h5 span {
  font-size: var(--text-md);
  font-weight: 600;
  color: #fbfbfc;
}

.service_card p {
  font-size: var(--text-xs);
  font-weight: 500;
  color: #92939d;
  padding-inline-start: 24px;
}

.offset_row {
  transform: translateX(-40px);
}

.first_row {
  position: relative;
}

.first_row::before {
  content: "";
  background-color: #ffffff03;
  border: 1px solid #ffffff0a;
  position: absolute;
  top: 0;
  right: calc(-100% + 40px);
  height: 100%;
  width: 100%;
  border-radius: 8px;
}

.first_row::after {
  content: "";
  background-color: #ffffff03;
  border: 1px solid #ffffff0a;
  position: absolute;
  top: 0;
  left: calc(-100% + 40px);
  height: 100%;
  width: 100%;
  border-radius: 8px;
}

.second_row {
  position: relative;
}

.second_row::before {
  content: "";
  background-color: #ffffff03;
  border: 1px solid #ffffff0a;
  position: absolute;
  top: 0;
  right: calc(-100% + 80px);
  height: 100%;
  width: 100%;
  border-radius: 8px;
}

.second_row::after {
  content: "";
  background-color: #ffffff03;
  border: 1px solid #ffffff0a;
  position: absolute;
  top: 0;
  left: calc(-100% + 10px);
  height: 100%;
  width: 100%;
  border-radius: 8px;
}

.product_box .card_img {
  display: block;
  width: 100%;
}

.systems_img {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
  transform: translateY(32px);
}

.meetings_system {
  transform: translateX(-20px);
}

.sys_row {
  padding: 16px;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0px 1px 30px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border-start-start-radius: 16px;
  border-end-start-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.sys_row img {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.sys_row span {
  font-size: 15px;
  font-weight: 500;
  color: #d9d9de;
}

.sys_row:nth-child(2) {
  margin-inline-start: 70px;
}

.sys_row:nth-child(3) {
  margin-inline-start: 140px;
}

/* Recognized Global */

.recognized_card {
  padding: 40px 32px;
  background: #f9fafb;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}

.recognized_card h4 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 32px;
}

.recognized_card h4 img {
  flex-shrink: 0;
  height: 25px;
}

.recognized_card h4 span {
  font-size: var(--text-xl);
  font-weight: 500;
  color: #0e0e0f;
}

.recognized_card p {
  font-size: var(--fs-xs);
  font-weight: 400;
  color: var(--gray-600);
  margin-bottom: 80px;
}

.recognized_card p span {
  font-weight: 500;
}

.recognized_card .person {
  margin-top: auto;
}

/* Our Partners */
.our_partners {
  padding-bottom: 80px;
}

.our_partners .top {
  padding-bottom: 24px;
  padding-top: 80px;
}

.section_head {
  /*margin-bottom: 64px;*/
}

.badge_box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 4px 12px;
  color: var(--gray-700);
  font-size: var(--text-sm);
  font-weight: 500;
  background-color: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
}

.section_head .sec_title {
  font-weight: 700;
  max-width: 100%;
  margin: 0 auto 24px;
}

.sec_p {
  font-size: var(--text-md);
  color: #475467;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0;
}

#chartdiv {
  position: relative;
  width: 644px; /* Adjust to your SVG dimensions */
  height: 530px; /* Adjust to your SVG dimensions */
  background-image: url(../img/chart-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  max-width: 100%;
  margin: 0 auto;
}

#chartdiv svg {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.marker {
  width: 32px; /* Set image size */
  height: 32px; /* Set image size */
  position: absolute; /* Position absolutely */
  cursor: pointer;
  background-image: url(../img/map-marker.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: 0.3s;
  transform-origin: center;
}

.marker:hover {
  width: 36px;
  height: 36px;
}

.tooltip {
  position: absolute;
  background-color: #fff;
  color: white;
  padding: 12px 16px;
  display: none; /* Hidden by default */
  pointer-events: none; /* Prevent mouse events */
  border-radius: var(--radius-md);
  box-shadow: 0px 4px 6px -2px #10182808, 0px 12px 16px -4px #10182814;
}

.tooltip::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.tooltip_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.tooltip_box img {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  margin: 0 auto 4px;
}

.tooltip_box h4 {
  font-size: var(--text-xs);
  color: var(--gray-600);
  font-weight: 600;
  margin-bottom: 0;
}

.tooltip_box p {
  font-size: var(--text-xs);
  color: var(--gray-600);
  font-weight: 400;
  margin-bottom: 0;
}

.partners_logos {
  position: relative;
}

/*.partners_logos::before {*/
/*  position: absolute;*/
/*  content: "";*/
/*  width: 15%;*/
/*  height: 317px;*/
/*  background: #f5f5f5;*/
/*  filter: blur(50px);*/
/*  right: 0;*/
/*  top: 0;*/
/*  z-index: 5;*/
/*  transform: translateY(-50%);*/
/*}*/

/*.partners_logos::after {*/
/*  position: absolute;*/
/*  content: "";*/
/*  width: 15%;*/
/*  height: 317px;*/
/*  background: #f5f5f5;*/
/*  filter: blur(50px);*/
/*  left: 0;*/
/*  top: 0;*/
/*  z-index: 5;*/
/*  transform: translateY(-50%);*/
/*}*/

.partner_logo {
  display: block;
  height: 40px;
  max-width: fit-content;
  margin-inline: auto;
}

/* Ideas Reality */
.ideas_reality {
  background: url(../img/lines.svg),
    radial-gradient(
      86.89% 179.47% at 26.55% 59.68%,
      #194cc3 2.24%,
      #062675 48.96%,
      #031a57 80.68%
    );
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: var(--radius-4xl);
}

.ideas_reality .text_side {
  padding: 60px 48px;
}

.ideas_reality .text_side h3 {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 12px;
  font-family: var(--font-title);
}

.ideas_reality .text_side p {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--gray-300);
  margin-bottom: 24px;
}

.idea_imgs {
  background-image: url(../img/line-pattern.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 165% 100%;
  padding: 40px 40px 0;
}

.imgs_side {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.cube1 {
  position: absolute;
  height: 65px;
  left: 0;
  top: 22px;
  transform: translateX(-30%);
}

.cube2 {
  position: absolute;
  height: 98px;
  right: 0;
  bottom: 12px;
  transform: translateX(50%);
}

/*=========================== Contact Us =====================*/
.contact_head {
  padding: 96px 0;
  background-color: var(--brand-100);
}

.head_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact_badge {
  padding: 4px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  border-radius: var(--radius-md);
  background-color: var(--color-white);
  margin-bottom: 12px;
  border: 1px solid var(--gray-blue-200);
}

.contact_badge .circle {
  flex-shrink: 0;
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--success-500);
  border: 3px solid var(--success-100);
  border-radius: var(--radius-full);
}

.contact_badge .txt {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-blue-700);
}

.contact_head h1 {
  font-size: var(--fs-lg);
  color: var(--gray-900);
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
}

.contact_head p {
  font-size: var(--text-xl);
  color: var(--gray-600);
  font-weight: 400;
  margin-bottom: 0;
}

.contact_cards {
  background-image: url(../img/contact-bg.svg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  margin-bottom: 96px;
  padding-bottom: 20px;
}

.contact_card {
  background-color: var(--color-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  box-shadow: 0px 2px 4px -2px #1018280f, 0px 4px 8px -2px #1018281a;
  height: 100%;
}

.contact_card .card_head {
  padding: 32px 32px 24px;
  border-bottom: 1px solid var(--gray-200);
}

.contact_card .card_head h2 {
  font-size: var(--fs-xs);
  color: var(--gray-900);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact_card .card_head p {
  font-size: var(--text-md);
  color: var(--gray-600);
  font-weight: 400;
  margin-bottom: 0;
}

.contact_card .card_body {
  padding: 32px 32px 40px;
}

.contact_card .card_body ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 5px 0;
  margin-bottom: 16px;
}

.contact_card .card_body ul li a {
  font-size: var(--text-lg);
  color: var(--gray-600);
  font-weight: 400;
  position: relative;
}

.contact_card .card_body ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  opacity: 0;
  height: 2px;
  background-color: var(--gray-600);
  transition: 0.3s;
}

.contact_card .card_body ul li a:hover::before {
  width: 100%;
  opacity: 1;
}

/************************  Contact [Rassd] *******************************/
.breadcrumb {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.breadcrumb-item {
  padding-left: 0 !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  font-size: var(--text-sm);
  color: var(--gray-600);
  font-weight: 400;
}

.breadcrumb-item:not(:has(a)) {
  padding: 4px 8px;
}

.breadcrumb-item a {
  padding: 4px 8px;
  font-size: var(--text-sm);
  color: var(--gray-600);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  transition: 0.3s;
}

.breadcrumb-item a:has(svg) {
  padding: 4px;
}

.breadcrumb-item a svg {
  color: var(--gray-500);
  transition: 0.3s;
}

.breadcrumb-item a:hover {
  background-color: #fff;
  color: var(--brand-700);
}

.breadcrumb-item a:hover svg {
  color: var(--brand-700);
}

.breadcrumb-item.active {
  font-size: var(--text-sm);
  color: var(--brand-700);
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  float: none !important;
  padding-right: 0 !important;
  content: url(../img/chevron-left.svg) !important;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}

.contact_content {
  padding: 68px 0 96px;
  background-color: var(--brand-100);
  background-image: url(../img/contact-us-bg.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

.contact_txt {
  padding: 20px 0;
}

.contact_txt h1 {
  margin-top: 8px;
  font-size: var(--fs-lg);
  color: var(--gray-900);
  font-weight: 600;
  margin-bottom: 24px;
}

.contact_txt p {
  font-size: var(--text-xl);
  color: var(--gray-600);
  font-weight: 400;
  padding-inline-end: 85px;
  margin-bottom: 64px;
}

.trusted_by h4 {
  font-size: var(--text-md);
  color: var(--gray-900);
  font-weight: 500;
  margin-bottom: 30px;
}

.swiper_trustedBy {
  position: relative;
}

.swiper_trustedBy::before {
  position: absolute;
  content: "";
  width: 20%;
  height: 100%;
  background: linear-gradient(
    89.02deg,
    #edf2fe 29.6%,
    rgba(237, 242, 254, 0) 112.72%
  );
  right: 0;
  top: 0;
  z-index: 5;
  transform: rotate(180deg);
}

.swiper_trustedBy::after {
  position: absolute;
  content: "";
  width: 20%;
  height: 100%;
  background: linear-gradient(
    89.02deg,
    #edf2fe 29.6%,
    rgba(237, 242, 254, 0) 112.72%
  );
  left: 0;
  top: 0;
  z-index: 5;
}

.contact_form {
  padding: 48px 40px;
  background-color: var(--color-white);
  height: 100%;
  border-radius: var(--radius-4xl);
  box-shadow: 0px 1px 2px 0px #1018280d;
}

.field_holder label {
  display: block;
  font-size: var(--text-sm);
  color: var(--gray-700);
  font-weight: 500;
  margin-bottom: 6px;
}

.field_holder label span {
  font-size: var(--text-xs);
  color: var(--gray-600);
  font-weight: 400;
}

.input_text {
  padding: 10px 14px;
  display: block;
  width: 100%;
  background-color: var(--color-white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  box-shadow: 0px 1px 2px 0px #1018280d !important;
  outline: 0 none;
  transition: 0.3s;
}

.text_area {
  padding: 10px 14px;
  display: block;
  width: 100%;
  background-color: var(--color-white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  box-shadow: 0px 1px 2px 0px #1018280d !important;
  resize: none;
  height: 134px;
  outline: 0 none;
  transition: 0.3s;
}

.input_text:disabled,
.text_area:disabled {
  background-color: var(--gray-50);
}

.input_text:focus,
.text_area:focus {
  box-shadow: 0px 0px 2px 2px #bdd1ff !important;
}

.input_text.error,
.text_area.error {
  border-color: var(--error-600);
}

small.hint,
small.error {
  display: block;
  margin-top: 5px;
  font-size: var(--text-xs);
  font-weight: 500;
}

small.hint {
  color: var(--gray-500);
}

small.error {
  color: var(--error-600);
}
