/* Main Navigation LINK */
.main-nav a.menu-link {
  line-height: 40px;
  font-family: "Poppins", sans-serif !important;
  font-weight: 500 !important;
  height: 40px;
  padding: 0 10px;
  vertical-align: baseline;
  text-decoration: none;
  text-align: left;
  background-color: transparent;
  font-size: 16px;
}
/* ============================================================ 
MEGA MENU Styles 
============================================================ */

.get-started-now-header::before {
position: absolute;
  right: 13px;
  top: 14px;
  z-index: 999999;
  display: block;
  content: "";
  width: 19px; /* Matches your font-size */
  height: 19px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
/* ============================================================
   HEADER WRAPPER
   ============================================================ */
#main_header-ims {
  background: #ffffff;
  position: fixed;
  top: 0;
  z-index: 9999;
}

#main_header-ims .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 68px;
  max-width: 1280px;
  margin: 0 auto;
}

/* ── Logo ── */
#main_header-ims .logo a img {
  height: 44px;
  width: auto;
}

/* ============================================================
   NAV WRAPPER
   ============================================================ */
.main-nav,
.main-nav nav {
  display: flex;
  align-items: center;
}

.main-nav nav > ul,
.main-nav > ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

/* ============================================================
   TOP-LEVEL ITEMS
   ============================================================ */
.main-nav nav > ul > li {
  position: relative;
}

.main-nav nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 13px;
  color: #1a202c;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.2px;
  white-space: nowrap;
  border-radius: 7px;
  transition:
    background 0.22s ease,
    color 0.22s ease;
  position: relative;
}

.main-nav nav > ul > li > a:hover,
.main-nav nav > ul > li.current-menu-item > a,
.main-nav nav > ul > li.current-menu-ancestor > a {
  background: #eff4ff;
  color: #1a56db;
}

/* ── Chevron arrow for parent items ── */
.main-nav nav > ul > li.menu-item-has-children > a::after,
.main-nav nav > ul > li.has-mega-menu > a::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-left: 2px;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: 
    transform 0.22s ease, 
    color 0.22s ease;
}

.main-nav nav > ul > li.menu-item-has-children:hover > a::after,
.main-nav nav > ul > li.has-mega-menu:hover > a::after {
  transform: rotate(-180deg);
  color: #1a56db;
}

/* ============================================================
   STANDARD DROPDOWN
   ============================================================ */
.main-nav nav > ul > li > .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #e8eef6;
  border-radius: 0 0 10px 10px;
  box-shadow:
    0 12px 36px rgba(26, 86, 219, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.06);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  z-index: 99999;
  opacity: 0;
  transform: translateY(6px);
  animation: dropIn 0.2s ease forwards;
}
.main-nav nav > ul > li > .sub-menu::before {
  content: "";
  top: -30px;
  left: 0;
  width: 100%;
  height: 29px;
  background: #00000000;
  position: absolute;
}

.main-nav nav > ul > li:hover > .sub-menu {
  display: block;
}

@keyframes dropIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-nav nav > ul > li > .sub-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  color: #4a5568;
  font-size: 13.5px;
  text-decoration: none;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    padding-left 0.22s ease;
  border-left: 2px solid transparent;
  width: 100%;
}

.main-nav nav > ul > li > .sub-menu li a:hover {
  background: #eff4ff;
  color: #1a56db;
  padding-left: 24px;
}

/* ============================================================
   MEGA MENU PANEL
   ============================================================ */
.has-mega-menu {
  position: static !important;
}

.mega-menu-panel {
  display: none;
  position: absolute;
  top: calc(100% - 15px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 100%;
  max-width: calc(100vw - 48px);
  /* border: 1px solid #e8eef6;
      border-top: 3px solid #1a56db;
      border-radius: 0 0 10px 10px;
      box-shadow: var(--panel-shadow); */
  z-index: 99999;
  opacity: 0;
  animation: megaDropIn 0.22s ease forwards;
  overflow: hidden;
}

.has-mega-menu:hover .mega-menu-panel {
  display: block !important;
}

@keyframes megaDropIn {
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ── Inner padding ── */
.mega-menu-panel-inner {
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  margin-top: 1.7rem;
  border: 1px solid #e8eef6;
}

/* ── Auto grid columns ── */
.mega-menu-panel-inner .wp-block-columns,
.mega-menu-panel-inner .mega-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
}

/* ── Section heading ── */
.mega-menu-panel-inner h3,
.mega-menu-panel-inner h4,
.mega-menu-panel h3,
.mega-menu-panel h4 {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: #1a56db;
  margin: 0 0 10px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #e8eef6;
}

/* ── Links inside mega panel ── */
.mega-menu-panel-inner a,
.mega-menu-panel a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  color: #4a5568;
  font-size: 13.5px;
  text-decoration: none;
  border-radius: 6px;
  transition:
    background 0.22s ease,
    color 0.22s ease;
}

.mega-menu-panel-inner a .menu-list-item {
  border-radius: 8px;
}

.mega-menu-panel-inner a:hover .menu-list-item,
.mega-menu-panel a:hover .menu-list-item {
  background: #eff4ff;
  color: #1a56db;
}

/* Blue dot bullets before links */
.mega-menu-panel-inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ── Divider ── */
.mega-menu-panel hr {
  border: none;
  border-top: 1px solid #e8eef6;
  margin: 20px 0;
}

/* ── Images ── */
.mega-menu-panel img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Featured CTA block ── */
.mega-featured-block {
  background: linear-gradient(135deg, #1a56db 0%, #3b82f6 100%);
  border-radius: 10px;
  padding: 22px 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
}

.mega-featured-block h3 {
  color: rgba(255, 255, 255, 0.7) !important;
  border-bottom-color: rgba(255, 255, 255, 0.2) !important;
  font-size: 10px !important;
}

.mega-featured-block h4 {
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  border-bottom: none !important;
  margin-bottom: 6px !important;
  padding-bottom: 0 !important;
}

.mega-featured-block p {
  color: rgba(255, 255, 255, 0.82) !important;
}

.mega-featured-block a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: rgba(255, 255, 255, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.38) !important;
  color: #fff !important;
  padding: 7px 14px !important;
  border-radius: 6px !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  width: fit-content;
  margin-top: 12px;
}

.mega-featured-block a:hover {
  background: rgba(255, 255, 255, 0.3) !important;
}

.mega-featured-block a::before {
  display: none !important;
}

/* ── Bottom footer bar inside panel ── */
.mega-menu-footer {
  background: #f5f8ff;
  border-top: 1px solid #e8eef6;
  padding: 12px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.mega-menu-footer a {
  font-size: 12.5px !important;
  color: #718096 !important;
  padding: 0 !important;
  background: none !important;
}

.mega-menu-footer a:hover {
  color: #1a56db !important;
  background: none !important;
}

.mega-menu-footer a::before {
  display: none !important;
}

/* ============================================================
   GET STARTED BUTTON
   ============================================================ */
.get-started-now-header {
  position: relative;
}

.get-started-now-header .btn.header-btn {
  background: linear-gradient(135deg, #1a56db 0%, #3b82f6 100%) !important;
  color: #fff !important;
  border: none !important;
  padding: 9px 28px 9px 18px !important;
  border-radius: 8px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(26, 86, 219, 0.3) !important;
  transition:
    box-shadow 0.2s,
    transform 0.15s !important;
  white-space: nowrap;
}

.get-started-now-header .btn.header-btn:hover {
  box-shadow: 0 6px 22px rgba(26, 86, 219, 0.45) !important;
  transform: translateY(-1px);
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
li.lang-switcher {
  position: relative;
  list-style: none;
  display: flex;
  align-items: center;
}

.current-lang {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #4a5568;
  padding: 7px 10px;
  border-radius: 7px;
  cursor: pointer;
  transition:
    background 0.22s ease,
    color 0.22s ease;
  white-space: nowrap;
}

.current-lang::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-left: 4px;
  vertical-align: middle;
/*   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); */
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.22s ease;
}

li.lang-switcher:hover .current-lang {
  background: #eff4ff;
  color: #1a56db;
}

li.lang-switcher:hover .current-lang::after {
  transform: rotate(-180deg);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: #fff;
  border: 1px solid #e8eef6;
  border-top: 3px solid #1a56db;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 12px 30px rgba(26, 86, 219, 0.1);
  list-style: none;
  padding: 6px 0;
  min-width: 150px;
  z-index: 99999;
}

li.lang-switcher:hover .lang-dropdown {
  display: block;
}

.lang-dropdown li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 13px;
  color: #4a5568;
  text-decoration: none;
  transition:
    background 0.22s ease,
    color 0.22s ease;
}

.lang-dropdown li a:hover {
  background: #eff4ff;
  color: #1a56db;
}

.lang-dropdown li.active a {
  color: #1a56db;
  font-weight: 700;
}

.lang-dropdown li.active a::before {
  content: "✓";
  color: #1a56db;
  font-size: 11px;
}

/* ============================================================
   SHRINK ON SCROLL (.shrink added via JS)
   ============================================================ */
#main_header-ims.shrink {
  box-shadow: 0 2px 20px rgba(26, 86, 219, 0.1);
}

#main_header-ims.shrink .container {
  height: 54px;
  transition: height 0.3s ease;
}

#main_header-ims.shrink .logo a img {
  height: 34px;
  transition: height 0.3s ease;
}

/* ============================================================
   MOBILE (≤ 991px)
   ============================================================ */
@media (max-width: 991px) {
  .mega-menu-panel {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 !important;
    border-left: 3px solid #1a56db !important;
    border-top: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    display: none;
    animation: none;
  }

  .has-mega-menu.open .mega-menu-panel {
    display: block;
  }

  .mega-menu-panel-inner {
    padding: 16px 20px;
  }

  .mega-menu-panel-inner .wp-block-columns,
  .mega-menu-panel-inner .mega-cols {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mega-menu-footer {
    padding: 12px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================ 
Inner Items style old 
============================================================ */
.mega-menu-wrap {
  width: 100%;
}

.get-started-now::before {
  position: absolute;
  right: 16px;
  top: 12px;
  z-index: 999999;
  display: block;
  content: "";
  width: 19px;
  height: 19px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.mega-menu-wraper {
  padding: 10px;
  padding-top: 1.1rem;
  box-shadow:
    rgb(204 219 232 / 19%) 0px 0px 6px 0px inset,
    rgb(204 219 232 / 19%) 0px 0px 6px 0px inset;
  border-radius: 8px;
}

.get-started-now a.header-btn {
  color: #fff;
  border-right: 30px solid rgba(0, 0, 0, 0.1);
  padding: 12px 11px;
  padding-bottom: 11px;
  text-transform: none;
  font-size: 16px;
  border-radius: 5px;
  background: #2890d5;
  white-space: pre;
  font-family: "Roboto", sans-serif !important;
  line-height: 1;
  box-shadow:
    2px 2px 9px 0px rgb(53 131 185 / 33%),
    2px 2px 5px 0px rgb(68 114 151 / 47%) inset;
}

.menu-grid-wrap {
  padding: 10px 2px;
  position: relative;
}

.menu-grid-wrap::before {
  content: "";
  position: absolute;
  border-right: solid 1px #dadada;
  top: 10px;
  right: 0;
  height: calc(100% - 20px);
  width: 100%;
}

.menu-title-custom {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #505050;
  padding-bottom: 5px;
  position: relative;
}

.menu-title-custom::before {
  content: "";
  position: absolute;
  border-bottom: solid 1px #dadada;
  height: 100%;
  width: calc(100% - 20px);
}

.menu-list {
  padding-top: 0.4rem;
  position: relative;
}

.menu-list-item {
  display: flex;
  align-items: start;
  gap: 0.7rem;
  padding: 11px 14px;
  transition: all 0.25s;
  margin-bottom: 0rem;
}

.menu-list-item:hover {
  transition: all 0.25s;
  background: #f3f8fb;
}

.menu-list-item .icon-svg img {
  min-width: 25px;
  aspect-ratio: 3 / 3;
  object-fit: contain;
}

.menu-list-item .icon-svg img.with-shdw {
  min-width: 34px;
  backdrop-filter: drop-shadow(1px 1px 9px #00000094);
}

.menu-list-item .h6 {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #111;
  margin-top: 0px;
  margin-bottom: 2px;
}

.menu-list-item p.discrp {
  font-size: 15px !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 400;
  color: #303030;
  line-height: 1.5;
  margin-bottom: 0 !important;
}

.mega-toggle-on .mega-menu-link,
.mega-menu-link:hover {
  color: #1b6fa7 !important;
}

/* --cta- */
.get-start-menu {
  padding: 0 10px;
}

.get-start-menu img.get-start {
  max-width: 200px !important;
  margin-bottom: 1rem;
}

.get-start-menu .title {
  font-size: 18px;
  font-weight: 700;
  color: #2e2e2e;
  letter-spacing: 0;
  font-family: "Roboto", sans-serif !important;
  line-height: 1.4;
  margin-bottom: 0.3rem;
}

.get-start-menu p {
  color: #363636;
  font-size: 17px;
  line-height: 1.5;
}

.get-start-menu a {
  font-family: "Roboto", sans-serif !important;
  background-color: #4285f4;
  color: #fff;
  line-height: 1;
  padding: 11px 32px;
  display: inline-block;
  border-radius: 6px;
  font-weight: 400;
  box-shadow:
    2px 2px 9px 0px rgba(0, 0, 0, 0.1),
    2px 2px 5px 0px rgba(255, 255, 255, 0.4) inset;
  transition: all 0.25s;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* demo */
.menu-list .demo-dashboard img {
  max-width: 400px !important;
  width: 100%;
}

.menu-list .demo-dashboard p {
  color: #212121;
  font-size: 16px;
  font-weight: 400;
}

.menu-list .demo-dashboard a {
  font-family: "Roboto", sans-serif !important;
  background-color: #4285f4;
  color: #fbfff1;
  line-height: 1;
  padding: 11px 32px;
  display: inline-block;
  border-radius: 6px;
  font-weight: 400;
  box-shadow:
    2px 2px 9px 0px rgba(0, 0, 0, 0.1),
    2px 2px 5px 0px rgba(255, 255, 255, 0.4) inset;
  transition: all 0.25s;
  font-weight: 500;
  margin-bottom: 0.5rem;
  transition: all 0.24s;
}

.get-start-menu a:hover,
.one-million a:hover,
.menu-list .demo-dashboard a:hover {
  background-color: #3368bf;
  transition: all 0.24s;
}

@media (min-width: 1200px) {
  .mega-menu-wraper .col-xl-4-5 {
    -ms-flex: 0 0 37% !important;
    flex: 0 0 37% !important;
    max-width: 37% !important;
  }
}

@media (max-width: 1199px) {
  .search-nav {
    display: none;
  }

  .get-started-now a.header-btn {
    padding: 12px 11px;
    font-size: 14px;
    border-right: 0;
  }

  .get-started-now::before {
    display: none;
  }
}

@media (min-width: 1400px) {
  .col-xxl-3 {
    -ms-flex: 0 0 25% !important;
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }
}

@media (max-width: 1025px) {
  #mega-menu-wrap-primary .mega-menu-wraper .col-lg-3,
  #mega-menu-wrap-primary .mega-menu-wraper .col-lg-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .mega-menu-wraper {
    padding: 0;
  }

  .menu-list {
    display: block !important;
  }

  .menu-grid-wrap::before {
    display: none;
  }

  .menu-list-item p.discrp {
    display: none;
  }

  .menu-list-item {
    padding: 6px;
  }
}

.one-million {
  background: #f0f8ff;
  background: linear-gradient(
    145deg,
    rgba(240, 248, 255, 1) 0%,
    rgba(243, 249, 253, 1) 49%,
    rgba(234, 243, 251, 1) 100%
  );
  padding: 1rem;
  border: solid 1px #e5f3ff;
  border-radius: 15px;
  text-align: center;
  position: relative;
  max-width: 332px;
  margin: 0 auto;
}

.one-million::before {
  content: "";
  background: url(https://infinitemlmsoftware.com/wp-content/themes/mlmsoftware/assets2/mega-menu-icon/demo/banner.png)
    no-repeat center center;
  width: 72px;
  height: 72px;
  position: absolute;
  top: 0;
  right: 30px;
  background-size: contain;
}

.one-million .milliom-title {
  font-size: 20px;
  color: #0b0d0e;
  font-weight: 500;
  line-height: 1.3;
  margin: 10px 0;
}

.one-million .milliom-title span {
  color: #2482c0;
}

.one-million-img {
  max-width: 160px !important;
  margin: 0 auto;
}

.one-million ul {
  text-align: left;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.one-million ul li {
  font-size: 16px;
  color: #242424;
  font-weight: 400;
  /*       white-space: pre; */
}

img.one-million-check {
  max-width: 16px !important;
  display: inline-block;
  /*       width: 100%; */
}

.one-million a {
  font-family: "Roboto", sans-serif !important;
  background-color: #4285f4;
  color: #fbfff1;
  line-height: 1;
  padding: 11px 15px;
  display: inline-block;
  border-radius: 6px;
  font-weight: 400;
  box-shadow:
    2px 2px 9px 0px rgba(0, 0, 0, 0.1),
    2px 2px 5px 0px rgba(255, 255, 255, 0.4) inset;
  transition: all 0.25s;
  font-weight: 500;
  margin-top: 0.5rem;
}

.one-million a + a {
  margin-left: 5px;
}

/* menu-mobile-overwrite */
/* ---mobile */
@media (max-width: 1024px) {
  header .container {
    position: static;
    display: flex;
    width: 100%;
    justify-content: space-between;
  }

  .home .home-banner-2020mar5 {
    background-size: 100% 100% !important;
  }

  header .get-started-now {
    margin-bottom: 0;
  }

  #mega-menu-wrap-primary
    .mega-menu-toggle.mega-menu-open
    + #mega-menu-primary {
    position: absolute !important;
    width: 100%;
    width: 100vw;
    left: 0;
  }

  header .main-nav {
    flex-direction: row-reverse;
  }
}

@media only screen and (min-width: 1900px) {
  header .container {
    max-width: 1440px !important;
  }
}

.view-more-link-nav {
  position: relative;
}

.view-more-link-nav a {
  display: block;
  width: 100%;
  color: #3160af;
  text-align: center;
  padding: 14px 10px;
  background-color: #e0eafa;
  border-radius: 9px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
}

.view-more-link-nav a:hover {
  color: #214178;
  background-color: #afceff;
}

/* 		additional styles from customize  */
#mega-menu-wrap-primary
  #mega-menu-primary
  > li.mega-menu-item
  > a.mega-menu-link {
  line-height: 40px;
  font-family: "Poppins", sans-serif !important;
  font-weight: 500 !important;
}

#mega-menu-wrap-primary {
  position: static !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
}

#mega-menu-wrap-primary #mega-menu-primary {
  position: static !important;
}

#mega-menu-wrap-primary {
  position: static !important;
  width: 100%;
  display: flex;
  justify-content: center;
}

header .container {
  position: relative;
}

.mega-menu-link {
  font-family: "Poppins", sans-serif !important;
  font-weight: 500 !important;
  color: #161616 !important;
}

ul.mega-sub-menu {
  box-shadow: 0 5.56px 34.46px rgb(88, 114, 170, 19%) !important;
}

#mega-menu-wrap-primary
  #mega-menu-primary
  li.mega-menu-item-has-children
  > a.mega-menu-link
  > span.mega-indicator:after {
  content: "" !important;
  display: inline-block !important;
  width: 15px !important;
  height: 15px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center !important;
  vertical-align: middle !important;
}
#mega-menu-wrap-primary #mega-menu-primary p {
  margin-top: 0;
}

#mega-menu-wrap-primary #mega-menu-primary input,
#mega-menu-wrap-primary #mega-menu-primary img {
  margin: 0;
}

.one-million ul li {
  margin: 0;
}

/* ============================================================ 
MEGA MENU Styles END 
============================================================ */

/* ------------------------------------------------ */
/* OLD */
/* ------------------------------------------------ */

:where(body, iframe, pre, img, svg, video, canvas, select) {
  max-width: 100%;
  overflow: auto;
  word-break: break-word;
}

/* bottom Fixed item */
.sticky-footer-landing-page {
  gap: 20px;
  position: fixed;
  bottom: 0;

  z-index: 80;
  width: 100%;
  background: linear-gradient(135deg, #141414, #212121);
  padding: 5px 20px;
  transition: all 0.9s;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-custom-landing-page {
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  color: white !important;
  padding: 8px 22px !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  transition: all 0.3s ease !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
}

.btn-custom-landing-page:hover {
  color: #fff;
}

/* bottom Fixed item  END*/


/* Footer style start  */
.contact-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px; /* Space between icon and text */
    position: relative;
    top: -1px; /* Optically centers it with the text */
	width: 23px;
height: auto;
}
/* Footer style Ends  */
