  /* ══ TOKENS ══ */
  :root {
    --c-bg: #fafaf7;
    --c-bg2: #f2f1ec;
    --c-white: #ffffff;
    --c-ink: #1a1814;
    --c-ink2: #242424;
    --c-muted: #8c8880;
    --c-border: #e4e2db;
    --c-border2: #d0cdc5;
    --c-accent: #2563eb;
    --c-accent-lt: #eff4ff;
    --c-accent-md: #bfcffe;
    --c-accent-dk: #1d4ed8;
    --c-green: #16a34a;
    --c-green-lt: #f0fdf4;
    --c-violet: #7c3aed;
    --c-violet-lt: #f5f3ff;
    --c-teal: #0d9488;
    --c-teal-lt: #f0fdfa;
    --c-amber: #d97706;
    --c-amber-lt: #fffbeb;
    --sh-sm: 0 1px 3px rgba(26, 24, 20, .06), 0 1px 2px rgba(26, 24, 20, .04);
    --sh-xl: 0 32px 80px rgba(26, 24, 20, .14), 0 8px 24px rgba(26, 24, 20, .08);
    --drawer-w: min(320px, 88vw);
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  /* ══ CHECKBOX ══ */
  .cb-drawer {
    display: none !important;
  }

  /* ══ HEADER SHELL ══ */
  .main--header {
    position: sticky;
    top: 0;
    z-index: 9000;
    background: rgba(250, 250, 247, .96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--sh-sm);
    padding-top: 15px;
    padding-bottom: 15px;
  }

  /* ══ ANNOUNCE ══ */
  .announce {
    display: none;
    background: var(--c-accent);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    padding: 9px 48px;
  }

  .announce a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
  }

  .ab-badge {
    display: inline-block;
    background: rgba(255, 255, 255, .22);
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-right: 8px;
  }

  /* ══ NAVBAR ══ */

  .nav-inner {
    max-width: 1370px;
    margin: 0 auto;
    height: 70px;
    display: flex;
    align-items: center;
  }

  /* ══ LOGO ══ */
  .nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    img{
      width:240px;
      height:auto;
    }
  }

  /* ══ DESKTOP NAV MENU ══ */
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
  }

  .ni {
    position: relative;
  }

  /* hover bridge */
  .ni::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;

    background: linear-gradient(90deg,
        rgba(62, 171, 255, 0.9),
        rgba(108, 70, 255, 0.9));

    transform: translateX(-50%);
    transition: width 0.35s ease;
  }

  .ni:hover::after {
    width: 100%;
  }

  .nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    color: var(--c-ink2);
    transition: background .18s, color .18s;
    white-space: nowrap;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    line-height: 1;
    background: none !important;
  }

  .nav-trigger:hover,
  .ni:hover>.nav-trigger,
  .ni.is-open>.nav-trigger {
    background: var(--c-bg2);
    color: var(--c-ink);
  }

  /* ══ FEATURES TRIGGER ══ */
  .feat-trigger-wrap {
    display: flex;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
  }

  .nav-has-mega:hover {
    background-color: transparent;
  }

  .nav-trigger:hover,
  .ni:hover>.nav-trigger,
  .ni.is-open>.nav-trigger {
    background: none !important;
    color: var(--c-ink);
  }

  .ni:hover .feat-arrow,
  .ni.is-open .feat-arrow {
    background: none !important;
    margin: 0;
  }

  .feat-link {
    padding-right: 5px;
    border-radius: 0;
  }

  .feat-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 8px 0px 2px;
    border: none;
    cursor: pointer;
    color: var(--c-muted);
    transition: color .18s;
    background: transparent;
    margin: 0 !important;
  }

  .feat-arrow:hover {
    color: var(--c-accent);
  }

  .ni:hover .feat-link,
  .ni.is-open .feat-link {
    background: var(--c-bg2);
    color: var(--c-ink);
  }

  .ni:hover .feat-arrow,
  .ni.is-open .feat-arrow {
    background: var(--c-bg2);
  }

  .chev-svg {
    transition: transform .25s, color .18s;
    display: block;
  }

  .ni:hover .chev-svg,
  .ni.is-open .chev-svg {
    transform: rotate(180deg);
    color: var(--c-accent);
  }

  /* ══ MEGA MENU ══ */
  .mega {
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: 18px;
    box-shadow: var(--sh-xl);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .22s, transform .22s;
    z-index: 700;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .mega-solutions {
    min-width: 680px;
    left: -120px;
  }





  .ni:hover>.mega,
  .ni.is-open>.mega {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .mega-features {
    min-width: 920px;
    left: -340px;
  }

  .mega-body {
    display: flex;
  }

  .mega-left {
    padding: 22px 0;
    border-right: 1px solid var(--c-border);
    flex: 1;
  }

  .mega-right {
    flex: 1;
    padding: 22px 0;
  }
  .mega-mid{
     padding: 22px 0;
    border-right: 1px solid var(--c-border);
    flex: 1;
  }

  .m-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 13px 20px;
    transition: background .14s;
    color: var(--c-ink);
  }

  .m-item:hover {
    background: var(--c-accent-lt);
  }

  .m-item.is-first {
    background: var(--c-accent-lt);
  }
  .arrow{
      padding: 0px 8px 0px 0px;
   }

  .m-item.is-first .mi-name {
    color: var(--c-accent);
  }

  .mi-ico {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: transform .2s;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .m-item:hover .mi-ico {
    transform: scale(1.1);
  }

  .mi-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--c-ink);
    line-height: 1.2;
  }

  .mi-sub {
    font-size: 12.5px;
    color: var(--c-muted);
    line-height: 1.4;
    margin-top: 1px;
  }

  .mega-foot {
    border-top: 1px solid var(--c-border);
    padding: 11px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--c-bg);
    gap: 12px;
  }

  .mf-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }

  .mf-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 11px;
    border-radius: 100px;
    background: var(--c-white);
    border: 1px solid var(--c-border);
    font-size: 12px;
    font-weight: 500;
    color: var(--c-ink2);
    transition: all .18s;
  }

  .mf-tag:hover {
    border-color: var(--c-accent);
    color: var(--c-accent);
  }

  .mf-tag i {
    font-size: 12px;
  }

  .mf-right {
    font-size: 12px;
    color: var(--c-muted);
    white-space: nowrap;
  }

  .mf-right a {
    color: var(--c-accent);
    font-weight: 600;
  }

  .mf-right a:hover {
    text-decoration: underline;
  }

  /* ══ MOBILE-ONLY CLASSES (hidden on desktop) ══ */
  .mob-drawer-head,
  .mob-only-btns,
  .mob-acc-heading,
  .mob-feat-cta {
    display: none;
  }

  /* ══ RIGHT ACTIONS ══ */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
  }

  .desktop-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header-btn3 {
      border-radius: 25px;
    border: 1px solid #2563eb;
    color: #2563eb;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    display: flex;
    padding: 14px 24px;
    transition: var(--transition);
    z-index: 1;
    position: relative;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .header-btn3:hover {
    background: var(--c-bg2);
    border-color: var(--c-border2);
  }

  .header-btn2 {
    border-radius: 25px;
    background: #2563eb;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    display: flex;
    padding: 16px 24px;
    transition: var(--transition);
    z-index: 1;
    position: relative;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
  }

  .header-btn2:hover {
    background: var(--c-accent-dk);
    transform: translateY(-1px);
  }

  /* ══ HAMBURGER ══ */
  .ham-label {
    display: none;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--c-border);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0 10px;
    background: transparent;
    transition: background .18s;
    flex-shrink: 0;
    cursor: pointer;
  }

  .ham-label:hover {
    background: var(--c-bg2);
  }

  .ham-bar {
    display: block;
    height: 1.5px;
    width: 100%;
    background: var(--c-ink2);
    border-radius: 2px;
    transition: transform .28s, opacity .28s;
    transform-origin: center;
  }

  /* Ham → X */
  .cb-drawer:checked~.main--header .ham-bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .cb-drawer:checked~.main--header .ham-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .cb-drawer:checked~.main--header .ham-bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  /* ══ OVERLAY ══ */
  .mob-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(26, 24, 20, .45);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity .35s;
    cursor: pointer;
  }

  /* ════════════════════════════════════
   TABLET (1091px)
════════════════════════════════════ */
  @media (max-width: 1091px) {
    .nav-trigger {
      padding: 7px 10px;
      font-size: 14px;
    }

    .header-btn2,
    .header-btn3 {
      padding: 8px 14px;
      font-size: 13px;
    }

    .mega-features {
      min-width: 750px;
      left: -260px;
    }
  }

  /* ════════════════════════════════════
   MOBILE (960px and below)
════════════════════════════════════ */
  @media (max-width: 960px) {

    /* Hamburger show, desktop buttons hide */
    .ham-label {
      display: flex;
    }

    .desktop-buttons {
      display: none;
    }
      .et-panel {
      background: var(--c-bg) !important;
    }

    .nav-inner {
      padding: 0px 14px;
    }

    .nav-logo {
      margin-right: 0;
      position: relative;
      z-index: 999;
    }

    .main--header {
      padding-top: 4px;
      padding-bottom: 4px;
    }

    /* Overlay show */
    .mob-overlay {
      display: contents;
    }

    .cb-drawer:checked~.main--header .mob-overlay {
      opacity: 1;
      pointer-events: all;
    }

    /* ── nav-menu becomes the slide-in drawer ── */
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      bottom: 0;
      width: var(--drawer-w);
      z-index: 9000;
      background: var(--c-white);
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 0;
      padding: 0;
      overflow-y: auto;
      overscroll-behavior: contain;
      box-shadow: var(--sh-xl);
      transform: translateX(-110%);
      transition: transform .36s cubic-bezier(.16, 1, .3, 1);
      height: 100vh;
    }

    .cb-drawer:checked~.main--header .nav-menu {
      transform: translateX(0);
    }

    /* ── Drawer head: logo + cross ── */
    .mob-drawer-head {
      display: flex !important;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 0 18px;
      height: 64px;
      flex-shrink: 0;
      background: var(--c-white);
      border-bottom: 1px solid var(--c-border);
      position: sticky;
      top: 0;
      z-index: 2;
    }

    .mob-logo {
      display: flex;
      align-items: center;
    }

    .mob-close-btn {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      border: 1.5px solid var(--c-border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--c-ink2);
      cursor: pointer;
      transition: background .18s;
      flex-shrink: 0;
      background: transparent;
    }

    .mob-close-btn:hover {
      background: var(--c-bg2);
    }

    /* ── Every nav li: full width ── */
    .ni {
      width: 100%;
      border-bottom: 1px solid var(--c-border);
    }

    .ni::after {
      display: none;
    }

    .nav-trigger {
      width: 100%;
      padding: 14px 20px;
      font-size: 15px;
      border-radius: 0;
      justify-content: space-between;

    }

    .nav-trigger:hover,
    .ni.is-open>.nav-trigger {
      background: var(--c-bg2);
    }
    

    /* ── Features row: text link + arrow button ── */
    .feat-trigger-wrap {
      width: 100%;
      border-radius: 0;
      overflow: visible;
    }

    .feat-link {
      flex: 1;
      padding: 14px 8px 14px 20px;
      border-radius: 0;
      font-size: 15px;
      background: none !important;
    }

    .feat-arrow {
      padding: 0px 18px;
      border-radius: 0;
      /* border-left: 1px solid var(--c-border); */
      flex-shrink: 0;
      background: none !important;
      color: var(--c-muted);
      margin: 0;
    }


    .ni.is-open .chev-svg {
      transform: rotate(180deg);
      color: var(--c-accent);
    }

    /* ── Mega → accordion ── */
    .mega {
      position: static !important;
      opacity: 1 !important;
      transform: none !important;
      pointer-events: all !important;
      border: none;
      border-radius: 0;
      box-shadow: none;
      background: var(--c-bg);
      border-top: 1px solid var(--c-border);
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s cubic-bezier(.16, 1, .3, 1);
      display: block !important;
      min-width: 200px;
    }

    .ni.is-open>.mega {
      max-height: 1200px;
    }

    /* Accordion heading */
    .mob-acc-heading {
      display: block !important;
    }

    /* View all features CTA inside accordion */




    /* Hide mega footer on mobile */
    .mega-foot {
      display: none !important;
    }

    /* Stack columns */
    .mega-body {
      flex-direction: column;
    }

    .mega-left {
      padding: 8px 0;
      border-right: none;
      border-bottom: 1px solid var(--c-border);
    }

    .mega-right {
      padding: 8px 0;
    }

    /* Compact items */
    .m-item {
      padding: 11px 20px 11px 24px;
      gap: 10px;
    }

    .m-item.is-first {
      background: transparent;
    }

    .m-item.is-first .mi-name {
      color: var(--c-ink);
    }

    .mi-ico {
      width: 26px;
      height: 26px;
      min-width: 26px;
      font-size: 13px;
    }

    .mi-name {
      font-size: 14px;
    }

    .mi-sub {
      font-size: 12px;
    }

    /* Mobile CTA buttons */
    .mob-only-btns {
      display: flex !important;
      flex-direction: column;
      gap: 10px;
      padding: 16px 18px;
      width: 100%;
    }

    .mob-btn-login {
      display: block;
      padding: 13px;
      border-radius: 9px;
      border: 1.5px solid var(--c-border);
      background: transparent;
      color: var(--c-ink);
      font-size: 14px;
      font-weight: 500;
      text-align: center;
      transition: background .18s;
    }

    .mob-btn-login:hover {
      background: var(--c-bg2);
    }

    .mob-btn-signup {
      display: block;
      padding: 13px;
      border-radius: 9px;
      background: var(--c-accent);
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      text-align: center;
      box-shadow: 0 2px 12px rgba(37, 99, 235, .28);
      transition: background .18s;
    }

    .arrow {
      padding-right: 20px;
    }

    .mob-btn-signup:hover {
      background: var(--c-accent-dk);
    }
  }

  @media (max-width: 480px) {
    .announce {
      font-size: 12px;
      padding: 8px 32px;
    }
  }

  /* ── Wrapper ── */
  .et-wrap {
    position: relative;
    /* flyout ka anchor point */
    width: 100%;
  }


  /* ── Trigger item — right chevron ke liye flex ── */
  .et-trigger {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 8px;
    position: relative;
    background: #aac8ff26;
  }

  .et-text-wrap {
    flex: 1;
    /* name + sub ko space do */
  }

  /* Chevron arrow — right side pe */
  .et-chevron {
    margin-left: auto;
    display: flex;
    align-items: center;
    color: var(--c-text-muted, #9ca3af);
    opacity: 1;
    transition: opacity .2s, transform .2s;
    border: 1px solid #2563eb;
    padding: 5px 4px;
    border-radius: 36px;
  }

  .et-chevron svg {
    color: #2563eb;

  }

  .et-wrap:hover .et-chevron,
  .et-wrap.et-open .et-chevron {
    opacity: 1;
    color: var(--c-accent, #4f6ef7);
  }


  /* ════════════════
   DESKTOP FLYOUT
════════════════ */
  @media (min-width: 992px) {

      .et-wrap {
        position: relative;
    }

    .et-panel {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, visibility 0.2s ease;
        position: absolute;
        left: -100%;
        top: calc(100% + 0px);   /* ← yeh add karo */
        min-width: 520px;
        width: 560px;
        background: white;
        border: 1px solid var(--c-border, #e5e7eb);
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, .10);
        z-index: 1000;
        overflow: auto;
    }

    /* Panel visible on hover */
    .et-wrap:hover .et-panel {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    /* ★ INVISIBLE BRIDGE — covers diagonal path to panel ★ */
    .et-wrap::before {
        content: "";
        position: absolute;
        top: 69%;
        left: -100%;           /* panel ke saath match */
        width: calc(100% + 560px);  /* trigger + panel dono cover */
        height: 300px;
        z-index: 999;
        display: none;         /* default hidden */
    }

    .et-wrap:hover::before {
        display: block;        /* hover pe dikhao */
    }
    .mega-features {
      overflow: visible;
      /* child panel bahar aa sake */
    }

 
    /* Trigger highlight on hover */
    .et-wrap:hover .et-trigger {
      background: rgba(79, 110, 247, .06);
      border-radius: 8px;
    }

    /* Panel header */
  

    .et-ph-title {
      font-size: 13px;
      font-weight: 600;
      color: var(--c-text, #111827);
    }


    /* Two-column grid */
    .et-grid {
      display: grid;
      grid-template-columns: 1fr 0.5px 1fr;
      /* left | divider | right */
      padding: 6px;
      gap: 0;
    }
    .et-col{
      padding: 10px 0px;
    } 
    .et-col-left{
        border-right: 1px solid var(--c-border);
    }

 
    /* Divider between columns */
    .et-col-divider {
      background: var(--c-border, #e5e7eb);
      margin: 8px 2px;
    }

    /* Panel footer */
    .et-panel-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 14px;
      border-top: 1px solid var(--c-border, #e5e7eb);
    }

    .et-count-badge {
      font-size: 11px;
      color: var(--c-text-muted, #6b7280);
      background: var(--c-bg-soft, #f3f4f6);
      padding: 3px 10px;
      border-radius: 20px;
      border: 1px solid var(--c-border, #e5e7eb);
    }


  }


  /* ════════════════
   MOBILE ACCORDION
════════════════ */
  @media (max-width: 991px) {

    /* Panel hidden by default */
    .et-panel {
      display: none;
      padding: 4px 0 8px 0px;
      border-left: 2px solid var(--c-accent-lt, #eef2ff);
      margin: 4px 0 4px 0px;
      border: 1px solid #dbdbdbd9;
      background: #ffffff85;
    }

    /* JS adds .et-open to .et-wrap */
    .et-wrap.et-open .et-panel {
      display: block;
    }

    /* Rotate chevron when open */
    .et-wrap.et-open .et-chevron {
      transform: rotate(90deg);
    }
      .nav-logo img {
      width: 190px !important;
    }

    /* Panel header — mobile pe chhota */
   

    /* Stack columns vertically on mobile */
    .et-grid {
      display: flex;
      flex-direction: column;
    }

    /* No divider on mobile */
    .et-col-divider {
      display: none;
    }

    /* Column label padding adjust */
    .et-col-label {
      font-size: 10px;
      font-weight: 600;
      color: var(--c-text-muted, #9ca3af);
      text-transform: uppercase;
      letter-spacing: .06em;
      padding: 8px 10px 4px;
    }

    /* Footer on mobile */
    .et-panel-foot {
      padding: 8px 10px 4px;
      display: flex;
      justify-content: flex-end;
      border-top: none;
    }

    .et-count-badge {
      display: none;
      /* mobile pe sirf CTA dikhao */
    }

    .et-view-all {
      font-size: 12px;
      color: var(--c-accent, #4f6ef7);
      font-weight: 600;
      text-decoration: none;
    }
  }

  @media (min-width: 1200px) and (max-width: 1420px) {
    .nav-inner {
      max-width: 1270px;
      margin: 0 auto;
      height: 60px;
      display: flex;
      align-items: center;
      padding: 0px 10px;
    }

    .nav-logo img {
      width: 214px !important;
    }

    .nav-trigger {
      font-size: 15px;
    }
     .header-btn2 {
      font-size: 12px !important;
      padding: 12px 14px !important;

    }

    .header-btn3 {
      font-size: 14px !important;
      padding: 12px 16px !important;
    }

  }

  @media (min-width: 970px) and (max-width: 1201px) {
    .nav-inner {
      max-width: 1060px;
      margin: 0 auto;
      height: 54px;
      display: flex;
      align-items: center;
      padding: 0px 10px;
    }

    .nav-logo img {
      width: 180px !important;
    }

    .nav-trigger {
      font-size: 14px;
      padding: 8px 10px;
    }

    .header-btn2 {
      font-size: 12px !important;
      padding: 10px 14px !important;

    }

    .header-btn3 {
      font-size: 14px !important;
      padding: 9px 16px !important;
    }
  }





  /* footer css start===================================== */
  /* Footer Section CSS */
.footer-contact-pointer {
  cursor: pointer;
}
.footer-contact-pointer a {
  cursor: pointer;
}
.tsFooterCopyrightPadding {
  padding-left: 40px;
  padding-right: 40px;
}
.footer-logoicon {
  display: flex;
  justify-content: space-between;
  padding-bottom: 48px;
}
.footer-imagelogo {
  width: 220px !important;
}
.tsBigFooter {
  background: #fbfbf8;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 40px 0 0px;
}

.tsBigFooter__wrap {
  width: min(1400px, 94%);
  margin: 0 auto;
}

/* BIG GRID */
.tsBigFooter__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr 1.5fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 20px;
}

/* BRAND */
.tsBigFooter__logo {
  width: 150px;
  height: auto;
  display: block;
}

.tsBigFooter__brandText {
  margin: 18px 0 18px;
  font-size: 16px;
  color: #000000;
  max-width: 270px;
  font-weight: 400;
}

.tsBigFooter__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tsBigFooter__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #0b1b3a;
  text-decoration: none;
  transition: 0.25s;
}

.tsBigFooter__social a:hover {
  transform: translateY(-2px);
}

/* TITLES */
.tsBigFooter__title {
  font-size: 19px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 14px;
}

.tsBigFooter__mt {
  margin-top: 26px;
}

.tsBigFooter__mt2 {
  margin-top: 28px;
}

/* LINKS */
.tsBigFooter__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.tsBigFooter__list a {
  font-size: 16px;
  color: #242424 !important;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
  line-height: 1.4;
}

.tsBigFooter__list a:hover {
  color: #0b4db8;
}

.tsBigFooter__green {
  color: #16a34a !important;
  font-weight: 700;
}

.tsBigFooter__add {
  color: #16a34a !important;
  font-weight: 700;
}

/* CONTACT */
.tsBigFooter__small {
  margin: 0 0 6px;
  font-size: 13px;
  color: #6a7485;
  font-weight: 700;
  text-transform: lowercase;
}

.tsBigFooter__email {
  font-size: 16px;
  color: #000000;
  text-decoration: none;
  transition: 0.2s;
  line-height: 1.4;
  font-weight: 400;
}

.tsBigFooter__email:hover {
  color: #0b4db8;
}

.tsBigFooter__icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0 22px;
}

.tsBigFooter__icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #0b1b3a;
  text-decoration: none;
  transition: 0.25s;
}

.tsBigFooter__icons a:hover {
  transform: translateY(-2px);
}

/* BADGES */
.tsBigFooter__badges {
  display: grid;
  gap: 12px;
  margin-top: 5px;
}

.tsBigFooter__badge {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 900;
  color: #0b1b3a;
  line-height: 1.2;
}

.tsBigFooter__badge i {
  font-size: 2rem;
  color: #ccc;
}

.tsBigFooter__badge span {
  display: inline-block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #6a7485;
}

/* BOTTOM BAR */
.tsBigFooter__bottom {
  padding: 10px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: #c1c1c182;
}

.tsBigFooter__bottom p {
  margin: 0;
  font-size: 14px;
  color: #000;
  font-weight: 500;
}

.tsBigFooter__bottomRight {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tsBigFooter__bottomRight a {
  font-size: 14px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.tsBigFooter__bottomRight a:hover {
  color: #0b4db8;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .tsBigFooter__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .tsBigFooter {
    padding: 55px 0 0px;
  }

  .tsBigFooter__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 35px;
  }

  .tsBigFooter__brandText {
    max-width: 100%;
  }

  .tsBigFooter__badges {
    grid-template-columns: 1fr 1fr;
  }
  .footer-logoicon {
    display: block;
    padding-bottom: 30px;
  }
  .tsBigFooter__social {
    margin-top: 24px;
  }
}

@media (max-width: 460px) {
  .tsBigFooter__badges {
    grid-template-columns: 1fr;
  }
}

/* Footer Section CSS */

.cta3-modern {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background: url("../images/all-images/cta-bg1.webp") center/cover no-repeat;
}

.cta3-modern .cta3-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    120deg,
    rgba(0, 44, 139, 0.7),
    rgba(0, 0, 0, 0.5)
  );
}

.cta3-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.18) 1px,
    transparent 1px
  );
  background-size: 18px 18px;
  opacity: 0.35;
}

.cta3-modern::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  top: -180px;
  left: -180px;
  filter: blur(30px);
  z-index: 2;
}

.heading6 h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}
.cta3-modern .container,
.cta3-modern .cta3-header-area {
  position: relative;
  z-index: 5;
}

.cta3-modern ul {
  margin: 0;
  padding: 0;
  list-style: none;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta3-modern ul li {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 18px;
  display: flex;
  font-weight: 400;
  gap: 10px;
  align-items: center;
}

.cta3-modern .cta3-divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
}

.cta3-modern .cta3-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta3-modern .header-btn2:hover,
.cta3-modern .header-btn3:hover {
  transform: translateY(-2px);
}
.cta-button-dark {
  background-color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 30px;
  border-radius: 200px;
  border: 1px solid transparent;
  color:#2563eb;
  text-decoration: none;
}

.cta-button-dark:hover {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.cta-button-light {
  background-color: transparent;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 30px;
  border-radius: 200px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
}

.cta-button-light:hover {
  background-color: #fff;
  border: 1px solid #fff;
  color: var(--secondary);
}
.space32 {
    height: 32px;
}

@media (max-width: 480px) {
  .cta3-modern h2 {
    font-size: 26px !important;
  }

  .cta3-modern ul li {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .cta3-modern {
    padding: 40px 16px;
    border-radius: 0px;
  }

  .cta3-modern h2 {
    font-size: 26px !important;
    line-height: 1.4;
  }

  .cta3-modern ul {
    gap: 6px;
  }
    .cta-button-dark {
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 4px 19px;
  }
   .cta-button-light {
    font-size: 15px;
    padding: 6px 19px;
  }
      .tsBigFooter__bottom {
        padding: 10px 15px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 6px;
        flex-wrap: wrap;
        background: #c1c1c182;
    }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta3-section-area {
    padding: 40px 0 40px;
  }
}

.cta3-section-area .cta3-header-area h2 {
  color: var(--white-100, #fff);
}
