body {
      margin: 0;
      background: #ffffff;
      font-family: "Inter", sans-serif;
    }
 /* ================= NAVBAR ================= */
.it-navbar-section {
  padding: 12px;
}

.it-navbar-wrap {
  --it-nav-h: 78px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* NAVBAR */
.it-navbar {
  position: relative;
  z-index: 2;
  min-height: var(--it-nav-h);
  background: #ffffff;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 4px 13.2px 0 rgba(255, 255, 255, 0.12);
  overflow: visible;
  isolation: isolate;
}

/* keep your navbar content above */
.it-navbar > * {
  position: relative;
  z-index: 2;
}

/* SVG BORDER - sibling of nav, not child */
.it-navbar-light-border {
  position: absolute;
  top: -4px;
  left: -4px;
  width: calc(100% + 8px);
  height: calc(var(--it-nav-h) + 8px);
  pointer-events: none;
  z-index: 1;
  overflow: visible;
  display: block;
}

/* soft outer line */
.it-navbar-border-base {
  fill: none;
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

/* moving light strip */
.it-navbar-border-strip {
  fill: none;
  stroke: url(#itMovingLight);
  stroke-width: 9;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  filter: url(#itGlow);
  stroke-dasharray: 110 2050;
  stroke-dashoffset: 0;
  animation: itNavStripRun 2.8s linear infinite;
}

/* movement */
@keyframes itNavStripRun {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -2270;
  }
}

    .it-navbar-section {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1050;
      padding: 12px 16px;
      background: transparent;
    }

    .it-navbar-wrap {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
    }

    .it-navbar {
      background: #fff;
      border-radius: 999px;
      padding: 12px 18px;
      box-shadow: 0 4px 13.2px 0 rgba(0, 0, 0, 0.12);
    }

    .it-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .it-brand-logo {
      width: 34px;
      height: 34px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .it-brand-text {
      font-size: 16px;
      font-weight: 500;
      color: #162c5b;
      white-space: nowrap;
    }

    .it-brand-text span {
      color: #2d9cdb;
    }

    .it-nav-links {
      gap: 34px;
    }

    .it-nav-links .nav-link {
      color: #5d5d5d;
      font-size: 16px;
      font-weight: 500;
      padding: 0;
      transition: 0.3s ease;
    }

    .it-nav-links .nav-link:hover,
    .it-nav-links .nav-link.active {
      color: #162c5b;
    }

    .it-signin {
      color: #4d4d4d !important;
    }

    .it-cta {
      background: #172b52;
      color: #fff;
      border: none;
      border-radius: 20px;
      padding: 14px 28px;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: 0.3s ease;
      white-space: nowrap;
    }

    .it-cta:hover {
      background: #0f2247;
      color: #fff;
    }

    .it-toggler {
      width: 46px;
      height: 46px;
      border: none;
      border-radius: 10px;
      background: #162c5b;
      color: #fff;
      display: none;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      box-shadow: none;
    }

    .it-toggler:focus {
      box-shadow: none;
    }

    .it-mobile-menu {
      margin-top: 12px;
    }

    .it-mobile-menu .card {
      border: none;
      border-radius: 24px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }

    .it-mobile-menu .card-body {
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      background: #fff;
    }

    .it-mobile-link {
      text-decoration: none;
      color: #162c5b;
      font-size: 16px;
      font-weight: 500;
    }

    .it-mobile-link:hover {
      color: #2d9cdb;
    }

    .it-mobile-cta {
      justify-content: center;
      margin-top: 8px;
    }
/* ================= NAVBAR Ends Here ================= */


      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, #14A3DC1A, #26237A0F);
        padding-top: 10px; /* space for fixed navbar */
      }

      .lp-hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #ffffff;
        color: #7b7b7b;
        border-radius: 999px;
        padding: 12px 18px;
        font-size: 15px;
        font-weight: 500;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
        margin-bottom: 28px;
      }

      .lp-hero-badge-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #1e214f;
        flex-shrink: 0;
      }


      .hero h1 {
        font-size: 3.1rem;
        font-weight: 700;
      }

      .hero p {
        color: #555;
        margin-top: 20px;
        max-width: 500px;
      }

      .hero-buttons {
        margin-top: 25px;
      }

      .btn-explore {
        background-color: #fff;
        border: 1px solid #bebebe;
      }

      .hero-buttons .btn-explore , 
      .btn-primary {
        border-radius: 30px;
        padding: 12px 20px;
      }

      .btn-primary {
        background: #172b52;
        color: #fff;
        border: none;
        
      }

      .btn-glow {
        background: linear-gradient(135deg, #1aa9e8 0%, #192e65 100%);
      box-shadow: 0 0 0 rgba(26, 169, 232, 0),
                  0 0 28px rgba(26, 169, 232, 0.45);
      }

      .stat-card{
        background: #fff;
        border-radius: 18px;
        padding: 20px 18px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
        height: 100%;

      }

      /* RIGHT CARD */
      .hero-card {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 20px;
      }

      .lp-preview-shell {
        width: 100%;
        max-width: 720px;
        background: #fff;
        border-radius: 14px;
        padding: 22px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);

      }

      .lp-preview-screen{
        background: linear-gradient(180deg, #20a7f0 0%, #17356b 100%);
        border-radius: 16px;
        padding: 22px;

      }

      .lp-preview-top {
        margin-bottom: 18px;
        padding-bottom: 12px;
        border-bottom: 2px solid rgba(255, 255, 255, 0.35);
      }

      .lp-preview-top span {
        display: inline-block;
        color: rgba(255, 255, 255, 0.78);
        font-size: 15px;
        margin-bottom: 4px;
      }

      .lp-preview-top h4 {
      color: #ffffff;
      font-size: 24px;
      margin: 0;
      font-weight: 500;
      }

      .lp-mini-card {
      background: rgba(224, 237, 250, 0.45);
      border-radius: 16px;
      padding: 18px 16px;
      min-height: 15px;
      }

      .lp-mini-card small {
      display: block;
      color: rgba(255, 255, 255, 0.82);
      font-size: 17px;
      margin-bottom: 10px;
      }

      .lp-mini-card h5 {
      margin: 0;
      font-size: 40px;
      line-height: 1;
      color: #ffffff;
      font-weight: 700;
      }

      .lp-pipeline-card {
      background: rgba(224, 237, 250, 0.45);
      border-radius: 16px;
      padding: 18px 16px;
      }

      .lp-pipeline-card small,
      .lp-pipeline-card span,
      .lp-pipeline-card h6 {
      color: rgba(255, 255, 255, 0.9);
      }

      .lp-pipeline-card h6 {
      font-size: 20px;
      margin: 0;
      font-weight: 500;
      }

      .lp-progress-group {
      margin-bottom: 14px;
      }

      .lp-progress-group span {
      font-size: 15px;
      font-weight: 300;
      }

      .lp-progress-group .progress {
      height: 7px;
      background: rgba(255, 255, 255, 0.28);
      border-radius: 999px;
      overflow: hidden;
      margin-top: 8px;
      }

      .lp-progress-group .progress-bar {
      background: #ffffff;
      border-radius: 999px;
      }

  /* ================= Hero Section Ends Here ================= */

  /* ================= About Us Starts Here ================= */

    .it-about-us-section {
      background: #F5F7FB;
      padding: 88px 0 96px;
    }

    .it-about-us-container {
      width: min(1290px, calc(100% - 48px));
      margin: 0 auto;
    }

    .it-about-us-layout {
      display: grid;
      grid-template-columns: 1.02fr 1fr;
      gap: 43px;
      align-items: start;
    }

    .it-about-us-left {
      padding-top: 2px;
    }

    .it-about-us-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 38px;
      min-width: 122px;
      padding: 0 24px;
      border: 1px solid #D5D5D5;
      border-radius: 999px;
      background: #FFFFFF;
      color: #8A8A8A;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0;
      margin-bottom: 34px;
    }

    .it-about-us-title {
      margin: 0 0 22px;
      color: #050505;
      font-size: 42px;
      line-height: 1.08;
      font-weight: 600;
      letter-spacing: -0.02em;
      text-transform: none;
    }

    .it-about-us-description {
      max-width: 540px;
      margin: 0 0 30px;
      color: #111111;
      font-size: 17px;
      line-height: 1.45;
      font-weight: 400;
    }

    .it-about-us-small-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px 18px;
      max-width: 540px;
    }

    .it-about-us-small-card,
    .it-about-us-large-card {
      background: #FFFFFF;
      border: 1px solid #C8C8C8;
      border-radius: 10px;
      box-shadow: none;
    }

    .it-about-us-small-card {
      min-height: 96px;
      padding: 16px 16px 16px 16px;
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .it-about-us-small-card p {
      margin: 5px 0 0;
      color: #111111;
      font-size: 15px;
      line-height: 1.5;
      font-weight: 400;
    }

    .it-about-us-right {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 28px 34px;
    }

    .it-about-us-large-card {
      min-height: 206px;
      padding: 38px 24px 28px;
    }

    .it-about-us-card-head {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 18px;
    }

    .it-about-us-card-head h3 {
      margin: 0;
      color: #222833;
      font-size: 18px;
      line-height: 1.3;
      font-weight: 600;
    }

    .it-about-us-large-card p {
      margin: 0;
      color: #111111;
      font-size: 17px;
      line-height: 1.55;
      font-weight: 400;
      max-width: 240px;
    }

    .it-about-us-icon-box {
      width: 42px;
      height: 42px;
      min-width: 42px;
      border-radius: 14px;
      background: #DEECF2;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #1172A7;
    }

    .it-about-us-icon-svg {
      width: 22px;
      height: 22px;
      display: block;
    }

  
  /* ================= About Us Ends Here ================= */

   /* ================= Services Starts Here ================= */

    .it-services-section {
      background: linear-gradient(180deg, #F5F7FB 29%, #ebf7fd 100%);
      padding: 52px 0 110px;
      position: relative;
      overflow: hidden;
    }

    .it-services-container {
     width: min(1180px, calc(100% - 48px));
      margin: 0 auto;
    }

    .it-services-head {
      text-align: center;
      margin-bottom: 82px;
    }

    .it-services-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 119px;
      height: 38px;
      padding: 0 24px;
      border-radius: 999px;
      background: #ffffff;
      border: 1px solid #e2e2e2;
      color: #8f8f8f;
      font-size: 13px;
      font-weight: 500;
      margin-bottom: 28px;
    }

    .it-services-title {
      margin: 0;
      color: #000000;
      font-size: 38px;
      line-height: 1.5;
      font-weight: 600;
      letter-spacing: -0.03em;
    }

    .it-services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 31px 30px;
      justify-content: center;
    }

    .it-services-card {
      
      height: 292px;
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 4px 13.5px 0 rgba(0, 0, 0, 0.12);
      padding: 34px 30px 28px;
    }

    .it-services-icon-box {
      width: 48px;
      height: 44px;
      border-radius: 6px;
      background: linear-gradient(180deg, #25B8E3 0%, #1172A7 100%);
      color: #ffffff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }

    .it-services-icon-svg {
      width: 22px;
      height: 22px;
      display: block;
    }

    .it-services-card-title {
      margin: 0 0 16px;
      color: #111111;
      font-size: 18px;
      line-height: 1.4;
      font-weight: 700;
    }

    .it-services-card-text {
      margin: 0;
      color: #111111;
      font-size: 16px;
      line-height: 1.65;
      font-weight: 400;
      max-width: 294px;
    }

   /* ================= Services Ends Here ================= */

    /* ================= page-color Section Starts Here ================= */
    .it-page-color-section {
      background: linear-gradient(180deg, #F5F7FB 29%, #ebf7fd 100%);
   
     
    }
    /* ================= page-color Section Ends Here ================= */

    /* ================= Product Card Section Starts Here ================= */
    .it-cta-section {
      /* background: #ffffff; */
      padding: 86px 0 88px;
    }

    .it-cta-container {
      width: min(1270px, calc(100% - 48px));
      margin: 0 auto;
    }

    .it-cta-card {
      background: linear-gradient(90deg, #1AA5F4 18%, #15244D 100%);
      border-radius: 13px;
      min-height: 407px;
      padding: 48px 40px 44px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      box-sizing: border-box;
    }

    /* mirror effect Starts here */

    .it-cta-card {
      position: relative;
      overflow: hidden;
    }

    .it-cta-card > *:not(.it-cta-shine) {
      position: relative;
      z-index: 2;
    }

    .it-cta-shine {
      position: absolute;
      top: -30%;
      left: -25%;
      width: 140px;
      height: 160%;
      pointer-events: none;
      z-index: 1;
      opacity: 0.32;
      transform: translateX(0) rotate(18deg);
      background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.12) 20%,
        rgba(255, 255, 255, 0.5) 45%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 255, 255, 0.5) 55%,
        rgba(255, 255, 255, 0.12) 80%,
        rgba(255, 255, 255, 0) 100%
      );
      filter: blur(10px);
      will-change: transform, opacity;
    }

    /* mirror effect ends here */
    .it-cta-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 158px;
      height: 40px;
      padding: 0 22px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.5);
      color: #000000;
      font-size: 13px;
      font-weight: 500;
      line-height: 1;
      margin-bottom: 28px;
    }

    .it-cta-title {
      margin: 0 0 22px;
      color: #ffffff;
      font-size: 37px;
      line-height: 1.5;
      font-weight: 600;
      letter-spacing: -0.03em;
      max-width: 900px;
    }

    .it-cta-text {
      margin: 0 0 28px;
      color: rgba(255, 255, 255, 0.55);
      font-size: 17px;
      line-height: 1.55;
      font-weight: 400;
      max-width: 760px;
    }

    .it-cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .it-cta-btn {
      height: 42px;
      min-width: 151px;
      padding: 0 22px;
      border-radius: 13px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      font-size: 16px;
      font-weight: 500;
      transition: all 0.2s ease;
      box-sizing: border-box;
    }

    .it-cta-btn-primary {
      background: #1C345D;
      color: #ffffff;
    }

    .it-cta-btn-primary:hover {
      color: #ffffff;
      transform: translateY(-1px);
    }

    .it-cta-btn-light {
      background: #ffffff;
      color: #1172A7;
    }

    .it-cta-btn-light:hover {
      color: #1172A7;
      transform: translateY(-1px);
    }

    .it-cta-btn-arrow {
      font-size: 17px;
      line-height: 1;
    }
    /* ================= Product Card Ends Here ================= */

    /* ================= Portfolio Section Starts Here ================= */
    .it-projects-section {
        padding: 48px 0 80px;
        overflow: hidden;
      }


      .it-projects-container {
        max-width: 1180px;
      }

      .it-projects-top-area {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 32px;
        margin-bottom: 26px;
      }

      .it-projects-top-left {
        max-width: 760px;
      }

      .it-projects-pill-label {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 26px;
        border-radius: 999px;
        border: 1px solid #dddddd;
        color: #8a8a8a;
        background: #f6f6f6;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 26px;
      }

      .it-projects-main-title {
        font-size: 42px;
        line-height: 1.15;
        font-weight: 700;
        color: #111111;
        margin-bottom: 18px;
        letter-spacing: -0.02em;
        max-width: 840px;
      }

      .it-projects-main-text {
        font-size: 16px;
        line-height: 1.7;
        color: #757575;
        max-width: 760px;
        margin-bottom: 0;
      }


      .it-projects-top-right {
        min-width: 315px;
        display: flex;
        justify-content: flex-end;
      }

      .it-projects-filters {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 14px;
        max-width: 320px;
      }

      .it-projects-filter-btn {
        border: 1px solid #cfcfcf;
        background: #f5f5f5;
        color: #232323;
        border-radius: 16px;
        padding: 12px 20px;
        font-size: 15px;
        font-weight: 500;
        transition: all 0.25s ease;
      }

      .it-projects-filter-btn:hover {
        background: #0d79ba;
        border-color: #0d79ba;
        color: #ffffff;
      }

      .it-projects-filter-btn.is-active {
        background: #0d79ba;
        color: #ffffff;
        border-color: #0d79ba;
      }

      /* Project List Starts Here */

      .it-projects-content-wrap {
        padding: 0;
      }

      .it-projects-left-list {
        display: flex;
        flex-direction: column;
        gap: 24px;
        
      }

      .it-projects-card {
        width: 100%;
        text-align: left;
        border: 0;
         box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
        padding: 0;
        cursor: pointer;
        border-radius: 18px;
      }

      .it-projects-card-inner {
        background: #ffffff;
        border-radius: 18px;
        padding: 30px 24px 24px;
        border: 1px solid transparent;
        transition: all 0.25s ease;
      }

      .it-projects-card:hover .it-projects-card-inner {
        transform: translateY(-2px);
        border-color: rgba(12, 121, 186, 0.28);
      }

      .it-projects-card.is-active .it-projects-card-inner {
        border-color: #0d79ba;
        box-shadow:
          0 0 0 2px rgba(13, 121, 186, 0.16),
          0 0 24px rgba(13, 121, 186, 0.18);
      }

      .it-projects-card-kicker,
      .it-projects-featured-kicker {
        font-size: 13px;
        line-height: 1;
        font-weight: 600;
        letter-spacing: 0.24em;
        text-transform: uppercase;
        color: #0d79ba;
        margin-bottom: 16px;
      }

      .it-projects-card-title,
      .it-projects-featured-title {
        font-size: 20px;
        line-height: 1.28;
        font-weight: 700;
        color: #111111;
        margin-bottom: 12px;
      }

      .it-projects-card-text,
      .it-projects-featured-text {
        font-size: 16px;
        line-height: 1.65;
        color: #1f1f1f;
        margin-bottom: 0;
      }

      .it-projects-featured-box {
        background: #ffffff;
        border-radius: 18px;
        padding: 30px 22px 24px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
      }

      .it-projects-featured-kicker {
        margin-bottom: 16px;
      }

      .it-projects-featured-title {
        margin-bottom: 14px;
      }

      .it-projects-featured-text {
        max-width: 95%;
        margin-bottom: 22px;
      }

      .it-projects-preview-box {
        position: relative;
        background: #000000;
        border-radius: 14px;
        min-height: 320px;
        padding: 20px 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
      }



      .it-projects-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 46px;
        height: 42px;
        border: 0;
        border-radius: 14px;
        background: #f1f1f1;
        color: #6b6b6b;
        font-size: 28px;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .it-projects-nav-prev {
        left: 16px;
      }

      .it-projects-nav-next {
        right: 16px;
      }

      .it-projects-thumbs-row {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 12px;
        margin-bottom: 24px;
      }

      .it-projects-thumb {
        height: 84px;
        border-radius: 12px;
        background: #000000;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
      }

    

      .it-projects-bottom-card {
        background: #F5F7FB;
        border-radius: 12px;
        padding: 20px 16px;
        min-height: 82px;
        display: flex;
        align-items: center;
      }

      .it-projects-bottom-card p {
        margin: 0;
        font-size: 15px;
        line-height: 1.35;
        color: #1a1a1a;
      }


      .it-projects-main-image-btn {
        border: 0;
        background: transparent;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
      }

      .it-projects-main-image {
        max-width: 100%;
        max-height: 260px;
        object-fit: contain;
        display: block;
      }

      .it-projects-thumb {
        border: 0;
        padding: 0;
        cursor: pointer;
      }

      .it-projects-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .it-projects-thumb.is-active {
        box-shadow: 0 0 0 2px #0d79ba inset;
      }

      .it-projects-popup {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.88);
        display: none;
        align-items: center;
        justify-content: center;
        padding: 24px 70px;
        z-index: 9999;
      }

      .it-projects-popup.is-open {
        display: flex;
      }

      .it-projects-popup-inner {
        width: 100%;
        max-width: 950px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .it-projects-popup-image {
        max-width: 100%;
        max-height: 85vh;
        object-fit: contain;
        display: block;
      }

      .it-projects-popup-close {
        position: absolute;
        top: 18px;
        right: 18px;
        width: 44px;
        height: 44px;
        border: 0;
        border-radius: 50%;
        background: #ffffff;
        color: #111111;
        font-size: 28px;
        line-height: 1;
        cursor: pointer;
      }

      .it-projects-popup-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 52px;
        height: 52px;
        border: 0;
        border-radius: 16px;
        background: #ffffff;
        color: #111111;
        font-size: 30px;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
      }

      .it-projects-popup-prev {
        left: 18px;
      }

      .it-projects-popup-next {
        right: 18px;
      }

      /* Project List Ends Here */


    /* ================= Portfolio Section End Ends Here ================= */

    /* ================= Contact Us Section Starts Here ================= */
    .it-contact-section {
        /* background: #f8f9fb; */
        padding: 84px 0 92px;
      }

      .it-contact-container {
        width: min(1270px, calc(100% - 48px));
        margin: 0 auto;
      }

      .it-contact-layout {
        display: grid;
        grid-template-columns: 1fr 1.05fr;
        gap: 40px;
        align-items: start;
      }

      .it-contact-pill {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 122px;
        height: 38px;
        padding: 0 22px;
        border-radius: 999px;
        background: #ffffff;
        border: 1px solid #e2e2e2;
        color: #8e8e8e;
        font-size: 13px;
        font-weight: 500;
        margin-bottom: 26px;
      }

      .it-contact-title {
        margin: 0 0 18px;
        color: #000000;
        font-size: 38px;
        line-height: 1.2;
        font-weight: 600;
        letter-spacing: -0.03em;
      }

      .it-contact-description {
        margin: 0 0 28px;
        color: #8a8a8a;
        font-size: 17px;
        line-height: 1.55;
        max-width: 540px;
      }

      .it-contact-info-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
      }

      .it-contact-info-card {
        background: #ffffff;
        border-radius: 14px;
        box-shadow: 0 4px 13.5px rgba(0, 0, 0, 0.12);
        padding: 18px 16px;
        display: flex;
        align-items: center;
        gap: 14px;
        min-height: 80px;
      }

      .it-contact-info-icon {
        width: 50px;
        height: 44px;
        min-width: 50px;
        border-radius: 6px;
        background: #DEECF2;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #263238;
      }

      .it-contact-info-svg {
        width: 22px;
        height: 22px;
        display: block;
      }

      .it-contact-info-text h3 {
        margin: 0 0 4px;
        color: #111111;
        font-size: 16px;
        line-height: 1.3;
        font-weight: 600;
      }

      .it-contact-info-text p {
        margin: 0;
        color: #686868;
        font-size: 14px;
        line-height: 1.5;
      }

      .it-contact-form-card {
        background: #ffffff;
        border-radius: 14px;
        box-shadow: 0 4px 13.5px rgba(0, 0, 0, 0.12);
        padding: 24px 16px 16px;
      }

      .it-contact-form-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 10px;
      }

      .it-contact-field {
        display: flex;
        flex-direction: column;
      }

      .it-contact-field-full {
        grid-column: 1 / -1;
      }

      .it-contact-field label {
        margin-bottom: 8px;
        color: #203b6a;
        font-size: 14px;
        line-height: 1.3;
        font-weight: 600;
      }

      .it-contact-input,
      .it-contact-textarea {
        width: 100%;
        border: 1px solid #d8dde5;
        background: #f2f5f9;
        border-radius: 14px;
        color: #111111;
        font-size: 14px;
        line-height: 1.4;
        box-sizing: border-box;
        outline: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
      }

      .it-contact-input {
        height: 40px;
        padding: 0 14px;
      }

      .it-contact-textarea {
        min-height: 134px;
        resize: vertical;
        padding: 12px 14px;
      }

      .it-contact-input::placeholder,
      .it-contact-textarea::placeholder {
        color: #757575;
      }

      .it-contact-input:focus,
      .it-contact-textarea:focus {
        border-color: #9ec6dc;
        box-shadow: 0 0 0 3px rgba(17, 114, 167, 0.08);
      }

      /* Subject */
      .it-contact-subject-wrap {
        position: relative;
      }

      .it-contact-subject-input {
        padding-right: 48px;
      }

      .it-contact-subject-toggle {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        width: 28px;
        height: 28px;
        border: 0;
        background: transparent;
        color: #3b3b3b;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
      }

      .it-contact-subject-arrow {
        width: 18px;
        height: 18px;
        transition: transform 0.2s ease;
      }

      .it-contact-subject-wrap.is-open .it-contact-subject-arrow {
        transform: rotate(180deg);
      }

      .it-contact-subject-menu {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        background: #ffffff;
        border: 1px solid #d7dde5;
        border-radius: 12px;
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
        padding: 8px;
        display: none;
        z-index: 20;
        max-height: 230px;
        overflow-y: auto;
      }

      .it-contact-subject-wrap.is-open .it-contact-subject-menu {
        display: block;
      }

      .it-contact-subject-option {
        width: 100%;
        border: 0;
        background: transparent;
        text-align: left;
        padding: 10px 12px;
        border-radius: 9px;
        color: #111111;
        font-size: 14px;
        line-height: 1.4;
        cursor: pointer;
      }

      .it-contact-subject-option:hover,
      .it-contact-subject-option.is-hidden {
        display: none;
      }

      .it-contact-subject-option:hover {
        display: block;
        background: #f3f7fa;
      }

      .it-contact-form-footer {
        margin-top: 28px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
      }

      .it-contact-reply-text {
        margin: 0;
        color: #8b8b8b;
        font-size: 16px;
        line-height: 1.45;
      }

      .it-contact-submit-btn {
        min-width: 152px;
        height: 42px;
        border: 0;
        border-radius: 13px;
        background: #172B52;
        color: #ffffff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 0 18px;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
      }

      .it-contact-submit-arrow {
        font-size: 17px;
        line-height: 1;
      }
    /* ================= Contact Us Section Ends Here ================= */

   /* ================= Footer Section Starts Here ================= */
        
      .it-footer-section {
      background: #fff;
      padding: 70px 0 60px;
      overflow: hidden;
    }

    .it-footer-brand-wrap {
      margin-bottom: 26px;
    }

    .it-footer-brand {
      gap: 14px;
    }

    .it-footer-logo {
      width: 44px;
      height: 44px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .it-brand-text {
      font-size: 18px;
      font-weight: 600;
      line-height: 1.2;
      color: #1f2430;
    }

    .it-brand-text span {
      color: #2da7df;
    }

    .it-footer-tagline {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 3px;
      color: #2f2f2f;
      margin-top: 4px;
    }

    .it-footer-description {
      max-width: 560px;
      font-size: 20px;
      line-height: 1.7;
      font-weight: 400;
      color: #22252d;
    }

    .it-footer-title {
      font-size: 20px;
      font-weight: 700;
      color: #22252d;
      margin-bottom: 18px;
    }

    .it-footer-links li {
      margin-bottom: 12px;
    }

    .it-footer-links li:last-child {
      margin-bottom: 0;
    }

    .it-footer-links a {
      text-decoration: none;
      font-size: 17px;
      font-weight: 400;
      color: #22252d;
      transition: 0.3s ease;
    }

    .it-footer-links a:hover {
      color: #2da7df;
    }


  /* ================= Footer Section Ends Here ================= */


/* Responsive */
@media (max-width: 991.98px) {
  

    /* ================= NAVBAR ================= */


     .it-navbar-wrap {
    --it-nav-h: 72px;
  }

  .it-navbar {
    padding: 10px 14px;
  }

  .it-navbar-light-border {
    top: -3px;
    left: -3px;
    width: calc(100% + 6px);
    height: calc(var(--it-nav-h) + 6px);
  }

  .it-navbar-border-base {
    stroke-width: 1.8;
  }

  .it-navbar-border-strip {
    stroke-width: 9;
    stroke-dasharray: 180 2090;
    animation: itNavStripRunMobile 2.5s linear infinite;
  }

  @keyframes itNavStripRunMobile {
    from {
      stroke-dashoffset: 0;
    }
    to {
      stroke-dashoffset: -2270;
    }
  }

      .it-navbar {
        padding: 12px 14px;
      }

      .it-desktop-nav,
      .it-desktop-cta {
        display: none;
      }

      .it-toggler {
        display: inline-flex;
      }

      .it-brand-text {
        font-size: 15px;
      }

      .it-brand-logo {
        width: 30px;
        height: 30px;
      }

  /* ================= NAVBAR Ends Here ================= */

   /* =================   Hero Section Starts Here ================= */
        .hero {
          text-align: center;
          padding-top: 140px;
        }

        .hero h1 {
          font-size: 2.2rem;
        }

        .hero p {
          margin-left: auto;
          margin-right: auto;
        }

        .hero-card {
          margin-top: 30px;
        }

         .lp-stat-card {
          padding: 16px;
        }

        .lp-stat-card h3 {
          font-size: 34px;
        }

        .lp-stat-card p {
          font-size: 14px;
        }

        .lp-preview-card {
          padding: 16px;
        }

        
        .lp-preview-card::before {
          inset: 16px;
        }

        .lp-preview-title {
          font-size: 20px;
        }

        .lp-mini-card{
          width: 100%;
        }

        .lp-mini-card h5 {
          font-size: 22px;
        }

        .lp-pipeline-card h6 {
          font-size: 18px;
        }

        .lp-hero-stats {
          margin-bottom: 0;
        }
        /* ================= Hero Section Ends Here ================= */
       
        /* ================= About Us Starts Here ================= */
        .it-about-us-section {
        padding: 56px 0 64px;
      }

      .it-about-us-container {
        width: min(100%, calc(100% - 24px));
      }

      .it-about-us-pill {
        margin-bottom: 24px;
        height: 36px;
        min-width: 110px;
        font-size: 12px;
      }

      .it-about-us-title {
        font-size: 32px;
        line-height: 1.12;
        margin-bottom: 18px;
      }

      .it-about-us-description {
        font-size: 16px;
        line-height: 1.55;
        margin-bottom: 24px;
      }

      .it-about-us-small-grid,
      .it-about-us-right {
        grid-template-columns: 1fr;
      }

      .it-about-us-small-card {
        min-height: auto;
        padding: 16px;
      }

      .it-about-us-large-card {
        min-height: auto;
        padding: 24px 18px 22px;
      }

      .it-about-us-card-head {
        margin-bottom: 14px;
      }

      .it-about-us-card-head h3 {
        font-size: 17px;
      }

      .it-about-us-large-card p,
      .it-about-us-small-card p {
        font-size: 15px;
      }

      .it-about-us-icon-box {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 12px;
      }

      .it-about-us-icon-svg {
        width: 20px;
        height: 20px;
      }
        /* ================= About Us Ends Here ================= */

        /* ================= Services Starts Here ================= */
       .it-services-section {
          padding: 48px 0 84px;
        }

        .it-services-head {
          margin-bottom: 56px;
        }

        .it-services-title {
          font-size: 32px;
          line-height: 1.35;
        }

        .it-services-grid {
          grid-template-columns: repeat(2, minmax(280px, 1fr));
          gap: 22px;
        }

        .it-services-card {
          height: auto;
          min-height: 260px;
          padding: 28px 24px 24px;
        }

        .it-services-card-text {
          max-width: 100%;
        }
        /* ================= Services Ends Here ================= */
      
      /* ================= Product Card Section Starts Here ================= */
         .it-cta-section {
          padding: 46px 0;
        }

        .it-cta-container {
          width: min(100%, calc(100% - 24px));
        }

        .it-cta-card {
          padding: 34px 18px 30px;
          border-radius: 12px;
        }

        .it-cta-pill {
          min-width: 136px;
          height: 36px;
          font-size: 12px;
          margin-bottom: 20px;
        }

        .it-cta-title {
          font-size: 28px;
          line-height: 1.3;
          margin-bottom: 16px;
        }

        .it-cta-text {
          font-size: 15px;
          line-height: 1.6;
          margin-bottom: 22px;
        }

        .it-cta-actions {
          width: 100%;
          gap: 12px;
        }

        .it-cta-btn {
          width: 100%;
          min-width: 100%;
          height: 46px;
          border-radius: 12px;
        }
      /* ================= Product Card Ends Here ================= */

      /* ================= Portfolio Section Starts Here ================= */
      .it-projects-section {
        padding: 40px 0 64px;
      }

      .it-projects-top-area {
        flex-direction: column;
        gap: 22px;
      }

      .it-projects-top-right {
        width: 100%;
        justify-content: flex-start;
      }

      .it-projects-filters {
        justify-content: flex-start;
        max-width: 100%;
      }

      .it-projects-main-title {
        font-size: 34px;
      }
      
      .it-projects-card-title,
      .it-projects-featured-title {
        font-size: 18px;
      }

      .it-projects-card-text,
      .it-projects-featured-text,
      .it-projects-bottom-card p {
        font-size: 14px;
      }

      .it-projects-preview-box {
        min-height: 240px;
        padding: 18px 50px;
      }

      .it-projects-preview-phone {
        transform: scale(0.9);
      }

      .it-projects-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
      }

      .it-projects-thumbs-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
      
      .it-projects-main-image-btn {
      border: 0;
      background: transparent;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .it-projects-main-image {
      max-width: 100%;
      max-height: 260px;
      object-fit: contain;
      display: block;
    }

    .it-projects-thumb {
      border: 0;
      padding: 0;
      cursor: pointer;
    }

    .it-projects-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .it-projects-thumb.is-active {
      box-shadow: 0 0 0 2px #0d79ba inset;
    }

    .it-projects-popup {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.88);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px 70px;
      z-index: 9999;
    }

    .it-projects-popup.is-open {
      display: flex;
    }

    .it-projects-popup-inner {
      width: 100%;
      max-width: 950px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .it-projects-popup-image {
      max-width: 100%;
      max-height: 85vh;
      object-fit: contain;
      display: block;
    }

    .it-projects-popup-close {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 50%;
      background: #ffffff;
      color: #111111;
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
    }

    .it-projects-popup-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 52px;
      height: 52px;
      border: 0;
      border-radius: 16px;
      background: #ffffff;
      color: #111111;
      font-size: 30px;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .it-projects-popup-prev {
      left: 18px;
    }

    .it-projects-popup-next {
      right: 18px;
    }

      .it-projects-main-image {
          max-height: 220px;
        }
      /* ================= Portfolio Section End Ends Here ================= */

      /* ================= Contact Us Section Starts Here ================= */
        .it-contact-section {
          padding: 46px 0 54px;
        }

        .it-contact-container {
          width: min(100%, calc(100% - 24px));
        }

        .it-contact-pill {
          min-width: 108px;
          height: 36px;
          font-size: 12px;
          margin-bottom: 18px;
        }

        .it-contact-title {
          font-size: 28px;
          line-height: 1.2;
          margin-bottom: 14px;
        }

        .it-contact-description {
          font-size: 15px;
          margin-bottom: 20px;
        }

        .it-contact-form-grid {
          grid-template-columns: 1fr;
        }

        .it-contact-form-card {
          padding: 18px 14px 14px;
        }

        .it-contact-info-card {
          padding: 16px 14px;
        }

        .it-contact-form-footer {
          flex-direction: column;
          align-items: stretch;
          margin-top: 22px;
        }

        .it-contact-submit-btn {
          width: 100%;
          min-width: 100%;
        }
      /* ================= Contact Us Section Ends Here ================= */

     /* ================= Footer Section Starts Here ================= */
    
    
    .it-footer-section .container {
        max-width: 1180px;
      }

      .it-footer-section .row > .col-lg-4 {
        padding-left: 70px;
      }
    /* ================= Footer Section Ends Here ================= */
      }


@media (max-width: 575.98px) {

/* ================= NAVBAR ================= */

    .it-navbar-wrap {
        --it-nav-h: 68px;
      }

      .it-navbar {
        padding: 9px 12px;
      }

      .it-navbar-light-border {
        top: -3px;
        left: -3px;
        width: calc(100% + 6px);
        height: calc(var(--it-nav-h) + 6px);
      }

      .it-navbar-border-strip {
        stroke-width: 10;
      }

      .it-navbar-section {
        padding: 10px 12px;
      }

      .it-navbar {
        padding: 10px 12px;
      }

      .it-brand-text {
        font-size: 14px;
      }

      .it-toggler {
        width: 42px;
        height: 42px;
        font-size: 22px;
      }

      .it-cta {
        padding: 12px 20px;
        font-size: 14px;
      }

/* ================= NAVBAR Ends Here ================= */

/* =================   Hero Section Starts Here ================= */

      .hero {
        padding: 120px 15px 40px 15px; /* remove excess padding */
        text-align: left;
      }

      .lp-hero-badge {
      font-size: 15px;
      padding: 10px 14px;
      margin-bottom: 22px;
    }

      .hero h1 {
        font-size: 1.8rem;
      }

      .hero-buttons .btn-explore , 
      .btn-primary {
        width: 100%;
        margin-bottom: 10px;
      }

      .lp-hero-title {
        font-size: 32px;
      }

      .lp-preview-shell {
        margin-top: 0;
      }

      .lp-preview-card {
        margin-bottom: 0;
      }

/* =================   Hero Section Ends Here ================= */


/* =================   About Us Section Starts Here ================= */


    .it-about-us-section {
        padding: 42px 0 48px;
      }

      .it-about-us-container {
        width: calc(100% - 20px);
      }

      .it-about-us-layout {
        gap: 24px;
        display: flex;
        flex-direction: column;
      }

      .it-about-us-pill {
        height: 34px;
        min-width: 102px;
        padding: 0 18px;
        font-size: 11px;
        margin-bottom: 20px;
      }

      .it-about-us-title {
        font-size: 27px;
        line-height: 1.14;
        margin-bottom: 14px;
      }

      .it-about-us-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
        max-width: 100%;
      }

      .it-about-us-small-grid,
      .it-about-us-right {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .it-about-us-small-card {
        padding: 14px;
        gap: 12px;
        border-radius: 8px;
      }

      .it-about-us-small-card p {
        font-size: 14px;
        line-height: 1.5;
        margin-top: 3px;
      }

      .it-about-us-large-card {
        min-height: auto;
        padding: 20px 16px 18px;
        border-radius: 8px;
      }

      .it-about-us-card-head {
        gap: 12px;
        margin-bottom: 12px;
      }

      .it-about-us-card-head h3 {
        font-size: 16px;
        line-height: 1.3;
      }

      .it-about-us-large-card p {
        font-size: 14px;
        line-height: 1.6;
        max-width: 100%;
      }

      .it-about-us-icon-box {
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 10px;
      }

      .it-about-us-icon-svg {
        width: 18px;
        height: 18px;
      }

    /* =================   About Us Section Ends Here ================= */


      /* ================= Services Starts Here ================= */

      .it-services-section {
        padding: 34px 0 48px;
      }

      .it-services-container {
        width: calc(100% - 20px);
      }

      .it-services-head {
        margin-bottom: 28px;
      }

      .it-services-pill {
        min-width: 100px;
        height: 34px;
        padding: 0 18px;
        font-size: 15px;
        margin-bottom: 18px;
      }

      .it-services-title {
        font-size: 24px;
        line-height: 1.25;
        letter-spacing: -0.02em;
      }

      .it-services-grid {
        gap: 14px;
        grid-template-columns: 1fr;
      }

      .it-services-card {
        padding: 20px 16px 18px;
        border-radius: 9px;
        width: 100%;
      }

      .it-services-icon-box {
        width: 42px;
        height: 40px;
        margin-bottom: 14px;
      }

      .it-services-icon-svg {
        width: 20px;
        height: 20px;
      }

      .it-services-card-title {
        font-size: 16px;
        margin-bottom: 10px;
      }

      .it-services-card-text {
        font-size: 15px;
        line-height: 1.55;
      }

      /* ================= Services Ends Here ================= */
     
      /* ================= Product Card Section Starts Here ================= */
        .it-cta-section {
          padding: 36px 0 40px;
        }

        .it-cta-container {
          width: calc(100% - 20px);
        }

        .it-cta-card {
          padding: 28px 14px 24px;
          border-radius: 10px;
        }

        .it-cta-pill {
          min-width: 126px;
          height: 34px;
          padding: 0 16px;
          font-size: 11px;
          margin-bottom: 16px;
        }

        .it-cta-title {
          font-size: 24px;
          line-height: 1.28;
          margin-bottom: 14px;
        }

        .it-cta-text {
          font-size: 14px;
          line-height: 1.55;
          margin-bottom: 18px;
        }

        .it-cta-btn {
          height: 44px;
          font-size: 15px;
          border-radius: 10px;
        }
      /* ================= Product Card Ends Here ================= */

      /* ================= Portfolio Section Starts Here ================= */

      /* ================= Portfolio Section End Ends Here ================= */

      /* ================= Contact Us Section Starts Here ================= */
        .it-contact-section {
          padding: 36px 0 42px;
        }

        .it-contact-layout {
          display: flex;
          flex-direction: column;
          gap: 24px;
        }

        .it-contact-container {
          width: calc(100% - 20px);
        }

        .it-contact-right {
          width: 100%;
        }

        .it-contact-title {
          font-size: 24px;
        }

        .it-contact-description {
          font-size: 14px;
          line-height: 1.55;
        }

        .it-contact-info-icon {
          width: 46px;
          height: 42px;
          min-width: 46px;
        }

        
        .it-contact-info-text h3 {
          font-size: 15px;
        }

        .it-contact-info-text p,
        .it-contact-reply-text,
        .it-contact-input,
        .it-contact-textarea,
        .it-contact-subject-option {
          font-size: 14px;
        }

        .it-contact-submit-btn {
          height: 44px;
          border-radius: 11px;
          font-size: 15px;
        }
      /* ================= Contact Us Section Ends Here ================= */
 
 
      /* ================= Footer Section Starts Here ================= */
      .it-footer-section {
        padding: 42px 0 40px;
      }

      .it-footer-brand {
        align-items: flex-start;
      }

      .it-footer-logo {
        width: 40px;
        height: 40px;
        margin-top: 2px;
      }

      .it-brand-text {
        font-size: 16px;
      }

      .it-footer-tagline {
        font-size: 11px;
        letter-spacing: 2.4px;
      }

      .it-footer-description {
        font-size: 16px;
        line-height: 1.65;
        margin-bottom: 10px;
      }

      .it-footer-title {
        font-size: 18px;
        margin-bottom: 14px;
      }

      .it-footer-links a {
        font-size: 16px;
      }

      .it-footer-links li {
        margin-bottom: 10px;
      }
/* ================= Footer Section Ends Here ================= */


}
