    :root {
      --blue: #0088ff;
      --dark: #040444;
      --dark-2: #08086a;
      --green: #daecfc;
      --lime: #daecfc;
      --muted: #6f7772;
      --border: #e8eee9;
      --card: #ffffff;
      --soft: #f5f8f6;
      --shadow: 0 22px 60px rgba(0, 0, 0, 0.18);

      --ease: cubic-bezier(0.22, 1, 0.36, 1);
      --ease-fill: cubic-bezier(0.33, 1, 0.68, 1);
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html,
    body {
      width: 100%;
      min-height: 100%;
      overflow-x: hidden;
    }

    body {
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      min-height: 100vh;
      background: #daecfc;
      color: #040444;
    }

    dl,
    ol,
    ul {
      margin-bottom: 0 !important;
    }
    a{
      text-decoration: none;
    }
    .hero-section {
      position: relative;
      width: 100%;
      min-height: 100vh;
      min-height: 100svh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--green);
      isolation: isolate;
    }

    .bluser_bgreadable {
      background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.58) 38%, rgb(255 255 255 / 0%) 68%, rgb(255 255 255 / 0%) 100%);
    }


    /* Bottom-right triangle shape */
    .hero-section::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      width: clamp(120px, 26vw, 490px);
      height: clamp(120px, 26vw, 490px);
      background: var(--dark);
      clip-path: polygon(100% 0, 0 100%, 100% 100%);
      pointer-events: none;
      /* z-index: 9; */
    }

    /* Phone size same/controlled */
    @media (max-width: 575px) {
      .hero-section::after {
        width: 170px;
        height: 170px;
      }
    }

    .hero-canvas {
      position: absolute;
      inset: 0;
      width: 100vw;
      height: 100vh;
      height: 100svh;
      display: block;
      z-index: 1;
      pointer-events: none;
    }

    .floating-badges {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
    }

    .float-badge {
      position: absolute;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: clamp(52px, 4.8vw, 76px);
      aspect-ratio: 1 / 1;
      opacity: 0;
      will-change: transform, opacity;

      animation-name: badgeEnter, floatBadge;
      animation-duration: 0.9s, 5.5s;
      animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), ease-in-out;
      animation-delay: var(--enter-delay, 0s), calc(var(--enter-delay, 0s) + 0.9s);
      animation-fill-mode: both, none;
      animation-iteration-count: 1, infinite;
    }

    @keyframes badgeEnter {
      0% {
        opacity: 0;
        transform: translate(var(--from-x), var(--from-y)) scale(0.75);
      }

      70% {
        opacity: 1;
        transform: translate(0, 0) scale(1.08);
      }

      100% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
      }
    }

    @keyframes floatBadge {

      0%,
      100% {
        transform: translateY(0);
        opacity: 1;
      }

      50% {
        transform: translateY(-13px);
        opacity: 1;
      }
    }

    .float-badge img {
      width: 100%;
      height: 100%;
      max-width: 100%;
      object-fit: contain;
      display: block;
    }

    .badge-1 {
      left: clamp(24px, 7vw, 110px);
      top: 16%;
      --from-x: -45vw;
      --from-y: -25vh;
      --enter-delay: 0s;
    }

    .badge-2 {
      right: clamp(24px, 8vw, 130px);
      top: 17%;
      --from-x: 45vw;
      --from-y: -25vh;
      --enter-delay: 0.12s;
    }

    .badge-3 {
      left: clamp(24px, 7vw, 110px);
      bottom: 15%;
      --from-x: -45vw;
      --from-y: 25vh;
      --enter-delay: 0.24s;
    }

    .badge-4 {
      right: clamp(24px, 7vw, 110px);
      bottom: 15%;
      --from-x: 45vw;
      --from-y: 25vh;
      --enter-delay: 0.36s;
    }

    .badge-5 {
      left: clamp(24px, 7vw, 110px);
      top: 50%;
      --from-x: -45vw;
      --from-y: 0;
      --enter-delay: 0.48s;
    }

    .badge-6 {
      right: clamp(24px, 7vw, 110px);
      top: 50%;
      --from-x: 45vw;
      --from-y: 0;
      --enter-delay: 0.6s;
    }

    .hero-badge,
    .hero-title,
    .hero-text,
    .hero-actions {
      opacity: 0;
      transform: translateY(34px);
      animation: heroTextUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .hero-badge {
      animation-delay: 0.25s;
    }


    .hero-title {
      animation-delay: 0.45s;
    }

    .hero-text:nth-of-type(1) {
      animation-delay: 0.65s;
    }

    .hero-text:nth-of-type(2) {
      animation-delay: 0.82s;
    }

    .hero-actions {
      animation-delay: 1s;
    }

    @keyframes heroTextUp {
      0% {
        opacity: 0;
        transform: translateY(34px) scale(0.98);
        filter: blur(6px);
      }

      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
      }
    }

    @keyframes floatBadge {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-13px);
      }
    }

    .hero-content {
      position: relative;
      z-index: 3;
      width: 100%;
      padding: 90px 0;
      text-align: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 16px;
      border-radius: 999px;
      background: rgb(255 255 255 / 0%);
      border: 1px solid rgb(255 255 255);
      color: var(--blue);
      font-size: 14px;
      font-weight: 600;

    }

    .hero-badge i {
      color: var(--blue);
    }

    .hero-title {
      max-width: 1120px;
      margin: 24px auto 0;
      line-height: 0.98;
      font-weight: 700;
      color: var(--dark);
      letter-spacing: -3.2px;
      text-wrap: balance;
      text-shadow: 0 10px 32px rgba(4, 4, 68, 0.07);
      font-family: "Exo", sans-serif;
    }

    .hero-title .title-line {
      display: block;
      position: relative;
    }

    .hero-title .title-main {
      font-size: clamp(48px, 5.4vw, 82px);
      color: var(--dark);
      white-space: nowrap;
    }

    .hero-title .title-highlight {
      width: fit-content;
      margin: 8px auto 0;
      font-size: clamp(46px, 5vw, 76px);
      color: var(--blue);
    }

    .hero-title .title-highlight::after {
      content: "";
      position: absolute;
      left: 4px;
      right: 4px;
      bottom: 4px;
      height: 10px;
      border-radius: 999px;
      background: rgba(0, 136, 255, 0.14);
      z-index: -1;
    }

    .hero-text {
      max-width: 850px;
      margin: 22px auto 0;
      font-size: 18px;
      line-height: 1.8;
      color: var(--dark);
    }

    .hero-actions {
      margin-top: 34px;
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .hero-card {
      position: relative;
      max-width: 430px;
      margin-left: auto;
      padding: 28px;
      border-radius: 30px;
      background: rgba(255, 255, 255, 0.68);
      border: 1px solid rgba(255, 255, 255, 0.8);
      box-shadow: 0 30px 90px rgba(4, 4, 68, 0.12);

    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0;
      padding: 1px;
      border-radius: 30px;
      background: linear-gradient(135deg, rgba(0, 136, 255, 0.48), rgba(255, 255, 255, 0.5), rgba(4, 4, 68, 0.16));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
    }

    .hero-card::after {
      content: "";
      position: absolute;
      width: 120px;
      height: 120px;
      right: -28px;
      top: -28px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 136, 255, 0.16), transparent 70%);
      pointer-events: none;
    }

    .hero-card h3 {
      font-size: 28px;
      font-weight: 900;
      color: var(--dark);
    }

    .hero-card p {
      margin-top: 12px;
      color: rgba(4, 4, 68, 0.68);
      line-height: 1.7;
    }

    .stats-row {
      margin-top: 24px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .stat-item {
      padding: 18px;
      border-radius: 20px;
      background: rgba(218, 236, 252, 0.65);
      border: 1px solid rgba(0, 136, 255, 0.12);
    }

    .stat-item strong {
      display: block;
      font-size: 24px;
      color: var(--dark-2);
    }

    .stat-item small {
      color: rgba(4, 4, 68, 0.6);
      font-weight: 700;
    }

    @media (max-width: 991px) {
      .hero-content {
        padding: 70px 0;
      }

      .hero-card {
        margin: 48px 0 0;
      }

      .hero-title {
        max-width: 820px;
        letter-spacing: -2.4px;
      }

      .hero-title .title-main {
        font-size: clamp(42px, 6.6vw, 66px);
        white-space: normal;
      }

      .hero-title .title-highlight {
        font-size: clamp(40px, 6.2vw, 62px);
      }

      .float-badge {
        width: clamp(40px, 5.2vw, 58px);
      }

      .badge-1 {
        left: 4%;
        top: 12%;
      }

      .badge-2 {
        right: 4%;
        top: 12%;
      }

      .badge-3 {
        left: 4%;
        bottom: 14%;
      }

      .badge-4 {
        right: 4%;
        bottom: 14%;
      }

      .badge-5 {
        left: 4%;
        top: 55%;
      }

      .badge-6 {
        right: 4%;
        top: 55%;
      }
    }

    @media (max-width: 767px) {
      .floating-badges {
        display: block;
        opacity: 0.7;
      }

      .float-badge {
        width: clamp(28px, 6.5vw, 40px);
      }

      .badge-1 {
        left: clamp(12px, 4vw, 24px);
        top: clamp(54px, 10svh, 82px);
      }

      .badge-2 {
        right: clamp(12px, 4vw, 24px);
        top: clamp(54px, 10svh, 82px);
      }

      .badge-3 {
        left: clamp(12px, 4vw, 24px);
        bottom: clamp(70px, 12svh, 110px);
      }

      .badge-4 {
        right: clamp(12px, 4vw, 24px);
        bottom: clamp(70px, 12svh, 110px);
      }

      .badge-5 {
        left: clamp(18px, 6vw, 36px);
        top: 48%;
      }

      .badge-6 {
        right: clamp(18px, 6vw, 36px);
        top: 52%;
      }
    }

    @media (max-width: 575px) {
      .hero-content {
        padding: 90px 12px 80px;
      }

      .hero-title {
        max-width: 100%;
        line-height: 1.05;
        letter-spacing: -1.4px;
        text-shadow: none;
      }

      .hero-title .title-main {
        font-size: clamp(34px, 10vw, 44px);
        white-space: normal;
      }

      .hero-title .title-highlight {
        margin-top: 6px;
        font-size: clamp(34px, 10vw, 44px);
      }

      .hero-text {
        font-size: 15px;
        line-height: 1.7;
      }

      .hero-actions {
        gap: 12px;
      }

      .hero-actions .btn {
        width: 100%;
        max-width: 260px;
      }

      .floating-badges {
        opacity: 0.55;
      }

      .float-badge {
        width: clamp(24px, 7vw, 34px);
      }

      .badge-1 {
        left: 12px;
        top: 58px;
      }

      .badge-2 {
        right: 12px;
        top: 58px;
      }

      .badge-3 {
        left: 12px;
        bottom: 82px;
      }

      .badge-4 {
        right: 12px;
        bottom: 82px;
      }

      .badge-5 {
        left: 18px;
        top: 45%;
      }

      .badge-6 {
        right: 18px;
        top: 51%;
      }
    }




  /* <!-- sidebar css  --> */
  
    .chev {
      width: 7px;
      height: 7px;
      border-right: 1.8px solid currentColor;
      border-bottom: 1.8px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
      display: inline-block;
      opacity: .8;
    }

    .header-wrap {
      width: min(1280px, calc(100% - 48px));
      position: fixed;
      left: 50%;
      transform: translateX(-50%);
      z-index: 99999;
      margin: 0;
      margin-top: 15px;
    }

    .site-header {
      border-radius: 14px;
      overflow: visible;
    }

    .navbar {
      height: 70px;
      display: flex;
      align-items: center;
      padding: 0 22px !important;
      gap: 30px;
      border-radius: 14px 14px 0 0;
      background: rgb(255 255 255 / 74%) !important;
      backdrop-filter: blur(65px);
      box-shadow:none !important;
    }

    .brand {
      width: 250px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 25px;
      font-weight: 780;
      letter-spacing: -1.1px;
      color: #10241b;
      text-decoration: none;
      flex-shrink: 0;
    }

    .brand-logo {
      width: auto;
      height: 35px;
      display: inline-block;
      object-fit: contain;
      flex-shrink: 0;
    }

    .nav-links {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 0;
      height: 100%;
      flex: 1;
    }

    .nav-link,
    .nav-btn {
      display: inline-flex;
      align-items: center;
      height: 50px;
      border-radius: 10px;
      gap: 8px;
      padding: 0 16px;
      border: 0;
      background: transparent;
      color: #101b16;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      font-family: inherit;
    }

    .nav-item.active .nav-btn,
    .nav-btn:hover,
    .nav-link:hover {
      border: 1px solid rgba(255, 255, 255, 0.3) !important;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 18px;
      color: #0c1813;
      flex-shrink: 0;
    }

    .icon-btn {
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      background: transparent;
      border: 0;
      cursor: pointer;
      color: #0d1914;
    }

    .menus-area {
      position: absolute;
      left: 0;
      right: 0;
      top: calc(100% - 1px);
      border-top: 1px solid rgba(255, 255, 255, 0.78);
      background: rgba(255, 255, 255, 0.623) !important;
      backdrop-filter: blur(65px);
      border-radius: 0 0 18px 18px;
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(-12px);
      height: 0;
      box-shadow: none !important;
      transition: height .32s cubic-bezier(.22, 1, .36, 1), opacity .26s ease, transform .32s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .32s;
      z-index: 40;
    }

    .site-header.has-menu .menus-area {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
      transition-delay: 0s;
    }

    .mega-menu {
      position: absolute;
      inset: 0 0 auto 0;
      width: 100%;
      display: grid;
      grid-template-columns: 1.08fr 1.08fr 1.08fr 1.05fr;
      gap: 16px;
      padding: 26px 20px 10px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(-12px);
      transition: opacity .22s ease, transform .30s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .3s;
    }

    .mega-menu.active {
      position: relative;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
      transition-delay: 0s;
      align-items: center;
    }

    @keyframes fadeDrop {
      from {
        opacity: 0;
        transform: translateY(-5px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .menu-col h3 {
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 12px;
      color: #111b16;
    }

    .menu-card {
      width: 100%;
      min-height: 66px;
      display: grid;
      grid-template-columns: 42px 1fr 22px;
      align-items: center;
      gap: 12px;
      padding: 10px 12px;
      margin-bottom: 10px;
      border: 1px solid #04044434;
      border-radius: 7px;
      background: #fff;
      text-decoration: none;
      color: #111b16;
      transition: .2s ease;
    }

    .menu-card:hover {
      background: rgba(255, 255, 255, 0.616) !important;
      border: 1px solid rgb(255, 255, 255) !important;

      transform: translateY(-1px);
    }

    .menu-card .mini-icon {
      transition: background-color 0.8s ease, border-color 0.8s ease;
    }

    .menu-card:hover .mini-icon {
      background-color: #040444;
      border-color: #daecfc;
      color: #fff;
    }


    .mini-icon {
      width: 36px;
      height: 36px;
      border: 1px solid #e6ece8;
      border-radius: 7px;
      display: grid;
      place-items: center;
      background: #fff;
      color: #074122;
      font-weight: 900;
      flex-shrink: 0;
      font-size: 13px;
    }

    .mini-icon.dark {
      background: #062d1a;
      color: var(--lime);
      border-color: #062d1a;
    }

    .menu-title {
      display: block;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: -.1px;
      margin-bottom: 4px;
    }

    .menu-subtitle {
      display: block;
      font-size: 11px;
      color: #69746e;
      line-height: 1.25;
    }

    .arrow {
      font-size: 15px;
      line-height: 1;
      color: #0b1510;
      transform: translateY(-1px);
    }

    .sales-card {
      overflow: hidden;
      border-radius: 7px;
      align-self: start;
      background: #083b23;
      min-height: 166px;
      box-shadow: 0 10px 25px rgba(8, 34, 21, .08);
      text-decoration: none;
    }

    .sales-photo {
      height: 112px;
      background: linear-gradient(90deg, rgba(255, 255, 255, .18), transparent 40%), var(--promo-img) center/cover;
    }

    .sales-content {
      min-height: 86px;
      background: #073d24;
      color: #fff;
      padding: 18px 18px;
      display: grid;
      grid-template-columns: 1fr 24px;
      gap: 12px;
      align-items: center;
    }

    .sales-content strong {
      display: block;
      font-size: 14px;
      margin-bottom: 7px;
    }

    .sales-content p {
      font-size: 13px;
      line-height: 1.4;
      color: rgba(255, 255, 255, .88);
    }

    .mobile-toggle {
      display: none;
      width: 38px;
      height: 38px;
      border: none;
      background: transparent;
      border-radius: 10px;
      margin-left: auto;
      cursor: pointer;
    }

    .mobile-toggle span {
      width: 18px;
      height: 2px;
      background: #101b16;
      display: block;
      margin: 4px auto;
      border-radius: 99px;
    }

    .hero {
      width: min(1280px, calc(100% - 48px));
      min-height: 200vh;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 560px;
      gap: 78px;
      position: relative;
      z-index: 1;
      padding: 38px 0 80px;
      color: #fff;
    }

    .hero h1 {
      font-size: 27px;
      line-height: 1.12;
      margin-bottom: 8px;
      letter-spacing: -.6px;
    }

    .mobile-head {
      height: 66px;
      background: #030503;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 14px 0 22px;
    }

    .mobile-head .brand {
      width: auto;
      color: #fff;
      font-size: 27px;
    }

    .mobile-close {
      width: 42px;
      height: 42px;
      border: 0;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgb(255, 255, 255);
      color: #001042;
      cursor: pointer;
    }

    .mobile-close i {
      font-size: 24px;
      line-height: 1;
      transition: transform 0.45s cubic-bezier(.2, .8, .2, 1), color 0.25s ease;
    }

    .mobile-close:hover {
      background: rgb(255, 255, 255);
    }

    @media (hover: hover) and (pointer: fine) {
      .mobile-close:hover i {
        transform: rotate(180deg);
        color: #040444;
      }
    }

    @media (hover: none) and (pointer: coarse) {
      .mobile-close:hover i {
        transform: none;
      }
    }

    .mobile-close i.spin {
      animation: iconSpin 0.45s ease forwards;
    }

    @keyframes iconSpin {
      0% {
        transform: rotate(0deg) scale(1);
      }

      70% {
        transform: rotate(280deg) scale(1.15);
      }

      100% {
        transform: rotate(360deg) scale(1);
      }
    }

    .mobile-view {
      display: none;
      animation: fadeDrop .16s ease both;
    }

    .mobile-view.active {
      display: block;
    }

    .mobile-intro {
      color: var(--dark);
      font-size: 14px;
      line-height: 1.25;
      text-align: center;
      margin-bottom: 20px;
    }

    .mobile-menu-list {
      margin: 20px 0 50px 0;
    }

    .mobile-menu-button strong {
      font-weight: 600;
    }

    .mobile-menu-button {
      width: 100%;
      min-height: 61px;
      display: grid;
      grid-template-columns: 23px 1fr 18px;
      align-items: center;
      gap: 7px;
      background: transparent;
      cursor: pointer;
      font-family: inherit;
      text-align: left;
      color: #071b13;
      background: rgb(255 255 255 / 25%);
      margin-bottom: 10px;
      padding: 0px 13px;
      border-radius: 10px;
      border: 1px solid #fff;
    }


    .mobile-menu-button strong {
      font-size: 22px;
      letter-spacing: -.6px;
      color: #020806;
    }

    .mobile-menu-button .mobile-arrow {
      justify-self: end;
      font-size: 20px;
      line-height: 1;
      font-weight: 300;
    }


    .mobile-actions a:first-child {
      background: #f0f2f1;
    }

    .mobile-actions a:last-child {
      background: var(--green);
      color: var(--dark);
    }

    .mobile-signup {
      text-align: center;
      font-size: 12px;
      color: #020806;
    }

    .mobile-signup a {
      color: #008b66;
    }

    .mobile-back {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: sans-serif;
      font-weight: 700;
      border: 0;
      background: transparent;
      color: #111b16;
      font-family: inherit;
      font-size: 18px;
      margin: 3px 0 36px;
      cursor: pointer;
    }

    .mobile-section-title {
      font-size: 14px;
      color: var(--dark);
      font-weight: 600;
      margin: 0 0 13px;
    }

    .mobile-group {
      background: #eef3ef;
      border-radius: 6px;
      padding: 14px 18px 10px;
      margin-bottom: 24px;
    }

    .mobile-group .mobile-link:not(:last-child) {
      border-bottom: 1px solid #fff;
    }

    .mobile-link {
      display: grid;
      grid-template-columns: 1fr 24px;
      align-items: center;
      gap: 10px;
      padding: 9px 0 12px;
      color: #111b16;
      text-decoration: none;
    }

    .mobile-link strong {
      display: block;
      font-size: 16px;
      margin-bottom: 6px;
      letter-spacing: -.15px;
      font-weight: 600;
    }

    .mobile-link span {
      display: block;
      color: #46514c;
      font-size: 12px;
      line-height: 1.25;
    }

    .mobile-link .arrow {
      justify-self: end;
      font-size: 15px;
      color: #040444;
    }

    @media (max-width: 1080px) {
      .mobile-drawer {
        display: block;
      }

      .header-wrap,
      .hero {
        width: min(94%, 900px);
      }

      .brand {
        width: auto;
      }

      .nav-links,
      .header-actions,
      .menus-area {
        display: none !important;
      }

      .mobile-toggle {
        display: block;
      }

      .navbar,
      .site-header.has-menu .navbar {
        border-radius: 18px;
      }

      .hero {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 680px) {
      .header-wrap,
      .hero {
        width: calc(100% - 28px);
      }

      .mobile-drawer-inner .mobile-view {
        padding: 22px 15px 34px;
      }

      .navbar {
        height: 60px;
        padding: 0 14px !important;
      }

      .brand {
        font-size: 22px;
      }

      .hero {
        padding-top: 28px;
      }

      .hero h1 {
        font-size: 25px;
      }
    }


    /* Smooth UX polish: soft movement, nicer hover states, and natural mobile drawer */
    html {
      scroll-behavior: smooth;
    }

    body {
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    .nav-btn .chev {
      transition: transform .22s ease;
    }

    .nav-btn[aria-expanded="true"] .chev,
    .nav-item.active .nav-btn .chev {
      transform: rotate(225deg) translate(-2px, -1px);
    }

    .icon-btn:hover {
      background: #eff5f1;
      border-radius: 999px;
    }

    .site-header {
      position: relative;
      border-radius: 18px;
    }

    .navbar {
      position: relative;
      z-index: 2;
      border-radius: 18px;
      transition: border-radius .28s ease;
    }

    .site-header.has-menu .navbar {
      border-radius: 18px 18px 0 0;
    }

    .menus-area {
      transform-origin: top center;
    }

    .mega-menu.active {
      animation: menuPanelIn .30s cubic-bezier(.22, 1, .36, 1) both;
    }

    .mega-menu.active .menu-col,
    .mega-menu.active .sales-card {
      animation: cardRise .36s cubic-bezier(.22, 1, .36, 1) both;
    }

    .mega-menu.active .menu-col:nth-child(1) {
      animation-delay: .03s;
    }

    .mega-menu.active .menu-col:nth-child(2) {
      animation-delay: .07s;
    }

    .mega-menu.active .menu-col:nth-child(3) {
      animation-delay: .11s;
    }

    .mega-menu.active .sales-card {
      animation-delay: .15s;
    }

    .menu-card,
    .sales-card,
    .mobile-menu-button,
    .mobile-link {
      transition: transform .24s cubic-bezier(.22, 1, .36, 1), box-shadow .24s ease, background-color .24s ease, border-color .24s ease;
    }

    .menu-card:hover .mini-icon,
    .menu-card:hover .arrow {
      transform: translateX(3px);
    }

    .mini-icon,
    .arrow {
      transition: transform .22s cubic-bezier(.22, 1, .36, 1), background-color .22s ease, color .22s ease;
    }

    .sales-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 38px rgba(8, 34, 21, .14);
    }

    .sales-photo {
      transition: transform .48s cubic-bezier(.22, 1, .36, 1), filter .48s ease;
    }

    .sales-card:hover .sales-photo {
      transform: scale(1.045);
      filter: saturate(1.08);
    }

    .mobile-toggle {
      position: relative;
    }

    .mobile-toggle span {
      transition: transform .24s cubic-bezier(.22, 1, .36, 1), opacity .18s ease;
    }

    .mobile-toggle[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

    .mobile-toggle[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    .mobile-toggle[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    .mobile-drawer-inner {
      box-shadow: none;
    }

    .mobile-drawer.open .mobile-drawer-inner {
      transform: translateX(0);
    }

    .mobile-head {
      animation: mobileHeadIn .42s cubic-bezier(.22, 1, .36, 1) both;
    }

    .mobile-view.active {
      animation: mobileContentIn .28s cubic-bezier(.22, 1, .36, 1) both;
    }

    .mobile-menu-button:hover .mobile-arrow {
      transform: translateX(4px);
    }

    .mobile-menu-button .mobile-arrow {
      transition: transform .22s cubic-bezier(.22, 1, .36, 1);
    }

    .mobile-group {
      overflow: hidden;
    }


    @keyframes heroRise {
      from {
        opacity: 0;
        transform: translateY(16px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes menuShellIn {
      from {
        opacity: 0;
        transform: translateY(-8px) scaleY(.96);
      }

      to {
        opacity: 1;
        transform: translateY(0) scaleY(1);
      }
    }

    @keyframes menuPanelIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes cardRise {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes mobileContentIn {
      from {
        opacity: 0;
        transform: translateX(12px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @media (max-width: 1080px) {
      .mobile-drawer {
        display: block;
      }

      .mobile-drawer-inner {
        width: 100%;
        max-width: 100%;
      }

      .site-header.has-menu .menus-area {
        display: none !important;
      }
    }


    /* Full-screen mobile drawer fix */
    .mobile-drawer {
      position: fixed !important;
      inset: 0 !important;
      width: 100vw !important;
      height: 100vh !important;
      height: 100dvh !important;
      max-width: none !important;
      margin: 0 !important;
      z-index: 999999 !important;
      overflow-y: auto !important;
      overscroll-behavior: contain;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: none !important;
      transition: opacity .25s ease, visibility 0s linear .25s;
    }

    .mobile-drawer.open {
      opacity: 1 !important;
      visibility: visible !important;
      pointer-events: auto !important;
      transition-delay: 0s;
    }

    .mobile-drawer-inner {
      width: 100% !important;
      max-width: none !important;
      min-height: 100vh;
      min-height: 100dvh;
      margin: 0 !important;
      background: rgb(255 255 255 / 49%);
      backdrop-filter: blur(65px);
      transform: translateX(100%);
      transition: transform .34s cubic-bezier(.22, 1, .36, 1);
      box-shadow: none !important;
    }

    .mobile-drawer.open .mobile-drawer-inner {
      transform: translateX(0);
    }

    body.menu-open {
      overflow: hidden;
    }

    @media (max-width: 1080px) {
      .mobile-drawer {
        display: block !important;
      }

      .mobile-drawer-inner .mobile-view {
        padding: 22px 15px 34px;
      }
    }


    /* RoyelHost brand/logo, mobile submenu icons, and requested base-color overrides */
    .mobile-head,
    .sales-card,
    .sales-content,
    .mini-icon.dark {
      background: #040444;
    }

    .brand,
    .hero,
    .nav-btn,
    .nav-link,
    .header-actions,
    .icon-btn,
    .menu-col h3,
    .menu-card,
    .menu-title,
    .arrow,
    .mobile-drawer,
    .mobile-back,
    .mobile-menu-button,
    .mobile-menu-button strong,
    .mobile-link,
    .mobile-link strong,
    .mobile-actions a,
    .mobile-signup {
      color: #040444;
    }

    .nav-link:hover,
    .menu-card:hover,
    .mobile-group,
    .mobile-actions a:first-child,
    .icon-btn:hover {
      background: rgba(255, 255, 255, 0);
      /**/
      border: 1px solid #fff;
    }

    .mini-icon,
    .mobile-mini-icon {
      color: #040444;
      border-color: rgba(4, 4, 68, .14);
    }

    .mobile-link {
      grid-template-columns: 42px 1fr 24px;
    }

    .mobile-mini-icon {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(4, 4, 68, .14);
      border-radius: 7px;
      display: grid;
      place-items: center;
      background: #fff;
      font-weight: 900;
      flex-shrink: 0;
      font-size: 12px;
      display: flex !important;
      justify-content: center;
    }

    .mobile-signup a {
      color: #040444;
    }

    .mobile-head .brand {
      color: #fff;
    }



    .header-wrap {
      transition: width .40s ease, margin .28s ease, top .40s ease;
    }

    .header-wrap.header-scrolled {
      position: fixed;
      top: 0;
      left: 50%;
      right: auto;
      width: 100%;
      max-width: none;
      margin: 0;
      transform: translateX(-50%);
      z-index: 99999;
    }

    .header-wrap.header-scrolled .menus-area {
      left: 50%;
      right: auto;
      width: min(1280px, calc(100% - 40px));
      top: calc(100% + 0px);
      transform: translateX(-50%) translateY(-12px);
      border-radius: 0 0 18px 18px;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    }

    .site-header.has-menu .menus-area {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .header-wrap.header-scrolled .site-header.has-menu .menus-area {
      transform: translateX(-50%) translateY(0);
    }

    .header-wrap.header-scrolled .navbar {
      border-radius: 0 !important;
    }

    .mobile-drawer {
      overflow: hidden !important;
    }

    .mobile-drawer-inner {
      height: 100vh;
      height: 100dvh;
      min-height: 0 !important;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .mobile-head {
      flex: 0 0 66px;
      position: sticky;
      top: 0;
      z-index: 20;
    }

    .mobile-view {
      flex: 1;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }






    /* Smooth mobile drawer + submenu slide */
    .mobile-drawer {
      transition: opacity .28s ease, visibility 0s linear .28s;
    }

    .mobile-drawer-inner {
      position: relative;
      will-change: transform;
      transition: transform .42s cubic-bezier(.22, 1, .36, 1) !important;
    }

    .mobile-drawer.open .mobile-drawer-inner {
      transform: translateX(0) !important;
    }

    /* display none/block remove kore smooth slide */
    .mobile-view {
      display: block !important;
      position: absolute;
      top: 66px;
      left: 0;
      right: 0;
      bottom: 0;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateX(28px);
      transition:
        opacity .25s ease,
        transform .34s cubic-bezier(.22, 1, .36, 1),
        visibility 0s linear .34s;
      animation: none !important;
    }

    .mobile-drawer-inner:not(.sub-open) #mobileMainView {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(0);
      transition-delay: 0s;
    }

    .mobile-drawer-inner:not(.sub-open) #mobileSubView {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateX(28px);
    }

    .mobile-drawer-inner.sub-open #mobileMainView {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateX(-28px);
    }

    .mobile-drawer-inner.sub-open #mobileSubView {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(0);
      transition-delay: 0s;
    }

    .mobile-menu-button,
    .mobile-link,
    .mobile-back,
    .mobile-close {
      -webkit-tap-highlight-color: transparent;
    }

    .mobile-menu-button:active,
    .mobile-link:active,
    .mobile-back:active {
      transform: scale(.985);
    }

    .brand:focus,
    .brand:focus-visible {
      outline: none !important;
      box-shadow: none !important;
    }

    








 /* Advanced Tabs Section Start Going to add more tabs in future */
    .hero-readable-bg.site-section,
    .hero-readable-bg .tabs-panel,
    .hero-readable-bg .tab-btn {
      position: relative;
    }

    .hero-readable-bg.site-section {
      overflow: hidden;
      isolation: isolate;
      padding: 96px 0;
      background: #ffffff;
    }

    .hero-readable-bg.site-section::before,
    .hero-readable-bg.section-tabs::after,
    .hero-readable-bg .tab-btn::after {
      content: "";
      position: absolute;
      pointer-events: none;
    }

    .hero-readable-bg.site-section::before {
      inset: 0;
      z-index: 0;
      opacity: 0.52;
      background-image:
        linear-gradient(rgba(4, 4, 68, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(4, 4, 68, 0.04) 1px, transparent 1px);
      background-size: 54px 54px;
      mask-image: linear-gradient(180deg, transparent, #000 14%, #000 82%, transparent);
      -webkit-mask-image: linear-gradient(180deg, transparent, #000 14%, #000 82%, transparent);
    }

    .hero-readable-bg.section-tabs::after {
      right: 0;
      bottom: 0;
      z-index: 1;
      width: clamp(120px, 24vw, 430px);
      height: clamp(120px, 24vw, 430px);
      background: var(--dark, #040444);
      clip-path: polygon(100% 0, 0 100%, 100% 100%);
    }

    .hero-readable-bg.site-section > .container {
      position: relative;
      z-index: 2;
    }

    .hero-readable-bg .section-head {
      max-width: 660px;
      margin-bottom: 56px;
    }

    .hero-readable-bg .small-title {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      color: var(--blue, #0088ff);
      font-size: 15px;
      line-height: 1;
      font-weight: 600;
    }

    .hero-readable-bg .small-title span {
      width: 34px;
      height: 2px;
      border-radius: 99px;
      background: var(--blue, #0088ff);
    }

    .hero-readable-bg .main-title {
      max-width: 760px;
      margin: 0;
      color: var(--dark, #040444);
      font-size: clamp(34px, 4.2vw, 58px);
      line-height: 1.07;
      letter-spacing: -1.45px;
      font-weight: 700;
    }

    .hero-readable-bg .main-title span {
      color: var(--blue, #0088ff);
    }

    .hero-readable-bg .section-text {
      max-width: 610px;
      margin: 22px 0 0;
      color: #24344a;
      font-size: 17px;
      line-height: 1.75;
      font-weight: 400;
    }

    .hero-readable-bg .tabs-panel {
      max-width: 760px;
    }

    .hero-readable-bg .tabs-menu {
      display: flex;
      flex-wrap: wrap;
      margin-top: 28px;
      border-bottom: 1px solid rgba(4, 4, 68, 0.12);
    }

    .hero-readable-bg .tab-btn {
      border: 0;
      background: transparent;
      color: var(--dark, #040444);
      padding: 12px 17px 13px 0;
      margin-right: 24px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: color 240ms ease;
    }

    .hero-readable-bg .tab-btn::after {
      left: 0;
      right: 17px;
      bottom: -1px;
      height: 2px;
      border-radius: 999px;
      background: var(--blue, #0088ff);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 260ms var(--ease, ease);
    }

    .hero-readable-bg .tab-btn.active {
      color: var(--blue, #0088ff);
    }

    .hero-readable-bg .tab-btn.active::after {
      transform: scaleX(1);
    }

    .hero-readable-bg .tab-panel {
      display: none;
      padding-top: 24px;
      animation: heroReadableFadeUp 340ms var(--ease, ease) both;
    }

    .hero-readable-bg .tab-panel.active {
      display: block;
    }

    @keyframes heroReadableFadeUp {
      from {
        opacity: 0;
        transform: translateY(12px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-readable-bg .check-list {
      display: grid;
      gap: 14px;
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
    }

    .hero-readable-bg .check-list li {
      display: grid;
      grid-template-columns: 26px 1fr;
      gap: 12px;
      align-items: start;
      color: #24344a;
      font-size: 15px;
      line-height: 1.68;
      font-weight: 400;
    }

    .hero-readable-bg .check-list i {
      display: grid;
      place-items: center;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: #ffffff;
      color: var(--blue, #0088ff);
      font-size: 11px;
      box-shadow: 0 10px 22px rgba(0, 136, 255, 0.12);
    }

    .hero-readable-bg .outline-button {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-top: 30px;
      padding: 14px 22px;
      border-radius: 11px;
      color: #ffffff;
      background: var(--blue, #0088ff);
      border: 1px solid rgba(0, 136, 255, 0.20);
      font-size: 14px;
      font-weight: 600;
      transition: transform 260ms var(--ease, ease), background 260ms ease;
    }

    .hero-readable-bg .outline-button:hover {
      color: #ffffff;
      background: var(--dark, #040444);
      transform: translateY(-3px);
    }

    /* .hero-readable-bg .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 720ms ease, transform 720ms var(--ease, ease);
    } */

    .hero-readable-bg .reveal.show {
      opacity: 1;
      transform: translateY(0);
    }

    .hero-readable-bg .delay-1 {
      transition-delay: 90ms;
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-readable-bg,
      .hero-readable-bg *,
      .hero-readable-bg *::before,
      .hero-readable-bg *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
      }
    }

    @media (max-width: 991px) {
      .hero-readable-bg.site-section {
        padding: 78px 0;
      }

      .hero-readable-bg .section-head {
        margin-bottom: 42px;
      }
    }

    @media (max-width: 767px) {
      .hero-readable-bg.site-section {
        padding: 64px 0;
      }

      .hero-readable-bg .main-title {
        letter-spacing: -1px;
      }

      .hero-readable-bg .tab-btn {
        margin-right: 14px;
        padding-right: 10px;
        font-size: 13px;
      }
    }